-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.68 KB
/
package.json
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
{
"name": "mcp-chat",
"version": "0.1.1",
"description": "Open Source Generic MCP Client for testing & evaluating mcp servers and agents",
"license": "MIT",
"type": "module",
"author": "Flux159",
"repository": {
"type": "git",
"url": "https://github.com/Flux159/mcp-chat"
},
"bin": {
"mcp-chat": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist/ && tsc && vite build && shx chmod +x dist/*.js",
"dev": "tsc && NODE_ENV=dev bun run start",
"start": "node dist/index.js",
"test": "vitest run",
"prepublishOnly": "npm run build",
"dockerbuild": "docker buildx build -t flux159/mcp-chat --platform linux/amd64,linux/arm64 --push ."
},
"keywords": [
"mcp",
"chat",
"client",
"agent",
"server",
"claude",
"anthropic",
"openai",
"gemini"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@modelcontextprotocol/sdk": "^1.7.0",
"body-parser": "^2.1.0",
"commander": "^13.1.0",
"cookie-parser": "^1.4.7",
"dotenv": "^16.4.7",
"express": "^5.0.1",
"js-yaml": "^4.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"yaml": "^2.7.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/cookie-parser": "^1.4.8",
"@types/express": "^5.0.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.9.3",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "4.3.4",
"shx": "^0.3.4",
"tsx": "4.19.3",
"typescript": "^5.6.2",
"vite": "6.2.2",
"vitest": "2.1.9"
}
}