mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-10 22:21:22 -07:00
33 lines
654 B
JSON
33 lines
654 B
JSON
{
|
|
"name": "@google/gemini-cli-devtools",
|
|
"version": "0.31.0-preview.2",
|
|
"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"
|
|
}
|
|
}
|