forked from thi-ng/umbrella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "@example/hdom-canvas-particles",
"private": true,
"description": "2D Bezier curve-guided particle system",
"version": "0.0.1",
"repository": "https://github.com/thi-ng/umbrella",
"author": "Karsten Schmidt <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"start": "vite --open",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@thi.ng/compose": "workspace:^",
"@thi.ng/geom": "workspace:^",
"@thi.ng/hdom": "workspace:^",
"@thi.ng/hdom-canvas": "workspace:^",
"@thi.ng/math": "workspace:^",
"@thi.ng/random": "workspace:^",
"@thi.ng/transducers": "workspace:^",
"@thi.ng/vectors": "workspace:^"
},
"browser": {
"process": false,
"setTimeout": false,
"util": false
},
"thi.ng": {
"readme": [
"geom",
"hdom",
"hdom-canvas",
"hiccup-canvas",
"math",
"random",
"vectors"
],
"screenshot": "examples/hdom-canvas-particles.jpg"
},
"devDependencies": {
"typescript": "^4.5.3",
"vite": "^2.7.1"
}
}