Files
bincio-wiki-site/package.json
T
brutsalvadi 4ebc4c798c Upgrade to Astro 6.1.9 and migrate to content layer API
Moves content config from src/content/config.ts to src/content.config.ts
with glob loaders as required by Astro 6. Replaces entry.slug with entry.id
and entry.render() with render(entry) throughout. Removes legacy collections
option from astro.config.mjs.
2026-04-22 23:08:33 +02:00

37 lines
865 B
JSON

{
"name": "bincio-wiki",
"type": "module",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"postinstall": "patch-package"
},
"dependencies": {
"@astrojs/mdx": "^5.0.0",
"@astrojs/rss": "^4.0.0",
"@astrojs/sitemap": "^3.7.0",
"@astrojs/svelte": "^8.0.0",
"@astrojs/tailwind": "^6.0.0",
"astro": "^6.0.0",
"fast-glob": "^3.3.1",
"gray-matter": "^4.0.3",
"remark-caml": "^0.0.6-rm",
"remark-wikirefs": "^0.0.8-rm",
"semtree": "^0.0.15",
"svelte": "^5.0.0",
"tailwindcss": "^3.4.0",
"unist-util-select": "^5.0.0",
"wikirefs": "^0.0.8"
},
"devDependencies": {
"@types/node": "^22.0.0",
"patch-package": "^8.0.1",
"typescript": "^5.7.0"
}
}