@ljoukov/llm 7.0.17 → 7.0.19

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": "@ljoukov/llm",
3
- "version": "7.0.17",
3
+ "version": "7.0.19",
4
4
  "description": "Unified wrapper over OpenAI Responses API and Google Gemini (@google/genai), with streaming + usage/cost metrics.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -39,10 +39,10 @@
39
39
  "sideEffects": false,
40
40
  "scripts": {
41
41
  "build": "tsup",
42
- "format": "biome format --write src test benchmarks biome.json tsup.config.ts vitest.unit.config.ts vitest.integration.config.ts",
43
- "format:check": "biome format src test benchmarks biome.json tsup.config.ts vitest.unit.config.ts vitest.integration.config.ts",
44
- "lint": "biome lint src test benchmarks tsup.config.ts vitest.unit.config.ts vitest.integration.config.ts",
45
- "lint:fix": "biome lint --write src test benchmarks tsup.config.ts vitest.unit.config.ts vitest.integration.config.ts",
42
+ "format": "biome format --write src test benchmarks vercel biome.json tsup.config.ts vitest.unit.config.ts vitest.integration.config.ts",
43
+ "format:check": "biome format src test benchmarks vercel biome.json tsup.config.ts vitest.unit.config.ts vitest.integration.config.ts",
44
+ "lint": "biome lint src test benchmarks vercel tsup.config.ts vitest.unit.config.ts vitest.integration.config.ts",
45
+ "lint:fix": "biome lint --write src test benchmarks vercel tsup.config.ts vitest.unit.config.ts vitest.integration.config.ts",
46
46
  "bench:agent": "tsx benchmarks/agent/run.ts",
47
47
  "bench:agent:estimate": "tsx benchmarks/agent/run.ts --estimate-only",
48
48
  "bench:agent:latest": "tsx benchmarks/agent/run.ts --tasks all --prune-traces",
@@ -58,7 +58,8 @@
58
58
  "test:integration:openai-models": "vitest run --config vitest.integration.config.ts test/openai-models.integration.test.ts",
59
59
  "test:integration:bun": "bunx vitest run --config vitest.integration.config.ts",
60
60
  "test:integration:runtimes": "npm run test:integration:node && npm run test:integration:bun",
61
- "typecheck": "tsc -p tsconfig.json --noEmit",
61
+ "typecheck": "tsc -p tsconfig.json --noEmit && npm run typecheck:vercel-codex-proxy",
62
+ "typecheck:vercel-codex-proxy": "tsc -p vercel/codex-proxy/tsconfig.json --noEmit",
62
63
  "verify": "npm run format:check && npm run lint && npm run typecheck && npm run test:unit && npm run build",
63
64
  "prepack": "npm run verify"
64
65
  },