forked from floh22/native-farsight-module
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 877 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 877 Bytes
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
{
"name": "@floh22/farsight",
"version": "1.3.0",
"description": "A native library to read League of Legends process memory",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"configure": "node-gyp configure",
"rebuild": "node-gyp rebuild --msvs_version=2022",
"build": "node-gyp build --msvs_version=2022",
"build:dev": "node-gyp build --debug",
"start": "node index.js"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "https://github.com/floh22/native-farsight-module.git"
},
"author": "Lars Eble",
"license": "MIT",
"bugs": {
"url": "https://github.com/floh22/native-farsight-module/issues"
},
"homepage": "https://github.com/floh22/native-farsight-module",
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^6.0.0"
}
}