forked from Supamiu/dll-inject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "@ffxiv-teamcraft/dll-inject",
"version": "0.0.15",
"description": "LoadLibrary-based DLL injection for Windows aiming at injecting stuff for FFXIV",
"main": "index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "[email protected]:Supamiu/dll-inject.git"
},
"author": "Supamiu",
"license": "MIT",
"gypfile": "true",
"binary": {
"napi_versions": [
2,
3
]
},
"scripts": {
"compile": "node-gyp rebuild",
"test": "npm run compile && node test/index.js",
"install": "prebuild-install --runtime napi || node install.js",
"rebuild": "node-gyp rebuild",
"prebuild": "prebuild -t 30.0.0 -t 31.0.0 -r electron --strip --verbose",
"upload:electron": "prebuild -t 30.0.0 -t 31.0.0 -r electron --strip --verbose --upload ${PREBUILD_GH_TOKEN}"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"semantic-release": "^24.2.0",
"node-gyp": "^10.2.0",
"prebuild": "^13.0.1"
},
"dependencies": {
"bindings": "^1.5.0",
"cross-spawn": "^5.1.0",
"nan": "^2.22.0",
"prebuild-install": "^7.1.2"
}
}