-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·54 lines (54 loc) · 1.44 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
{
"name": "icons",
"private": true,
"version": "0.0.1",
"author": "imfenghuang",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"build:pages": "vue-tsc -b && vite build --mode=pages",
"preview": "vite preview",
"prepare": "husky",
"lint": "prettier . --write && eslint . --fix --no-cache"
},
"dependencies": {
"@floating-ui/vue": "^1.1.5",
"@vueuse/core": "^11.2.0",
"@vueuse/motion": "^2.2.6",
"floating-vue": "^5.2.2",
"lucide-vue-next": "^0.456.0",
"popmotion": "^11.0.5",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"tailwindcss-animate": "^1.0.7",
"vue": "^3.5.12"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/compat": "^1.2.2",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/eslint-config-typescript": "^14.1.3",
"autoprefixer": "^10.4.20",
"eslint": "^9.14.0",
"eslint-plugin-vue": "^9.30.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"tailwind-merge": "^2.5.4",
"typescript": "~5.6.2",
"unplugin-auto-import": "^0.18.3",
"unplugin-vue-components": "^0.27.4",
"vconsole": "^3.15.1",
"vite": "^5.4.10",
"vite-plugin-vue-devtools": "^7.6.4",
"vue-tsc": "^2.1.8"
},
"lint-staged": {
"**/*.{vue,ts}": [
"prettier --write --cache",
"eslint --fix --cache"
]
}
}