-
Notifications
You must be signed in to change notification settings - Fork 140
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.23 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.23 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
{
"name": "zotero-guide-zh",
"version": "0.0.0",
"description": "Zotero 中文手册",
"type": "module",
"packageManager": "pnpm@10.11.0",
"scripts": {
"docs:dev": "vitepress dev --open",
"docs:build": "vitepress build",
"docs:preview": "vitepress preview",
"lint:fix": "prettier --write . && autocorrect --fix && markdownlint-cli2 --fix",
"lint:check": "prettier --check . && autocorrect --lint && markdownlint-cli2",
"git:sync-force": "bash scripts/sync-force.sh",
"compress-images": "tsx scripts/compress-images.ts",
"prepare": "husky"
},
"devDependencies": {
"@mdit/plugin-footnote": "0.21.0",
"@mdit/plugin-mark": "^0.21.0",
"@types/node": "24.9.2",
"@zotero-chinese/markdownlint-config": "^1.0.5",
"@zotero-chinese/prettier-config": "^1.0.5",
"autocorrect-node": "^2.14.0",
"husky": "9.1.7",
"lint-staged": "16.1.0",
"markdownlint-cli2": "0.18.1",
"prettier": "^3.5.3",
"sharp": "^0.34.2",
"tinyglobby": "^0.2.14",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitepress": "1.6.3"
},
"prettier": "@zotero-chinese/prettier-config",
"lint-staged": {
"*": [
"prettier --write --ignore-unknown",
"autocorrect --lint"
]
}
}