-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.5 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
{
"name": "@tarojs/plugin-doctor",
"version": "0.0.18",
"main": "index.js",
"napi": {
"name": "taro-doctor",
"triples": {
"defaults": true,
"additional": [
"aarch64-apple-darwin",
"x86_64-unknown-linux-musl"
]
}
},
"files": [
"index.js",
"index.d.ts",
"js-binding.js",
"js-binding.d.ts"
],
"license": "MIT",
"dependencies": {
"eslint": "8.41.0",
"glob": "10.2.6"
},
"devDependencies": {
"@napi-rs/cli": "^2.15.2",
"@types/node": "20.2.5",
"ava": "^5.1.1",
"conventional-changelog-cli": "2.2.2",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"typescript": "5.0.4"
},
"ava": {
"timeout": "3m"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "tsc && napi build --platform --release --js js-binding.js --dts js-binding.d.ts",
"build:debug": "tsc && napi build --platform --js js-binding.js --dts js-binding.d.ts",
"prepublishOnly": "napi prepublish -t npm",
"test": "ava",
"universal": "napi universal",
"format": "run-p format:source format:rs",
"format:rs": "cargo fmt",
"format:source": "prettier . -w",
"version": "napi version && conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"prettier": {
"printWidth": 120,
"semi": false,
"trailingComma": "all",
"singleQuote": true,
"arrowParens": "always"
},
"repository": "https://github.com/NervJS/taro-doctor.git"
}