mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 10:41:09 +02:00
Replace NestJS framework with Hono + Bun, eliminating the last NestJS service from the stack. All business logic preserved: - CAS upload with SHA-256 dedup - BullMQ image processing (Sharp thumbnails/variants) - Matrix MXC URL import - EXIF extraction - File streaming/transforms - Prometheus metrics 23 NestJS files → 12 Hono files. Zero NestJS in the monorepo. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
30 lines
693 B
JSON
30 lines
693 B
JSON
{
|
|
"name": "@mana-media/api",
|
|
"version": "0.2.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "bun run --watch src/index.ts",
|
|
"start": "bun run src/index.ts",
|
|
"type-check": "tsc --noEmit",
|
|
"db:push": "drizzle-kit push",
|
|
"db:studio": "drizzle-kit studio"
|
|
},
|
|
"dependencies": {
|
|
"bullmq": "^5.34.0",
|
|
"drizzle-orm": "^0.38.3",
|
|
"exifr": "^7.1.3",
|
|
"hono": "^4.7.0",
|
|
"mime-types": "^2.1.35",
|
|
"minio": "^8.0.0",
|
|
"postgres": "^3.4.5",
|
|
"prom-client": "^15.1.0",
|
|
"sharp": "^0.33.0"
|
|
},
|
|
"devDependencies": {
|
|
"@manacore/shared-drizzle-config": "workspace:*",
|
|
"@types/mime-types": "^2.1.4",
|
|
"@types/node": "^22.0.0",
|
|
"drizzle-kit": "^0.30.1",
|
|
"typescript": "^5.7.0"
|
|
}
|
|
}
|