summaryrefslogtreecommitdiff
path: root/package.json
blob: 50dcaaeeca36962d0dd3877697340cd14d48cf6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
  "name": "gemini-code",
  "version": "1.0.0",
  "private": true,
  "type": "module",
  "workspaces": [
    "packages/*"
  ],
  "scripts": {
    "build": "npm run build --workspaces",
    "clean": "npm run clean --workspaces",
    "test": "npm run test --workspaces",
    "start": "node ./scripts/check-build-status.js && node node_modules/@gemini-code/cli/dist",
    "lint": "eslint . --ext .ts,.tsx",
    "typecheck": "tsc --noEmit --jsx react",
    "format": "prettier --write .",
    "artifactregistry-login": "npx google-artifactregistry-auth"
  },
  "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"
  }
}