-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
67 lines (67 loc) · 1.68 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "marching",
"version": "1.2.0",
"description": "Marching.js is a JavaScript library that compiles GLSL ray marchers.",
"main": "js/index.js",
"devDependencies": {
"@bandaloo/merge-pass": "^0.6.4",
"browserify": "^14.5.0",
"codemirror": "^5.5.0",
"get-pixels": "^3.3.2",
"gl-mat4": "^1.2.0",
"gl-texture2d": "^2.1.0",
"gl-vec3": "^1.1.3",
"glsl-diffuse-oren-nayar": "^1.0.2",
"glsl-noise": "0.0.0",
"glsl-sdf-primitives": "0.0.1",
"glsl-specular-gaussian": "^1.0.0",
"glsl-superformula": "^1.0.3",
"glsl-voronoi-noise": "^1.2.2",
"glsl-worley": "^1.0.2",
"glslify": "^6.4.1",
"gulp": "^4.0.2",
"gulp-util": "^3.0.8",
"mousetrap": "^1.6.1",
"osc": "^2.4.4",
"toastr": "^2.1.4",
"tsify": "^4.0.2",
"tweakpane": "^1.5.3",
"typescript": "^3.9.6",
"vinyl-source-stream": "^2.0.0",
"vinyl-transform": "^1.0.0",
"watchify": "^3.10.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx gulp build",
"watch": "npx gulp",
"playground": "npx browserify playground/environment.js -o playground/playground.bundle.js"
},
"author": "Charlie Roberts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/charlieroberts/marching.git"
},
"keywords": [
"glsl",
"ray",
"marching",
"graphics",
"csg",
"constructive",
"solid",
"geometry",
"javascript",
"webgl"
],
"bugs": {
"url": "https://github.com/charlieroberts/marching/issues"
},
"browserify": {
"transform": [
"glslify"
]
},
"homepage": "https://github.com/charlieroberts/marching#readme"
}