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

@oxymormon/chg-unified-ds

v0.2.17

Published

A multi-brand design system built with React, React Aria Components, and Tailwind CSS 4.

Downloads

1,078

Readme

CHG Unified Design System

A multi-brand design system built with React, React Aria Components, and Tailwind CSS 4.

Installation

Option 1: npm (Public Registry)

npm install @oxymormon/chg-unified-ds

Option 2: GitHub Packages (Private)

If using the private GitHub Packages version, first configure npm:

Create or update .npmrc in your project root:

@playalink:registry=https://npm.pkg.github.com
//npm.pkg.github.com/:_authToken=YOUR_GITHUB_TOKEN

Your GitHub token needs the read:packages scope.

Then install:

npm install @playalink/chg-unified-ds

Note: Replace @oxymormon with @playalink in all import paths if using GitHub Packages.

Setup

1. Configure CSS

Import the design system styles in your main CSS file:

@import "tailwindcss";
@config "@oxymormon/chg-unified-ds/tailwind.config.storybook";

/* Import design system tokens */
@import "@oxymormon/chg-unified-ds/styles/tokens";

/* Import brand themes */
@import "@oxymormon/chg-unified-ds/themes/weatherby";
@import "@oxymormon/chg-unified-ds/themes/comphealth";
@import "@oxymormon/chg-unified-ds/themes/connect";
@import "@oxymormon/chg-unified-ds/themes/locumsmart";
@import "@oxymormon/chg-unified-ds/themes/modio";
@import "@oxymormon/chg-unified-ds/themes/wireframe";

/* Scan design system for Tailwind classes */
@source "node_modules/@oxymormon/chg-unified-ds/dist/**/*.js";

2. Add theme attribute

Add the data-theme attribute to your app's root element:

<div data-theme="weatherby">
  <App />
</div>

Available themes: weatherby, comphealth, connect, locumsmart, modio, wireframe

Usage

import { Button, Avatar, Tag } from '@oxymormon/chg-unified-ds'

function App() {
  return (
    <div data-theme="weatherby">
      <Button variant="primary" size="md">Click me</Button>
      <Avatar size="md" name="John Doe" initials="JD" />
      <Tag color="blue">Status</Tag>
    </div>
  )
}

Available Components

  • Accordion
  • ActionMenu
  • Avatar
  • Button
  • Checkbox
  • Chip
  • CounterBadge
  • Divider
  • DotStatus
  • Field (Input, Select, Textarea)
  • ProgressBar
  • Radio / RadioGroup
  • Status
  • StepIndicator
  • Tabs
  • Tag
  • Toast
  • Toggle
  • Tooltip

Package Exports

@oxymormon/chg-unified-ds           # Main components
@oxymormon/chg-unified-ds/styles/tokens    # CSS design tokens
@oxymormon/chg-unified-ds/styles/globals   # Global styles
@oxymormon/chg-unified-ds/themes/*         # Brand theme files
@oxymormon/chg-unified-ds/tailwind.config  # Base Tailwind config
@oxymormon/chg-unified-ds/tailwind.config.storybook  # Storybook Tailwind config (with CSS variable colors)

Contributing

Getting Started

npm install
npm run dev

Opens Storybook on http://localhost:6006

Building

# Build Storybook
npm run build

# Build library for publishing
npm run build:lib

# Build design tokens
npm run build:tokens

Token Workflow

  1. Export design tokens from Figma:

    • Open Figma file
    • Plugins → Development → Variables Export
    • Save as tokens/[source-name].tokens.json
  2. Generate CSS:

    npm run build:tokens
  3. Rebuild the library:

    npm run build:lib

Figma Code Connect

Publish component connections to Figma:

npm run figma:publish

Requires FIGMA_ACCESS_TOKEN in .env file.

Project Structure

src/
  components/       # All components
  foundations/      # Design foundation docs
  styles/           # Global styles and tokens
  utils/            # Utility functions
tokens/             # Figma token exports

Adding Components

See CLAUDE.md for detailed component development workflow.