Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
260 changes: 253 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"@google/gemini-cli-core": "file:../core",
"@google/genai": "1.13.0",
"@iarna/toml": "^2.2.5",
"@modelcontextprotocol/sdk": "^1.15.1",
"@modelcontextprotocol/sdk": "^1.17.0",
"@types/update-notifier": "^6.0.8",
"command-exists": "^1.2.9",
"diff": "^7.0.0",
Expand All @@ -55,7 +55,8 @@
"undici": "^7.10.0",
"update-notifier": "^7.3.1",
"yargs": "^17.7.2",
"zod": "^3.23.8"
"zod": "^3.23.8",
"google-auth-library": "^10.2.0"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why was this newly added?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The google-auth-library dependency was added to packages/cli/package.json to fix a TypeScript compilation error that occurred after the dependency updates, but let me check if removing it would actually not cause an error.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tested removing the google-auth-library dependency from the CLI package and the compilation error returns:

The dependency is needed because:

  • CLI package imports OAuth2Client from google-auth-library in test files
  • Without explicit dependency, it resolves to v9.x (lacks these properties)
  • Core package uses v10.x (has these properties)
  • TypeScript sees two different OAuth2Client types and they're incompatible

},
"devDependencies": {
"@babel/runtime": "^7.27.6",
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"dependencies": {
"@google/genai": "1.13.0",
"@lvce-editor/ripgrep": "^1.6.0",
"@modelcontextprotocol/sdk": "^1.11.0",
"@modelcontextprotocol/sdk": "^1.17.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-logs-otlp-grpc": "^0.203.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.203.0",
Expand All @@ -45,7 +45,7 @@
"fdir": "^6.4.6",
"fzf": "^0.5.2",
"glob": "^10.4.5",
"google-auth-library": "^9.11.0",
"google-auth-library": "^10.2.0",
"html-to-text": "^9.0.5",
"https-proxy-agent": "^7.0.6",
"ignore": "^7.0.0",
Expand Down
Loading
Loading