An open API service indexing awesome lists of open source software.

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

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.