1
0
forked from notBrad/bubo-rss
bubo-rss-docker/package.json
George Mandis c9e98d79b6
Introducing Bubo 2.0.0 (#6)
Converting to TypeScript!
2021-11-29 03:46:32 -05:00

41 lines
988 B
JSON

{
"name": "bubo-reader",
"version": "2.0.0",
"description": "A simple but effective feed reader (RSS, JSON)",
"main": "src/index.js",
"type": "module",
"scripts": {
"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"
},
"license": "ISC",
"dependencies": {
"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"
}
}