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

vireokit

v0.1.2

Published

A themeable React + SCSS component library

Readme

VireoKit

npm package name: vireokit

A themeable React + SCSS component library — 17 components spanning primitives, overlays, data, and layout, all driven by CSS-variable design tokens with built-in light/dark theming.

Install

npm install vireokit
# peers: react >=18, react-dom >=18, react-router-dom >=6

Usage

Styles load automatically with the components (the package entry imports its own CSS), so you only need to wrap your app and use any component:

import {
  ThemeProvider,
  NotificationProvider,
  Button,
} from "vireokit";

export default function App() {
  return (
    <ThemeProvider defaultTheme="light">
      <NotificationProvider>
        <Button variant="primary" onClick={() => {}}>Save</Button>
      </NotificationProvider>
    </ThemeProvider>
  );
}

Need the stylesheet on its own (e.g. to control load order)? Import it explicitly:

import "vireokit/styles"; // dist/style.css

Prefer to compile the SCSS yourself (to reuse tokens/mixins)? Import the source entry:

@use "vireokit/scss";

Theming

Every design decision is a CSS custom property on :root, overridden under [data-theme="dark"]. Components reference token names only — re-theming is a token swap. Toggle with the bundled provider:

import { useTheme } from "vireokit";
const { theme, toggleTheme } = useTheme();

Re-brand by redefining tokens after the stylesheet import:

:root {
  --color-primary: #7c3aed;
  --radius-md: 14px;
}

Components

| Group | Components | | --- | --- | | Primitives | Button, Input, Select, Badge, Icon | | Overlays & feedback | Modal, Drawer, Popover, NotificationProvider / useNotification, Loading, Skeleton | | Data & navigation | Table, TableContainer, Pagination, Tab, Breadcrumb | | Layout | Layout, Sidebar, Topbar | | Theme | ThemeProvider, useTheme |

Documentation

The project ships its own docs website — a page per component with live, copyable examples, props tables, a theming/tokens guide, and a full dashboard demo — plus a Storybook catalog.

npm run dev            # docs site (component-wise examples + Live Demo)
npm run storybook      # Storybook catalog (port 6006)
npm run build          # build the docs site
npm run build:pkg      # build the library: dist/index.js + dist/style.css
npm run build-storybook

Publishing

The package is currently "private": true. To publish: set "private": false, pick a registry (npm or GitHub Packages), then npm publish — the prepublishOnly script builds dist/ automatically.

Tech Stack

  • Framework: React 19
  • Styling: SCSS with CSS-variable tokens (@use module system)
  • Docs: custom docs site + Storybook 8
  • Build: Vite 6 (library mode)