- gitea remote now points to http://143.198.27.163:3000/admin/timmy-tower.git (no more bore tunnel / Tailscale dependency) - push-to-gitea.sh: default URL → hermes, user → admin, fix http:// URL injection - .gitea-credentials: hermes token saved (gitignored) - orval.config.cjs: converted from .ts (fixed orval v8 TS config loading) - api-zod/src/index.ts: removed duplicate types/ re-export (both api.ts and types/ export same names — api.ts is sufficient) - integrations-gemini-ai/tsconfig.json: types:[] (no @types/node in this pkg) - batch/utils.ts: import AbortError as named export (not pRetry.AbortError) - image/index.ts: remove ai re-export (ai only on main client.ts now) - routes/gemini.ts: req.params[id] cast to String() for Express 5 type compat - package.json typecheck: exclude mockup-sandbox (pre-existing React 19 ref errors)
22 lines
822 B
JSON
22 lines
822 B
JSON
{
|
|
"name": "workspace",
|
|
"version": "0.0.0",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"preinstall": "sh -c 'rm -f package-lock.json yarn.lock; case \"$npm_config_user_agent\" in pnpm/*) ;; *) echo \"Use pnpm instead\" >&2; exit 1 ;; esac'",
|
|
"build": "pnpm run typecheck && pnpm -r --if-present run build",
|
|
"typecheck:libs": "tsc --build",
|
|
"typecheck": "pnpm run typecheck:libs && pnpm -r --filter \"./artifacts/**\" --filter \"!./artifacts/mockup-sandbox\" --filter \"./scripts\" --if-present run typecheck",
|
|
"lint": "eslint .",
|
|
"test": "bash scripts/test-local.sh",
|
|
"test:prod": "BASE=https://timmy.replit.app bash timmy_test.sh"
|
|
},
|
|
"private": true,
|
|
"devDependencies": {
|
|
"eslint": "^10.0.3",
|
|
"prettier": "^3.8.1",
|
|
"typescript": "~5.9.2",
|
|
"typescript-eslint": "^8.57.1"
|
|
}
|
|
}
|