agentbnb 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +144 -0
- package/dist/cli/index.d.ts +1 -0
- package/dist/cli/index.js +4048 -0
- package/dist/index.d.ts +676 -0
- package/dist/index.js +894 -0
- package/package.json +75 -0
package/package.json
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agentbnb",
|
|
3
|
+
"version": "2.2.0",
|
|
4
|
+
"description": "P2P Agent Capability Sharing Protocol — Airbnb for AI agent pipelines",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"agentbnb": "dist/cli/index.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist",
|
|
13
|
+
"README.md",
|
|
14
|
+
"LICENSE"
|
|
15
|
+
],
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
19
|
+
"import": "./dist/index.js"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "tsup",
|
|
24
|
+
"build:hub": "cd hub && pnpm install && pnpm build",
|
|
25
|
+
"build:all": "pnpm build && pnpm build:hub",
|
|
26
|
+
"dev": "tsx watch src/cli/index.ts",
|
|
27
|
+
"test": "vitest",
|
|
28
|
+
"test:run": "vitest run",
|
|
29
|
+
"lint": "eslint src/",
|
|
30
|
+
"typecheck": "tsc --noEmit",
|
|
31
|
+
"prepublishOnly": "pnpm run build && pnpm run typecheck && pnpm run test:run"
|
|
32
|
+
},
|
|
33
|
+
"keywords": [
|
|
34
|
+
"ai",
|
|
35
|
+
"agent",
|
|
36
|
+
"capability",
|
|
37
|
+
"sharing",
|
|
38
|
+
"p2p",
|
|
39
|
+
"protocol",
|
|
40
|
+
"airbnb"
|
|
41
|
+
],
|
|
42
|
+
"author": "Cheng Wen <樂洋集團>",
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@types/better-sqlite3": "^7.6.12",
|
|
46
|
+
"@types/js-yaml": "^4.0.9",
|
|
47
|
+
"@types/node": "^22.0.0",
|
|
48
|
+
"eslint": "^9.0.0",
|
|
49
|
+
"prettier": "^3.4.0",
|
|
50
|
+
"tsup": "^8.3.0",
|
|
51
|
+
"tsx": "^4.19.0",
|
|
52
|
+
"typescript": "^5.7.0",
|
|
53
|
+
"vitest": "^2.1.0"
|
|
54
|
+
},
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"@fastify/cors": "^11.2.0",
|
|
57
|
+
"@fastify/static": "^9.0.0",
|
|
58
|
+
"better-sqlite3": "^11.6.0",
|
|
59
|
+
"bonjour-service": "^1.3.0",
|
|
60
|
+
"commander": "^12.1.0",
|
|
61
|
+
"croner": "^10.0.1",
|
|
62
|
+
"fastify": "^5.1.0",
|
|
63
|
+
"js-yaml": "^4.1.1",
|
|
64
|
+
"typed-emitter": "^2.1.0",
|
|
65
|
+
"zod": "^3.24.0"
|
|
66
|
+
},
|
|
67
|
+
"engines": {
|
|
68
|
+
"node": ">=20.0.0"
|
|
69
|
+
},
|
|
70
|
+
"pnpm": {
|
|
71
|
+
"onlyBuiltDependencies": [
|
|
72
|
+
"better-sqlite3"
|
|
73
|
+
]
|
|
74
|
+
}
|
|
75
|
+
}
|