-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.41 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
{
"name": "@chainsafe/xdelta3-node",
"version": "1.0.2",
"type": "commonjs",
"description": "A xdelta3 native binding for Nodejs",
"license": "Apache-2.0",
"author": "ChainSafe Systems",
"homepage": "https://github.com/ChainSafe/xdelta3-node#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ChainSafe/xdelta3-node.git"
},
"bugs": {
"url": "https://github.com/ChainSafe/xdelta3-node/issues"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"prepublishOnly": "napi prepublish -t npm",
"test": "vitest run --dir test/unit",
"universal": "napi universal",
"version": "napi version"
},
"main": "index.js",
"types": "index.d.ts",
"engines": {
"node": ">= 10"
},
"files": [
"index.js",
"index.d.ts"
],
"dependencies": {},
"devDependencies": {
"@types/node": "^22.7.2",
"@napi-rs/cli": "^3.0.0-alpha.63",
"vitest": "^2.1.1"
},
"keywords": [
"xdelta3",
"binary diff",
"delta compression",
"VCDIFF",
"RFC3284"
],
"napi": {
"binaryName": "xdelta3-node",
"targets": [
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-musl",
"x86_64-pc-windows-msvc"
]
}
}