@agenticprimitives/key-custody 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 +16 -16
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agenticprimitives/key-custody",
3
- "version": "0.1.0-alpha.2",
3
+ "version": "0.1.0-alpha.3",
4
4
  "description": "Pluggable envelope encryption + signers + HMAC providers (local-AES / AWS KMS / GCP KMS). Pure crypto primitives; no session lifecycle (that's in delegation).",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -47,15 +47,6 @@
47
47
  "spec.md",
48
48
  "README.md"
49
49
  ],
50
- "scripts": {
51
- "build": "tsc -p tsconfig.build.json",
52
- "typecheck": "tsc -p tsconfig.json --noEmit",
53
- "test": "vitest run",
54
- "test:unit": "vitest run test/unit",
55
- "test:integration": "vitest run test/integration --passWithNoTests",
56
- "test:watch": "vitest",
57
- "clean": "rm -rf dist"
58
- },
59
50
  "publishConfig": {
60
51
  "access": "public"
61
52
  },
@@ -64,10 +55,10 @@
64
55
  "@noble/hashes": "^1.5.0"
65
56
  },
66
57
  "peerDependencies": {
67
- "@agenticprimitives/audit": "workspace:*",
68
- "@agenticprimitives/connect-auth": "workspace:*",
69
- "@agenticprimitives/types": "workspace:*",
70
- "viem": "^2.50.0"
58
+ "viem": "^2.50.0",
59
+ "@agenticprimitives/audit": "0.1.0-alpha.3",
60
+ "@agenticprimitives/connect-auth": "0.1.0-alpha.3",
61
+ "@agenticprimitives/types": "0.1.0-alpha.3"
71
62
  },
72
63
  "devDependencies": {
73
64
  "vitest": "^2.1.0"
@@ -80,5 +71,14 @@
80
71
  "secp256k1",
81
72
  "hmac",
82
73
  "agentic"
83
- ]
84
- }
74
+ ],
75
+ "scripts": {
76
+ "build": "tsc -p tsconfig.build.json",
77
+ "typecheck": "tsc -p tsconfig.json --noEmit",
78
+ "test": "vitest run",
79
+ "test:unit": "vitest run test/unit",
80
+ "test:integration": "vitest run test/integration --passWithNoTests",
81
+ "test:watch": "vitest",
82
+ "clean": "rm -rf dist"
83
+ }
84
+ }