@agentcash/discovery 0.1.2 → 0.1.4
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/README.md +20 -0
- package/dist/cli.cjs +40 -31
- package/dist/cli.js +40 -31
- package/dist/index.cjs +528 -65
- package/dist/index.d.cts +85 -1
- package/dist/index.d.ts +85 -1
- package/dist/index.js +524 -64
- package/package.json +6 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentcash/discovery",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Canonical OpenAPI-first discovery runtime for the agentcash ecosystem",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -64,6 +64,7 @@
|
|
|
64
64
|
"access": "public"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
|
+
"@x402/core": "^2.5.0",
|
|
67
68
|
"table": "^6.9.0",
|
|
68
69
|
"zod": "^4.1.13"
|
|
69
70
|
},
|
|
@@ -71,7 +72,9 @@
|
|
|
71
72
|
"@changesets/cli": "^2.29.8",
|
|
72
73
|
"@eslint/js": "^10.0.1",
|
|
73
74
|
"@types/node": "^22.18.0",
|
|
75
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
74
76
|
"eslint": "^10.0.0",
|
|
77
|
+
"knip": "^5.85.0",
|
|
75
78
|
"prettier": "^3.8.1",
|
|
76
79
|
"tsup": "^8.5.0",
|
|
77
80
|
"typescript": "^5.9.2",
|
|
@@ -89,6 +92,7 @@
|
|
|
89
92
|
"test:watch": "vitest",
|
|
90
93
|
"audit:registry": "pnpm build && node scripts/audit-registry.mjs",
|
|
91
94
|
"audit:registry:quick": "pnpm build && node scripts/audit-registry.mjs --origin-limit 50 --resource-limit 500",
|
|
92
|
-
"
|
|
95
|
+
"knip": "knip",
|
|
96
|
+
"check": "pnpm format:check && pnpm lint && pnpm knip && pnpm typecheck && pnpm build && pnpm test"
|
|
93
97
|
}
|
|
94
98
|
}
|