- Astro 5 (6.3.6) minimal scaffold с Content Collections для posts/pages - Тёмная палитра в духе старой темы darkness-10 (тонкая типографика Inter+Lora) - Layout с шапкой/футером, главной-лентой, страницами категорий и одиночными постами - RSS (общий + per-category) под IPB RSS Importer: RFC-822 pubDate, <guid isPermaLink="true">, <content:encoded> с CDATA, <lastBuildDate> - RSS_CUTOFF фильтр: архив 2009-2015 на сайте остаётся, в RSS — только новые - 50 постов и 6 страниц мигрированы из WP (anotherreflctions_ru @ db.hhivp.com) через scripts/migrate-wp.mjs (HTML→md без внешних зависимостей) - sitemap.xml автоматически через @astrojs/sitemap
26 lines
532 B
JSON
26 lines
532 B
JSON
{
|
|
"name": "anotherreflections-website-v2",
|
|
"type": "module",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">=22.12.0"
|
|
},
|
|
"scripts": {
|
|
"dev": "astro dev",
|
|
"build": "astro build",
|
|
"preview": "astro preview",
|
|
"astro": "astro",
|
|
"migrate": "node scripts/migrate-wp.mjs"
|
|
},
|
|
"dependencies": {
|
|
"astro": "^6.3.6",
|
|
"@astrojs/rss": "^4.0.12",
|
|
"@astrojs/sitemap": "^3.6.0",
|
|
"sanitize-html": "^2.17.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/sanitize-html": "^2.16.0"
|
|
}
|
|
}
|