bubo-rss/package.json
2021-11-28 01:17:21 -08:00

38 lines
No EOL
985 B
JSON

{
"name": "bubo-reader",
"version": "1.0.3",
"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 && node dist/index.js > public/index.html",
"build:bubo": "node dist/index.js > public/index.html"
},
"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": {
"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"
}
}