Incognito-Wiki/package.json
msa46 bcb8dcfe2a
Some checks are pending
Deploy to GitHub Pages / build (push) Waiting to run
Deploy to GitHub Pages / deploy (push) Blocked by required conditions
fix: resolve final Starlight migration review
2026-08-02 18:59:28 +02:00

32 lines
1,003 B
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/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"
}
}