-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.84 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
{
"name": "mergeloop",
"version": "0.1.0",
"description": "Host-agnostic model council runtime across MCP and CLI workers, with optional future API adapters. Use subscriptions first, API optional.",
"keywords": [
"mcp",
"model-context-protocol",
"host-agnostic",
"runtime",
"claude-code",
"codex",
"gemini",
"ollama",
"orchestration",
"multi-agent",
"council",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/Mas-AI-Official/MergeLoop.git"
},
"homepage": "https://github.com/Mas-AI-Official/MergeLoop#readme",
"bugs": {
"url": "https://github.com/Mas-AI-Official/MergeLoop/issues"
},
"type": "module",
"main": "dist/server.js",
"bin": {
"mergeloop-hub": "./bin/mergeloop-hub.js"
},
"files": [
"dist",
"bin",
"assets",
"scripts",
".claude-plugin",
".mcp.json",
"skills",
"integrations",
"agents",
"docs",
"examples",
"README.md",
"CHANGELOG.md",
"ROADMAP.md",
"SECURITY.md",
"LEGAL_COMPLIANCE.md",
"LICENSE",
"CONTRIBUTING.md",
"mergeloop.settings.json"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/server.js",
"test": "tsx --test test/*.test.ts",
"setup": "node scripts/setup.mjs",
"uninstall": "node scripts/uninstall.mjs",
"doctor": "node scripts/doctor.mjs",
"smoke": "node scripts/smoke.mjs",
"demo:render": "node scripts/render-demo-frames.mjs",
"demo:export-png": "node scripts/export-demo-pngs.mjs",
"launch:check": "npm test && npm run build && npm run smoke"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1"
},
"devDependencies": {
"@resvg/resvg-js": "^2.6.2",
"@types/node": "^25.5.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}