-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 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
54
{
"name": "node-nstool",
"version": "0.1.0",
"description": "Node native module to access nstool.",
"keywords": [
"nstool",
"switch",
"nintendo",
"nca",
"xci"
],
"main": "index.js",
"scripts": {
"install": "node-gyp-build",
"prebuild": "prebuildify --napi",
"build": "node-gyp rebuild",
"build-libraries": "npm-run-all --parallel libfmt liblz4 libmbedtls --serial libtoolchain libpietendo",
"libfmt": "cd src/deps/libfmt && cmake-js rebuild",
"liblz4": "cd src/deps/liblz4 && cmake-js rebuild",
"libmbedtls": "cd src/deps/libmbedtls && cmake-js rebuild",
"libtoolchain": "cd src/deps/libtoolchain && cmake-js rebuild",
"libpietendo": "cd src/deps/libpietendo && cmake-js rebuild",
"clean": "node-gyp clean"
},
"homepage": "https://github.com/Clearmist/node-nstool#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Clearmist/node-nstool.git"
},
"author": {
"name": "Matthew Sanders",
"url": "https://github.com/Clearmist"
},
"license": "ISC",
"dependencies": {
"cmake-js": "^7.3.0",
"node-addon-api": "^8.3.0",
"node-gyp-build": "^4.8.4"
},
"devDependencies": {
"node-gyp": "^11.0.0",
"npm-run-all": "^4.1.5"
},
"gypfile": true,
"binary": {
"napi_versions": [
8
]
},
"config": {
"runtime": "napi",
"target": 8
}
}