-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.68 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.68 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "puzzles-web",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"preview:pages": "wrangler pages dev dist",
"format": "biome format --write .",
"lint": "biome lint .",
"check": "biome check --write .",
"prepare": "husky"
},
"dependencies": {
"@awesome.me/webawesome": "^3.5.0",
"@lit-labs/observers": "^2.1.0",
"@lit-labs/signals": "^0.2.0",
"@lit/context": "^1.1.6",
"@material-design-icons/svg": "^0.14.15",
"@sentry/browser": "^10.49.0",
"@sentry/wasm": "^10.49.0",
"colorjs.io": "^0.5.2",
"comlink": "^4.4.2",
"dexie": "^4.4.2",
"lit": "^3.3.2",
"lucide-static": "^1.8.0",
"signal-utils": "^0.21.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@mdit/plugin-attrs": "^0.25.2",
"@mdit/plugin-icon": "^0.24.2",
"@sentry/vite-plugin": "^5.2.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^24.12.2",
"@vite-pwa/assets-generator": "^1.0.2",
"handlebars": "^4.7.9",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"markdown-it": "^14.1.1",
"markdown-it-anchor": "^9.2.0",
"rollup-plugin-license": "^3.7.1",
"rollup-plugin-visualizer": "^7.0.1",
"typescript": "~5.9.0",
"vite": "^7.3.2",
"vite-plugin-pwa": "^1.2.0",
"vite-plugin-sitemap": "^0.8.2",
"workbox-core": "^7.3.0",
"workbox-precaching": "^7.3.0",
"workbox-routing": "^7.3.0",
"workbox-window": "^7.3.0",
"wrangler": "^4.83.0"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,css,html}": [
"biome check --write --no-errors-on-unmatched"
]
}
}