-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
51 lines (51 loc) · 1.16 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
{
"name": "mesh-simplify",
"version": "2.0.0",
"description": "Surface Simplification via Quadric Error Metrics",
"main": "index.js",
"license": "MIT",
"scripts": {},
"author": {
"name": "Andrew Taber",
"email": "[email protected]",
"url": "http://taber.space/"
},
"dependencies": {
"gl-vec3": "^1.0.3",
"gl-vec4": "^1.0.1",
"heap": "^0.2.6",
"ndarray": "^1.0.18",
"ndarray-fill": "^1.0.1",
"ndarray-linear-solve": "^3.0.0",
"ndarray-ops": "^1.2.2",
"normals": "^1.1.0",
"remove-degenerate-cells": "^1.0.0",
"remove-orphan-vertices": "^1.0.0"
},
"devDependencies": {
"bunny": "^1.0.1",
"gl-wireframe": "^1.0.1",
"mesh-viewer": "^1.0.0",
"regl": "^1.3.0",
"regl-camera": "^2.1.1"
},
"repository": {
"type": "git",
"url": "git://github.com/ataber/mesh-simplify.git"
},
"keywords": [
"ecosystem:stackgl",
"mesh",
"simplify",
"decimate",
"decimation",
"quadric",
"error",
"surface",
"simplification"
],
"homepage": "https://github.com/ataber/mesh-simplify",
"bugs": {
"url": "https://github.com/ataber/mesh-simplify/issues"
}
}