fix: point 'npm run start' to index.js (#199)

This commit is contained in:
Brandon Keiji 2025-04-28 17:44:07 +00:00 committed by GitHub
parent 64910527de
commit ebc0df6cbe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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",