-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.18 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.18 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
{
"name": "@roar-protocol/sdk",
"version": "0.3.2",
"description": "TypeScript SDK for the ROAR Protocol (Real-time Open Agent Runtime)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "node --import tsx --test \"test/**/*.test.ts\"",
"example:server": "tsx ../examples/ts/echo_server.ts",
"example:client": "tsx ../examples/ts/client.ts"
},
"keywords": [
"roar",
"protocol",
"agent",
"ai",
"sdk",
"did",
"identity",
"mcp",
"a2a"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ProwlrBot/roar-protocol.git"
},
"homepage": "https://github.com/ProwlrBot/roar-protocol#readme",
"bugs": {
"url": "https://github.com/ProwlrBot/roar-protocol/issues"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^25.5.0",
"tsx": "^4.21.0",
"typescript": "^5.4.0"
}
}