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

@steez-ui/ui

v0.1.21

Published

React primitives authored with CSS modules for Steez UI.

Downloads

2,319

Readme

Steez UI

Standalone React primitives, flat theme tokens, and shadcn-compatible registry output.

Overview

Steez UI is authored once and shipped in two forms:

  • npm packages for direct React consumption
  • generated registry payloads for source-level installation

The source of truth lives in packages/ui. The registry output is generated from that same source tree, so the package build and registry install path stay aligned.

Live surfaces:

  • Registry frontend: https://steez-ui-6v5.pages.dev
  • Docs: https://steez-ui-6v5.pages.dev/docs/
  • Components: https://steez-ui-6v5.pages.dev/components/
  • Packages: https://steez-ui-6v5.pages.dev/packages/
  • Registry page: https://steez-ui-6v5.pages.dev/registry/
  • Registry index: https://steez-ui-6v5.pages.dev/r/index.json
  • Foundation preset: https://steez-ui-6v5.pages.dev/r/foundation.json

Packages

  • @steez-ui/theme Theme tokens and compatibility aliases.
  • @steez-ui/icons Shared icon surface and provider.
  • @steez-ui/ui React primitives authored in .tsx and .module.css.

Install

Registry:

bunx shadcn@latest add https://steez-ui-6v5.pages.dev/r/foundation.json

Packages:

bun add @steez-ui/theme @steez-ui/icons @steez-ui/ui

Repo Layout

packages/
  theme/    # tokens and compatibility exports
  icons/    # icon primitives and provider
  ui/       # canonical component source

apps/
  registry/ # public install frontend and registry docs

Authoring Model

  • packages/theme defines tokens first.
  • packages/icons owns the shared icon surface.
  • packages/ui is the canonical primitive source.
  • scripts/generate-registry.mjs emits the registry JSON payloads from package source.
  • apps/registry is the documentation, preview, and install frontend.

Development

bun install
bun run build
bun run test
bun run test:install-smoke

Useful commands:

  • bun run generate:registry
  • bun run generate:component-pages
  • bun run check:release
  • bun run publish:packages:dry-run
  • bun run publish:packages
  • bun run deploy:registry

Adding Or Updating A Primitive

  1. Build or update the component in packages/ui/src/components.
  2. Export it from packages/ui/src/index.ts.
  3. Add or update the registry item definition in scripts/generate-registry.mjs.
  4. Add or update the docs metadata and preview in apps/registry/src/components-docs/.
  5. Run bun run build and bun run test.
  6. Confirm the registry frontend reflects the new component or install path.

Release Flow

  1. bun run check:release
  2. bun run publish:packages
  3. bun run deploy:registry

GitHub Actions mirror the same CI, npm publish, and Cloudflare Pages deploy path.

Current Packages

External Setup

  • Add NPM_TOKEN to the GitHub repository secrets before using the package publish workflow.
  • Add CLOUDFLARE_API_TOKEN and CLOUDFLARE_ACCOUNT_ID to the GitHub repository secrets before relying on the Pages deploy workflow.
  • Keep the Cloudflare Pages project named steez-ui so the deploy script and workflow stay in sync.