-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.13 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.13 KB
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
{
"name": "handy.js",
"version": "1.0.0",
"description": "Want to add hand pose recognition to your WebXR project? Handy makes defining and recognizing custom hand poses a snap! Why use hand-held controllers when you can use your bare hands? wave Built on Three.js and tested on the Oculus Quest, Handy recognizes over 100 hand poses right out of the box—including the American Sign Language (ASL) alphabet.",
"main": "./dist/Handy.js",
"module": "./src/Handy.js",
"scripts": {
"build-demo": "rollup scripts/main.js -c rollup.config.js --file scripts/main.min.esm.js",
"build": "npm run build-demo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stewdio/handy.js.git"
},
"keywords": [
"WebXR",
"THREE.js"
],
"author": "stewdio",
"license": "MIT",
"bugs": {
"url": "https://github.com/stewdio/handy.js/issues"
},
"homepage": "https://github.com/stewdio/handy.js#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.0",
"rollup": "^2.51.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-terser": "^7.0.2",
"three": "^0.129.0"
}
}