forked from thi-ng/umbrella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 952 Bytes
/
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
{
"name": "@example/todo-list",
"private": true,
"description": "Obligatory to-do list example with undo/redo",
"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/api": "workspace:^",
"@thi.ng/atom": "workspace:^",
"@thi.ng/hdom": "workspace:^",
"@thi.ng/transducers": "workspace:^"
},
"browser": {
"process": false,
"setTimeout": false,
"util": false
},
"thi.ng": {
"readme": [
"atom",
"hdom",
"paths"
],
"screenshot": "examples/todo-list.png"
},
"devDependencies": {
"typescript": "^4.5.2",
"vite": "^2.6.14"
}
}