forked from generative-design/Code-Package-p5.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·78 lines (78 loc) · 2.29 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "Generative-Design-Code-Package-p5-js",
"version": "1.3.4",
"description": "Code package of the book 'Generative Design: Visualize, Program, and Create with JavaScript in p5.js'",
"scripts": {
"start": "npm run watch",
"watch": "budo --host localhost --dir . --open --live --watch-glob '**/*.{html,css,js}'",
"setup": "cd libraries && node setup.js",
"encapsulate": "cd libraries && node encapsulate.js"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/generative-design/Code-Package-p5.js.git"
},
"keywords": [
"processing",
"p5",
"p5.js",
"generative",
"computational",
"design"
],
"contributors": [
"Benedikt Groß (http://benedikt-gross.de/)",
"Hartmut Bohnacker (https://www.hartmut-bohnacker.de/)",
"Joey Lee (http://jk-lee.com/projects/)",
"Niels Poldervaart (http://nielspoldervaart.nl/)"
],
"bugs": {
"url": "https://github.com/generative-design/Code-Package-p5.js/issues"
},
"homepage": "http://www.generative-gestaltung.de/2",
"dependencies": {
"budo": "^11.7.0",
"cheerio": "^1.0.0-rc.12",
"chroma-js": "^2.4.2",
"fs-extra": "^9.1.0",
"fs-sync": "^1.0.6",
"g.js": "^0.1.17",
"generative-design-library.js": "^0.1.2",
"glob": "^7.2.3",
"jquery": "^3.6.0",
"opentype.js": "^1.3.4",
"p5": "^1.4.1",
"source-map-concat": "^1.0.1",
"source-map-dummy": "^1.0.0",
"source-map-resolve": "^0.6.0",
"tooltipster": "^4.2.8"
},
"install": {
"sources": {
"p5": [
"node_modules/p5/lib/p5.min.js"
],
"generative-design-library": [
"node_modules/generative-design-library.js/dist/generative-design-library.js"
],
"g.js": [
"node_modules/g.js/dist/g.js"
],
"opentype.js": [
"node_modules/opentype.js/dist/opentype.js"
],
"tooltipster": [
"node_modules/tooltipster/dist/js/tooltipster.bundle.js",
"node_modules/tooltipster/dist/css/tooltipster.bundle.css",
"node_modules/tooltipster/dist/css/plugins/tooltipster/sideTip/themes/tooltipster-sideTip-noir.min.css"
],
"jquery": [
"node_modules/jquery/dist/jquery.js"
],
"chroma-js": [
"node_modules/chroma-js/chroma.js"
]
}
}
}