forked from dirty49374/node-xed
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
{
"name": "@pubgcorp/node-xed",
"version": "0.0.20221101",
"description": "",
"main": "index.js",
"types": "index.d.ts",
"gypfile": true,
"bin": {
"node-xed": "./bin/xed.js"
},
"scripts": {
"build": "node-pre-gyp rebuild",
"install": "node-pre-gyp install --fallback-to-build",
"clean": "node-pre-gyp clean",
"dev": "nodemon -x \"npm run build && node example.js\" -e gyp,js,cpp,h",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0"
},
"repository": {
"type": "git",
"url": "https://github.com/pubg/node-xed.git"
},
"binary": {
"module_name": "node-xed",
"module_path": "./lib/binding/{node_abi}-{platform}-{arch}",
"host": "https://github.com/pubg/node-xed/releases/download/",
"remote_path": "v{version}",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}.tar.gz"
},
"author": "dirty49374",
"license": "Apache-2.0",
"devDependencies": {
"node-gyp": "^9.3.0",
"nodemon": "^2.0.20",
"conventional-changelog-cli": "^2.2.2"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.10",
"bindings": "^1.5.0",
"node-addon-api": "^5.0.0",
"yargs": "^14.2.0"
}
}