-
-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.02 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.02 KB
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
{
"name": "@example/hdom-benchmark2",
"private": true,
"description": "hdom update performance benchmark w/ config options",
"version": "0.0.1",
"repository": "https://codeberg.org/thi.ng/umbrella",
"author": "Karsten Schmidt <k+npm@thi.ng>",
"license": "Apache-2.0",
"scripts": {
"start": "vite --host --open",
"build": "tsc && vite build --base='./'",
"preview": "vite preview --host --open"
},
"dependencies": {
"@thi.ng/binary": "workspace:^",
"@thi.ng/hdom": "workspace:^",
"@thi.ng/hdom-components": "workspace:^",
"@thi.ng/hiccup-css": "workspace:^",
"@thi.ng/strings": "workspace:^",
"@thi.ng/transducers": "workspace:^"
},
"browser": {
"process": false,
"setTimeout": false,
"util": false
},
"thi.ng": {
"readme": [
"binary",
"hdom",
"hdom-components",
"hiccup-css",
"transducers"
],
"screenshot": "examples/hdom-benchmark2.png"
},
"devDependencies": {
"typescript": "^5.9.3",
"vite": "^7.3.2"
},
"keywords": [
"browser",
"example",
"transducer",
"ui"
]
}