-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.81 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
45
46
47
48
49
50
51
52
53
{
"name": "vrum",
"version": "0.1.0",
"author": "Cristian Mircea Messel <mess110@gmail.com>",
"license": "MIT",
"scripts": {
"postinstall": "yarn build",
"http": "http-server -c-1 -o",
"https": "http-server -c-1 -S -C cert.pem -o",
"genkey": "openssl req -newkey rsa:2048 -new -nodes -x509 -days 3650 -keyout key.pem -out cert.pem",
"build": "node src/tools/build.js",
"dist:exe": "yarn build && yarn clean:tmp && node src/tools/dist.js && cd tmp && yarn install && cd .. && yarn clean:tmp",
"dist:web": "yarn build && node src/tools/publish.js",
"clean:tmp": "rm -rf ./tmp",
"new_game": "node src/tools/newGame.js",
"start": "node src/tools/help.js",
"h": "yarn start"
},
"dependencies": {
"@tweenjs/tween.js": "^17.2.0",
"camera-controls": "yomotsu/camera-controls",
"ccapture.js": "^1.1.0",
"file-saver": "^1.3.8",
"fontfaceobserver": "^2.1.0",
"howler": "1.1.29",
"html2canvas": "^1.0.0-alpha.12",
"ocean": "jbouny/ocean",
"qrcodejs": "davidshimjs/qrcodejs",
"shader-particle-engine": "squarefeet/ShaderParticleEngine",
"stats.js": "mrdoob/stats.js",
"rstats": "spite/rstats",
"three": "^0.116.0",
"threex.dynamictexture": "jeromeetienne/threex.dynamictexture",
"threex.keyboardstate": "jeromeetienne/threex.keyboardstate",
"threex.volumetricspotlight": "jeromeetienne/threex.volumetricspotlight",
"threex.windowresize": "jeromeetienne/threex.windowresize",
"virtualjoystick.js": "jeromeetienne/virtualjoystick.js"
},
"devDependencies": {
"opn": "^6.0.0",
"brace": "^0.11.1",
"colors": "^1.3.2",
"concat-files": "^0.1.1",
"gh-pages": "^2.0.1",
"glob": "^7.1.3",
"http-server": "^0.11.1",
"ncp": "^2.0.0",
"uglify-es": "^3.3.9"
},
"engines": {
"node": ">=10.13"
}
}