-
-
Notifications
You must be signed in to change notification settings - Fork 174
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.64 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.64 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "minecolonies-wiki",
"version": "0.0.1",
"type": "module",
"engines": {
"node": ">=25.0.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "node --max-old-space-size=8192 ./node_modules/astro/bin/astro.mjs build",
"lint": "pnpm run --parallel \"/^lint:.*/\"",
"lint:astro": "astro check",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"format": "pnpm run --parallel \"/^format:.*/\"",
"format:astro": "astro check",
"format:eslint": "eslint --fix .",
"format:prettier": "prettier --write .",
"preview": "astro preview",
"start": "pnpm run update:submodule && astro dev",
"sync": "astro sync",
"upgrade": "pnpm run --workspace-concurrency=1 \"/upgrade:.*/\"",
"upgrade:pnpm": "pnpm self-update",
"upgrade:astro": "pnpm dlx @astrojs/upgrade",
"upgrade:deps": "ncu -u && pnpm install",
"update:submodule": "git submodule update --init --remote --recursive --merge"
},
"dependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/markdoc": "^1.0.4",
"@astrojs/markdown-remark": "^7.1.1",
"@astrojs/node": "^10.0.6",
"@astrojs/sitemap": "^3.7.2",
"@astrojs/svelte": "^8.0.5",
"@iconify-json/cib": "^1.2.3",
"@iconify-json/material-symbols-light": "^1.2.68",
"@iconify/json": "^2.2.465",
"@markdoc/markdoc": "^0.5.7",
"archiver": "^7.0.1",
"astro": "^6.1.9",
"astro-icon": "1.1.5",
"bootstrap": "^5.3.8",
"date-fns": "^4.1.0",
"iconify": "^1.4.0",
"mdast-util-directive": "^3.1.0",
"remark-directive": "^4.0.0",
"sharp": "^0.34.5",
"svelte": "^5.55.4",
"swiper": "^12.1.3",
"unist-util-visit": "^5.1.0",
"uuid": "^14.0.0",
"yaml": "^2.8.3"
},
"devDependencies": {
"@astrojs/upgrade": "^0.7.2",
"@eslint/js": "^10.0.1",
"@types/archiver": "^7.0.0",
"@types/bootstrap": "^5.2.10",
"@types/eslint-plugin-markdown": "^2.0.2",
"@types/node": "~25.0.10",
"astro-eslint-parser": "^1.4.0",
"astro-purgecss": "^6.0.1",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-markdownlint": "^0.9.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-import-sort": "^13.0.0",
"npm-check-updates": "^21.0.3",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-yaml": "^1.1.3",
"purgecss": "^8.0.0",
"sass": "1.77.6",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"typescript-eslint": "8.59.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
},
"packageManager": "[email protected]"
}