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

@fanvue/ui

v2.4.0

Published

React component library built with Tailwind CSS for Fanvue ecosystem

Readme

@fanvue/ui

React component library built with Tailwind CSS for the Fanvue ecosystem.

CI Chromatic npm version npm downloads bundle size License TypeScript Storybook Showcase GitHub

Features

  • 🎨 Tailwind CSS v4 - Modern CSS-first theming with design tokens
  • Accessible - WCAG 2.1 AA compliant with Radix UI primitives
  • 📦 Tree-shakable - Import only what you use
  • 🌙 Dark mode - Built-in light/dark theme support
  • 📝 TypeScript - Full type definitions included
  • 🧪 Tested - Unit tests with Vitest, E2E with Playwright

Setup

1. Install

npm i @fanvue/ui

2. Peer dependencies

# Required
npm i react react-dom tailwindcss

# Only if using DatePicker
npm i react-day-picker

3. Configure CSS

Add the following to your CSS entry point (e.g. app.css):

@import "tailwindcss";
@source "../node_modules/@fanvue/ui";
@import "@fanvue/ui/styles/theme.css";

4. Load Inter font

Load the Inter typeface via Google Fonts or @fontsource-variable/inter:

<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap" rel="stylesheet" />

or

npm i @fontsource-variable/inter

Usage

import { Button } from "@fanvue/ui";

function App() {
  return (
    <Button variant="primary" size="40">
      Click me
    </Button>
  );
}

Theming

Customize the theme by overriding CSS variables:

:root {
  --color-primary-500: #00aeef;
  --color-neutral-500: #6b7280;
  --color-background-0: #ffffff;
}

Development

Prerequisites

  • Node.js 20+
  • pnpm 9+

Installation

pnpm install
pnpm dev
pnpm storybook

Scripts

| Command | Description | | ------------------------ | ------------------------------------ | | Development | | | pnpm dev | Start Vite dev server | | pnpm build | Build the library for production | | pnpm preview | Preview production build | | Testing | | | pnpm test | Run unit tests | | pnpm test:watch | Run tests in watch mode | | pnpm test:coverage | Run tests with coverage report | | pnpm test:storybook | Run Storybook interaction tests | | pnpm test:e2e | Run Playwright E2E tests | | pnpm typecheck | Run TypeScript type checking | | Linting & Formatting | | | pnpm lint | Check for lint errors (Biome) | | pnpm lint:fix | Auto-fix lint errors | | pnpm format | Format code | | Storybook | | | pnpm storybook | Start Storybook dev server on port 6006 | | pnpm build-storybook | Build Storybook static site | | Tokens & Build | | | pnpm build:dictionary | Generate styles from design tokens | | pnpm build:showcase | Build the showcase site | | pnpm size-limit | Check bundle size | | Publishing | | | pnpm publish:dry-run | Build and dry-run npm publish |

Figma + Storybook Integration

This library is integrated with Figma through Chromatic Connect. View the complete documentation in Storybook:

pnpm storybook
# Navigate to "Documentation > Figma Integration"

Commit Convention

This project uses Conventional Commits. Commit messages are validated by commitlint.

# Examples
feat(button): add loading state
fix: resolve focus ring issue
docs: update installation guide

For guided commit messages, install Commitizen globally:

npm i -g commitizen

Then use cz instead of git commit.

Contributing

See CONTRIBUTING.md for guidelines.

Security

See SECURITY.md for reporting vulnerabilities.

License

Apache 2.0 © Shift Holdings Ltd