@cosmonapse/sdk 0.1.2
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/dist/index.cjs +4258 -0
- package/dist/index.d.cts +1915 -0
- package/dist/index.d.ts +1915 -0
- package/dist/index.js +4137 -0
- package/package.json +75 -0
package/package.json
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cosmonapse/sdk",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Event-driven Agent-to-Agent protocol SDK - TypeScript surface of the Cosmonapse envelope spec",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "./dist/index.cjs",
|
|
8
|
+
"module": "./dist/index.js",
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"import": "./dist/index.js",
|
|
14
|
+
"require": "./dist/index.cjs"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"keywords": [
|
|
21
|
+
"agents",
|
|
22
|
+
"a2a",
|
|
23
|
+
"protocol",
|
|
24
|
+
"multi-agent",
|
|
25
|
+
"cosmonapse"
|
|
26
|
+
],
|
|
27
|
+
"engines": {
|
|
28
|
+
"node": ">=18"
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "tsup",
|
|
32
|
+
"typecheck": "tsc --noEmit",
|
|
33
|
+
"test": "node --import tsx --test \"test/**/*.test.ts\""
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"ulid": "^2.3.0"
|
|
37
|
+
},
|
|
38
|
+
"optionalDependencies": {
|
|
39
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
40
|
+
"better-sqlite3": "^11.0.0",
|
|
41
|
+
"kafkajs": "^2.2.4",
|
|
42
|
+
"nats": "^2.28.0",
|
|
43
|
+
"pg": "^8.11.0"
|
|
44
|
+
},
|
|
45
|
+
"peerDependenciesMeta": {
|
|
46
|
+
"nats": {
|
|
47
|
+
"optional": true
|
|
48
|
+
},
|
|
49
|
+
"@modelcontextprotocol/sdk": {
|
|
50
|
+
"optional": true
|
|
51
|
+
},
|
|
52
|
+
"kafkajs": {
|
|
53
|
+
"optional": true
|
|
54
|
+
},
|
|
55
|
+
"better-sqlite3": {
|
|
56
|
+
"optional": true
|
|
57
|
+
},
|
|
58
|
+
"pg": {
|
|
59
|
+
"optional": true
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@types/node": "^20.0.0",
|
|
64
|
+
"tsup": "^8.0.0",
|
|
65
|
+
"tsx": "^4.19.0",
|
|
66
|
+
"typescript": "^5.4.0"
|
|
67
|
+
},
|
|
68
|
+
"repository": {
|
|
69
|
+
"type": "git",
|
|
70
|
+
"url": "https://github.com/Cosmonapse/cosmonapse-core"
|
|
71
|
+
},
|
|
72
|
+
"publishConfig": {
|
|
73
|
+
"access": "public"
|
|
74
|
+
}
|
|
75
|
+
}
|