Files
gemini-cli/package.json
T

30 lines
868 B
JSON
Raw Normal View History

2025-04-15 21:41:08 -07:00
{
"name": "gemini-code",
"version": "1.0.0",
"private": true,
2025-04-17 17:57:39 -04:00
"type": "module",
2025-04-15 21:41:08 -07:00
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
2025-04-18 14:37:02 -07:00
"clean": "npm run clean --workspaces",
2025-04-15 21:41:08 -07:00
"test": "npm run test --workspaces",
2025-04-18 14:37:02 -07:00
"start": "node ./scripts/check-build-status.js && node node_modules/@gemini-code/cli/dist -- \"$@\"",
2025-04-18 10:20:39 -07:00
"lint": "eslint . --ext .ts,.tsx",
"typecheck": "tsc --noEmit --jsx react",
2025-04-18 14:37:02 -07:00
"format": "prettier --write .",
"artifactregistry-login": "npx google-artifactregistry-auth"
2025-04-17 17:57:39 -04:00
},
"devDependencies": {
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"typescript-eslint": "^8.30.1"
2025-04-15 21:41:08 -07:00
}
}