-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.18 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.18 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
{
"name": "hybrid-cli-agent",
"version": "0.3.9",
"description": "Multi-agent CLI orchestrator combining Claude Code, Gemini CLI, and OpenRouter with 400+ AI models",
"type": "module",
"main": "src/orchestrator/index.js",
"bin": {
"hybrid": "./bin/hybrid.js",
"hybrida": "./bin/hybrid.js"
},
"scripts": {
"start": "node src/mcp/gemini-mcp-server.js",
"dev": "node --watch src/mcp/gemini-mcp-server.js",
"test": "node --test tests/*.test.js",
"cli": "node bin/hybrid.js",
"mcp": "node src/mcp/gemini-mcp-server.js",
"config": "node bin/config.js",
"setup": "node bin/setup.js",
"setup:web": "node bin/setup-web.js"
},
"keywords": [
"claude",
"gemini",
"openrouter",
"cli",
"agent",
"mcp",
"orchestrator",
"multi-agent",
"ai-collaboration"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"glob": "^13.0.0",
"inquirer": "^13.1.0",
"open": "^11.0.0",
"ora": "^8.1.0"
},
"devDependencies": {
"@types/node": "^22.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}