-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.65 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
62
63
64
65
66
67
68
69
70
71
{
"name": "wa-mcp",
"version": "1.1.1",
"description": "WhatsApp MCP server — expose WhatsApp as discoverable tools, resources, and notifications for AI agents",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/"
},
"keywords": [
"whatsapp",
"mcp",
"model-context-protocol",
"mcp-server",
"ai-agent",
"ai-agents",
"baileys",
"cloud-api",
"whatsapp-api",
"whatsapp-bot",
"whatsapp-web",
"chatbot",
"typescript",
"docker",
"bullmq",
"llm",
"automation",
"agent-tools",
"google-adk",
"langchain",
"claude"
],
"license": "MIT",
"engines": {
"node": ">=22"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"@whiskeysockets/baileys": "^7.0.0-rc.9",
"better-sqlite3": "^11.8.2",
"bullmq": "^5.38.1",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.39.3",
"ioredis": "^5.6.0",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.13.5",
"drizzle-kit": "^0.30.5",
"eslint": "^10.0.2",
"prettier": "^3.8.1",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}