-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
39 lines (39 loc) · 984 Bytes
/
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
{
"name": "gmail-agent",
"version": "1.0.0",
"description": "An intelligent email management system that uses AI to help process, analyze, and respond to emails through Telegram",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"setup": "node src/utils/setupWizard.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"gmail",
"ai",
"email",
"automation",
"telegram",
"bot",
"openai",
"gpt"
],
"author": "Olivier Loverde",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/olivierloverde/gmail-agent.git"
},
"dependencies": {
"@google-cloud/local-auth": "^3.0.1",
"@langchain/openai": "^0.3.12",
"dotenv": "^16.4.5",
"googleapis": "^144.0.0",
"gpt-3-encoder": "^1.1.4",
"langchain": "^0.3.5",
"node-cron": "^3.0.3",
"node-telegram-bot-api": "^0.66.0",
"sqlite3": "^5.1.6",
"sqlite": "^5.1.1"
}
}