@tangle-network/agent-gateway 0.1.0 → 0.2.0

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 +9 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tangle-network/agent-gateway",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "type": "module",
5
5
  "description": "x402 + API key payment gateway for Tangle agent products. Mount on any Hono app to expose agents as paid OpenAI-compatible endpoints.",
6
6
  "exports": {
@@ -24,14 +24,20 @@
24
24
  "scripts": {
25
25
  "build": "tsup",
26
26
  "dev": "tsup --watch",
27
- "typecheck": "tsc --noEmit"
27
+ "typecheck": "tsc --noEmit",
28
+ "test": "vitest run",
29
+ "test:watch": "vitest",
30
+ "test:coverage": "vitest run --coverage"
28
31
  },
29
32
  "dependencies": {
30
33
  "hono": "^4.6.0"
31
34
  },
32
35
  "devDependencies": {
33
36
  "@types/node": "^25.6.0",
37
+ "@vitest/coverage-v8": "^4.1.4",
34
38
  "tsup": "^8.0.0",
35
- "typescript": "^5.7.0"
39
+ "typescript": "^5.7.0",
40
+ "viem": "^2.48.1",
41
+ "vitest": "^4.1.4"
36
42
  }
37
43
  }