@agenticprimitives/identity-directory-adapters 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 +17 -17
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@agenticprimitives/identity-directory-adapters",
3
- "version": "0.1.0-alpha.2",
4
- "description": "Port implementations for @agenticprimitives/identity-directory: NamingPort (wraps agent-naming), OnChainReadPort (viem readContract), IndexerPort (in-memory; SPARQL/GraphDB later). The one composition layer allowed to import agent-naming (spec 100 \u00a74 / ADR-0015).",
3
+ "version": "0.1.0-alpha.3",
4
+ "description": "Port implementations for @agenticprimitives/identity-directory: NamingPort (wraps agent-naming), OnChainReadPort (viem readContract), IndexerPort (in-memory; SPARQL/GraphDB later). The one composition layer allowed to import agent-naming (spec 100 §4 / ADR-0015).",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -27,23 +27,14 @@
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
  },
42
33
  "peerDependencies": {
43
- "@agenticprimitives/agent-naming": "workspace:*",
44
- "@agenticprimitives/identity-directory": "workspace:*",
45
- "@agenticprimitives/types": "workspace:*",
46
- "viem": "^2.50.0"
34
+ "viem": "^2.50.0",
35
+ "@agenticprimitives/agent-naming": "0.1.0-alpha.3",
36
+ "@agenticprimitives/identity-directory": "0.1.0-alpha.3",
37
+ "@agenticprimitives/types": "0.1.0-alpha.3"
47
38
  },
48
39
  "devDependencies": {
49
40
  "vitest": "^2.1.0"
@@ -54,5 +45,14 @@
54
45
  "adapters",
55
46
  "ports",
56
47
  "agentic"
57
- ]
58
- }
48
+ ],
49
+ "scripts": {
50
+ "build": "tsc -p tsconfig.build.json",
51
+ "typecheck": "tsc -p tsconfig.json --noEmit",
52
+ "test": "vitest run",
53
+ "test:unit": "vitest run test/unit",
54
+ "test:integration": "vitest run test/integration --passWithNoTests",
55
+ "test:watch": "vitest",
56
+ "clean": "rm -rf dist"
57
+ }
58
+ }