diff options
Diffstat (limited to 'packages/cli')
| -rw-r--r-- | packages/cli/index.ts | 2 | ||||
| -rw-r--r-- | packages/cli/package.json | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/packages/cli/index.ts b/packages/cli/index.ts index 23e21097..7df29cd0 100644 --- a/packages/cli/index.ts +++ b/packages/cli/index.ts @@ -1,3 +1,5 @@ +#!/usr/bin/env node + /** * @license * Copyright 2025 Google LLC diff --git a/packages/cli/package.json b/packages/cli/package.json index 436a4b77..2f53c609 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -4,7 +4,9 @@ "description": "Gemini Code CLI", "type": "module", "main": "dist/index.js", - "bin": "dist/index.js", + "bin": { + "gemini-code": "dist/index.js" + }, "scripts": { "build": "tsc --build && touch dist/.last_build", "clean": "rm -rf dist", |
