2019-06-18 22:21:16 +00:00
|
|
|
{
|
|
|
|
"name": "bubo-reader",
|
2021-11-29 08:46:32 +00:00
|
|
|
"version": "2.0.0",
|
2021-11-15 03:29:41 +00:00
|
|
|
"description": "A simple but effective feed reader (RSS, JSON)",
|
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",
|
|
|
|
"build:bubo": "tsc && node dist/index.js"
|
|
|
|
},
|
|
|
|
"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
|
|
|
},
|
|
|
|
"license": "ISC",
|
|
|
|
"dependencies": {
|
2021-11-29 08:46:32 +00:00
|
|
|
"chalk": "^5.0.0",
|
|
|
|
"node-fetch": "^3.1.0",
|
2019-11-28 02:17:31 +00:00
|
|
|
"nunjucks": "^3.2.0",
|
2019-06-18 22:21:16 +00:00
|
|
|
"rss-parser": "^3.6.3"
|
2021-11-29 08:46:32 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/node": "^16.11.10",
|
|
|
|
"@types/nunjucks": "^3.2.0",
|
|
|
|
"@types/xml2js": "^0.4.9",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.4.0",
|
|
|
|
"@typescript-eslint/parser": "^5.4.0",
|
|
|
|
"eslint": "^8.3.0",
|
|
|
|
"tslib": "^2.3.1",
|
|
|
|
"typescript": "^4.5.2"
|
2019-06-18 22:21:16 +00:00
|
|
|
}
|
|
|
|
}
|