-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
34 lines (33 loc) · 1.3 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
{
"name": "aframe-hand-tracking-controls-extras",
"version": "0.9.0",
"description": "",
"main": "src/index.js",
"scripts": {
"dev": "npm run watch:full",
"build": "concurrently \"npm run build-extras\" \"npm run build:full\"",
"build-extras": "npm run build:max && npm run build:min",
"build:min": "uglifyjs dist/aframe-hand-tracking-controls-extras.js > dist/aframe-hand-tracking-controls-extras.min.js",
"build:max": "browserify src/hand-tracking-extras.js -p esmify > dist/aframe-hand-tracking-controls-extras.js",
"build:full": "browserify full.js -p esmify > dist/aframe-hand-tracking-controls-extras-full.js",
"watch:full": "watchify full.js -p esmify -o dist/aframe-hand-tracking-controls-extras-full.js"
},
"devDependencies": {
"concurrently":"^7.0.0",
"browserify":"^17.0.0",
"esmify":"^2.1.1",
"uglify-es":"^3.3.9",
"cached-path-relative":"^1.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gftruj/aframe-hand-tracking-controls-extras.git"
},
"keywords": ["aframe", "webxr", "hands", "webvr"],
"author": "gftruj",
"license": "MIT",
"bugs": {
"url": "https://github.com/gftruj/aframe-hand-tracking-controls-extras/issues"
},
"homepage": "https://github.com/gftruj/aframe-hand-tracking-controls-extras#readme"
}