-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.33 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "epub_news",
"version": "1.1.1",
"description": "Retrieve RSS feeds from online media and create an eBook. A better way to read news on e-ink tablets!",
"repository": {
"type": "git",
"url": "https://github.com/benVigie/epub_news"
},
"homepage": "https://github.com/benVigie/epub_news#readme",
"bugs": {
"url": "https://github.com/benVigie/epub_news/issues"
},
"keywords": [
"epub",
"ebook",
"news",
"cli",
"generator"
],
"main": "dist/index.js",
"bin": "dist/news_cli.js",
"type": "module",
"scripts": {
"build": "tsc && chmod +x ./dist/news_cli.js",
"start": "node ./dist/news_cli.js",
"debug": "npm run build && npm run start",
"debug-i": "npm run build && npm run start -- -i",
"test": "echo \"No test specified\""
},
"author": "benVigie",
"license": "Mozilla Public License Version 2.0",
"dependencies": {
"@lesjoursfr/html-to-epub": "^4.4.0",
"@types/luxon": "^3.4.2",
"@types/node": "^22.5.4",
"@types/prompts": "^2.4.9",
"chalk": "^4",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"luxon": "^3.5.0",
"node-html-parser": "^6.1.13",
"ora": "^8.1.0",
"prompts": "^2.4.2",
"rss-parser": "^3.13.0",
"terminal-link": "^3.0.0",
"typescript": "^5.5.4"
},
"devDependencies": {
"prettier": "3.3.3"
}
}