forked from vitest-dev/docs-cn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.79 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.79 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
{
"name": "docs-cn",
"type": "module",
"version": "4.0.15",
"private": true,
"packageManager": "pnpm@9.7.1",
"scripts": {
"dev": "vitepress --port 3333 --open",
"build": "nr prefetch && vitepress build",
"build-no-prefetch": "vitepress build",
"serve": "vitepress serve",
"preview-https": "pnpm run build && serve .vitepress/dist",
"preview-https-no-prefetch": "pnpm run build-no-prefetch && serve .vitepress/dist",
"prefetch": "tsx .vitepress/scripts/fetch-avatars.ts",
"generate-pwa-icons": "pwa-assets-generator",
"lint": "eslint --cache .",
"lint:fix": "eslint . --fix",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@vueuse/core": "^12.8.2",
"vue": "^3.5.25"
},
"devDependencies": {
"@antfu/eslint-config": "^5.4.1",
"@antfu/ni": "^26.1.0",
"@iconify-json/carbon": "^1.2.14",
"@iconify-json/logos": "^1.2.10",
"@shikijs/transformers": "^3.17.1",
"@shikijs/vitepress-twoslash": "^3.17.1",
"@types/node": "^24.10.2",
"@unocss/reset": "^66.5.9",
"@vite-pwa/assets-generator": "^1.0.2",
"@vite-pwa/vitepress": "^1.1.0",
"@vitejs/plugin-vue": "^6.0.2",
"vitest": "^4.0.15",
"eslint": "^9.38.0",
"https-localhost": "^4.7.1",
"lint-staged": "^16.2.7",
"simple-git-hooks": "^2.13.1",
"tinyglobby": "^0.2.15",
"unocss": "^66.5.9",
"unplugin-vue-components": "^0.28.0",
"vite": "^6.3.5",
"vite-plugin-pwa": "^0.21.2",
"vitepress": "2.0.0-alpha.15",
"vitepress-plugin-group-icons": "^1.6.5",
"vitepress-plugin-llms": "^1.9.3",
"vitepress-plugin-tabs": "^0.7.3",
"workbox-window": "^7.4.0",
"pathe": "^2.0.3",
"tsx": "^4.21.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}