-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.86 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.86 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
{
"name": "multiagents",
"version": "0.4.8",
"description": "Multi-agent orchestration platform for Claude Code, Codex CLI, and Gemini CLI",
"module": "index.ts",
"type": "module",
"private": false,
"bin": {
"multiagents": "./cli.ts",
"multiagents-server": "./server.ts",
"multiagents-orch": "./orchestrator/orchestrator-server.ts",
"multiagents-broker": "./broker.ts"
},
"files": [
"cli.ts",
"server.ts",
"broker.ts",
"index.ts",
"noop-mcp.ts",
"shared/",
"adapters/",
"orchestrator/",
"dashboard/",
"cli/",
".mcp.json",
"README.md",
"LICENSE",
"tsconfig.json",
"scripts/"
],
"scripts": {
"broker": "bun broker.ts",
"server": "bun server.ts",
"orchestrator": "bun orchestrator/orchestrator-server.ts",
"setup": "bun cli.ts setup",
"dashboard": "bun cli.ts dashboard",
"test": "bun test",
"version:patch": "bun run scripts/version.ts patch",
"version:minor": "bun run scripts/version.ts minor",
"version:major": "bun run scripts/version.ts major",
"prepack": "bun test",
"postinstall": "bun run scripts/postinstall.ts 2>/dev/null || true",
"preuninstall": "bun run scripts/preuninstall.ts 2>/dev/null || true"
},
"engines": {
"bun": ">=1.1.0"
},
"devDependencies": {
"@types/bun": "^1.2.12"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1"
},
"homepage": "https://github.com/zetbrush/multiagents#readme",
"bugs": {
"url": "https://github.com/zetbrush/multiagents/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zetbrush/multiagents.git"
},
"keywords": [
"mcp",
"multi-agent",
"claude",
"codex",
"gemini",
"orchestration",
"ai-agents"
],
"license": "MIT",
"author": "Arman Andreasyan"
}