mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 18:41:24 +02:00
All app compute servers have been consolidated into apps/api/ (unified Hono/Bun server). Old servers moved to apps/*/apps/server-archived/. Archived: cards, chat, contacts, context, calendar, guides, moodlit, mukke, news, nutriphi, picture, planta, presi, questions, storage, todo, traces Still active: uload (separate domain), memoro (Supabase-based) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
22 lines
517 B
JSON
22 lines
517 B
JSON
{
|
|
"name": "@presi/server",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "Presi server-side compute (Hono + Bun) — share links, admin/GDPR",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "bun run --watch src/index.ts",
|
|
"start": "bun run src/index.ts",
|
|
"type-check": "bun x tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@manacore/shared-hono": "workspace:*",
|
|
"drizzle-orm": "^0.45.1",
|
|
"hono": "^4.7.0",
|
|
"postgres": "^3.4.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.2.0",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|