-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
33 lines (33 loc) · 1.01 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
{
"name": "@georgedoescode/generative-utils",
"version": "1.0.38",
"description": "A collection of handy generative art utilities",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/georgedoescode/generative-utils.git"
},
"scripts": {
"build-module": "esbuild src/index.js --bundle --minify --format=esm --outfile=dist/esm/index.js",
"build-cjs": "esbuild src/index.js --bundle --minify --format=cjs --outfile=dist/cjs/index.js"
},
"author": "George Francis",
"license": "MIT",
"bugs": {
"url": "https://github.com/georgedoescode/generative-utils/issues"
},
"homepage": "https://github.com/georgedoescode/generative-utils#readme",
"dependencies": {
"@timohausmann/quadtree-js": "^1.2.4",
"d3": "^7.0.0",
"d3-delaunay": "^6.0.2",
"random": "^3.0.6",
"random-seed": "^0.3.0",
"seedrandom": "^3.0.5",
"simplex-noise": "^2.4.0"
},
"devDependencies": {
"esbuild": "^0.12.9"
}
}