-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.44 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.44 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
{
"name": "agentkit-whatsapp-mcp",
"version": "1.0.0",
"description": "Personal WhatsApp MCP integration for AI agent automation",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc && npm run copy-templates",
"copy-templates": "mkdir -p dist/resume-tools/templates && cp -r src/resume-tools/templates/* dist/resume-tools/templates/",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"lint": "eslint src/**/*.ts",
"test": "jest"
},
"keywords": [
"whatsapp",
"mcp",
"automation",
"agent"
],
"author": "",
"license": "MIT",
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@huggingface/inference": "^4.13.1",
"axios": "^1.13.2",
"dotenv": "^16.3.1",
"groq-sdk": "^0.34.0",
"imap": "^0.8.19",
"mailparser": "^3.7.1",
"nodemailer": "^6.9.7",
"openai": "^6.8.1",
"puppeteer": "^24.15.0",
"qrcode-terminal": "^0.12.0",
"whatsapp-web.js": "^1.23.0"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@types/imap": "^0.8.40",
"@types/mailparser": "^3.4.4",
"@types/node": "^20.10.6",
"@types/nodemailer": "^6.4.14",
"@types/qrcode-terminal": "^0.12.2",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"playwright": "^1.56.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}