-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.65 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.65 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
{
"name": "agent-orchestration",
"version": "0.6.1",
"description": "Agent Orchestration - MCP server for multi-agent coordination across IDEs and CLI tools",
"type": "module",
"main": "dist/index.js",
"bin": {
"agent-orchestration": "dist/bin/cli.js"
},
"files": [
"dist",
"templates",
".cursor/rules",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"build": "node ./node_modules/typescript/bin/tsc",
"dev": "node ./node_modules/typescript/bin/tsc --watch",
"start": "node dist/index.js",
"lint": "node ./node_modules/typescript/bin/tsc -p tsconfig.json --noEmit",
"test": "npm run build && node --test dist/**/*.test.js",
"clean": "rm -rf dist",
"prepack": "npm run build",
"release": "release-it"
},
"keywords": [
"mcp",
"model-context-protocol",
"agents-md",
"cursor",
"ai-agents",
"orchestration",
"multi-agent",
"codex",
"aider",
"windsurf",
"copilot"
],
"author": "Aris Setiawan <https://madebyaris.com>",
"license": "MIT",
"homepage": "https://github.com/madebyaris/agent-orchestration#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/madebyaris/agent-orchestration.git"
},
"bugs": {
"url": "https://github.com/madebyaris/agent-orchestration/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"better-sqlite3": "^11.8.1",
"ulid": "^2.3.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.5",
"release-it": "^19.2.2",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18.0.0"
}
}