This project was created with Better-T-Stack, a modern TypeScript stack that combines SvelteKit, and more.
- TypeScript - For type safety and improved developer experience
- SvelteKit - Web framework for building Svelte apps
- TailwindCSS - Utility-first CSS for rapid UI development
- Oxlint - Oxlint + Oxfmt (linting & formatting)
- Starlight - Documentation site with Astro
First, install the dependencies:
bun installThen, run the development server:
bun run devOpen http://localhost:5173 in your browser to see the web application.
- Format and lint fix:
bun run check
watmark/
├── apps/
│ ├── web/ # Frontend application (SvelteKit)
│ ├── docs/ # Documentation site (Astro Starlight)
bun run dev: Start all applications in development modebun run build: Build all applicationsbun run dev:web: Start only the web applicationbun run check-types: Check TypeScript types across all appsbun run check: Run Oxlint and Oxfmtcd apps/docs && bun run dev: Start documentation sitecd apps/docs && bun run build: Build documentation site