@agenticprimitives/a2a 0.0.0-alpha.1 → 0.0.0-alpha.3
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/package.json +16 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agenticprimitives/a2a",
|
|
3
|
-
"version": "0.0.0-alpha.
|
|
3
|
+
"version": "0.0.0-alpha.3",
|
|
4
4
|
"description": "Async, delegation-authorized Agent-to-Agent (A2A) task transport: Task/Message/Artifact runtime over a TaskStore port, JSON-RPC method handlers, SkillHandler dispatch, the A2aWireAdapter client, and scoped-grant caveat builders. Transport-agnostic core (spec 269 / ADR-0034); the Cloudflare TaskStoreDO ships as the ./cloudflare adapter subpath.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -32,21 +32,10 @@
|
|
|
32
32
|
"README.md",
|
|
33
33
|
"CLAUDE.md"
|
|
34
34
|
],
|
|
35
|
-
"scripts": {
|
|
36
|
-
"build": "tsc -p tsconfig.build.json",
|
|
37
|
-
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
38
|
-
"test": "vitest run",
|
|
39
|
-
"test:unit": "vitest run --passWithNoTests",
|
|
40
|
-
"test:watch": "vitest",
|
|
41
|
-
"clean": "rm -rf dist"
|
|
42
|
-
},
|
|
43
35
|
"publishConfig": {
|
|
44
36
|
"access": "public"
|
|
45
37
|
},
|
|
46
38
|
"peerDependencies": {
|
|
47
|
-
"@agenticprimitives/types": "workspace:*",
|
|
48
|
-
"@agenticprimitives/fulfillment": "workspace:*",
|
|
49
|
-
"@agenticprimitives/delegation": "workspace:*",
|
|
50
39
|
"viem": "^2.52.2"
|
|
51
40
|
},
|
|
52
41
|
"devDependencies": {
|
|
@@ -61,5 +50,18 @@
|
|
|
61
50
|
"delegation",
|
|
62
51
|
"jsonrpc",
|
|
63
52
|
"agentic"
|
|
64
|
-
]
|
|
65
|
-
|
|
53
|
+
],
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"@agenticprimitives/delegation": "1.0.0-alpha.7",
|
|
56
|
+
"@agenticprimitives/fulfillment": "0.0.0-alpha.4",
|
|
57
|
+
"@agenticprimitives/types": "1.0.0-alpha.7"
|
|
58
|
+
},
|
|
59
|
+
"scripts": {
|
|
60
|
+
"build": "tsc -p tsconfig.build.json",
|
|
61
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
62
|
+
"test": "vitest run",
|
|
63
|
+
"test:unit": "vitest run --passWithNoTests",
|
|
64
|
+
"test:watch": "vitest",
|
|
65
|
+
"clean": "rm -rf dist"
|
|
66
|
+
}
|
|
67
|
+
}
|