managarten/packages/shared-nestjs-setup/package.json
Till-JS b404ddc9a8 fix(nutriphi): increase body size limit to 50mb for image uploads
The NutriPhi bot was failing with 413 "request entity too large" when
analyzing images via Base64. Added configurable bodyLimit option to
shared-nestjs-setup and set NutriPhi backend to 50mb.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-02 16:08:14 +01:00

29 lines
699 B
JSON

{
"name": "@manacore/shared-nestjs-setup",
"version": "1.0.0",
"description": "Shared NestJS bootstrap utilities for ManaCore backends",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"build": "tsc",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@nestjs/common": "^10.0.0 || ^11.0.0",
"@nestjs/core": "^10.0.0 || ^11.0.0",
"express": "^4.21.0"
},
"devDependencies": {
"@manacore/shared-tsconfig": "workspace:*",
"@types/express": "^4.17.21",
"@types/node": "^22.10.2",
"typescript": "^5.0.0"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0 || ^11.0.0",
"@nestjs/core": "^10.0.0 || ^11.0.0"
}
}