-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
110 lines (110 loc) · 3.37 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@aparajita/capacitor-logger",
"version": "5.0.0",
"description": "Enhanced, universal logging for Capacitor apps and plugins",
"author": "Aparajita Fishman",
"license": "MIT",
"main": "dist/plugin.cjs.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"unpkg": "dist/plugin.js",
"engines": {
"node": ">=16.15.1"
},
"files": [
"android/src/main/",
"android/build.gradle",
"dist/",
"ios/Plugin/",
"*.podspec",
"LICENSE"
],
"scripts": {
"clean": "rimraf dist",
"lint.eslint": "eslint --fix --cache --ext .js,.cjs,.mjs,.ts --max-warnings 0",
"lint.prettier": "prettier --write --cache --list-different",
"lint.tsc": "tsc --noEmit",
"lint": "pnpm lint.eslint . && pnpm lint.prettier . && pnpm lint.tsc",
"prebuilder": "pnpm clean",
"builder": "tsc ${SOURCE_MAP:-} && rollup -c rollup.config.mjs",
"prebuild": "pnpm lint",
"build": "pnpm builder",
"build.dev": "SOURCE_MAP=--sourceMap pnpm build",
"watch": "nodemon --exec 'pnpm build.dev'",
"open.ios": "open ios/Plugin.xcworkspace",
"open.android": "open -b com.google.android.studio android",
"verify.ios": "cd ios && pod install && xcodebuild -workspace Plugin.xcworkspace -scheme Plugin -quiet && cd ..",
"verify.android": "cd android && ./gradlew clean build test && cd ..",
"verify": "pnpm verify.ios && pnpm verify.android",
"prepare": "simple-git-hooks",
"prerelease": "scripts/ensure-clean.sh && pnpm build",
"release": "commit-and-tag-version && git push --follow-tags && pnpm publish"
},
"commit-and-tag-version": {
"scripts": {
"postbump": "pnpm builder"
}
},
"keywords": [
"capacitor",
"plugin",
"native",
"log",
"logging"
],
"capacitor": {
"ios": {
"src": "ios"
},
"android": {
"src": "android"
}
},
"swiftlint": "@ionic/swiftlint-config",
"repository": {
"type": "git",
"url": "https://github.com/aparajita/capacitor-logger.git"
},
"bugs": {
"url": "https://github.com/aparajita/capacitor-logger/issues"
},
"devDependencies": {
"@aparajita/capacitor-docgen": "github:aparajita/capacitor-docgen",
"@aparajita/capacitor-docgen-format": "github:aparajita/capacitor-docgen-format",
"@aparajita/eslint-config-base": "^1.1.6",
"@aparajita/swiftly": "^1.0.4",
"@capacitor/cli": "^6.0.0",
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@ionic/swiftlint-config": "^1.1.2",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"commit-and-tag-version": "^12.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"prettier-plugin-java": "^2.6.0",
"rimraf": "^5.0.5",
"rollup": "^4.16.2",
"simple-git-hooks": "^2.11.1",
"swiftlint": "^1.0.2",
"typescript": "~5.4.5"
},
"dependencies": {
"@capacitor/android": "^6.0.0",
"@capacitor/core": "^6.0.0",
"@capacitor/ios": "^6.0.0",
"tslib": "^2.6.2"
},
"peerDependencies": {
"tslib": "^2.6.2"
}
}