-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.64 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.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
{
"name": "@agent-relay/openclaw",
"version": "7.1.1",
"description": "Relaycast bridge for OpenClaw — messaging, identity, runtime setup, and local spawning",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"relay-openclaw": "./bin/relay-openclaw.mjs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/AgentWorkforce/agent-relay-openclaw.git"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"prepack": "npm run build",
"postinstall": "node -e \"try{require('child_process').execSync('ldd --version 2>&1',{stdio:'pipe'})}catch{try{require('child_process').execSync('apk info gcompat 2>/dev/null',{stdio:'pipe'})}catch{console.warn('\\n\\u26a0\\ufe0f @agent-relay/openclaw: Alpine detected without gcompat. Spawning requires glibc.\\n Install with: apk add gcompat libstdc++\\n')}}\""
},
"dependencies": {
"@agent-relay/sdk": "7.1.1",
"@relaycast/sdk": "^1.0.0",
"ws": "^8.0.0"
},
"optionalDependencies": {
"dockerode": "^5.0.0"
},
"devDependencies": {
"@types/node": "^22.13.10",
"@types/ws": "^8.0.0",
"typescript": "^5.8.0",
"vitest": "^3.2.4"
},
"files": [
"dist/",
"bin/",
"bridge/",
"skill/",
"templates/",
"README.md"
],
"keywords": [
"openclaw",
"relaycast",
"agent-relay",
"multi-agent",
"messaging",
"spawn",
"ai-agents"
],
"license": "Apache-2.0"
}