-
Notifications
You must be signed in to change notification settings - Fork 46.1k
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.4 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.4 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
{
"name": "javaguide",
"version": "2.0.0-alpha.40",
"private": true,
"description": "javaguide",
"license": "MIT",
"author": "Guide",
"pnpm": {
"overrides": {
"vite": ">=7.0.8",
"undici": ">=7.18.2",
"mdast-util-to-hast": ">=13.2.1",
"markdownlint-cli2>js-yaml": ">=4.1.1",
"rollup": ">=4.59.0"
}
},
"scripts": {
"docs:build": "vuepress build docs",
"docs:build:clean": "rm -rf docs/.vuepress/.temp docs/.vuepress/.cache && pnpm docs:build",
"docs:dev": "vuepress dev docs",
"docs:clean-dev": "vuepress dev docs --clean-cache",
"lint": "pnpm lint:prettier && pnpm lint:md",
"lint:md": "markdownlint-cli2 '**/*.md'",
"lint:prettier": "prettier --check --write .",
"prepare": "husky",
"update": "pnpm dlx vp-update"
},
"nano-staged": {
"**/*": "prettier --write --ignore-unknown",
".md": "markdownlint-cli2"
},
"dependencies": {
"@vuepress/bundler-vite": "2.0.0-rc.26",
"@vuepress/plugin-feed": "2.0.0-rc.121",
"@vuepress/plugin-search": "2.0.0-rc.121",
"husky": "9.1.7",
"markdownlint-cli2": "0.17.1",
"mathjax-full": "3.2.2",
"nano-staged": "0.8.0",
"prettier": "3.4.2",
"sass-embedded": "1.97.2",
"vue": "^3.5.26",
"vuepress": "2.0.0-rc.26",
"vuepress-theme-hope": "2.0.0-rc.102"
},
"packageManager": "[email protected]",
"devDependencies": {
"mermaid": "^11.12.2"
}
}