-
Notifications
You must be signed in to change notification settings - Fork 271
/
package.json
39 lines (39 loc) · 1.29 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
{
"name": "bedrock-wiki",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vitepress dev docs",
"build": "run-script-os",
"build:win32": "set NODE_OPTIONS=--max-old-space-size=16384 && vitepress build docs",
"build:darwin:linux": "export NODE_OPTIONS=--max-old-space-size=16384 && vitepress build docs",
"fastbuild": "run-script-os",
"fastbuild:win32": "set FAST_BUILD=true && set NODE_OPTIONS=--max-old-space-size=8192 && vitepress build docs",
"fastbuild:darwin:linux": "export FAST_BUILD=true && export NODE_OPTIONS=--max-old-space-size=8192 && vitepress build docs",
"preview": "vitepress preview docs",
"lint": "eslint docs/.vitepress"
},
"devDependencies": {
"@docsearch/css": "^3.6.1",
"@docsearch/js": "^3.6.1",
"@types/node": "^22.4.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"@vueuse/core": "^11.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.27.0",
"gray-matter": "^4.0.3",
"markdown-it-task-lists": "^2.1.1",
"molang": "^2.0.1",
"run-script-os": "^1.1.6",
"sass": "^1.77.8",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"vitepress": "^1.3.3",
"vue": "^3.4.38",
"vue-eslint-parser": "^9.4.3"
}
}