-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.05 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
{
"name": "@stdiobus/mcp-agentic",
"version": "1.1.5",
"type": "module",
"description": "MCP Agentic: agent orchestration server via stdio Bus",
"main": "out/dist/index.js",
"types": "out/tsc/index.d.ts",
"exports": {
".": {
"types": "./out/tsc/index.d.ts",
"import": "./out/dist/index.js",
"default": "./out/dist/index.js"
}
},
"bin": {
"mcp-agentic": "out/dist/cli/server.js"
},
"files": [
"out/dist/**/*.js",
"out/tsc/**/*.d.ts",
"POWER.md",
"mcp.json",
"steering/",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build:js": "node build/esbuild.config.mjs",
"build:types": "tsc -p tsconfig.types.json",
"build": "npm run clean && npm run build:js && npm run build:types",
"build:tsc": "tsc -p tsconfig.json",
"start": "node out/dist/cli/server.js",
"dev": "tsx src/cli/server.ts",
"typecheck": "tsc --noEmit",
"test": "npm run test:unit",
"test:unit": "NODE_OPTIONS=--experimental-vm-modules jest --config jest.config.js",
"test:e2e": "bash test/e2e/run-all.sh",
"test:e2e:providers": "bash test/e2e/providers/run-providers.sh",
"test:all": "npm run test:unit && npm run test:e2e",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --config jest.config.js --watch",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --config jest.config.js --coverage",
"clean": "rm -rf out dist coverage",
"prepublishOnly": "npm run build && npm run test:unit"
},
"keywords": [
"mcp-agentic",
"mcp",
"acp",
"stdio-bus",
"stdiobus",
"agent",
"delegation",
"multi-agent",
"model-context-protocol",
"agent-orchestration"
],
"author": "Raman Marozau, raman@worktif.com",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/stdiobus/mcp-agentic.git"
},
"homepage": "https://github.com/stdiobus/mcp-agentic#readme",
"bugs": {
"url": "https://github.com/stdiobus/mcp-agentic/issues"
},
"engines": {
"node": ">=20.0.0"
},
"peerDependencies": {
"@anthropic-ai/sdk": ">=0.30.0",
"@google/generative-ai": ">=0.21.0",
"openai": ">=4.0.0"
},
"peerDependenciesMeta": {
"openai": {
"optional": true
},
"@anthropic-ai/sdk": {
"optional": true
},
"@google/generative-ai": {
"optional": true
}
},
"overrides": {
"fast-uri": ">=3.1.2",
"hono": ">=4.12.18",
"ip-address": ">=10.2.0",
"express-rate-limit": ">=8.5.1"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@stdiobus/node": "^2.0.0",
"zod": "^3.25.0",
"zod-to-json-schema": "^3.25.0"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.91.1",
"@google/generative-ai": "^0.24.1",
"@types/jest": "^29.5.14",
"@types/node": "^24.0.0",
"esbuild": "^0.25.0",
"fast-check": "^3.15.0",
"jest": "^29.7.0",
"openai": "^6.35.0",
"ts-jest": "^29.2.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.8.3"
}
}