adk-llm-bridge 0.3.0 → 0.3.1

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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -11,7 +11,7 @@ Google ADK TypeScript comes with built-in Gemini support. This lightweight bridg
11
11
 
12
12
  ### Key Benefits
13
13
 
14
- - **Minimal** — ~13KB bundle, single dependency (`openai`)
14
+ - **Minimal** — ~10KB bundle (~3KB gzipped), single dependency (`openai`)
15
15
  - **Simple** — 3 lines to integrate any model
16
16
  - **Secure** — No complex dependency tree, just the battle-tested OpenAI SDK
17
17
  - **Compatible** — Works with any OpenAI-compatible API (AI Gateway, OpenRouter, etc.)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adk-llm-bridge",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Use any LLM with Google ADK TypeScript - supports AI Gateway, OpenRouter, and 100+ models",
5
5
  "keywords": [
6
6
  "adk",
@@ -39,10 +39,10 @@
39
39
  },
40
40
  "scripts": {
41
41
  "build": "bun run scripts/build.ts && bun run build:types",
42
- "build:types": "tsc --project tsconfig.build.json",
42
+ "build:types": "bunx tsc --project tsconfig.build.json",
43
43
  "test": "bun test",
44
- "typecheck": "tsc --noEmit",
45
- "typecheck:all": "tsc --noEmit -p tsconfig.test.json",
44
+ "typecheck": "bunx tsc --noEmit",
45
+ "typecheck:all": "bunx tsc --noEmit -p tsconfig.test.json",
46
46
  "lint": "biome lint ./src ./tests",
47
47
  "lint:fix": "biome lint --write ./src ./tests",
48
48
  "format": "biome format ./src ./tests",