mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-19 16:01:16 +00:00
db832fa896
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.
24 lines
515 B
JSON
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"
|
|
}
|
|
}
|