1
0
forked from notBrad/bubo-rss

Introducing Bubo 2.0.0 (#6)

Converting to TypeScript!
This commit is contained in:
George Mandis
2021-11-29 00:46:32 -08:00
committed by GitHub
parent 78250bd9a2
commit c9e98d79b6
16 changed files with 3384 additions and 199 deletions

View File

@@ -1,17 +1,40 @@
{
"name": "bubo-reader",
"version": "1.0.1",
"version": "2.0.0",
"description": "A simple but effective feed reader (RSS, JSON)",
"main": "src/index.js",
"type": "module",
"scripts": {
"build": "node src/index.js > output/index.html",
"test": "echo \"Error: no test specified\" && exit 1"
"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"
},
"author": "",
"license": "ISC",
"dependencies": {
"node-fetch": "^2.6.1",
"chalk": "^5.0.0",
"node-fetch": "^3.1.0",
"nunjucks": "^3.2.0",
"rss-parser": "^3.6.3"
},
"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"
}
}