-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.52 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
{
"name": "tov-ui",
"type": "module",
"version": "0.0.0",
"scripts": {
"prepare": "husky install",
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
"docs:vercel": "cross-env BUILD_VERCEL=true vitepress build",
"docs:preview": "vitepress preview",
"test": "vitest",
"coverage": "vitest --coverage",
"tov-ui:css": "esno ./scripts/style-bundle.ts"
},
"dependencies": {
"vue": "^3.3.11"
},
"devDependencies": {
"@ant-design/colors": "^7.0.0",
"@mistjs/eslint-config": "^1.0.0",
"@types/fs-extra": "^11.0.4",
"@types/less": "^3.0.6",
"@types/node": "^20.10.4",
"@vitejs/plugin-vue": "^4.5.2",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vitest/coverage-v8": "^1.0.4",
"@vue/test-utils": "^2.4.3",
"cross-env": "^7.0.3",
"eslint": "^8.55.0",
"esno": "^4.0.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"husky": "^8.0.3",
"jsdom": "^23.0.1",
"less": "^4.2.0",
"lint-staged": "^15.2.0",
"postcss": "^8.4.32",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.0.7",
"vite-plugin-dts": "^3.6.4",
"vite-plugin-tsx-auto-props": "^0.0.7",
"vite-plugin-vitepress-demo": "^2.2.1",
"vitepress": "1.0.0-rc.29",
"vitest": "^1.0.4",
"vue-tsc": "^1.8.25"
},
"lint-staged": {
"./**/*.{ts,json,vue,md,jsx,tsx,js,css,less}": [
"eslint --fix"
]
}
}