-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.42 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.42 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "email-agent-core",
"version": "0.0.4",
"description": "A powerful, lightweight npm package for building intelligent email automation agents.",
"main": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/pguso/email-agent-core"
},
"homepage": "https://github.com/pguso/email-agent-core#readme",
"keywords": [
"llm",
"agent",
"framework",
"mail",
"imap"
],
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build": "tsc && tsc -p tsconfig.cli.json",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js"
},
"bin": {
"email-agent-core": "dist/cli/index.js"
},
"author": "",
"dependencies": {
"dotenv": "^17.2.3",
"imap": "^0.8.19",
"imapflow": "^1.1.1",
"mailparser": "^3.9.0",
"node-cron": "^4.2.1",
"node-llama-cpp": "^3.14.2",
"nodemailer": "^7.0.10",
"openai": "^6.9.1"
},
"devDependencies": {
"@types/imap": "^0.8.42",
"@types/mailparser": "^3.4.6",
"@types/node": "^24.10.1",
"@types/nodemailer": "^7.0.4",
"@vitest/coverage-v8": "^4.0.14",
"nodemon": "^3.1.11",
"rimraf": "^6.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.14"
},
"directories": {
"test": "tests"
}
}