-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.94 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "devenvlite",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"tauri": "tauri",
"commit": "git-cz"
},
"dependencies": {
"@tauri-apps/api": "2.1.1",
"@tauri-apps/plugin-clipboard-manager": "2.1.0-beta.6",
"@tauri-apps/plugin-dialog": "2.0.1",
"@tauri-apps/plugin-fs": "2.0.2",
"@tauri-apps/plugin-process": "2.0.0",
"@tauri-apps/plugin-store": "2.1.0",
"@tauri-apps/plugin-updater": "2.0.0",
"@types/uuid": "^10.0.0",
"@vee-validate/zod": "^4.14.7",
"@vueuse/core": "^11.2.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-vue-next": "^0.456.0",
"mitt": "^3.0.1",
"radix-vue": "^1.9.9",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.0.3",
"vee-validate": "^4.14.7",
"vue": "^3.5.12",
"vue-i18n": "^10.0.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@intlify/unplugin-vue-i18n": "^5.3.1",
"@release-it/bumper": "^6.0.1",
"@release-it/conventional-changelog": "^9.0.3",
"@tailwindcss/typography": "^0.5.15",
"@tauri-apps/cli": "2.1.0",
"@types/node": "^22.9.0",
"@vitejs/plugin-vue": "^5.2.0",
"autoprefixer": "^10.4.20",
"commitizen": "^4.3.1",
"cz-git": "^1.11.0",
"czg": "^1.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"oxlint": "^0.11.1",
"postcss": "^8.4.49",
"release-it": "^17.10.0",
"shadcn-vue": "^0.11.2",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vue-tsc": "^2.1.10"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc,html,vue,css,md}": [
"biome check --apply --no-errors-on-unmatched",
"biome check --apply-unsafe --no-errors-on-unmatched",
"biome format --write --no-errors-on-unmatched",
"biome lint --apply --no-errors-on-unmatched"
],
"**/*": [
"git add"
]
},
"volta": {
"node": "22.2.0",
"pnpm": "9.13.0"
}
}