forked from wouterverweirder/kinect-azure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 867 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
{
"name": "kinect-azure",
"version": "0.0.10",
"description": "Nodejs library to access the azure kinect data from the official SDK",
"repository": "https://github.com/wouterverweirder/kinect-azure",
"main": "lib/kinect-azure.js",
"dependencies": {
"bindings": "~1.2.1",
"download": "^7.1.0",
"extract-zip": "^1.6.7",
"fs-extra": "^8.1.0",
"node-addon-api": "^1.0.0"
},
"engines": {
"node": ">= 10.6.0"
},
"scripts": {
"install": "node ./scripts/install.js && node-gyp rebuild",
"clean": "node ./scripts/clean.js",
"build": "npm i && cd ./examples/electron && npm start",
"start": "cd ./examples/electron && npm start",
"reinstall": "npm run clean && npm run install",
"prepublishOnly": "rimraf ./examples/**/node_modules"
},
"gypfile": true,
"devDependencies": {
"rimraf": "^3.0.0"
}
}