-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.47 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
{
"name": "@bsmg/wiki",
"version": "0.1.0",
"packageManager": "yarn@3.3.1",
"description": "BSMG Wiki",
"repository": "git@github.com:bsmg/wiki.git",
"author": "Jack Baron <jackmbaron@gmail.com> (https://www.jackbaron.com)",
"license": "MIT",
"private": true,
"engines": {
"node": ">=16"
},
"scripts": {
"lint:markdown": "markdownlint --ignore './wiki/{fr,ja,de,nl}/**/*.md' './wiki/**/*.md'",
"lint:images": "node ./scripts/checkImages.mjs",
"lint": "yarn run lint:markdown && yarn run lint:images",
"clean:temp": "rimraf .temp wiki/.vuepress/.cache wiki/.vuepress/.temp",
"clean:dist": "rimraf wiki/.vuepress/dist",
"dev": "yarn run clean:temp && vuepress dev wiki --temp .temp",
"build": "yarn run clean:dist && vuepress build wiki",
"build:prod": "cross-env NODE_ENV=production yarn run clean:temp && yarn run build"
},
"devDependencies": {
"@vuepress/bundler-vite": "2.0.0-beta.60",
"@vuepress/plugin-container": "2.0.0-beta.60",
"@vuepress/plugin-docsearch": "2.0.0-beta.60",
"@vuepress/plugin-medium-zoom": "2.0.0-beta.60",
"@vuepress/plugin-register-components": "2.0.0-beta.60",
"@vuepress/plugin-search": "2.0.0-beta.60",
"@vuepress/utils": "2.0.0-beta.60",
"byte-size": "^8.1.0",
"cross-env": "^7.0.3",
"globby": "^13.1.3",
"kleur": "^4.1.5",
"markdownlint-cli": "^0.32.2",
"rimraf": "^3.0.2",
"vuepress": "2.0.0-beta.60",
"vuepress-plugin-sitemap2": "2.0.0-beta.149"
}
}