forked from Snailclimb/JavaGuide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1004 Bytes
/
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
{
"name": "javaguide",
"version": "2.0.0-alpha.40",
"private": true,
"description": "javaguide",
"license": "MIT",
"author": "Guide",
"scripts": {
"docs:build": "vuepress build docs",
"docs:dev": "vuepress dev docs",
"docs:clean-dev": "vuepress dev docs --clean-cache",
"lint": "prettier --check --write . && markdownlint docs/**/*.md",
"prepare": "husky install",
"update": "pnpm dlx vp-update"
},
"nano-staged": {
".ts,.scss": "prettier --write",
".md": [
"prettier --write",
"markdownlint"
]
},
"packageManager": "[email protected]",
"dependencies": {
"@vuepress/client": "2.0.0-rc.0",
"@vuepress/plugin-search": "2.0.0-rc.0",
"@vuepress/utils": "2.0.0-rc.0",
"husky": "8.0.3",
"markdownlint-cli": "0.37.0",
"mathjax-full": "3.2.2",
"nano-staged": "0.8.0",
"nodejs-jieba": "0.0.2",
"prettier": "3.1.0",
"vue": "3.3.9",
"vuepress": "2.0.0-rc.0",
"vuepress-theme-hope": "2.0.0-rc.1"
}
}