-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.01 KB
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
{
"name": "rclonefile",
"version": "2.0.5",
"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 pre-publish -p npm --no-gh-release",
"test": "vitest",
"universal": "napi universalize",
"version": "napi version"
},
"devDependencies": {
"@napi-rs/cli": "^3.5.0",
"@types/node": "^25.0.0",
"prettier": "^3.7.0",
"prettier-plugin-packagejson": "^2.5.0",
"tempy": "^3.1.0",
"vitest": "^4.0.0"
},
"packageManager": "yarn@4.6.0",
"engines": {
"node": ">= 24"
},
"napi": {
"binaryName": "rclonefile",
"targets": [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"universal-apple-darwin"
]
}
}