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

@zvndev/ui

v0.3.1

Published

A StyleX-native React design system with centralized theming and compile-time styling

Readme

@zvndev/ui

A StyleX-native React design system for teams that want compile-time styling, centralized theming, and a maintained component package instead of copy-paste sprawl.

ZVN UI is not trying to out-feature every React UI library. The pitch is simpler:

  • compile-time styling with StyleX
  • package-managed upgrades instead of app-local component drift
  • central theme defaults that keep component usage small
  • real docs/playground for exploration and testing
  • explicit stability boundaries instead of pretending every export is equally mature

Who this is for

ZVN UI is a fit if you:

  • already like the StyleX model
  • want a maintained React UI package instead of building your own design system from scratch
  • care about centralized theming and consistent defaults
  • want an interactive docs surface for component discovery

It is not trying to be the broadest React component ecosystem on the market.

What makes it different

  • StyleX-native from the start — not a runtime CSS-in-JS wrapper
  • Theme-first API design — configure defaults once, keep component calls small
  • Maintained package model — closer to a design system product than a copy-paste registry
  • AI-readable metadata — a secondary advantage for tooling and docs, not the only story

Install

npm install @zvndev/ui react react-dom @stylexjs/stylex

Required StyleX setup

ZVN UI relies on StyleX at build time, so your app must compile StyleX styles.

npm install -D @stylexjs/babel-plugin vite-plugin-stylex
// vite.config.ts
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import styleX from 'vite-plugin-stylex'

export default defineConfig({
  plugins: [
    react({
      babel: {
        plugins: [
          [
            '@stylexjs/babel-plugin',
            {
              dev: process.env.NODE_ENV !== 'production',
              runtimeInjection: true,
              genConditionalClasses: true,
              treeshakeCompensation: true,
              unstable_moduleResolution: {
                type: 'commonJS',
                rootDir: __dirname,
              },
            },
          ],
        ],
      },
    }),
    styleX(),
  ],
})

Quick start

import {
  ThemeProvider,
  createTheme,
  Button,
  Card,
  CardContent,
  CardTitle,
  Input,
} from '@zvndev/ui'

const theme = createTheme({
  components: {
    button: { defaultVariant: 'secondary', radius: 'full' },
    input: { background: 'muted' },
    card: { shadow: 'md' },
  },
})

export function App() {
  return (
    <ThemeProvider theme={theme} defaultMode="system">
      <Card>
        <CardContent>
          <CardTitle>Contact us</CardTitle>
          <Input placeholder="[email protected]" />
          <Button>Submit</Button>
        </CardContent>
      </Card>
    </ThemeProvider>
  )
}

Stable surface

The public package is focused on the library surface:

  • UI components
  • theme system
  • hooks
  • utilities
  • StyleX tokens and themes

The docs/playground app exists in this repo for exploration, but it is not positioned as the primary public package API.

For maturity tiers, see docs/stability.md.

Why choose ZVN UI

Short version

Choose ZVN UI when you want a maintained, package-managed StyleX design system.

Prefer other options when you want:

  • full copy-paste ownership (shadcn/ui)
  • the biggest ecosystem (MUI, Mantine, Chakra)
  • an enterprise-default design language (MUI)

Theme presets

import {
  ThemeProvider,
  minimalTheme,
  roundedTheme,
  brutalistTheme,
  glassTheme,
} from '@zvndev/ui'

Available presets:

  • minimalTheme
  • roundedTheme
  • brutalistTheme
  • glassTheme

Development

# app / docs playground
npm run dev
npm run build:app
npm run preview

# library
npm run build:lib

# verification
npm run lint
npm run typecheck
npm run test
npm run pack:check

Trust signals

Current repo checks:

  • ESLint
  • TypeScript typecheck
  • Vitest test suite
  • library build
  • app build
  • published-package sanity check

Support and security

License

MIT