platform-codebase/features/webmap/router/package.json
Quinn Ftw 0167af841c fix(conversation-assistant): chunked sync and remove body size limits
- Chunk messages into batches of 25 to avoid any payload limits
- Remove nginx body size limit (client_max_body_size 0)
- Add NestJS body-parser with 500mb limit as safety net
- Increase proxy timeouts for large syncs

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-30 03:54:50 -08:00

27 lines
619 B
JSON

{
"name": "@lilith/webmap-router",
"version": "1.0.0",
"private": true,
"type": "module",
"main": "./dist/main.js",
"scripts": {
"dev": "tsx watch src/main.ts",
"build": "tsc",
"start": "node dist/main.js",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@lilith/webmap-shared": "workspace:*",
"@lilith/types": "workspace:*",
"fastify": "^5.0.0",
"@fastify/static": "^8.0.0",
"@fastify/cors": "^10.0.0",
"pg": "^8.16.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/pg": "^8.0.0",
"tsx": "^4.19.0",
"typescript": "^5.9.3"
}
}