forked from apaleyes/penrose-tiling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 981 Bytes
/
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
{
"name": "penrose-fill-polygon",
"version": "0.5",
"license": "Apache-2.0",
"copyright": "2023",
"description": "Generate random penrose P3 rhombuses to fill a polygon",
"keywords": [
"penrose",
"tiling",
"rhombus",
"P3",
"d3"
],
"homepage": "https://gordonwoodhull.github.io/penrose-fill-polygon/penrose.html",
"bugs": "https://github.com/gordonwoodhull/penrose-fill-polygon/issues",
"author": {
"name": "Gordon Woodhull",
"url": "http://gordon.woodhull.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/gordonwoodhull/penrose-fill-polygon.git"
},
"dependencies": {
"d3-array": "^3.2.4",
"d3-random": "^3.0.1",
"esbuild": "0.18.15",
"npm-watch": "^0.11.0"
},
"watch": {
"build": "penrose-fill-polygon.js"
},
"scripts": {
"build": "esbuild penrose-fill-polygon.js --bundle --global-name=penroseFillPolygon --outfile=penrose-bundle.js",
"watch": "npm-watch"
}
}