@agenticprimitives/agent-naming 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/agent-naming",
3
- "version": "0.1.0-alpha.2",
4
- "description": "Agent Naming Service SDK: ENS-v2-style hierarchical naming for Smart Agents (.agent TLD). Owns name normalization, namehash/labelhash, records schemas, and the AgentNamingClient (resolve / reverse / registry). Speaks naming-domain vocabulary only \u2014 no delegation / caveat / custody concepts.",
3
+ "version": "0.1.0-alpha.3",
4
+ "description": "Agent Naming Service SDK: ENS-v2-style hierarchical naming for Smart Agents (.agent TLD). Owns name normalization, namehash/labelhash, records schemas, and the AgentNamingClient (resolve / reverse / registry). Speaks naming-domain vocabulary only no delegation / caveat / custody concepts.",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -39,23 +39,14 @@
39
39
  "AUDIT.md",
40
40
  "CLAUDE.md"
41
41
  ],
42
- "scripts": {
43
- "build": "tsc -p tsconfig.build.json",
44
- "typecheck": "tsc -p tsconfig.json --noEmit",
45
- "test": "vitest run",
46
- "test:unit": "vitest run test/normalize.test.ts test/namehash.test.ts test/records.test.ts",
47
- "test:integration": "vitest run test/integration.test.ts",
48
- "test:watch": "vitest",
49
- "clean": "rm -rf dist"
50
- },
51
42
  "publishConfig": {
52
43
  "access": "public"
53
44
  },
54
45
  "peerDependencies": {
55
- "@agenticprimitives/agent-account": "workspace:*",
56
- "@agenticprimitives/connect-auth": "workspace:*",
57
- "@agenticprimitives/types": "workspace:*",
58
- "viem": "^2.50.0"
46
+ "viem": "^2.50.0",
47
+ "@agenticprimitives/agent-account": "0.1.0-alpha.3",
48
+ "@agenticprimitives/connect-auth": "0.1.0-alpha.3",
49
+ "@agenticprimitives/types": "0.1.0-alpha.3"
59
50
  },
60
51
  "devDependencies": {
61
52
  "@types/node": "^22.7.0",
@@ -67,5 +58,14 @@
67
58
  "ens",
68
59
  "smart-agent",
69
60
  "agentic"
70
- ]
71
- }
61
+ ],
62
+ "scripts": {
63
+ "build": "tsc -p tsconfig.build.json",
64
+ "typecheck": "tsc -p tsconfig.json --noEmit",
65
+ "test": "vitest run",
66
+ "test:unit": "vitest run test/normalize.test.ts test/namehash.test.ts test/records.test.ts",
67
+ "test:integration": "vitest run test/integration.test.ts",
68
+ "test:watch": "vitest",
69
+ "clean": "rm -rf dist"
70
+ }
71
+ }