-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.08 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
{
"name": "halbu-editor",
"private": true,
"version": "0.2.3",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"check:paths": "node scripts/check-import-case.mjs",
"typecheck": "tsc --noEmit -p ./tsconfig.json",
"test": "vitest run",
"check": "npm run check:paths && npm run typecheck && svelte-check --tsconfig ./tsconfig.json",
"preview": "vite preview",
"preprocess:skills": "python3 static/tools/preprocess/main.py --all",
"tauri": "tauri"
},
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-store": "^2.4.2",
"bootstrap": "^5.3.8",
"clsx": "^2.1.1",
"lucide-svelte": "^0.577.0",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@tauri-apps/cli": "^2.10.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"sass": "^1.97.3",
"svelte": "^5.53.7",
"svelte-check": "^4.4.5",
"tailwindcss": "^3.4.17",
"vite": "^7.3.1",
"vitest": "^4.1.0"
}
}