mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-22 17:57:46 +00:00
* Adding some wiring to allow the Ink app to warn if there are local development changes that haven't been captured in the recent build of the Gemini CLI. * Adding a new useAppEffects.ts file that wores some useEffect handlers in. * Updating package-lock.json to resolve `npm ci` issues. * Updating package-lock.json and package.json to resolve `npm ci` issues.
41 lines
983 B
JSON
41 lines
983 B
JSON
{
|
|
"name": "@google/gemini-code",
|
|
"version": "1.0.0",
|
|
"description": "Gemini Code CLI",
|
|
"type": "module",
|
|
"main": "gemini.js",
|
|
"scripts": {
|
|
"build": "tsc && cp package.json README.md ../../LICENSE dist/ && touch dist/.last_build",
|
|
"start": "node dist/gemini.js",
|
|
"debug": "node --inspect-brk dist/gemini.js",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"format": "prettier --write ."
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"dependencies": {
|
|
"@google/genai": "^0.8.0",
|
|
"diff": "^7.0.0",
|
|
"dotenv": "^16.4.7",
|
|
"fast-glob": "^3.3.3",
|
|
"ink": "^5.2.0",
|
|
"ink-select-input": "^6.0.0",
|
|
"ink-spinner": "^5.0.0",
|
|
"ink-text-input": "^6.0.0",
|
|
"react": "^18.3.1",
|
|
"yargs": "^17.7.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/diff": "^7.0.2",
|
|
"@types/dotenv": "^6.1.1",
|
|
"@types/node": "^20.11.24",
|
|
"@types/react": "^19.1.0",
|
|
"@types/yargs": "^17.0.32",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|