-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 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
{
"name": "msfs-simconnect-nodejs",
"author": {
"name": "CockpitConnect"
},
"version": "0.0.2",
"main": "index.js",
"homepage": "https://github.com/CockpitConnect/msfs-simconnect-nodejs",
"repository": {
"type": "git",
"url": "git+https://github.com/CockpitConnect/msfs-simconnect-nodejs.git"
},
"description": "Microsoft Flight Simulator 2020 SimConnect wrapper for NodeJS",
"keywords": [
"msfs",
"FlightSimulator",
"SimConnect",
"SDK"
],
"bugs": {
"url": "https://github.com/CockpitConnect/msfs-simconnect-nodejs/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"bundleDependencies": false,
"dependencies": {
"nan": "^2.14.0"
},
"deprecated": false,
"gypfile": false,
"license": "MIT",
"scripts": {
"build": "node-gyp configure build --msvs_version=2019 --arch=x64",
"rebuild": "node-gyp configure rebuild --msvs_version=2019 --arch=x64"
}
}