-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 4.46 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 4.46 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
116
117
118
119
120
121
122
123
124
125
126
{
"name": "agent-relay",
"version": "1.3.1",
"description": "Real-time agent-to-agent communication system",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"agent-relay": "dist/cli/index.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"postinstall": "npm rebuild better-sqlite3 && node scripts/postinstall.js",
"build": "npm run clean && tsc && npm run build:dashboard",
"build:dashboard": "cd src/dashboard && npm run build",
"postbuild": "chmod +x dist/cli/index.js && mkdir -p dist/dashboard && cp -r src/dashboard/out dist/dashboard/",
"dev:watch": "tsc -w",
"predev": "npm run clean && tsc && chmod +x dist/cli/index.js",
"dev": "concurrently -n daemon,next -c blue,magenta \"npm run dev:daemon\" \"npm run dev:next\"",
"dev:daemon": "node dist/cli/index.js up --port 3889",
"dev:next": "cd src/dashboard && npm run dev",
"dev:simple": "node dist/cli/index.js up --port 3888",
"dev:local": "npm run build && npm link && echo '✓ agent-relay linked globally'",
"dev:unlink": "npm unlink -g agent-relay && echo '✓ agent-relay unlinked'",
"dev:rebuild": "npm run build && echo '✓ Rebuilt (linked version updated)'",
"start": "node dist/cli/index.js",
"daemon": "node dist/daemon/server.js",
"dashboard": "node dist/dashboard-server/start.js",
"pretest": "npm run build",
"test": "vitest run",
"test:integration": "vitest run test/cloud/*.integration.test.ts",
"test:qa": "./scripts/run-cloud-qa.sh",
"qa": "./scripts/manual-qa.sh",
"qa:stop": "./scripts/manual-qa.sh --stop",
"pretest:coverage": "npm run build",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"lint": "eslint src --ext .ts",
"clean": "rm -rf dist",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:migrate:run": "node scripts/run-migrations.js",
"db:migrate:verify": "node scripts/verify-schema.js",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"services:up": "docker compose -f docker-compose.dev.yml up -d postgres redis && echo '✓ Postgres and Redis running'",
"services:down": "docker compose -f docker-compose.dev.yml down",
"services:logs": "docker compose -f docker-compose.dev.yml logs -f postgres redis",
"cloud:setup": "./scripts/cloud-setup.sh",
"cloud:api": "WORKSPACE_IMAGE=relay-workspace:local WORKSPACE_DEV_MOUNT=true node -r dotenv/config dist/cloud/index.js",
"precloud": "./scripts/cloud-setup.sh --skip-data",
"cloud": "concurrently -n api,daemon,dashboard -c cyan,blue,magenta \"npm run cloud:api\" \"npm run dev:daemon\" \"npm run dev:next\""
},
"keywords": [
"agent",
"ai",
"communication",
"relay",
"real-time",
"claude",
"codex",
"gemini"
],
"author": "Khaliq Gant",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AgentWorkforce/relay.git"
},
"bugs": {
"url": "https://github.com/AgentWorkforce/relay/issues"
},
"homepage": "https://github.com/AgentWorkforce/relay#readme",
"dependencies": {
"@nangohq/node": "^0.69.20",
"@types/jsonwebtoken": "^9.0.10",
"agent-trajectories": "^0.2.3",
"better-sqlite3": "^9.4.3",
"chokidar": "^5.0.0",
"commander": "^12.1.0",
"compare-versions": "^6.1.1",
"connect-redis": "^9.0.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"express": "^5.2.1",
"express-session": "^1.18.2",
"helmet": "^8.1.0",
"http-proxy-middleware": "^3.0.5",
"jsonwebtoken": "^9.0.3",
"node-pty": "1.0.0",
"pg": "^8.16.3",
"redis": "^5.10.0",
"ssh2": "^1.17.0",
"stripe": "^20.1.0",
"uuid": "^10.0.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/express-session": "^1.18.2",
"@types/helmet": "^0.0.48",
"@types/node": "^22.19.3",
"@types/pg": "^8.16.0",
"@types/ssh2": "^1.15.5",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vitest/coverage-v8": "^2.1.8",
"concurrently": "^9.2.1",
"drizzle-kit": "^0.31.8",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"jsdom": "^25.0.1",
"typescript": "^5.9.3",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18.0.0"
}
}