-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.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
{
"name": "@reflink/reflink",
"version": "0.1.17",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"url": "https://github.com/pnpm/reflink"
},
"napi": {
"name": "reflink",
"triples": {
"additional": [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc",
"x86_64-unknown-linux-musl"
]
},
"npmClient": "npm"
},
"files": [
"binding.js",
"binding.d.ts",
"index.js",
"index.d.ts"
],
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "^2.16.3",
"@types/node": "^20.8.0",
"chalk": "^5.3.0",
"rimraf": "^5.0.5",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "pnpm gen-dts && napi build --js binding.js --dts binding.d.ts --platform --release",
"build:debug": "pnpm gen-dts && napi build --js binding.js --dts binding.d.ts --platform",
"gen-dts": "tsc --checkJs index.js --declaration --emitDeclarationOnly",
"prepublishOnly": "napi prepublish -t npm",
"pretest": "pnpm build",
"test": "cargo t && vitest && rimraf -g __reflink-tests-*",
"bench": "node benchmark.mjs",
"universal": "napi universal",
"version": "napi version"
},
"packageManager": "[email protected]"
}