-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.49 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
{
"name": "web-client",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format:check": "prettier --check \"src/**/*.{ts,css}\"",
"format:write": "prettier --write \"src/**/*.{ts,css}\"",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@codemirror/lang-json": "^6.0.2",
"@codemirror/language": "^6.12.3",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.42.0",
"@lezer/highlight": "^1.2.3",
"@lit-labs/router": "^0.1.4",
"@lit/context": "^1.1.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lit": "^3.3.2",
"lucide": "^1.14.0",
"tailwind-merge": "^3.5.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@tailwindcss/vite": "^4.2.4",
"@types/node": "^25.6.0",
"concurrently": "^9.2.1",
"eslint": "10.3.0",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-lit": "2.2.1",
"eslint-plugin-lit-a11y": "5.1.1",
"eslint-plugin-unused-imports": "4.4.1",
"eslint-plugin-wc": "3.1.0",
"globals": "^17.6.0",
"postcss": "^8.5.14",
"prettier": "^3.8.3",
"tailwindcss": "^4.2.4",
"typescript": "~6.0.3",
"typescript-eslint": "^8.59.2",
"vite": "^8.0.10"
},
"packageManager": "pnpm@11.0.8"
}