Incognito-Wiki/package.json
msa46 1d4d832b6c
Some checks failed
Deploy to GitHub Pages / build (push) Has been cancelled
Deploy to GitHub Pages / deploy (push) Has been cancelled
fix: verify programme routes across deployment bases
2026-08-15 21:09:25 +02:00

35 lines
1 KiB
JSON

{
"name": "incognito-wiki",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"check": "astro check && node --test",
"check:migration": "node scripts/check-migration.mjs",
"audit:content": "node scripts/audit-content.mjs",
"check:links": "node scripts/check-internal-links.mjs dist",
"check:rendered": "node scripts/check-rendered-output.mjs dist",
"capture:live-wiki": "node scripts/capture-live-wiki.mjs",
"test": "node --test",
"verify": "npm run check && npm run audit:content && npm run build && npm run check:rendered && npm run check:links"
},
"dependencies": {
"@astrojs/markdown-remark": "7.2.2",
"@astrojs/starlight": "0.41.6",
"astro": "7.1.6",
"sharp": "0.35.3"
},
"devDependencies": {
"@astrojs/check": "0.9.10",
"js-yaml": "4.3.1",
"linkedom": "0.18.13",
"turndown": "7.2.4",
"typescript": "6.0.2"
}
}