-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "@bistroo/capacitor-plugin-sunmi",
"version": "0.0.7",
"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/"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bistroo/capacitor-plugin-sunmi.git"
},
"bugs": {
"url": "https://github.com/bistroo/capacitor-plugin-sunmi/issues"
},
"keywords": [
"capacitor",
"plugin",
"native",
"sunmi"
],
"scripts": {
"verify": "cd android && ./gradlew clean build test && cd ..",
"docgen": "docgen --api SunmiPlugin --output-json dist/docs.json --output-readme README.md",
"build": "rm -rf dist && tsc && rollup -c rollup.config.js && pnpm docgen",
"watch": "tsc --watch"
},
"devDependencies": {
"@capacitor/core": "^5.0.4",
"@capacitor/android": "^5.0.4",
"@capacitor/docgen": "^0.2.1",
"rollup": "^2.32.0",
"typescript": "~4.1.5"
},
"peerDependencies": {
"@capacitor/core": "^5.0.4"
},
"capacitor": {
"android": {
"src": "android"
}
}
}