-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 962 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
38
39
40
41
{
"name": "trellith",
"private": true,
"version": "0.12.7",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"size": "npm run build && size-limit",
"test": "vitest",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"@preact/signals": "^1.2.3",
"colorjs.io": "^0.5.0",
"preact": "^10.22.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@preact/preset-vite": "^2.8.2",
"@size-limit/file": "^11.1.4",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"eslint": "^8.57.0",
"size-limit": "^11.1.2",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-pwa": "^0.20.0",
"vitest": "^1.6.0",
"wouter-preact": "^3.1.3"
},
"size-limit": [
{
"limit": "100 kB",
"path": "dist/assets/index-*.js"
}
]
}