forked from zotero-chinese/wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.02 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
{
"name": "zotero-guide-zh",
"version": "0.0.0",
"description": "Zotero 中文手册",
"license": "MIT",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"docs:dev": "vuepress dev src",
"docs:clean-dev": "vuepress dev src --clean-cache",
"docs:dev-debug": "vuepress dev src --debug",
"docs:build": "vuepress build src",
"lint:prettier": "prettier --write .",
"lint:md": "markdownlint-cli2-fix src/**/*.md",
"docs:update-package": "npx vp-update",
"prepare": "husky install"
},
"devDependencies": {
"@vuepress/bundler-vite": "2.0.0-rc.8",
"@vuepress/plugin-baidu-analytics": "2.0.0-rc.18",
"@vuepress/plugin-feed": "2.0.0-rc.18",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"markdownlint-cli2": "^0.10.0",
"mermaid": "^10.9.0",
"prettier": "2.8.8",
"vue": "^3.4.21",
"vuepress": "2.0.0-rc.8",
"vuepress-plugin-search-pro": "2.0.0-rc.29",
"vuepress-theme-hope": "2.0.0-rc.29"
},
"lint-staged": {
"*.md": "prettier --write"
}
}