-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 2.82 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 2.82 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": "agentbnb",
"workspaces": [
"packages/*"
],
"version": "1.0.0",
"description": "P2P Agent Capability Sharing Protocol — Airbnb for AI agent pipelines",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"agentbnb": "dist/cli/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"skills/agentbnb/auto-request.ts",
"skills/agentbnb/auto-share.ts",
"skills/agentbnb/bootstrap.ts",
"skills/agentbnb/credit-mgr.ts",
"skills/agentbnb/gateway.ts",
"skills/agentbnb/openclaw-tools.ts",
"skills/agentbnb/HEARTBEAT.rules.md",
"skills/agentbnb/install.sh",
"skills/agentbnb/SKILL.md",
"openclaw.plugin.json"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./sdk": {
"types": "./dist/sdk/index.d.ts",
"import": "./dist/sdk/index.js"
},
"./identity": {
"types": "./dist/identity/index.d.ts",
"import": "./dist/identity/index.js"
}
},
"scripts": {
"build": "tsup",
"build:hub": "cd hub && pnpm install && pnpm build",
"build:all": "pnpm build && pnpm build:hub",
"dev": "tsx watch src/cli/index.ts",
"test": "vitest run",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build && pnpm run typecheck && pnpm run test:run"
},
"keywords": [
"ai",
"agent",
"capability",
"sharing",
"p2p",
"protocol",
"airbnb"
],
"author": "Cheng Wen Chen",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/better-sqlite3": "^7.6.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^9.0.0",
"prettier": "^3.4.0",
"tsup": "^8.3.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.58.0",
"vitest": "^2.1.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.80.0",
"@fastify/cors": "^11.2.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/static": "^9.0.0",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.5",
"@fastify/websocket": "^11.2.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"better-sqlite3": "^11.6.0",
"bonjour-service": "^1.3.0",
"commander": "^12.1.0",
"croner": "^10.0.1",
"fastify": "^5.1.0",
"js-yaml": "^4.1.1",
"typed-emitter": "^2.1.0",
"undici": "^7.24.6",
"ws": "^8.19.0",
"zod": "^3.24.0"
},
"openclaw": {
"extensions": [
"./dist/skills/agentbnb/bootstrap.js"
]
},
"engines": {
"node": ">=20.0.0 <25.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
]
}
}