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

@boilerhaus-ui/boilerhaus-ui

v0.1.5

Published

Boilerhaus design system — Bauhaus-inspired tokens and components for ScopeHouse and beyond.

Downloads

60

Readme

BoilerHAUS UI

@boilerhaus-ui/boilerhaus-ui is the BoilerHAUS design system package: a Bauhaus-inspired React component library for BoilerHAUS, ScopeHouse, and related products.

It combines:

  • design tokens in CSS
  • React 19 components
  • Tailwind v4 utilities generated from tokens
  • Radix UI primitives for accessibility
  • Storybook as the primary component workshop

Stack

  • React 19
  • TypeScript 5
  • Vite 8
  • Tailwind CSS v4
  • Storybook 10
  • Radix UI

Package

npm install @boilerhaus-ui/boilerhaus-ui
import { Button } from '@boilerhaus-ui/boilerhaus-ui'
import '@boilerhaus-ui/boilerhaus-ui/tokens.css'

If the consuming app uses Tailwind v4, include the package as a source so Tailwind sees the shipped class names:

@import "tailwindcss";
@import "@boilerhaus-ui/boilerhaus-ui/tokens.css";
@source "../node_modules/@boilerhaus-ui/boilerhaus-ui/dist";

Local Development

Install dependencies:

npm install

Run the local Vite app:

npm run dev

Run Storybook:

npm run storybook

Build the package library:

npm run build:lib

Build Storybook:

npm run build-storybook

Lint the repo:

npm run lint

Workflow

Storybook is the main development surface for this repo.

The expected component workflow is:

  1. Define the API in <Component>.stories.tsx
  2. Implement the component in <Component>.tsx
  3. Export it from its local index.ts
  4. Re-export it from src/components/index.ts
  5. Verify accessibility and visual states in Storybook

Design Rules

  • Use tokens only. Do not introduce raw hex values, arbitrary spacing, or ad hoc durations.
  • Prefer Tailwind token utilities in JSX such as bg-signal, text-void, border-rule, rounded-md, and duration-fast.
  • Use CSS custom properties from src/tokens/tokens.css when utilities are not enough.
  • Keep components isolated. Avoid cross-component styling dependencies.
  • Favor Radix primitives for focus management, keyboard behavior, and ARIA support.

The canonical repo rules and design constraints live in CLAUDE.md.

Structure

boilerhaus-ui/
├── .storybook/         Storybook config
├── src/
│   ├── components/     Reusable UI components
│   ├── lib/            Shared helpers such as cn()
│   ├── tokens/         Design tokens
│   ├── index.css       Base styles
│   └── index.ts        Public library entry
├── package.json
└── CLAUDE.md

Current Component Set

The library currently includes:

  • Accordion
  • Alert
  • AspectRatio
  • Avatar
  • Badge
  • Breadcrumb
  • Button
  • Card
  • Checkbox
  • Combobox
  • DataTable
  • DatePicker
  • Dialog
  • DropdownMenu
  • FileUpload
  • Input
  • Label
  • PageShell
  • Popover
  • Progress
  • RadioGroup
  • Select
  • Skeleton
  • Spinner
  • Stat
  • Stepper
  • Switch
  • Table
  • Tabs
  • Textarea
  • Toast
  • Tooltip

Publishing

This package publishes to npm as a public scoped package:

npm publish

Package name:

@boilerhaus-ui/boilerhaus-ui

prepublishOnly automatically runs the library build before publishing.