openclaw.ai/package.json
DaXik ec98744e47 feat: add RSS feed integration for blog
Add official @astrojs/rss integration to enable RSS feed subscription:
- Install @astrojs/rss package
- Create RSS endpoint at /rss.xml with blog posts
- Add RSS autodiscovery meta tag in Layout
- Update site URL from clawd.bot to openclaw.ai in config

RSS feed includes post titles, descriptions, dates, authors, and categories.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-02-13 15:25:33 +01:00

29 lines
566 B
JSON

{
"name": "clawd-bot-landing",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
},
"dependencies": {
"@astrojs/rss": "^4.0.15",
"@lucide/astro": "^0.563.0",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"astro": "^5.17.2",
"js-yaml": "^4.1.1",
"simple-icons": "^16.8.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9"
}
}