-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.82 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.82 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "heliocentric-vr",
"version": "1.0.0",
"description": "Heliocentric Architecture VR using A-Frame",
"main": "dist/html/hemisphere.scene.html",
"author": "Trygve Wastvedt (trygve.wastvedt@gmail.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/twastvedt/heliocentric-vr"
},
"dependencies": {
"@types/animejs": "^2.0.0",
"@types/browserify": "^12.0.33",
"@types/dateformat": "^1.0.1",
"@types/three": "^0.89.6",
"@types/tween.js": "^16.9.0",
"aframe": "~0.7",
"aframe-animation-component": "^4.0.0-beta9",
"aframe-extras": "^3.13.1",
"aframe-keyboard-controls": "^1.3.0",
"aframe-stereo-component": "^0.6.0",
"aframe-sun-sky": "^3.0.3",
"aframe-template-component": "^3.2.1",
"dateformat": "^3.0.3",
"factor-bundle": "^2.5.0",
"globstar": "^1.0.0",
"glsl-diffuse-oren-nayar": "^1.0.2",
"glslify": "^6.1.0",
"parallelshell": "^3.0.2",
"suncalc": "^1.8.0",
"tsify": "^3.0.4",
"typescript": "^2.7.1",
"watch-cli": "^0.2.3",
"watchify": "^3.10.0"
},
"config": {
"curScene": "hemisphere"
},
"scripts": {
"build:ts": "browserify src/scenes/%npm_package_config_curScene%.scene.ts -p [ tsify --noImplicitAny ] -t glslify -o docs/javascript/bundle-%npm_package_config_curScene%.js",
"build:ts-dev": "npm run build:ts -- --debug",
"watch:ts": "rm -f docs/javascript/bundle-%npm_package_config_curScene%.js && watchify src/scenes/%npm_package_config_curScene%.scene.ts -v -p [ tsify --noImplicitAny ] -t glslify -o docs/javascript/bundle-%npm_package_config_curScene%.js --debug --ignore-watch=\"docs/**/**\"",
"serve": "live-server --wait=300 --no-browser docs",
"dev": "parallelshell \"npm run watch:ts\" \"npm run serve\""
},
"devDependencies": {
"npm-watch": "^0.3.0"
}
}