bubo-rss/package.json
Carter McBride 2de8262704
Convert to Astro (#18)
* Init astro

* Show all feed items as a list

* Add filter for recent items

* Add category colors

* Add dark mode

* Add article counts
2024-08-23 14:09:33 -06:00

49 lines
1.2 KiB
JSON

{
"name": "bubo-reader",
"version": "2.0.2",
"description": "A simple but effective feed reader (RSS, JSON)",
"homepage": "https://github.com/georgemandis/bubo-rss",
"main": "src/index.ts",
"type": "module",
"scripts": {
"check": "biome check --write ./{src,config,public} ./*.{json,js} --no-errors-on-unmatched",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview"
},
"author": {
"name": "George Mandis",
"email": "george@mand.is",
"url": "https://george.mand.is"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/georgemandis"
},
"bugs": {
"url": "https://github.com/georgemandis/bubo-rss/issues",
"email": "george+bubo@mand.is"
},
"license": "MIT",
"dependencies": {
"@astrojs/tailwind": "^5.1.0",
"@feelinglovelynow/get-relative-time": "^1.1.2",
"astro": "^4.14.4",
"chalk": "^5.2.0",
"node-fetch": "^3.3.1",
"nunjucks": "^3.2.4",
"rss-parser": "^3.13.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.1",
"@types/bun": "latest",
"@types/nunjucks": "^3.2.2",
"@types/xml2js": "^0.4.11",
"tailwindcss": "^3.4.6",
"tslib": "^2.5.3",
"typescript": "^5.1.3",
"typescript-eslint": "^7.13.1"
},
"trustedDependencies": ["@biomejs/biome"]
}