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

@golden-passport/ds-patternfly

v0.2.4

Published

Brandable React design system built on PatternFly 6, for BPM/automation projects.

Readme

@golden-passport/ds-patternfly

npm version

A brandable React design system built on PatternFly 6, designed to accelerate front-end work for BPM/automation projects (e.g. KIE).

Layout

Single package — flat repo. src/ is the library; .storybook/ is the dev surface.

Quickstart

pnpm install
pnpm storybook          # run Storybook (interactive — primary dev surface)
pnpm build              # build the lib (outputs ./dist)
pnpm typecheck
pnpm test               # all tests (Node unit + browser-mode story tests)
pnpm test:storybook     # story-level axe scan only (CI-friendly subset)

Storybook a11y in CI

pnpm test:storybook runs vitest run --project=storybook, which uses @storybook/addon-vitest to render every story in headless Chromium and scan each with axe-core (via @storybook/addon-a11y's vitest integration). Any WCAG 2.0/2.1/2.2 AA violation fails the run; results show up identically in the Storybook GUI Tests pane during development.

First-time setup needs Playwright's Chromium:

npx playwright install chromium

Using the lib (in a consuming app)

pnpm add @golden-passport/ds-patternfly @patternfly/react-core @patternfly/react-icons
import "@patternfly/react-core/dist/styles/base.css";
import "@golden-passport/ds-patternfly/styles";

import {
  ThemeProvider,
  AppShell,
  PrimaryDetailLayout,
  goldenPassport,
  primaryDetailLayoutEnLabels,
  appShellEnLabels,
} from "@golden-passport/ds-patternfly";

export default function App() {
  return (
    <ThemeProvider brand={goldenPassport}>
      <AppShell labels={appShellEnLabels} brandLogo={<img src="/logo.svg" alt="" />}>
        <PrimaryDetailLayout
          items={items}
          selectedId={selectedId}
          onSelect={setSelectedId}
          renderListItem={(i) => i.name}
          renderDetail={(i) => <div>{i.description}</div>}
          labels={primaryDetailLayoutEnLabels}
        />
      </AppShell>
    </ThemeProvider>
  );
}

Design principles

  • Brandable: every brand is a BrandTokens object that overrides PatternFly 6 CSS variables. Switch by changing the brand prop.
  • Accessible by design: WCAG 2.2 AA target. ARIA props are required where semantically necessary; brand color contrast is validated by tests.
  • i18n-ready, not bundled: every user-facing string is a prop. English defaults are exported as opt-in objects (e.g. primaryDetailLayoutEnLabels).
  • Strict TypeScript: full .d.ts shipped with both ESM and CJS builds.
  • No Tailwind: PatternFly 6 only.

License

Apache License 2.0 — chosen to align with PatternFly, KIE, and the broader Red Hat ecosystem this lib targets. See LICENSE and NOTICE.