-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
44 lines (44 loc) · 1.03 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
{
"name": "p5.brush",
"version": "1.1.4",
"description": "Unlock custom brushes, natural fill effects and intuitive hatching in p5.js",
"main": "src/index.js",
"module": "src/index.js",
"browser": "dist/p5.brush.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup --config -w"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/acamposuribe/p5.brush.git"
},
"keywords": [
"brush",
"p5",
"p5js",
"brushes",
"watercolor",
"flowfield",
"p5-library"
],
"author": "Alejandro Campos Uribe",
"license": "MIT",
"bugs": {
"url": "https://github.com/acamposuribe/p5.brush/issues"
},
"homepage": "https://p5-brush.cargo.site/",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.9.4",
"rollup-plugin-cleanup": "^3.2.1"
},
"peerDependencies": {
"p5": "^1.11.0"
},
"dependencies": {
"esm-seedrandom": "^3.0.5"
}
}