A Svelte application built with TypeScript and Bun.
To install dependencies:
bun install
To run the development server:
bun run dev
To build for production:
bun run build
To run tests:
bun test
evergreen-io/
├── src/
│ ├── lib/ # Reusable components and utilities
│ ├── tests/ # Test files
│ ├── app.d.ts # TypeScript definitions
│ ├── App.svelte # Root Svelte component
│ ├── main.ts # Application entry point
│ └── app.css # Global styles
├── public/ # Static assets
│ └── index.html # HTML template
└── package.json # Project dependencies and scripts
This project uses Bun as the JavaScript runtime and package manager, and Svelte as the frontend framework.