-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.03 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
{
"name": "sloptester",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"tauri": "tauri",
"lint": "biome check .",
"lint:fix": "biome check --apply .",
"format": "biome format . && cd src-tauri && cargo fmt --check",
"format:fix": "biome format --write . && cd src-tauri && cargo fmt"
},
"dependencies": {
"@tailwindcss/vite": "^4.0.7",
"@tauri-apps/api": "^2.0.0-beta.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-vue-next": "^0.475.0",
"radix-vue": "^1.9.16",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7",
"vue": "^3.3.4"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tauri-apps/cli": "^2.0.0-beta.0",
"@types/node": "^22.13.4",
"@vitejs/plugin-vue": "^5.0.4",
"@vueuse/core": "^12.7.0",
"tailwindcss": "^4.0.7",
"typescript": "^5.3.3",
"vite": "^5.0.0",
"vue-tsc": "^2.2.2"
}
}