managarten/apps/mail/package.json
Till-JS 604727c8f9 feat(mail): add complete Mail app with backend, web, mobile, and landing
- Backend (NestJS): Complete API with accounts, folders, emails, labels, compose, attachments, sync providers (IMAP, Gmail, Outlook), AI features (summarize, smart replies, categorization), and OAuth support
- Web (SvelteKit): Full email client UI with Svelte 5 runes, sidebar navigation, email list/detail views, compose modal, and theme support
- Mobile (Expo): React Native app with drawer navigation, email list/detail, compose screen, account management, and theme provider
- Landing (Astro): Marketing page with features, pricing, FAQ sections using shared-landing-ui components
- Storage: Added mail bucket and createMailStorage to shared-storage package
- Branding: Added MailLogo component

Note: Run `pnpm install` to install new dependencies (mailparser)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-03 16:06:32 +01:00

23 lines
719 B
JSON

{
"name": "mail",
"version": "1.0.0",
"private": true,
"description": "Mail App - Email Client with AI Features and Multi-Account Support",
"scripts": {
"dev": "turbo run dev",
"dev:backend": "pnpm --filter @mail/backend dev",
"dev:web": "pnpm --filter @mail/web dev",
"dev:landing": "pnpm --filter @mail/landing dev",
"dev:mobile": "pnpm --filter @mail/mobile dev",
"build": "turbo run build",
"lint": "turbo run lint",
"clean": "turbo run clean",
"db:push": "pnpm --filter @mail/backend db:push",
"db:studio": "pnpm --filter @mail/backend db:studio",
"db:seed": "pnpm --filter @mail/backend db:seed"
},
"devDependencies": {
"typescript": "^5.9.3"
},
"packageManager": "pnpm@9.15.0"
}