-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathpackage.json
40 lines (40 loc) · 988 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
34
35
36
37
38
39
40
{
"name": "kinect2",
"version": "0.3.0",
"description": "Nodejs library to access the kinect 2 data from the official MS SDK",
"repository": "https://github.com/wouterverweirder/kinect2",
"keywords": [
"kinect2",
"sdk"
],
"author": "Wouter Verweirder",
"license": "MIT",
"bugs": {
"url": "https://github.com/wouterverweirder/kinect2/issues"
},
"homepage": "https://github.com/wouterverweirder/kinect2",
"main": "lib/kinect2.js",
"dependencies": {
"node-addon-api": "^8.0.0",
"node-gyp-build": "^4.8.1"
},
"engines": {
"node": ">= 10.16.0"
},
"scripts": {
"install": "node-gyp-build",
"compile": "prebuildify --napi",
"compile:win": "prebuildify --napi --platform=win32 --arch=x64",
"copy-dlls": "xcopy \"C:\\Program Files\\Azure Kinect Body Tracking SDK\\tools\\\" . /H /C /Y"
},
"gypfile": true,
"binary": {
"napi_versions": [
6
]
},
"devDependencies": {
"prebuildify": "^6.0.1",
"rimraf": "^5.0.7"
}
}