-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.64 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
{
"name": "agent-relay",
"version": "10.3.0",
"description": "Real-time agent-to-agent communication system",
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"scripts/build-cjs.mjs",
"LICENSE",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"default": "./dist/index.cjs"
},
"./mcp": {
"types": "./dist/cli/agent-relay-mcp.d.ts",
"import": "./dist/cli/agent-relay-mcp.js"
},
"./node-embedded": {
"types": "./dist/node-embedded.d.ts",
"import": "./dist/node-embedded.js"
},
"./package.json": "./package.json"
},
"bin": {
"agent-relay": "dist/cli/index.js",
"relay": "dist/cli/index.js"
},
"bundledDependencies": [],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && npm run postbuild",
"postbuild": "chmod +x dist/cli/bootstrap.js dist/cli/index.js && npm run build:cjs",
"build:cjs": "node ./scripts/build-cjs.mjs",
"prepack": "if [ -d ../../node_modules ]; then npm --prefix ../.. run build:cli; else echo 'node_modules not found, skipping prepack build'; fi",
"start": "node dist/cli/index.js",
"lint": "eslint src --ext .ts",
"audit:deps": "echo 'No bundled dependency audit is required for the simplified CLI package.'",
"pack:validate": "npm pack --dry-run"
},
"dependencies": {
"@agent-relay/cloud": "10.2.0",
"@agent-relay/config": "10.2.0",
"@agent-relay/fleet": "10.2.0",
"@agent-relay/harness-driver": "10.2.0",
"@agent-relay/sdk": "10.2.0",
"@agent-relay/utils": "10.2.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"@relayfile/client": "^0.10.21",
"@relayflows/cli": "^1.0.1",
"@xterm/headless": "^6.0.0",
"commander": "^12.1.0",
"dotenv": "^17.2.3",
"jiti": "^2.6.1",
"posthog-node": "^5.29.2",
"ws": "^8.18.3",
"zod": "^3.23.8"
},
"optionalDependencies": {
"ai-hist-native": "^0.4.1"
},
"devDependencies": {
"esbuild": "^0.27.2"
},
"engines": {
"node": ">=20.9.0"
},
"keywords": [
"agent",
"ai",
"communication",
"relay",
"real-time",
"claude",
"codex",
"gemini"
],
"author": "AgentWorkforce <hello@agentrelay.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/AgentWorkforce/relay.git",
"directory": "packages/cli"
},
"bugs": {
"url": "https://github.com/AgentWorkforce/relay/issues"
},
"homepage": "https://github.com/AgentWorkforce/relay#readme",
"bundleDependencies": []
}