-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 726 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 726 Bytes
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
{
"name": "EnvelopWebVR",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "mkdir -p dist && browserify app/index.js > dist/bundle.js",
"develop": "budo app/index.js:dist/bundle.js -l",
"vr": "budo app/index.js:dist/bundle.js -l --ssl --cors",
"udp": "node UDPServer"
},
"keywords": [],
"author": "Chase Farmer",
"dependencies": {
"brace": "^0.10.0",
"downloadjs": "^1.4.7",
"engine.io": "^3.0.0",
"engine.io-client": "^3.0.0",
"osc": "^2.2.0",
"stats.js": "^0.17.0",
"three": "^0.84.0",
"three-audio-timeline": "git://github.com/cgfarmer4/three-audio-timeline.git"
},
"devDependencies": {
"browserify": "^14.3.0"
}
}