forked from bozp-pzob/ai-news
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "news-aggregator",
"version": "1.0.0",
"description": "A modular Node.js TypeScript news aggregator with multiple data sources, enrichers, and SQLite storage.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"generator": "ts-node src/generator.ts",
"historical": "ts-node src/historical.ts"
},
"keywords": [
"news",
"aggregator",
"typescript",
"rss",
"api",
"sqlite"
],
"author": "bozp",
"license": "MIT",
"dependencies": {
"@mozilla/readability": "^0.5.0",
"@types/jsdom": "^21.1.7",
"agent-twitter-client": "^0.0.18",
"cheerio": "^1.0.0",
"discord.js": "^14.17.3",
"dotenv": "^16.4.7",
"jsdom": "^26.0.0",
"node-fetch": "^3.3.1",
"openai": "^4.78.1",
"rss-parser": "^3.12.0",
"sqlite": "^4.0.25",
"sqlite3": "^5.1.4",
"twitter-api-v2": "^1.19.0"
},
"devDependencies": {
"@types/node": "^18.14.2",
"@types/node-fetch": "^2.6.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}