-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.18 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
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
{
"name": "vue-zero-app",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"deploy": "npm run build && gh-pages -d dist",
"prepare": "husky install",
"init:husky": "npm run prepare && node -e \"require('fs').writeFileSync('.husky/pre-commit','npx lint-staged')\"",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix"
},
"dependencies": {
"@iconify/utils": "^3.1.3",
"@unocss/reset": "^66.7.0",
"animate.css": "^4.1.1",
"artplayer": "^5.4.0",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.20",
"diff-match-patch": "^1.0.5",
"element-plus": "^2.14.1",
"motion": "^12.42.2",
"unocss-preset-advance-gradients": "^0.0.2",
"unocss-preset-animations": "^1.3.0",
"unocss-preset-ease": "^0.0.4",
"unocss-preset-easing-gradient": "1.0.0-beta.52",
"unocss-preset-extra": "^1.0.0",
"unocss-preset-scrollbar": "^4.0.0",
"unocss-preset-tailwindcss-motion": "^4.1.0",
"vue": "^3.5.34",
"vue-form-create": "^1.2.12",
"vue-hooks-plus": "^2.4.3",
"vue-router": "^5.1.0",
"xgplayer": "^3.0.24",
"xgplayer-mp4": "^3.0.24"
},
"devDependencies": {
"@types/node": "latest",
"@unocss/preset-attributify": "latest",
"@vitejs/plugin-vue": "^6.0.6",
"@vue/tsconfig": "^0.9.1",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"less": "^4.6.4",
"lint-staged": "^17.0.4",
"oxfmt": "^0.49.0",
"oxlint": "^1.64.0",
"sass-embedded": "^1.100.0",
"terser": "^5.48.0",
"typescript": "~6.0.2",
"unocss": "^66.7.0",
"unplugin-auto-import": "^21.0.0",
"unplugin-vue-components": "^32.1.0",
"vite": "^8.0.12",
"vue-tsc": "^3.2.8"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs,vue}": [
"oxfmt --no-error-on-unmatched-pattern",
"npm run lint:fix"
],
"*.{json,md,yml,yaml}": [
"oxfmt --no-error-on-unmatched-pattern"
]
},
"packageManager": "pnpm@11.5.0+sha512.dbfcc4f81cf48597afd4bc391ffdf12c11f1a9fb83a395bfa6b0a2d9cc2fd8ffebafdb1ccbd529632153f793904c2615b7f09fe1a345473fd1c35845172a8eb1"
}