managarten/apps/memoro/apps/server/package.json
Till JS bdf166a838 feat(memoro/server): add Zod schema validation tests with vitest
59 tests covering all API request schemas (createMemo, appendMemo, combineMemo,
spaces, invites, credits, pagination, transcription callbacks, etc.).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-01 15:43:05 +02:00

23 lines
516 B
JSON

{
"name": "@memoro/server",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "bun run --hot src/index.ts",
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun"
},
"dependencies": {
"@manacore/shared-hono": "workspace:*",
"@supabase/supabase-js": "^2.49.5",
"hono": "^4.7.0",
"uuid": "^11.0.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/uuid": "^10.0.0",
"typescript": "^5.5.0",
"vitest": "^3.0.0"
}
}