-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 872 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 872 Bytes
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
{
"name": "email-agent",
"version": "1.0.0",
"description": "AI-powered email assistant CLI tool",
"main": "cli.js",
"module": "cli.js",
"type": "module",
"bin": {
"email-agent": "./cli.js"
},
"scripts": {
"start": "bun run cli.js",
"dev": "bun run cli.js"
},
"keywords": ["email", "cli", "ai", "assistant", "gmail"],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@googleapis/people": "^6.0.0",
"@langchain/core": "^0.3.77",
"@langchain/google-genai": "^0.2.18",
"cheerio": "^1.1.2",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"googleapis": "^160.0.0",
"http-server": "^14.1.1",
"langchain": "^1.0.0-alpha.6",
"zod": "^4.1.11"
}
}