Files
TJWaterAgent/package.json
T
jiang d782b7fa11
Agent CI/CD / docker-image (push) Failing after 15m0s
Agent CI/CD / deploy-fallback-log (push) Successful in 0s
fix(session): propagate network context
2026-07-17 16:33:11 +08:00

37 lines
1.1 KiB
JSON

{
"name": "tjwater-agent",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"postinstall": "bun run install:opencode",
"install:opencode": "bun install --cwd .opencode",
"typecheck": "tsc --noEmit -p tsconfig.json",
"typecheck:opencode": "bun run --cwd .opencode typecheck",
"test:cli": "node --test node-tests/cli/*.node.mjs",
"dev": "bun --watch src/server.ts",
"build": "bun run check",
"check": "bun run typecheck && bun run typecheck:opencode",
"migrate:session-identity": "bun scripts/migrate-session-identity.ts",
"pipeline:trigger": "bash scripts/trigger-gitea-pipeline.sh",
"start": "bun src/server.ts",
"start:prod": "bun run check && bun src/server.ts"
},
"dependencies": {
"@opencode-ai/sdk": "^1.16.2",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"pino": "^9.7.0",
"pino-pretty": "^13.1.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.7.2",
"bun-types": "^1.3.3",
"typescript": "^5.9.3"
}
}