@voidly/agent-sdk 2.0.0 → 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/dist/index.d.mts +52 -3
- package/dist/index.d.ts +52 -3
- package/dist/index.js +2248 -268
- package/dist/index.mjs +2248 -268
- package/package.json +16 -4
package/package.json
CHANGED
|
@@ -1,17 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voidly/agent-sdk",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "E2E encrypted agent-to-agent communication SDK — padding, sealed sender
|
|
3
|
+
"version": "2.2.0",
|
|
4
|
+
"description": "E2E encrypted agent-to-agent communication SDK — ML-KEM-768 post-quantum hybrid, forward secrecy, padding, sealed sender",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
|
-
"files": [
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
9
11
|
"scripts": {
|
|
10
12
|
"build": "tsup",
|
|
11
13
|
"test": "node test-e2e.mjs",
|
|
12
14
|
"prepublishOnly": "npm run build"
|
|
13
15
|
},
|
|
14
16
|
"dependencies": {
|
|
17
|
+
"mlkem": "^2.5.0",
|
|
15
18
|
"tweetnacl": "^1.0.3",
|
|
16
19
|
"tweetnacl-util": "^0.15.1"
|
|
17
20
|
},
|
|
@@ -19,7 +22,16 @@
|
|
|
19
22
|
"tsup": "^8.0.0",
|
|
20
23
|
"typescript": "^5.0.0"
|
|
21
24
|
},
|
|
22
|
-
"keywords": [
|
|
25
|
+
"keywords": [
|
|
26
|
+
"agent",
|
|
27
|
+
"encryption",
|
|
28
|
+
"e2e",
|
|
29
|
+
"nacl",
|
|
30
|
+
"did",
|
|
31
|
+
"voidly",
|
|
32
|
+
"mcp",
|
|
33
|
+
"a2a"
|
|
34
|
+
],
|
|
23
35
|
"license": "MIT",
|
|
24
36
|
"repository": {
|
|
25
37
|
"type": "git",
|