@agenticprimitives/delegation 0.1.0-alpha.2 → 0.1.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.
Files changed (1) hide show
  1. package/package.json +19 -19
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@agenticprimitives/delegation",
3
- "version": "0.1.0-alpha.2",
4
- "description": "EIP-712 smart-account delegations with caveats; web\u2192agent\u2192MCP token flow; session lifecycle.",
3
+ "version": "0.1.0-alpha.3",
4
+ "description": "EIP-712 smart-account delegations with caveats; web→agent→MCP token flow; session lifecycle.",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -27,15 +27,6 @@
27
27
  "spec.md",
28
28
  "README.md"
29
29
  ],
30
- "scripts": {
31
- "build": "tsc -p tsconfig.build.json",
32
- "typecheck": "tsc -p tsconfig.json --noEmit",
33
- "test": "vitest run",
34
- "test:unit": "vitest run test/unit",
35
- "test:integration": "vitest run test/integration --passWithNoTests",
36
- "test:watch": "vitest",
37
- "clean": "rm -rf dist"
38
- },
39
30
  "publishConfig": {
40
31
  "access": "public"
41
32
  },
@@ -44,12 +35,12 @@
44
35
  "@noble/hashes": "^1.5.0"
45
36
  },
46
37
  "peerDependencies": {
47
- "@agenticprimitives/agent-account": "workspace:*",
48
- "@agenticprimitives/audit": "workspace:*",
49
- "@agenticprimitives/connect-auth": "workspace:*",
50
- "@agenticprimitives/key-custody": "workspace:*",
51
- "@agenticprimitives/types": "workspace:*",
52
- "viem": "^2.50.0"
38
+ "viem": "^2.50.0",
39
+ "@agenticprimitives/agent-account": "0.1.0-alpha.3",
40
+ "@agenticprimitives/audit": "0.1.0-alpha.3",
41
+ "@agenticprimitives/connect-auth": "0.1.0-alpha.3",
42
+ "@agenticprimitives/key-custody": "0.1.0-alpha.3",
43
+ "@agenticprimitives/types": "0.1.0-alpha.3"
53
44
  },
54
45
  "devDependencies": {
55
46
  "vitest": "^2.1.0"
@@ -62,5 +53,14 @@
62
53
  "caveat",
63
54
  "session",
64
55
  "agentic"
65
- ]
66
- }
56
+ ],
57
+ "scripts": {
58
+ "build": "tsc -p tsconfig.build.json",
59
+ "typecheck": "tsc -p tsconfig.json --noEmit",
60
+ "test": "vitest run",
61
+ "test:unit": "vitest run test/unit",
62
+ "test:integration": "vitest run test/integration --passWithNoTests",
63
+ "test:watch": "vitest",
64
+ "clean": "rm -rf dist"
65
+ }
66
+ }