forked from antfu-collective/vitesse-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.66 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
{
"type": "module",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "vite build",
"dev": "vite --port 3333",
"lint": "eslint .",
"typecheck": "vue-tsc --noEmit",
"preview": "vite preview",
"test": "vitest",
"up": "taze major -I",
"postinstall": "npx simple-git-hooks"
},
"dependencies": {
"@vueuse/core": "^11.3.0",
"vue": "^3.5.13",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.2",
"@iconify-json/carbon": "^1.2.4",
"@types/node": "^22.9.3",
"@unocss/eslint-config": "^0.64.1",
"@unocss/eslint-plugin": "^0.64.1",
"@unocss/reset": "^0.64.1",
"@vitejs/plugin-vue-jsx": "^4.1.0",
"@vue-macros/jsx": "https://pkg.pr.new/vue-macros/vue-macros/@vue-macros/jsx@9e7d673",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.15.0",
"eslint-plugin-format": "^0.1.2",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"pnpm": "^9.14.2",
"simple-git-hooks": "^2.11.1",
"taze": "^0.18.0",
"transformer-attributify-jsx-sg": "^0.0.9",
"typescript": "^5.7.2",
"unocss": "^0.64.1",
"unplugin-auto-import": "^0.18.5",
"unplugin-vue-components": "npm:[email protected]",
"unplugin-vue-router": "https://pkg.pr.new/unplugin-vue-router@6e5dc20",
"vite": "^5.4.11",
"vite-plugin-inspect": "^0.8.8",
"vite-plugin-vue-devtools": "^7.6.4",
"vite-plugin-vue-layouts": "^0.11.0",
"vitest": "^2.1.5",
"volar-plugin-ignore-attributes": "^0.2.1",
"vue-tsc": "^2.1.10"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}