proxitor 0.9.0-beta.2 → 0.9.0-beta.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "proxitor",
3
- "version": "0.9.0-beta.2",
3
+ "version": "0.9.0-beta.3",
4
4
  "type": "module",
5
5
  "description": "Lightweight proxy for routing CLI requests (claude-code, codex) to OpenRouter",
6
6
  "files": [
@@ -62,12 +62,13 @@
62
62
  "format:check": "biome format ./src",
63
63
  "check:biome": "biome check ./src",
64
64
  "typecheck": "tsc --noEmit",
65
+ "typecheck:all": "tsc --noEmit -p tsconfig.tests.json",
65
66
  "test": "vitest run",
66
67
  "test:watch": "vitest",
67
68
  "test:coverage": "vitest run --coverage",
68
69
  "test:integration": "vitest run --reporter verbose tests/integration/",
69
70
  "test:e2e": "vitest run --config vitest.e2e.config.ts",
70
- "check": "npm run typecheck && npm run check:biome && npm run test",
71
+ "check": "npm run typecheck:all && npm run check:biome && npm run test",
71
72
  "version-packages": "changeset version",
72
73
  "release": "changeset publish"
73
74
  },