From ebc0df6cbe120bac4306d026b9afa57eea31284c Mon Sep 17 00:00:00 2001 From: Brandon Keiji Date: Mon, 28 Apr 2025 17:44:07 +0000 Subject: [PATCH] fix: point 'npm run start' to index.js (#199) --- packages/cli/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cli/package.json b/packages/cli/package.json index da626ccc..13403ccf 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -11,8 +11,8 @@ "scripts": { "build": "../../scripts/build_package.sh", "clean": "rm -rf dist", - "start": "node dist/gemini.js", - "debug": "node --inspect-brk dist/gemini.js", + "start": "node dist/index.js", + "debug": "node --inspect-brk dist/index.js", "lint": "eslint . --ext .ts,.tsx", "format": "prettier --write .", "test": "vitest run",