2025-04-15 21:41:08 -07:00
|
|
|
{
|
|
|
|
|
"name": "gemini-code",
|
2025-04-21 23:11:51 -07:00
|
|
|
"version": "0.1.0",
|
2025-04-15 21:41:08 -07:00
|
|
|
"private": true,
|
2025-04-17 17:57:39 -04:00
|
|
|
"type": "module",
|
2025-04-15 21:41:08 -07:00
|
|
|
"workspaces": [
|
|
|
|
|
"packages/*"
|
|
|
|
|
],
|
|
|
|
|
"scripts": {
|
2025-04-21 07:50:18 -07:00
|
|
|
"build": "scripts/build.sh",
|
|
|
|
|
"clean": "scripts/clean.sh",
|
2025-04-15 21:41:08 -07:00
|
|
|
"test": "npm run test --workspaces",
|
2025-04-20 14:50:12 -07:00
|
|
|
"start": "scripts/start.sh",
|
2025-04-21 12:39:58 -07:00
|
|
|
"debug": "DEBUG=1 scripts/start.sh",
|
2025-04-21 08:02:11 -07:00
|
|
|
"lint:fix": "eslint . --fix",
|
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 .",
|
2025-04-19 18:07:24 +01:00
|
|
|
"preflight": "npm run format --workspaces --if-present && npm run lint --workspaces --if-present && npm run test --workspaces --if-present",
|
2025-04-26 00:30:50 +00:00
|
|
|
"auth:npm": "npx google-artifactregistry-auth",
|
|
|
|
|
"auth:docker": "gcloud auth configure-docker us-west1-docker.pkg.dev",
|
|
|
|
|
"auth": "npm run auth:npm && npm run auth:docker",
|
2025-04-24 20:02:49 +00:00
|
|
|
"prerelease:dev": "npm run prerelease:version --workspaces && npm run prerelease:deps --workspaces"
|
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",
|
2025-04-20 17:16:25 -07:00
|
|
|
"eslint-plugin-license-header": "^0.8.0",
|
2025-04-17 17:57:39 -04:00
|
|
|
"eslint-plugin-react": "^7.37.5",
|
|
|
|
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
|
|
|
"globals": "^16.0.0",
|
2025-04-21 23:11:51 -07:00
|
|
|
"lodash": "^4.17.21",
|
2025-04-17 17:57:39 -04:00
|
|
|
"prettier": "^3.5.3",
|
2025-04-24 01:16:15 +00:00
|
|
|
"react-devtools-core": "^4.28.5",
|
2025-04-24 20:02:49 +00:00
|
|
|
"typescript-eslint": "^8.30.1",
|
|
|
|
|
"yargs": "^17.7.2"
|
2025-04-15 21:41:08 -07:00
|
|
|
}
|
|
|
|
|
}
|