2019-06-18 22:21:16 +00:00
|
|
|
{
|
2021-11-15 03:46:31 +00:00
|
|
|
"name": "bubo-reader",
|
2021-12-05 21:35:24 +00:00
|
|
|
"version": "2.0.1",
|
2021-11-15 03:29:41 +00:00
|
|
|
"description": "A simple but effective feed reader (RSS, JSON)",
|
2021-12-05 21:35:24 +00:00
|
|
|
"homepage": "https://github.com/georgemandis/bubo-rss",
|
2019-06-18 22:21:16 +00:00
|
|
|
"main": "src/index.js",
|
2021-11-29 08:46:32 +00:00
|
|
|
"type": "module",
|
2019-06-18 22:21:16 +00:00
|
|
|
"scripts": {
|
2021-11-29 08:46:32 +00:00
|
|
|
"dev": "tsc --watch",
|
|
|
|
"clean": "rm -rf dist",
|
|
|
|
"build": "tsc",
|
|
|
|
"bubo": "node dist/index.js",
|
2021-11-29 09:06:07 +00:00
|
|
|
"build:bubo": "tsc && node dist/index.js",
|
|
|
|
"start": "npm run build:bubo; node server.js",
|
2019-06-18 22:21:16 +00:00
|
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
|
|
},
|
2021-11-29 08:46:32 +00:00
|
|
|
"author": {
|
|
|
|
"name": "George Mandis",
|
|
|
|
"email": "george@mand.is",
|
|
|
|
"url": "https://george.mand.is"
|
|
|
|
},
|
|
|
|
"funding": {
|
|
|
|
"type": "github",
|
|
|
|
"url": "https://github.com/sponsors/georgemandis"
|
2019-06-18 22:21:16 +00:00
|
|
|
},
|
2021-12-05 21:35:24 +00:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/georgemandis/bubo-rss/issues",
|
|
|
|
"email": "george+bubo@mand.is"
|
|
|
|
},
|
|
|
|
"license": "MIT",
|
2019-06-18 22:21:16 +00:00
|
|
|
"dependencies": {
|
2022-12-04 22:49:50 +00:00
|
|
|
"chalk": "^5.1.2",
|
|
|
|
"node-fetch": "^3.3.0",
|
|
|
|
"nunjucks": "^3.2.3",
|
2022-12-04 23:04:10 +00:00
|
|
|
"rss-parser": "^3.12.0",
|
2021-11-15 03:46:31 +00:00
|
|
|
"express": "^4.17.1"
|
2021-11-29 08:46:32 +00:00
|
|
|
},
|
2021-11-29 09:06:07 +00:00
|
|
|
"engines": { "node": "16.x" },
|
2021-11-29 08:46:32 +00:00
|
|
|
"devDependencies": {
|
2022-12-04 22:49:50 +00:00
|
|
|
"@types/node": "^16.18.4",
|
|
|
|
"@types/nunjucks": "^3.2.1",
|
|
|
|
"@types/xml2js": "^0.4.11",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.45.0",
|
|
|
|
"@typescript-eslint/parser": "^5.45.0",
|
|
|
|
"eslint": "^8.29.0",
|
|
|
|
"tslib": "^2.4.1",
|
|
|
|
"typescript": "^4.9.3"
|
2019-06-18 22:21:16 +00:00
|
|
|
}
|
2022-12-04 22:49:50 +00:00
|
|
|
}
|