-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.38 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.38 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
{
"name": "docs",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:md": "markdownlint-cli2",
"check:a11y": "yarn build && serve dist -p 4173 & sleep 2 && pa11y-ci --sitemap http://localhost:4173/sitemap.xml --sitemap-find 'http://localhost:[0-9]+' --sitemap-replace 'http://localhost:4173'; kill %1",
"check:spelling": "cspell \"**/*.md\"",
"check:links": "linkinator ./dist/ --skip 'https://distributeaid\\.github\\.io(?:/.*)?'",
"prepare": "husky"
},
"dependencies": {
"@astrojs/starlight": "^0.36.0",
"astro": "^5.18.1",
"sharp": "^0.34.3"
},
"packageManager": "yarn@4.9.4",
"engines": {
"node": ">=20.0.0 <=24.11.0",
"npm": "please-use-yarn",
"yarn": ">=4.4.0"
},
"lint-staged": {
"*.md": [
"prettier --write",
"markdownlint-cli2 --no-globs",
"cspell --no-must-find-files"
],
"*.{js,mjs,ts,css,json,yaml,yml}": [
"prettier --write"
]
},
"devDependencies": {
"cspell": "^9.7.0",
"husky": "^9.1.7",
"linkinator": "^7.6.1",
"lint-staged": "^16.4.0",
"markdownlint-cli2": "^0.22.0",
"pa11y-ci": "^4.1.0",
"prettier": "^3.8.1",
"serve": "^14.2.6"
}
}