-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.46 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
{
"name": "@leo91000/subset-sum",
"version": "1.2.0",
"main": "index.js",
"types": "index.d.ts",
"napi": {
"name": "subset-sum",
"triples": {
"additional": [
"aarch64-apple-darwin",
"aarch64-linux-android",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc",
"armv7-unknown-linux-gnueabihf",
"x86_64-unknown-linux-musl",
"x86_64-unknown-freebsd",
"i686-pc-windows-msvc",
"armv7-linux-androideabi"
]
}
},
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "2.18.4"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release --cargo-name node_subset_sum --cargo-flags=\"-p node_subset_sum\"",
"build:debug": "napi build --platform --cargo-name node_subset_sum --cargo-flags=\"-p node_subset_sum\"",
"prepublishOnly": "napi prepublish -t npm",
"test": "echo \"No test\"",
"version": "napi version"
},
"author": "Léo Coletta <[email protected]>",
"description": "Fast Node.js subset sum implementation",
"repository": "https://github.com/leo91000/subset-sum",
"volta": {
"node": "20.18.0",
"yarn": "1.22.22",
"npm": "10.9.0"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}