Files
anotherreflections-website-v2/package.json
Dmitry Gusev 291d5a5a98 feat(indexnow): add IndexNow key file and trigger script
- public/15455d9f2c7b473bb04336055b792ec9.txt — ownership-ключ для Yandex/Bing
- scripts/indexnow.js — собирает URL из dist/sitemap-*.xml (fallback: remote sitemap-index), шлёт на yandex.com/indexnow и api.indexnow.org/indexnow
- package.json: npm run indexnow
- .gitea/workflows/deploy.yml: после успешного deploy чекаут + node + npm run indexnow (не блокирует пайплайн через || true)
2026-05-21 13:44:11 +03:00

28 lines
600 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",
"indexnow": "node scripts/indexnow.js"
},
"dependencies": {
"@astrojs/rss": "^4.0.12",
"@astrojs/sitemap": "^3.6.0",
"astro": "^6.3.6",
"sanitize-html": "^2.17.0"
},
"devDependencies": {
"@types/sanitize-html": "^2.16.0",
"sharp": "^0.34.5"
}
}