Files
gemini-cli/packages/devtools/package.json
Keith Guerin 576eaff9cd feat(ui): implement refreshed UX for Composer layout
- Promotes refreshed multi-row status area and footer as the default experience.
- Stabilizes Composer row heights to prevent layout 'jitter' during typing and model turns.
- Unifies active hook status and model loading indicators into a single, stable Row 1.
- Refactors settings to use backward-compatible 'Hide' booleans (ui.hideStatusTips, ui.hideStatusWit).
- Removes vestigial context usage bleed-through logic in minimal mode to align with global UX direction.
- Relocates toast notifications to the top status row for improved visibility.
- Updates all CLI UI snapshots and architectural tests to reflect the stabilized layout.
2026-03-17 15:00:53 -07:00

33 lines
671 B
JSON

{
"name": "@google/gemini-cli-devtools",
"version": "0.35.0-nightly.20260311.657f19c1f",
"license": "Apache-2.0",
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
}
},
"scripts": {
"build": "npm run build:client && tsc -p tsconfig.build.json",
"build:client": "node esbuild.client.js"
},
"files": [
"dist",
"client/index.html"
],
"engines": {
"node": ">=20"
},
"devDependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"dependencies": {
"ws": "^8.16.0"
}
}