forked from Bedrock-OSS/bedrock-wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.7 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
{
"name": "bedrock-wiki",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "run-script-os",
"dev:win32": "SET fastBuild=false && vitepress dev docs",
"dev:darwin:linux": "fastBuild=false && vitepress dev docs",
"build": "run-script-os",
"build:win32": "SET fastBuild=false && node --max-old-space-size=16384 node_modules/vitepress/bin/vitepress.js build docs",
"build:darwin:linux": "fastBuild=false && node --max-old-space-size=16384 node_modules/vitepress/bin/vitepress.js build docs",
"fastbuild": "run-script-os",
"fastbuild:win32": "SET fastBuild=true && node --max-old-space-size=8192 node_modules/vitepress/bin/vitepress.js build docs",
"fastbuild:darwin:linux": "fastBuild=true && node --max-old-space-size=8192 node_modules/vitepress/bin/vitepress.js build docs",
"serve": "vitepress serve docs",
"lint": "npx eslint docs/.vitepress/**"
},
"dependencies": {
"@types/prismjs": "^1.26.0",
"@vueuse/core": "^9.5.0",
"markdown-it": "^13.0.1",
"molang": "^2.0.1",
"molangjs": "^1.5.2",
"prismjs": "^1.29.0",
"vite": "^3.2.4",
"vue-eslint-parser": "^9.4.3",
"vue-prism-editor": "^2.0.0-alpha.2"
},
"devDependencies": {
"@docsearch/css": "^3.3.0",
"@docsearch/js": "^3.3.0",
"@types/node": "^18.11.9",
"@types/node-fetch": "^2.5.11",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"diacritics": "^1.3.0",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.26.0",
"gray-matter": "^4.0.3",
"node-fetch": "^2.6.7",
"run-script-os": "^1.1.6",
"sass": "^1.56.1",
"vite-plugin-pwa": "^0.13.3",
"vite-plugin-windicss": "^1.8.8",
"vitepress": "1.1.4",
"vue": "^3.2.45",
"windicss": "^3.5.6"
}
}