-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1019 Bytes
/
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
{
"name": "stormlib-node",
"version": "1.3.6",
"description": "Node native module of StormLib C++ library",
"main": "dist/stormlib.node",
"typings": "src/index.d.ts",
"author": "Haaxor1689",
"license": "MIT",
"scripts": {
"ts:build": "tsc",
"compile": "node scripts/compile.js",
"configure": "node scripts/pre-configure.js && node-gyp configure",
"build": "node-gyp build && node scripts/post-build.js",
"install": "npm run configure && npm run build && npm run ts:build",
"prepare": "git submodule update --init --recursive && npm run compile && npm run install"
},
"dependencies": {
"fs-extra": "^11.1.1",
"node-addon-api": "^6.1.0",
"typescript": "^5.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Haaxor1689/stormlib-node.git"
},
"bugs": {
"url": "https://github.com/Haaxor1689/stormlib-node/issues"
},
"homepage": "https://github.com/Haaxor1689/stormlib-node",
"publishConfig": {
"access": "public"
}
}