diff options
| author | Valentin Popov <valentin@popov.link> | 2026-04-22 21:53:50 +0300 |
|---|---|---|
| committer | Valentin Popov <valentin@popov.link> | 2026-04-22 21:53:50 +0300 |
| commit | 9a0746a4715400ab8ef37ec23a4df93ae712e74b (patch) | |
| tree | 5678821ab8e56f3098a26240f5db0f13fa25bf5c /package.json | |
| parent | a6efbdc3aba7cbc3918976ad1a3c4143363c6f7a (diff) | |
| download | popov.link-9a0746a4715400ab8ef37ec23a4df93ae712e74b.tar.xz popov.link-9a0746a4715400ab8ef37ec23a4df93ae712e74b.zip | |
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.
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/package.json b/package.json index d1e9922..1115a1a 100644 --- a/package.json +++ b/package.json @@ -3,11 +3,11 @@ "type": "module", "version": "2025.01.24", "private": true, + "license": "MIT", "packageManager": "npm@11.12.1", "browserslist": [ ">0.2%", - "not dead", - "IE 11" + "not dead" ], "scripts": { "format": "prettier --write .", @@ -29,7 +29,6 @@ "cssnano": "^7.0.7", "cssnano-preset-advanced": "^7.0.7", "dayjs": "^1.11.13", - "geist": "^1.4.2", "globby": "^16.0.0", "gray-matter": "^4.0.3", "markdown-it": "^14.1.1", @@ -46,6 +45,8 @@ "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" } |
