-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.8 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "genshin-impact-auto-track",
"version": "0.3.0",
"description": "Node.js N-API binding of GenshinImpact AutoTrack DLL.",
"keywords": [
"genshin",
"impact"
],
"repository": {
"type": "git",
"url": "https://github.com/pboymt/genshin-impact-auto-track.git"
},
"author": "pboymt",
"license": "MIT",
"main": "lib/main.js",
"types": "lib/main.d.ts",
"os": [
"win32"
],
"cpu": [
"x64"
],
"files": [
"binding.gyp",
"download-dll.ps1",
"lib/*.js",
"lib/*.d.ts",
"src/"
],
"binary": {
"module_name": "genshin-impact-auto-track",
"module_path": "./lib/binding/napi-v{napi_build_version}-{platform}-{libc}-{arch}",
"remote_path": "v{version}",
"package_name": "napi-v{napi_build_version}-{platform}-{libc}-{arch}.tar.gz",
"host": "https://github.com/pboymt/genshin-impact-auto-track/releases/download/",
"napi_versions": [
4,
8
]
},
"scripts": {
"download:clean": "pwsh download-dll.ps1 -clean",
"prebuild": "pwsh download-dll.ps1 && npm run configure",
"install": "node-pre-gyp install --fallback-to-build",
"test": "node ./test",
"configure": "node-pre-gyp configure",
"build": "node-pre-gyp build",
"build:debug": "node-pre-gyp build --debug",
"rebuild": "node-pre-gyp rebuild",
"pack": "node-pre-gyp package",
"doc": "typedoc"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.10",
"node-addon-api": "*"
},
"devDependencies": {
"@types/node": "^18.8.5",
"node-pre-gyp-github": "1.4.4",
"typedoc": "^0.23.15"
},
"peerDependencies": {
"node-gyp": "8.x"
},
"peerDependenciesMeta": {
"node-gyp": {
"optional": true
}
},
"optionalDependencies": {
"node-gyp": "8.x"
},
"gypfile": true,
"cvAutoTrackVersion": "7.1.6"
}