forked from bsmg/wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.08 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": "@bsmg/wiki",
"description": "BSMG Wiki",
"type": "module",
"repository": "git@github.com:bsmg/wiki.git",
"author": "Jack Baron <jackmbaron@gmail.com> (https://lulu.dev)",
"license": "MIT",
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "vitepress dev wiki",
"preview": "vitepress preview wiki",
"build": "vitepress build wiki",
"lint:images": "node ./scripts/checkImages.mjs",
"lint:prettier": "prettier --check .",
"lint": "npm run lint:prettier && markdownlint-cli2 \"wiki/**/*.md\" \"#wiki/{de,fr,ja,nl}/**/*.md\"",
"fmt": "prettier --write . && markdownlint-cli2 --fix \"wiki/**/*.md\" \"#wiki/{de,fr,ja,nl}/**/*.md\""
},
"devDependencies": {
"@types/markdown-it-container": "^2.0.10",
"@types/node": "^20.14.9",
"byte-size": "^8.1.1",
"globby": "^14.0.1",
"kleur": "^4.1.5",
"markdown-it-container": "^4.0.0",
"markdownlint-cli2": "^0.13.0",
"medium-zoom": "^1.1.0",
"prettier": "^3.3.2",
"vitepress": "1.2.3",
"vitepress-plugin-tabs": "^0.5.0",
"vue": "^3.4.31"
}
}