-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (40 loc) · 1.17 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
44
{
"name": "mesh-ui",
"version": "0.1.3",
"description": "3D UI components for VR",
"author": "Michael Blix <[email protected]>",
"keywords": [
"UI",
"three.js",
"progress bar",
"3D",
"VR"
],
"main": "dist/mesh-ui.min.js",
"scripts": {
"build": "rollup -c",
"build-min": "rollup -c && uglifyjs dist/mesh-ui.js > dist/mesh-ui.min.js",
"build-aframe": "rollup js/aframe-mesh-ui.js --f iife --g aframe:AFRAME --output dist/aframe-mesh-ui.js",
"build-aframe-min": "uglifyjs dist/aframe-mesh-ui.js > dist/aframe-mesh-ui.min.js",
"build-all": "",
"dev": "rollup -c -w",
"dev-aframe": "rollup js/aframe-mesh-ui.js --f iife --g aframe:AFRAME --output dist/aframe-mesh-ui.js -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mkeblx/mesh-ui.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mkeblx/mesh-ui/issues"
},
"homepage": "https://github.com/mkeblx/mesh-ui",
"devDependencies": {
"rollup": "^0.36.0",
"rollup-watch": "^2.5.0",
"script-loader": "^0.7.0",
"uglify-js": "^2.7.3"
},
"dependencies": {}
}