-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.33 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
{
"name": "gl-catmull-clark",
"version": "1.0.0",
"description": "A javascript implementation of the Catmull-Clark subdivision surface algorithm",
"scripts": {
"start": "budo --verbose example/index.js -t glslify --live --open",
"test": "standard"
},
"keywords": [
"stackgl",
"gl",
"webgl",
"mesh",
"model",
"subdivision",
"surface",
"algorithm",
"Catmull",
"Clark",
"Catmull-Clark"
],
"author": "Eric Arnebäck <[email protected]> (https://github.com/Erkaman)",
"license": "MIT",
"devDependencies": {
"geo-3d-transform-mat4": "^1.0.0",
"gl-camera-pos-from-view-matrix": "^1.0.1",
"gl-geometry": "^3.1.0",
"gl-mat4": "^1.1.4",
"gl-now": "^1.4.0",
"gl-quat": "^1.0.0",
"gl-shader": "^4.2.0",
"glsl-noise": "0.0.0",
"glslify": "^5.0.2",
"normals": "^1.0.1",
"orbit-camera": "^1.0.0",
"pnp-gui": "0.0.3",
"vertices-bounding-box": "^1.0.0"
},
"dependencies": {
"es6-set": "^0.1.4",
"gl-quads-to-tris": "^1.0.0",
"gl-vec3": "^1.0.3"
},
"directories": {
"example": "example"
},
"browserify": {
"transform": [
"glslify"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Erkaman/gl-catmull-clark.git"
},
"homepage": "https://github.com/Erkaman/gl-catmull-clark#readme"
}