Bun + Hono API service for capturing email subscribers across multiple projects. Supports subscribe/unsubscribe, admin stats, and deduplication per email+project pair. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
231 B
JSON
14 lines
231 B
JSON
{
|
|
"name": "leads-api",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "bun run src/index.ts",
|
|
"dev": "bun --watch run src/index.ts"
|
|
},
|
|
"dependencies": {
|
|
"hono": "^4",
|
|
"postgres": "^3"
|
|
}
|
|
}
|