-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "ovrjs",
"version": "0.0.2",
"description": "OpenVR bindings for NodeJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"example:overlay": "ts-node examples/overlay_gradient.ts",
"build": "node-gyp rebuild && npm run build:tsc",
"build:tsc": "tsc",
"clean": "node-gyp clean",
"build:headers": "ts-node ./build-headers.ts",
"build:dev": "node-gyp -j 16 build --debug"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danwillm/NodeOpenVR.git"
},
"keywords": [
"openvr"
],
"author": "danwillm",
"license": "MIT",
"gypfile": true,
"bugs": {
"url": "https://github.com/danwillm/NodeOpenVR/issues"
},
"homepage": "https://github.com/danwillm/NodeOpenVR#readme",
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "*"
},
"devDependencies": {
"@types/node": "^18.11.17",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
}
}