-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "glsl-raytrace",
"version": "1.0.0",
"description": "Given a signed distance function and ray, trace a scene to find the first point of intersection.",
"main": "index.glsl",
"license": "MIT",
"scripts": {
"start": "beefy demo.js:bundle.js -- -t glslify",
"bundle": "browserify demo.js -o bundle.js -t glslify"
},
"author": {
"name": "Hugh Kennedy",
"email": "[email protected]",
"url": "http://hughsk.io/"
},
"dependencies": {},
"devDependencies": {
"a-big-triangle": "^1.0.0",
"beefy": "^2.1.3",
"browserify": "^9.0.3",
"canvas-fit": "^1.2.0",
"gl-context": "^0.1.1",
"gl-shader": "^4.0.0",
"gl-toy": "^1.0.0",
"glsl-noise": "0.0.0",
"glsl-smooth-min": "^1.0.0",
"glsl-square-frame": "^1.0.1",
"glsl-camera-ray": "^1.0.0",
"glsl-look-at": "^1.0.0",
"glslify": "^2.0.1"
},
"repository": {
"type": "git",
"url": "git://github.com/stackgl/glsl-raytrace.git"
},
"keywords": [
"ecosystem:stackgl"
],
"homepage": "https://github.com/stackgl/glsl-raytrace",
"bugs": {
"url": "https://github.com/stackgl/glsl-raytrace/issues"
}
}