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/vue

v0.7.0

Published

Vue 3 adapter for the bwo-ui kit — ~70 motion + UI components that mirror most of @bwo-ui/react. Ships GSAP-backed motion (Tilt, Ripple, Parallax, SplitReveal, Marquee, Magnetic, Spotlight, MediaZoom, Pin, Stagger, ScrollProgress, plus 12 more) alongside

Readme

@bwo-ui/vue

Vue 3 adapter for the bwo-ui kit — most of the @bwo-ui/react surface mirrored as native Vue 3 components and composables. ~70 components covering motion, forms, overlays, layout, and navigation.

Heads up: the React side is the most current of the three adapters. Vue currently lags by a release — 0.6 / 0.7 additions (CircleReveal, ScrollReveal, ScrollMask, ScrollVelocity, ScrollSnap, PageIris, ColorPicker, FileUpload, PinInput, TimePicker, TagInput, HoverCard, SegmentedControl, Confetti, Shake, Squircle, and more) are landing in upcoming minors. Track the roadmap on GitHub.

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

Install

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

gsap is a peer dependency. @bwo-ui/core ships bundled.

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

What's in the adapter

Motion (23)

SplitReveal · Magnetic · Marquee · FlipList · Parallax · Reveal · CountUp · ScrambleText · TextGlitch · MagneticCursor · Tilt · Spotlight · ScrollProgress · Stagger · GradientText · Ripple · Blur · Pin · Spin · Pulse · Glow · Lean · MediaZoom

Forms

Button · IconButton · Input · Textarea · NumberInput · Rate · Select · Checkbox · Switch · Slider · RadioGroup · FormField

Display

Badge · Card · Avatar · AvatarGroup · Skeleton · Progress · Alert · Stat · StatGroup · Separator · AppShell · BrandMark

Layout & navigation

SimpleGrid · Grid · GridItem · Breadcrumb · Pagination · Stepper · Step · Timeline · FloatingActionButton (FAB) · BottomNavigation · Carousel

Overlays

Dialog · Popover · Tooltip · Sheet · Tabs · Accordion

Quick example

<script setup lang="ts">
import { SplitReveal, Tilt, Button, Card, CardHeader, CardTitle } from '@bwo-ui/vue';
import '@bwo-ui/core/styles.css';
</script>

<template>
  <Tilt :max="10" :scale="1.03">
    <Card>
      <CardHeader>
        <CardTitle>
          <SplitReveal type="words,chars" :stagger="0.02">
            Ship the boogie
          </SplitReveal>
        </CardTitle>
      </CardHeader>
      <Button variant="solid">Start free</Button>
    </Card>
  </Tilt>
</template>

What's not here yet

Mirroring the latest React additions. Until those land in Vue, you can:

  • Drop in the React component via a thin wrapper if your stack supports both
  • Apply the bwo-ui CSS classes (bwo-btn, bwo-input, etc.) directly to your Vue markup — they work without a wrapper
  • Open an issue on GitHub if a specific component is blocking you and we'll prioritise

License

MIT © BOOGIE WOOGIE S.R.L.