-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.13 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.13 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
{
"type": "module",
"scripts": {
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
"docs:preview": "vitepress preview",
"lint": "oxlint --import-plugin -D correctness -D perf && prettier -l -w \"**/*.{js,ts,vue,json,css,md,mts}\""
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.14",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^22.18.8",
"oxlint": "^1.20.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.14",
"typescript": "^5.9.3",
"vitepress": "^1.6.4",
"vue": "^3.5.22"
},
"dependencies": {
"clsx": "2.1.1",
"lucide-vue-next": "^0.545.0",
"markdown-it-mathjax3": "^5.2.0",
"radix-vue": "^1.9.17",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"vue3-simple-icons": "^15.6.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 4,
"useTabs": true,
"plugins": [
"@trivago/prettier-plugin-sort-imports",
"prettier-plugin-tailwindcss"
],
"tailwindStylesheet": ".vitepress/theme/style.css",
"trailingComma": "none",
"tailwindFunctions": [
"cn"
]
}
}