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

@gentleduck/variants

v0.1.23

Published

A package for creating variants of components, providing a simple and efficient way to create variants of components.

Readme

@gentleduck/variants

Type-safe component variants with cva().

Define variant-driven class names with full TypeScript inference, compound variants, and default values. Zero dependencies.

Quick start

npm install @gentleduck/variants
import { cva, type VariantProps } from '@gentleduck/variants'

const button = cva('px-4 py-2 rounded font-medium', {
  variants: {
    intent: {
      primary: 'bg-blue-600 text-white',
      secondary: 'bg-gray-100 text-gray-800',
    },
    size: {
      sm: 'text-sm px-3 py-1',
      md: 'text-base px-4 py-2',
      lg: 'text-lg px-6 py-3',
    },
  },
  defaultVariants: {
    intent: 'primary',
    size: 'md',
  },
  compoundVariants: [
    { intent: 'primary', size: 'lg', className: 'uppercase tracking-wide' },
  ],
})

button()                          // default: primary + md
button({ intent: 'secondary' })  // secondary + md
button({ size: 'lg' })           // primary + lg + compound applied

type ButtonVariants = VariantProps<typeof button>

Features

  • Compound variants -- apply classes when multiple variant values match
  • Default variants -- fallback values when no prop is passed
  • Type inference -- VariantProps<typeof fn> extracts variant props for component interfaces
  • Composable -- pass a cva() result as the base of another cva() call
  • Arrays and objects -- nested class arrays and conditional objects supported
  • Zero dependencies -- no runtime deps, "sideEffects": false

Benchmarks

This package ships a benchmark script that compares @gentleduck/variants against class-variance-authority, tailwind-variants, and clsx across three axes:

  • Bundle size (gzipped): shipped (raw file npm serves), fullApi (bundle export *, minified), realImport (bundle the main export with a side-effect sink, minified — what an app actually pays).
  • Runtime (ns/op): four scenarios (defaults, one variant, variant + size, with className merge), each in warm mode (same props reused — favors memoizing libraries) and cold mode (unique className per call — defeats memoization). Reports median, p95, p99, stddev, and relative margin of error.
  • Features: self-reported capability matrix.

Running

# from this package
bun run benchmark

# from the monorepo root
bun run benchmark:variants

Output is written to public/benchmarks/results.json and mirrored to apps/duck-ui-docs/public/data/benchmarks/variants.json. Each JSON includes the host environment (CPU, node, bun, platform, git commit), wall-clock durations, and a reproCommand string for provenance.

How to read the numbers

Memoization is a first-class feature of this library, so the warm mode reflects its best case. The cold mode is reported alongside to show the non-memoized cost honestly — that's a fairer number when comparing to libraries that don't memoize. Bundle sizes are static; runtime numbers depend on the machine and should be interpreted relative to the other libraries in the same run, not as absolute constants.

Docs

gentleduck.org

License

MIT