forked from acamposuribe/p5.brush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 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
44
{
"name": "p5.brush",
"version": "0.0.1-beta",
"description": "Unlock custom brushes, natural fill effects and intuitive hatching in p5.js",
"main": "p5.brush.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:types": "tsc --project tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acamposuribe/p5.brush.git"
},
"typings": "dist/p5.brush.d.ts",
"exports": {
".": {
"import": "./p5.brush.js",
"require": "./p5.brush.js",
"types": "./dist/p5.brush.d.ts"
},
"./minified": "./p5.brush.min.js"
},
"keywords": [
"brush",
"children",
"p5",
"p5js",
"brushes",
"watercolor",
"flowfield",
"p5-library",
"hatching"
],
"author": "Alejandro Campos Uribe",
"license": "MIT",
"bugs": {
"url": "https://github.com/acamposuribe/p5.brush/issues"
},
"homepage": "https://p5-brush.cargo.site/",
"devDependencies": {
"@types/p5": "^1.7.3",
"typescript": "^5.3.2"
}
}