-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
{
"name": "rubick-native",
"version": "0.0.16",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"napi": {
"name": "rubick-native",
"triples": {
"additional": [
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"x86_64-unknown-linux-musl",
"x86_64-unknown-linux-gnu",
"aarch64-apple-darwin",
"universal-apple-darwin",
"aarch64-pc-windows-msvc",
"i686-pc-windows-msvc",
"x86_64-pc-windows-msvc"
]
}
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"postbuild": "node ./postbuild.js",
"build:debug": "napi build --platform",
"prepublishOnly": "napi prepublish -t npm",
"universal": "napi universal",
"test": "echo",
"version": "napi version"
},
"devDependencies": {
"@napi-rs/cli": "^2.16.5",
"@types/node": "^20.10.3",
"picomatch": "^3.0.1",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
},
"dependencies": {
"@miniben90/x-win": "^1.3.1",
"execa": "^8.0.1",
"fdir": "^6.1.1"
},
"files": [
"README.md",
"LICENSE",
"dist/"
]
}