npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@bwo-ui/svelte

v0.7.0

Published

Svelte 4 / Svelte 5 adapter for the bwo-ui kit — 15 GSAP-backed motion actions (splitReveal, magnetic, marquee, flipList, parallax, scrambleText, magneticCursor, tilt, spotlight, scrollProgress, stagger, gradientText, ripple, blur, pin) you compose with u

Readme

@bwo-ui/svelte

Svelte 4 / Svelte 5 adapter for the bwo-ui kit — 15 GSAP-backed motion actions you compose with use:, plus the class-based UI library you apply directly to your own Svelte markup.

Heads up: native Svelte stateful components (Dialog, Popover, Select, Combobox, etc.) are on the roadmap. Today, anything stateful needs to be assembled from Svelte's primitives + the bwo-ui class names. The motion actions and the class kit are production-ready.

Live demos: https://ui.boogie.ro

Install

npm  i   @bwo-ui/svelte gsap
# or: pnpm add @bwo-ui/svelte gsap
# or: yarn add @bwo-ui/svelte gsap
# or: bun  add @bwo-ui/svelte gsap

gsap is a peer dependency.

import '@bwo-ui/svelte/styles.css';

Two ways to use it

1. Motion actions

Idiomatic Svelte — attach behaviour to elements with use: directives, no wrapper DOM.

<script lang="ts">
  import { splitReveal, magnetic, marquee, flipList, tilt, ripple } from '@bwo-ui/svelte';
  import '@bwo-ui/svelte/styles.css';

  let items = $state([1, 2, 3, 4]);
  const shuffle = () => (items = [...items].sort(() => Math.random() - 0.5));
</script>

<h1 use:splitReveal={{ type: 'words,chars', stagger: 0.02 }}>
  Your shortcut to a beautiful UI.
</h1>

<button use:magnetic={{ strength: 0.4 }} use:ripple class="bwo-btn">
  Get started
</button>

<div use:marquee={{ speed: 120 }}>
  <span class="bwo-badge">One</span>
  <span class="bwo-badge">Two</span>
  <span class="bwo-badge">Three</span>
</div>

<button on:click={shuffle} class="bwo-btn bwo-btn--ghost">Shuffle</button>
<div use:flipList={{ flipKey: items.join(',') }} class="flip-grid">
  {#each items as n (n)}
    <div use:tilt={{ max: 8 }} class="flip-tile">{n}</div>
  {/each}
</div>

Action exports

splitReveal · magnetic · marquee · flipList · parallax · scrambleText · magneticCursor · tilt · spotlight · scrollProgress · stagger · gradientText · ripple · blur · pin

Each accepts the same option shape as its @bwo-ui/core factory.

2. UI styles via classes

For stateless UI (buttons, inputs, badges, cards, etc.), apply the bwo-ui class names directly to your own Svelte markup. There's no Svelte component wrapper needed — Svelte's templates already give you full control.

<script lang="ts">
  import '@bwo-ui/svelte/styles.css';
</script>

<button class="bwo-btn">Primary</button>
<button class="bwo-btn bwo-btn--green">Green</button>
<button class="bwo-btn bwo-btn--ghost">Ghost</button>
<button class="bwo-btn bwo-btn--outline">Outline</button>

<input class="bwo-input" placeholder="Type something…" />
<textarea class="bwo-textarea" rows="3" />

<span class="bwo-badge bwo-badge--solid">New</span>
<span class="bwo-badge bwo-badge--soft">Beta</span>
<span class="bwo-badge bwo-badge--green">Live</span>

<div class="bwo-card">
  <h3 class="bwo-card-title">Title</h3>
  <p class="bwo-card-description">Description</p>
</div>

The full class catalogue lives at ui.boogie.ro — every component page documents the matching class names.

Roadmap

Native Svelte 5 stateful components (Dialog, Popover, Tooltip, Select, Combobox, Tabs, Accordion, Toast) are planned for the next minor. For now, assemble them from Svelte's primitives + the bwo-ui CSS classes.

Track progress on GitHub.

License

MIT © BOOGIE WOOGIE S.R.L.