@agnishc/edb-gemini-proxy 0.1.0 → 0.5.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 (2) hide show
  1. package/CHANGELOG.md +3 -1
  2. package/package.json +25 -7
package/CHANGELOG.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # Changelog
2
2
 
3
- ## [Unreleased]
3
+ ## [0.5.0] - 2026-05-05
4
+
5
+ ## [0.2.0] - 2026-04-29
4
6
 
5
7
  ### Added
6
8
  - Initial release: `gemini_proxy` tool with stream-json event parsing
package/package.json CHANGED
@@ -1,8 +1,13 @@
1
1
  {
2
2
  "name": "@agnishc/edb-gemini-proxy",
3
- "version": "0.1.0",
3
+ "version": "0.5.0",
4
4
  "description": "Pi extension: gemini_proxy tool — delegate tasks to Google Gemini CLI from within pi",
5
- "keywords": ["pi-package", "pi-extension", "edb", "gemini"],
5
+ "keywords": [
6
+ "pi-package",
7
+ "pi-extension",
8
+ "edb",
9
+ "gemini"
10
+ ],
6
11
  "type": "module",
7
12
  "license": "MIT",
8
13
  "author": "Agnish Chakraborty",
@@ -12,12 +17,25 @@
12
17
  "directory": "packages/edb-gemini-proxy"
13
18
  },
14
19
  "homepage": "https://github.com/agnishcc/pi-extention-monorepo/tree/main/packages/edb-gemini-proxy#readme",
15
- "bugs": { "url": "https://github.com/agnishcc/pi-extention-monorepo/issues" },
16
- "publishConfig": { "access": "public" },
17
- "scripts": { "test": "vitest run" },
18
- "files": ["src", "README.md", "LICENSE", "CHANGELOG.md"],
20
+ "bugs": {
21
+ "url": "https://github.com/agnishcc/pi-extention-monorepo/issues"
22
+ },
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
26
+ "scripts": {
27
+ "test": "vitest run"
28
+ },
29
+ "files": [
30
+ "src",
31
+ "README.md",
32
+ "LICENSE",
33
+ "CHANGELOG.md"
34
+ ],
19
35
  "pi": {
20
- "extensions": ["./src/index.ts"]
36
+ "extensions": [
37
+ "./src/index.ts"
38
+ ]
21
39
  },
22
40
  "peerDependencies": {
23
41
  "@mariozechner/pi-coding-agent": "*",