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

@dreamy-ui/cli

v2.0.1

Published

CLI for Dreamy UI

Downloads

180

Readme

@dreamy-ui/cli

The official CLI for Dreamy UI projects.

Installation

# npm
npm install -D @dreamy-ui/cli

# pnpm
pnpm add -D @dreamy-ui/cli

# yarn
yarn add -D @dreamy-ui/cli

# bun
bun add -D @dreamy-ui/cli

Or use it directly with npx:

npx @dreamy-ui/cli [command]

Commands

init

Initialize Dreamy UI in your project with automatic setup.

npx @dreamy-ui/cli init

Features:

  • 🔍 Automatically detects your framework (React Router v7, Next.js, or Vite)
  • 📦 Installs all required dependencies (Panda CSS + Dreamy UI)
  • ⚙️ Creates and configures panda.config.ts
  • 🔧 Updates vite.config or postcss.config with Panda CSS PostCSS plugin
  • 🧹 Removes default Tailwind CSS (React Router v7 only)
  • 🎨 Sets up CSS files with proper imports
  • 🚀 Creates a DreamyProvider component
  • 📝 Updates your tsconfig.json with @/* path alias for components (TypeScript projects)
  • 🎯 Runs Panda CSS codegen
  • 🎁 Adds recommended starter components (button, flex, text, heading)

Options:

  • --yes, -y - Skip all prompts and use defaults
  • --skip-install - Skip dependency installation
  • --skip-components - Skip adding recommended components

add

Add components to your project.

npx @dreamy-ui/cli add [components...]

Examples:

# Add a single component
npx @dreamy-ui/cli add button

# Add multiple components
npx @dreamy-ui/cli add button input card

# Add all components
npx @dreamy-ui/cli add --all

Options:

  • --all - Add all available components
  • --force, -f - Overwrite existing files
  • --dry-run, -d - Preview changes without writing files
  • --outdir <dir> - Specify output directory
  • --tsx - Force TypeScript output

list

List all available components.

npx @dreamy-ui/cli list

diff

Compare local components with registry versions.

npx @dreamy-ui/cli diff [component]

Quick Start

  1. Initialize Dreamy UI in your project:
npx @dreamy-ui/cli init
  1. Add components you need:
npx @dreamy-ui/cli add button input card
  1. Start building!
import { Button } from "@dreamy-ui/react";

export default function App() {
	return <Button>Hello Dreamy UI! 🌙</Button>;
}

Supported Frameworks

  • ✅ React Router v7 (Framework Mode)
  • ✅ Next.js 13+ (App Router)
  • ✅ Vite + React
  • ✅ Remix (via Vite)

Documentation

For detailed documentation, visit dreamy-ui.com/docs.

License

MIT