-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
59 lines (59 loc) · 2.16 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "siyuan-developer-docs",
"type": "module",
"packageManager": "pnpm@9.7.0",
"description": "Unofficial documentation for SiYuan community developers",
"author": "SiYuan Community",
"license": "AGPL-3.0-or-later",
"homepage": "https://docs.siyuan-note.club/",
"repository": {
"type": "git",
"url": "https://github.com/siyuan-community/siyuan-developer-docs.git"
},
"bugs": {
"url": "https://github.com/siyuan-community/siyuan-developer-docs/issues"
},
"scripts": {
"init": "npm run init:siyuan-sdk",
"init:siyuan-sdk": "node ./scripts/siyuan-sdk.js",
"check": "run-p check:cspell check:eslint check:prettier",
"check:cspell": "cspell .",
"check:eslint": "eslint --max-warnings 0 --no-warn-ignored .",
"check:prettier": "prettier -c \"**/*.md\"",
"format": "run-p format:eslint format:prettier",
"format:eslint": "eslint --fix .",
"format:prettier": "prettier --ignore-unknown -w \"**/*.md\"",
"format:lint-staged": "lint-staged --allow-empty",
"docs:dev": "npm run init && vitepress dev docs",
"docs:build": "npm run init && vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepare": "husky"
},
"dependencies": {
"@siyuan-community/siyuan-sdk": "^0.3.12",
"@vercel/kv": "^2.0.0",
"@vercel/speed-insights": "^1.0.12",
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"@antfu/eslint-config": "^2.24.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/types": "^19.0.3",
"@types/lint-staged": "^13.3.0",
"@types/node": "^22.1.0",
"@vercel/node": "^3.2.8",
"cspell": "^8.13.1",
"eslint": "^9.8.0",
"eslint-plugin-format": "^0.1.2",
"eslint-plugin-tsdoc": "^0.3.0",
"gray-matter": "^4.0.3",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"markdown-it-mathjax3": "^4.3.2",
"prettier": "^3.3.3",
"sass-embedded": "^1.77.8",
"vitepress": "^1.3.2",
"vue": "^3.4.35"
}
}