forked from thi-ng/umbrella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.17 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
{
"name": "@example/svg-waveform",
"private": true,
"version": "0.0.1",
"description": "Additive waveform synthesis & SVG visualization with undo/redo",
"repository": "https://github.com/[your-gh-username]/rs-icep",
"author": "Karsten Schmidt",
"license": "MIT",
"scripts": {
"start": "vite --host --open",
"build": "tsc && vite build --base='./'",
"preview": "vite preview --host --open"
},
"dependencies": {
"@thi.ng/api": "workspace:^",
"@thi.ng/atom": "workspace:^",
"@thi.ng/checks": "workspace:^",
"@thi.ng/expose": "workspace:^",
"@thi.ng/hdom": "workspace:^",
"@thi.ng/hiccup-svg": "workspace:^",
"@thi.ng/interceptors": "workspace:^",
"@thi.ng/transducers": "workspace:^"
},
"browser": {
"process": false,
"setTimeout": false,
"util": false
},
"thi.ng": {
"readme": [
"atom",
"hdom",
"hiccup-svg",
"interceptors",
"transducers"
],
"screenshot": "examples/svg-waveform.jpg"
},
"devDependencies": {
"typescript": "^5.6.2",
"vite": "^5.4.8"
},
"keywords": [
"2d",
"atom",
"browser",
"example",
"generator",
"interactive",
"reactive",
"svg",
"transducer",
"ui",
"visualization",
"waveform"
]
}