-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.02 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
{
"name": "rclonefile",
"version": "1.0.8",
"description": "macOS API for creating copy on write clones of files",
"repository": {
"type": "git",
"url": "git+https://github.com/sverrejoh/rclonefile.git"
},
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"prepublishOnly": "napi prepublish -t npm",
"test": "vitest",
"universal": "napi universal",
"version": "napi version"
},
"devDependencies": {
"@napi-rs/cli": "^2.18.0",
"@types/node": "^20.11.24",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.4.12",
"tempy": "^1.0.1",
"vitest": "^1.3.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 10"
},
"napi": {
"name": "rclonefile",
"triples": {
"additional": [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"universal-apple-darwin"
]
}
}
}