Files
popov.link/package.json
Valentin Popov 9a0746a471
All checks were successful
Test / npm test (push) Successful in 37s
RenovateBot / renovate (push) Successful in 1m25s
feat: add RSS feed generation and update package metadata
- Implemented a new RSS feed generation feature in src/pages/feed.xml.ts, allowing users to follow blog updates.
- Updated package.json and package-lock.json to include license information and new type definitions for markdown-it and sanitize-html.
- Refactored createOgImage function to return Uint8Array instead of Buffer for better compatibility.
- Simplified pageSchema by removing the optional mainEntityId parameter for cleaner schema generation.
2026-04-22 18:53:50 +00:00

54 lines
1.3 KiB
JSON

{
"name": "website",
"type": "module",
"version": "2025.01.24",
"private": true,
"license": "MIT",
"packageManager": "npm@11.12.1",
"browserslist": [
">0.2%",
"not dead"
],
"scripts": {
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"dev": "astro dev",
"start": "astro dev",
"check": "astro check",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/rss": "^4.0.12",
"@astrojs/sitemap": "^3.4.1",
"@resvg/resvg-js": "^2.6.2",
"astro": "^6.0.0",
"autoprefixer": "^10.4.21",
"cssnano": "^7.0.7",
"cssnano-preset-advanced": "^7.0.7",
"dayjs": "^1.11.13",
"globby": "^16.0.0",
"gray-matter": "^4.0.3",
"markdown-it": "^14.1.1",
"mdast-util-to-string": "^4.0.0",
"reading-time": "^1.5.0",
"rehype-external-links": "^3.0.0",
"sanitize-html": "^2.17.3",
"sass": "^1.89.1",
"satori": "^0.26.0",
"satori-html": "^0.3.2",
"schema-dts": "^2.0.0",
"sharp": "^0.34.2",
"typescript": "^5",
"unist-util-visit": "^5.1.0"
},
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/sanitize-html": "^2.16.1",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1"
}
}