6559ad3944
Express server with /health and a LiveKit token endpoint. Module skeletons for the full loop: vision (Gemini), GitHub fusion, collision detector (pure, testable), intervention engine, and continual-learning memory store. Approve native build scripts (esbuild/genai/protobufjs) at the workspace root. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
37 lines
906 B
JSON
37 lines
906 B
JSON
{
|
|
"name": "podman",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"description": "Ambient AI teammate that prevents merge collisions before code is pushed",
|
|
"type": "module",
|
|
"packageManager": "pnpm@10.32.1",
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"scripts": {
|
|
"dev": "pnpm -r --parallel dev",
|
|
"dev:frontend": "pnpm --filter @podman/frontend dev",
|
|
"dev:backend": "pnpm --filter @podman/backend dev",
|
|
"build": "pnpm -r build",
|
|
"typecheck": "pnpm -r typecheck",
|
|
"lint": "eslint .",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check ."
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@types/node": "^26.0.1",
|
|
"eslint": "^10.6.0",
|
|
"prettier": "^3.9.0",
|
|
"typescript": "^6.0.3",
|
|
"typescript-eslint": "^8.62.0"
|
|
},
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"esbuild",
|
|
"@google/genai",
|
|
"protobufjs"
|
|
]
|
|
}
|
|
}
|