-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 4.68 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 4.68 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "converse-mcp-server",
"version": "2.28.0",
"description": "Converse MCP Server - Converse with other LLMs with chat and consensus tools",
"type": "module",
"main": "src/index.js",
"bin": {
"converse": "bin/converse.js",
"converse-mcp-server": "bin/converse.js"
},
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"kill-server": "node scripts/kill-server.js",
"start": "npm run kill-server && node src/index.js",
"start:clean": "node src/index.js",
"start:port": "cross-env PORT=3001 npm run start:clean",
"dev": "npm run kill-server && cross-env NODE_ENV=development LOG_LEVEL=debug node --watch src/index.js",
"dev:clean": "cross-env NODE_ENV=development LOG_LEVEL=debug node --watch src/index.js",
"dev:port": "cross-env PORT=3001 npm run dev:clean",
"dev:quiet": "npm run kill-server && cross-env NODE_ENV=development LOG_LEVEL=info node --watch src/index.js",
"dev:verbose": "npm run kill-server && cross-env NODE_ENV=development LOG_LEVEL=trace node --watch src/index.js",
"test": "npm run test:all",
"test:all": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run --config vitest.unit.config.js",
"test:integration": "vitest run --config vitest.integration.config.js",
"test:integration:mcp": "vitest run tests/integration/mcp-protocol",
"test:integration:tools": "vitest run tests/integration/tools",
"test:integration:providers": "vitest run tests/integration/providers",
"test:integration:performance": "vitest run tests/integration/performance",
"test:integration:general": "vitest run tests/integration/general",
"test:e2e": "npm run test:real-api",
"test:providers": "vitest run --config vitest.providers.config.js",
"test:tools": "vitest run tests/tools",
"test:mcp-client": "vitest run --config vitest.mcp-client.config.js",
"test:real-api": "vitest run --config vitest.real-api.config.js",
"test:performance": "vitest run --config vitest.performance.config.js",
"test:ci": "vitest run --config vitest.ci.config.js",
"test:utils": "vitest run tests/utils",
"test:resources": "vitest run tests/resources",
"test:prompts": "vitest run tests/prompts",
"test:coverage": "vitest run --coverage",
"test:coverage:unit": "vitest run --config vitest.unit.config.js --coverage",
"test:coverage:integration": "vitest run --config vitest.integration.config.js --coverage",
"test:coverage:mcp-client": "vitest run --config vitest.mcp-client.config.js --coverage",
"test:ui": "vitest --ui",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix",
"lint:watch": "nodemon --exec \"npm run lint\" --watch src --watch tests",
"format": "eslint src/ tests/ --fix",
"typecheck": "node scripts/typecheck.js",
"validate:simple": "npm run typecheck && npm run lint && npm run test",
"clean": "rimraf node_modules package-lock.json && npm install",
"debug": "cross-env NODE_ENV=development LOG_LEVEL=trace node --inspect src/index.js",
"debug:break": "cross-env NODE_ENV=development LOG_LEVEL=trace node --inspect-brk src/index.js",
"check-deps": "npm outdated",
"update-deps": "npm update",
"security-audit": "npm audit",
"dev-server": "node dev-server.js",
"validate": "node scripts/validate.js",
"validate:fix": "node scripts/validate.js --fix",
"validate:fast": "node scripts/validate.js --skip-tests --skip-lint",
"precommit": "npm run validate"
},
"keywords": [
"mcp",
"server",
"ai",
"chat",
"consensus",
"openai",
"google",
"gemini",
"grok"
],
"author": "Converse MCP Server",
"license": "MIT",
"homepage": "https://github.com/FallDownTheSystem/converse#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/FallDownTheSystem/converse.git"
},
"bugs": {
"url": "https://github.com/FallDownTheSystem/converse/issues"
},
"files": [
"src/",
"bin/",
"docs/",
"README.md",
".env.example"
],
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.169",
"@anthropic-ai/sdk": "^0.102.0",
"@github/copilot-sdk": "^1.0.0",
"@google/genai": "^2.8.0",
"@lydell/node-pty": "1.2.0-beta.12",
"@mistralai/mistralai": "^2.2.5",
"@modelcontextprotocol/sdk": "^1.29.0",
"@openai/codex-sdk": "^0.138.0",
"ai": "^6.0.198",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"lru-cache": "^11.5.1",
"nanoid": "^5.1.11",
"openai": "^6.42.0",
"p-limit": "^7.3.0",
"vite": "^8.0.16"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.8",
"cross-env": "^10.1.0",
"eslint": "^10.4.1",
"rimraf": "^6.1.3",
"vitest": "^4.1.8"
}
}