-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
{
"type": "module",
"scripts": {
"dev": " vitepress dev docs",
"build": "vitepress build docs",
"preview": "vitepress preview docs",
"build:preview": "pnpm build && pnpm preview",
"doc:update": "./scripts/update.sh",
"pb:gitee": "zsh scripts/deploy.sh && node scripts/auto-update-pages.js",
"clean": "rimraf node_modules && rm -rf dist && pnpm i",
"lint": "eslint .",
"lintf": "eslint --fix ."
},
"dependencies": {
"client": "link:@shikijs/vitepress-twoslash/client",
"medium-zoom": "^1.1.0",
"vite-plugin-vitepress-auto-sidebar": "^1.7.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.3",
"@iconify/json": "^2.2.254",
"@shikijs/vitepress-twoslash": "^1.21.0",
"eslint": "^9.11.1",
"eslint-plugin-format": "^0.1.2",
"lint-staged": "^15.2.10",
"puppeteer": "^23.4.1",
"sass": "^1.79.4",
"simple-git-hooks": "^2.11.1",
"unocss": "^0.63.1",
"unplugin-auto-import": "^0.18.3",
"unplugin-icons": "^0.19.3",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.8",
"vitepress": "1.2.3",
"vue": "^3.5.10"
},
"simple-git-hooks": {},
"lint-staged": {
"*.{js,ts,vue}": [
"pnpm lintf"
]
}
}