-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
36 lines (36 loc) · 858 Bytes
/
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
{
"name": "vixel",
"version": "1.0.8",
"description": "A WebGL voxel path tracer",
"main": "./lib/bundle.js",
"scripts": {
"start": "budo -d example example/index.js:bundle.js --live -- -t glslify",
"build": "browserify index.js -s Vixel -o lib/bundle.js",
"build-example": "browserify example/index.js -o docs/bundle.js && cp example/index.html docs/index.html"
},
"keywords": [
"webgl",
"voxel",
"path tracing"
],
"author": "Rye Terrell",
"browserify": {
"transform": [
"glslify"
]
},
"license": "Unlicense",
"repository": {
"type": "git",
"url": "git+https://github.com/wwwtyro/vixel.git"
},
"dependencies": {
"gl-matrix": "^3.3.0",
"regl": "^1.7.0",
"regl-atmosphere-envmap": "^1.0.5",
"glslify": "^7.1.1"
},
"devDependencies": {
"budo": "^11.6.4"
}
}