-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.14 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
{
"name": "@nanohype/docs",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@11.21.0",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "astro dev",
"prebuild": "node scripts/sync-atlas.ts && nanohype-error-pages --out public --brand nanohype --home https://docs.nanohype.dev && rm -f public/404.html",
"build": "astro build",
"postbuild": "nanohype-error-pages check dist/500.html --status 500 && node scripts/render-og.ts --check && node scripts/check-vocabulary.ts && node scripts/check-links.ts",
"preview": "astro preview",
"check": "astro check",
"check:transitions": "node scripts/check-transitions.ts",
"test": "vitest run",
"lint": "biome check .",
"format": "biome check --write ."
},
"dependencies": {
"@astrojs/starlight": "^0.41.3",
"@nanohype/sdk": "^0.2.1",
"@shuttering/starlight": "0.2.3",
"astro": "^7.3.1",
"sharp": "^0.35.4",
"yaml": "^2.9.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@biomejs/biome": "2.5.7",
"@nanohype/error-pages": "^0.1.0",
"typescript": "^6.0.3",
"vitest": "^4.1.11"
}
}