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

@zuish/cli

v1.0.7

Published

CLI tool for ZUI components

Readme

ZUI CLI

A command-line tool for integrating ZUI components into your project.

Usage

Initialize ZUI

Set up ZUI in your project with an interactive prompt:

npx zui init

This command will:

  • Guide you through framework selection
  • Let you choose accent and gray color themes
  • Install the necessary theme configuration
  • Set up the initial component structure

Add Components

Add specific components to your project:

npx zui add button card dialog

Add all available components:

npx zui add --all

You can also add more Radix colors this way

npx zui add iris jade crimson

Debug Configuration

View your current ZUI configuration:

npx zui debug

Options

zui -v, --version    # Display version number
zui -h, --help       # Display help information

Support

Report issues at: https://github.com/zalify/zui/issues

Local testing without publishing

Use this flow to test the CLI in a demo app without publishing to npm.

For Next.js projects, Panda recommends initializing with PostCSS support: bun add -D @pandacss/dev && bun panda init --postcss.

One-command flow

From the repo root:

bun run cli:test:local

This will:

  • build and pack @zuish/cli
  • install the tarball into playgrounds/next16-cli-demo
  • initialize Panda with --postcss
  • run zui init --default
  • add button and card
  • run panda codegen --clean

If the demo app does not exist, create it once with:

npx [email protected] "playgrounds/next16-cli-demo" --ts --app --use-npm --yes --import-alias "@/*"
# Set your repo root once per shell session
export REPO_ROOT="/path/to/zui"

# 1) Build and pack the local CLI
cd "$REPO_ROOT/packages/cli"
bun run build
npm pack
export CLI_TARBALL="$(pwd)/zuish-cli-<version>.tgz"

# 2) Install the local tarball in your demo app
cd "$REPO_ROOT/playgrounds/next16-cli-demo"
npm i -D "$CLI_TARBALL"

# 3) Run non-interactive init and add commands
npx panda init --force --jsx-framework react --postcss
npx zui init --default
npx zui add button
npx zui add card

# 4) Regenerate Panda output and verify recipe exports
npx panda codegen --clean

Expected results:

  • tsconfig.json includes baseUrl and styled-system/* path mapping.
  • panda.config.ts includes jsxFramework.
  • src/theme/recipes/index.ts contains both button and card.
  • styled-system/recipes/index.mjs exports both button and card.