-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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": "pack-spheres",
"version": "1.0.3",
"description": "Brute force circle/sphere packing in 2D or 3D",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "[email protected]",
"url": "https://github.com/mattdesl"
},
"dependencies": {},
"devDependencies": {
"canvas-sketch": "^0.7.1",
"canvas-sketch-cli": "^1.11.6",
"canvas-sketch-util": "^1.10.0",
"three": "^0.109.0"
},
"scripts": {
"demo0": "canvas-sketch demos/circles-in-square.js --open",
"demo1": "canvas-sketch demos/circles-in-circle.js --open",
"demo2": "canvas-sketch demos/spheres-in-cube.js --open"
},
"keywords": [
"sphere",
"circle",
"pack",
"packing",
"2d",
"3d",
"packed",
"shape",
"shapes"
],
"repository": {
"type": "git",
"url": "git://github.com/mattdesl/pack-spheres.git"
},
"homepage": "https://github.com/mattdesl/pack-spheres",
"bugs": {
"url": "https://github.com/mattdesl/pack-spheres/issues"
}
}