-
Notifications
You must be signed in to change notification settings - Fork 283
/
Copy pathpackage.json
40 lines (40 loc) · 1.32 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": "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.8.3",
"@docsearch/js": "^3.8.3",
"@types/node": "^18.19.74",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"@vueuse/core": "^11.3.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-vue": "^9.32.0",
"gray-matter": "^4.0.3",
"markdown-it-task-lists": "^2.1.1",
"molang": "^2.0.1",
"prettier": "~3.3.0",
"run-script-os": "^1.1.6",
"sass": "^1.83.4",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vitepress": "^1.6.3",
"vue": "^3.5.13",
"vue-eslint-parser": "^9.4.3"
}
}