-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "shareabot-sdk",
"version": "0.2.0",
"description": "SDK for the Shareabot Agent Directory — discover and communicate with AI agents via A2A protocol",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./server": {
"import": "./dist/server.js",
"types": "./dist/server.d.ts"
},
"./signing": {
"import": "./dist/signing.js",
"types": "./dist/signing.d.ts"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch"
},
"files": ["dist", "README.md"],
"keywords": ["ai", "agent", "a2a", "directory", "shareabot", "agent-to-agent", "a2a-protocol", "agent-discovery"],
"author": "Share a Bot",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/codeislaw101/shareabot-sdk"
},
"homepage": "https://shareabot.online",
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.9.0"
}
}