https://github.com/dyc3/shadcn-svelte-timeline
A timeline component for Svelte 5 that you can import with shadcn
https://github.com/dyc3/shadcn-svelte-timeline
shadcn-ui svelte svelte5 timeline timeline-component
Last synced: 5 days ago
JSON representation
A timeline component for Svelte 5 that you can import with shadcn
- Host: GitHub
- URL: https://github.com/dyc3/shadcn-svelte-timeline
- Owner: dyc3
- Created: 2026-03-16T14:56:55.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-03-16T21:37:16.000Z (3 months ago)
- Last Synced: 2026-03-17T06:10:38.764Z (3 months ago)
- Topics: shadcn-ui, svelte, svelte5, timeline, timeline-component
- Language: Svelte
- Homepage: https://shadcn-svelte-timeline.vercel.app/
- Size: 252 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Agents: AGENTS.md
Awesome Lists containing this project
README
# shadcn-svelte timeline
Add the timeline component with:
```sh
npx shadcn-svelte@latest add https://shadcn-svelte-timeline.vercel.app/r/timeline.json
```
This project contains the demo site and registry source for the timeline component.
## Creating a project
If you're seeing this, you've probably already done this step. Congrats!
```sh
# create a new project
npx sv create my-app
```
To recreate this project with the same configuration:
```sh
# recreate this project
bun x sv@0.12.5 create --template minimal --types ts --install bun .
```
## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```sh
bun run dev
```
## Building
To create a production version of your app:
```sh
bun run build
```
You can preview the production build with `bun run preview`.
> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.