forked from mattdesl/canvas-sketch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.77 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "canvas-sketch",
"version": "0.7.7",
"isCanvasSketch": true,
"description": "A utility for quickly prototyping 2D and WebGL sketches",
"main": "./dist/canvas-sketch.umd.js",
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "[email protected]",
"url": "https://github.com/mattdesl"
},
"dependencies": {
"convert-length": "^1.0.1",
"dateformat": "^3.0.3",
"deep-equal": "^1.0.1",
"get-canvas-context": "^1.0.2",
"is-class": "0.0.5",
"is-dom": "^1.0.9",
"is-promise": "^2.1.0",
"right-now": "^1.0.0"
},
"devDependencies": {
"array-almost-equal": "^1.0.0",
"bezier-easing": "^2.1.0",
"camera-project": "^1.0.2",
"canvas-pixels": "0.0.0",
"canvas-sketch-util": "^1.8.0",
"classnames": "^2.2.6",
"clean-pslg": "^1.1.2",
"convex-hull": "^1.0.3",
"d3": "^5.16.0",
"dat.gui": "^0.7.9",
"defined": "^1.0.0",
"density-clustering": "^1.3.0",
"eases": "^1.0.8",
"euclidean-distance": "^1.0.0",
"gl-matrix": "^2.6.1",
"glsl-aastep": "^1.0.1",
"glsl-dither": "^1.0.1",
"glsl-hsl2rgb": "^1.1.0",
"glsl-noise": "0.0.0",
"glslify": "^6.1.1",
"hex-rgb": "^3.0.0",
"lerp": "^1.0.3",
"lineclip": "^1.1.5",
"load-asset": "^1.2.0",
"microbundle": "^0.15.1",
"p5": "^0.7.2",
"parse-color": "^1.0.0",
"perspective-camera": "^2.0.1",
"pngjs": "^3.3.3",
"point-in-triangle": "^1.0.1",
"preact": "^10.16.0",
"preact-router": "^4.1.1",
"prettier": "^3.0.0",
"primitive-icosphere": "^1.0.2",
"primitive-quad": "^2.0.0",
"regl": "^1.3.7",
"seed-random": "^2.2.0",
"three": "^0.154.0",
"triangle-centroid": "^1.0.0",
"two.js": "^0.7.0-beta.3"
},
"scripts": {
"prepublishOnly": "npm run lib:bundle",
"format": "prettier --log-level warn --write examples/**/*.js lib/**/*.js",
"lib:bundle": "npm run lib:bundle:es && npm run lib:bundle:umd",
"lib:bundle:es": "microbundle -i lib/canvas-sketch.js --no-compress --external=none --format=esm -o ./dist/",
"lib:bundle:umd": "microbundle -i lib/canvas-sketch.js --no-compress --sourcemap=inline --external=none --format=umd -o ./dist/",
"lib:watch": "microbundle watch -i lib/canvas-sketch.js --no-compress --sourcemap=inline --external=none --format=\"esm,umd\" -o ./dist/"
},
"keywords": [
"sketch",
"2d",
"processing",
"js",
"p5js",
"3d",
"webgl",
"gl",
"opengl",
"threejs",
"canvas",
"canvas2d",
"generative",
"art",
"generativeart"
],
"repository": {
"type": "git",
"url": "git://github.com/mattdesl/canvas-sketch.git"
},
"homepage": "https://github.com/mattdesl/canvas-sketch",
"bugs": {
"url": "https://github.com/mattdesl/canvas-sketch/issues"
}
}