Files
warmbly/site/package.json
T
Matthew Meszaros db832fa896 feat: add blog content collection on the Astro 5 content layer
Posts are markdown/MDX files under src/content/blog with a zod-validated
schema (title, description, pubDate, tags, optional cover, draft). All
listing surfaces read through getPublishedPosts() so draft filtering has
a single owner. @astrojs/mdx is pinned to ^4.x: the npm latest (v6)
requires Astro 6 and would break this tree.
2026-06-10 17:14:57 +02:00

24 lines
515 B
JSON

{
"name": "warmbly-site",
"type": "module",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/mdx": "^4.3.14",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.4.1",
"@fontsource/inter": "^5.2.6",
"@tailwindcss/vite": "^4.1.10",
"astro": "^5.9.3",
"motion": "^12.34.0",
"reading-time": "^1.5.0",
"tailwindcss": "^4.1.10"
}
}