-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.12 KB
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
{
"name": "google-alerts-intelligence",
"version": "1.0.0",
"description": "Automated Google Alerts article analyzer with sentiment tracking",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "ts-node src/index.ts --test"
},
"keywords": [
"google-alerts",
"ai",
"sentiment-analysis",
"slack"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/evoleinik/feeder.git"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.27.0",
"@google/generative-ai": "^0.21.0",
"@slack/webhook": "^7.0.2",
"better-sqlite3": "^11.0.0",
"cheerio": "^1.0.0",
"dotenv": "^16.4.5",
"imap": "^0.8.17",
"mailparser": "^3.7.1",
"node-cron": "^3.0.3",
"openai": "^4.75.0",
"playwright": "^1.49.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/imap": "^0.8.40",
"@types/mailparser": "^3.4.4",
"@types/node": "^20.14.0",
"@types/node-cron": "^3.0.11",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}