forked from dmnsgn/primitive-geometry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·75 lines (75 loc) · 1.69 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
68
69
70
71
72
73
74
75
{
"name": "primitive-geometry",
"version": "2.9.1",
"description": "Geometries for 3D rendering, including normals, UVs and cell indices (faces). Perfect if you want to supercharge your dependency folder... with 30KB of geometries.",
"keywords": [
"simplicial",
"complex",
"mesh",
"geom",
"geometry",
"primitive",
"stackgl",
"glsl",
"webgl",
"gl",
"quad",
"plane",
"cube",
"rounded-cube",
"cylinder",
"cone",
"capsule",
"sphere",
"icosphere",
"ellipsoid",
"torus",
"platonic-solid",
"tetrahedron",
"icosahedron",
"ellipse",
"disc",
"squircle",
"superellipse",
"reuleux",
"box",
"circle"
],
"homepage": "https://github.com/dmnsgn/primitive-geometry",
"bugs": "https://github.com/dmnsgn/primitive-geometry/issues",
"repository": "dmnsgn/primitive-geometry",
"funding": [
{
"type": "individual",
"url": "https://paypal.me/dmnsgn"
},
{
"type": "individual",
"url": "https://commerce.coinbase.com/checkout/56cbdf28-e323-48d8-9c98-7019e72c97f3"
}
],
"license": "MIT",
"author": "Damien Seguin (https://github.com/dmnsgn)",
"type": "module",
"exports": "./index.js",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "npx snowdev build",
"deps": "npx snowdev install",
"dev": "npx snowdev dev"
},
"devDependencies": {
"async-preloader": "^7.0.0",
"cameras": "^3.1.1",
"es-module-shims": "^1.5.17",
"gl-matrix": "^3.4.3",
"pex-context": "^3.0.0-alpha.1",
"pex-geom": "^3.0.0-alpha.3",
"tweakpane": "^3.1.0"
},
"engines": {
"node": ">=15.0.0",
"npm": ">=7.0.0"
}
}