forked from IntuitivePhella/mcp-evolution-api
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.16 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.16 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
{
"name": "mcp-evolution-api",
"version": "1.0.0",
"description": "MCP Server para Evolution API v2 - conecta modelos de linguagem ao WhatsApp",
"main": "dist/index.js",
"type": "module",
"bin": {
"mcp-evolution-api": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node --esm src/index.ts",
"docker:build": "docker build -t mcp-evolution-api .",
"docker:run": "docker run -p 3000:3000 --env-file .env mcp-evolution-api",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"evolution-api",
"whatsapp",
"ai",
"llm",
"claude",
"gpt"
],
"author": "IntuitivePhella",
"repository": {
"type": "git",
"url": "https://github.com/IntuitivePhella/mcp-evolution-api"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"axios": "^1.8.4",
"dotenv": "^16.4.5",
"ws": "^8.16.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.17",
"@types/ws": "^8.5.10",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=18.0.0"
}
}