forked from vitejs/docs-cn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.04 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
{
"name": "vite-docs-cn",
"version": "1.0.0",
"description": "Vite.js documentation Chinese translation.",
"repository": "https://github.com/vitejs/docs-cn",
"type": "module",
"author": "Evan You",
"private": true,
"license": "CC BY-NC-SA 4.0",
"devDependencies": {
"@shikijs/vitepress-twoslash": "^3.14.0",
"@type-challenges/utils": "^0.1.1",
"@types/express": "^5.0.4",
"@types/node": "^20.9.2",
"chalk": "^4.1.2",
"feed": "^5.1.0",
"gray-matter": "^4.0.3",
"gsap": "^3.13.0",
"lodash": "^4.17.21",
"markdown-it-image-size": "^15.0.1",
"vite": "^7.0.4",
"vitepress": "^2.0.0-alpha.7",
"vitepress-plugin-group-icons": "^1.6.5",
"vitepress-plugin-llms": "^1.8.1",
"vue": "^3.5.22",
"vue-tsc": "^3.1.2",
"yorkie": "^2.0.0"
},
"packageManager": "pnpm@9.6.0",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "vitepress dev . --port 5174",
"build": "vitepress build .",
"typecheck": "vue-tsc",
"serve": "vitepress serve ."
},
"gitHooks": {
"commit-msg": "node scripts/verifyCommit.js"
}
}