-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.88 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.88 KB
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
{
"name": "@capgo/capacitor-accelerometer",
"version": "8.0.21",
"description": "Read device accelerometer measurements with Capacitor",
"main": "dist/plugin.cjs.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"unpkg": "dist/plugin.js",
"files": [
"android/src/main/",
"android/build.gradle",
"dist/",
"ios/Sources",
"ios/Tests",
"Package.swift",
"CapgoCapacitorAccelerometer.podspec"
],
"author": "Cap-go <contact@capgo.app>",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Cap-go/capacitor-accelerometer.git"
},
"bugs": {
"url": "https://github.com/Cap-go/capacitor-accelerometer/issues"
},
"homepage": "https://capgo.app/docs/plugins/accelerometer/",
"keywords": [
"capacitor",
"plugin",
"native",
"accelerometer",
"sensor",
"motion",
"capgo",
"capacitor"
],
"scripts": {
"verify": "npm run verify:ios && npm run verify:android && npm run verify:web",
"verify:ios": "xcodebuild -scheme CapgoCapacitorAccelerometer -destination generic/platform=iOS",
"verify:android": "cd android && ./gradlew clean build test && cd ..",
"verify:web": "npm run build",
"lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint",
"fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --fix --format",
"eslint": "eslint . --ext .ts",
"prettier": "prettier-pretty-check \"**/*.{css,html,ts,js,java}\" --plugin=prettier-plugin-java",
"swiftlint": "node-swiftlint",
"docgen": "docgen --api CapacitorAccelerometerPlugin --output-readme README.md --output-json dist/docs.json",
"build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.mjs",
"clean": "rimraf ./dist",
"watch": "tsc --watch",
"prepublishOnly": "npm run build",
"check:wiring": "node scripts/check-capacitor-plugin-wiring.mjs"
},
"devDependencies": {
"@capacitor/android": "^8.0.0",
"@capacitor/cli": "^8.0.0",
"@capacitor/core": "^8.0.0",
"@capacitor/docgen": "^0.3.1",
"@capacitor/ios": "^8.0.0",
"@ionic/eslint-config": "^0.4.0",
"@ionic/prettier-config": "^4.0.0",
"@ionic/swiftlint-config": "^2.0.0",
"@types/node": "^24.10.1",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"prettier-plugin-java": "^2.7.7",
"rimraf": "^6.1.0",
"rollup": "^4.53.2",
"swiftlint": "^2.0.0",
"typescript": "^5.9.3",
"prettier-pretty-check": "^0.2.0"
},
"peerDependencies": {
"@capacitor/core": ">=8.0.0"
},
"eslintConfig": {
"extends": "@ionic/eslint-config/recommended"
},
"prettier": "@ionic/prettier-config",
"swiftlint": "@ionic/swiftlint-config",
"capacitor": {
"ios": {
"src": "ios"
},
"android": {
"src": "android"
}
}
}