-
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) · 2.45 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.45 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": "a2a-bridge",
"version": "0.2.0",
"description": "Bidirectional bridge between Claude Code and other AI coding agents (Codex, OpenClaw, Hermes, ...) over the MCP Channels protocol.",
"type": "module",
"bin": {
"a2a-bridge": "dist/cli.js",
"a2ab": "dist/cli.js"
},
"files": [
"dist/",
"plugins/",
".claude-plugin/",
"scripts/postinstall.cjs",
"README.md",
"LICENSE",
"NOTICE"
],
"scripts": {
"start": "bun run src/runtime-plugin/bridge.ts",
"build:cli": "mkdir -p dist && bun build src/cli/cli.ts --outfile dist/cli.js --target bun && chmod +x dist/cli.js",
"build:plugin": "mkdir -p plugins/a2a-bridge/server && bun build src/runtime-plugin/bridge.ts --outfile plugins/a2a-bridge/server/bridge-server.js --target bun && bun build src/runtime-daemon/daemon.ts --outfile plugins/a2a-bridge/server/daemon.js --target bun",
"postinstall": "node scripts/postinstall.cjs",
"prepare": "node scripts/install-git-hooks.cjs",
"prepublishOnly": "bun run build:cli && bun run build:plugin",
"validate:plugin": "claude plugin validate plugins/a2a-bridge && claude plugin validate .claude-plugin/marketplace.json",
"test": "bun test src",
"test:unit": "bun test src --test-name-pattern '^(?!.*E2E:).*$'",
"typecheck": "tsc --noEmit",
"lint:deps": "depcruise --config .dependency-cruiser.cjs src",
"validate:plugin-versions": "bun scripts/check-plugin-versions.js",
"check": "tsc --noEmit && bun run lint:deps && bun test src && bun run build:plugin && bun scripts/check-plugin-versions.js",
"check:ci": "tsc --noEmit && bun run lint:deps && bun run test:unit && bun run build:plugin && bun scripts/check-plugin-versions.js && bash scripts/smoke-tarball.sh && bash scripts/smoke-e2e.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/firstintent/a2a-bridge.git"
},
"homepage": "https://github.com/firstintent/a2a-bridge#readme",
"bugs": {
"url": "https://github.com/firstintent/a2a-bridge/issues"
},
"keywords": [
"claude-code",
"mcp",
"channels",
"agent",
"bridge",
"multi-agent",
"codex",
"openclaw",
"hermes"
],
"author": "FirstIntent",
"license": "MIT",
"devDependencies": {
"@a2a-js/sdk": "0.3.13",
"@modelcontextprotocol/sdk": "^1.27.1",
"@types/bun": "^1.3.11",
"dependency-cruiser": "^17.3.10",
"typescript": "^5.8.0"
},
"dependencies": {
"@agentclientprotocol/sdk": "0.18.2"
}
}