-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 838 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 838 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
{
"name": "agentmail",
"version": "0.1.0",
"private": true,
"type": "module",
"bin": {
"agentmail": "./bin/agentmail"
},
"scripts": {
"start": "bun run src/cli.ts",
"dev": "bun run --watch src/cli.ts",
"build": "bun build ./src/cli.ts --outfile ./dist/cli.js --target bun",
"build:standalone": "mkdir -p dist && bun build --compile ./src/cli.ts --outfile ./dist/agentmail",
"typecheck": "tsc --noEmit",
"test": "bun test"
},
"dependencies": {
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"imapflow": "^1.0.181",
"mailparser": "^3.7.2",
"nodemailer": "^6.9.16",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/mailparser": "^3.4.6",
"@types/node": "^22.10.2",
"@types/nodemailer": "^6.4.17",
"bun-types": "^1.3.9",
"typescript": "^5.7.2"
}
}