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

wpsyde-ui

v1.0.9

Published

Professional UI component manager for WordPress (shadcn/ui style)

Readme

WPSyde UI

Professional UI component manager for WordPress following the shadcn/ui pattern.

✨ Now with Tailwind CSS Integration! Components use the exact same design system as shadcn/ui, adapted for WordPress.

🚀 Quick Start

New Theme with Tailwind CSS (Recommended)

# Navigate to your theme directory
cd wp-content/themes/your-theme-name

# Initialize WPSyde with Tailwind CSS
npx wpsyde-ui init --tailwind

# Build Tailwind CSS
npm run build:css:prod

# Install components
npx wpsyde-ui add Button Card Modal

Existing Theme

# Navigate to your theme directory
cd wp-content/themes/your-theme-name

# Initialize WPSyde
npx wpsyde-ui init

# Set up Tailwind CSS
npx wpsyde-ui setup tailwind

# Build Tailwind CSS
npm run build:css:prod

# Install components
npx wpsyde-ui add Button Card Modal

Available Commands

npx wpsyde-ui init --tailwind   # Initialize with Tailwind CSS setup
npx wpsyde-ui setup tailwind    # Add Tailwind to existing theme
npx wpsyde-ui list              # List available components
npx wpsyde-ui add <name>        # Install a component
npx wpsyde-ui add --all         # Install all components
npx wpsyde-ui remove <name>     # Remove an installed component
npx wpsyde-ui health            # Check registry health
npx wpsyde-ui help              # Show help message

📦 What You Get

  • No npm dependencies - components are copied directly to your theme
  • Full control - customize component code as needed
  • WordPress-native - proper PHP integration and CSS enqueuing
  • Professional workflow - similar to modern component libraries like shadcn/ui

🏗️ Registry Information

This repository serves as the source for the WPSyde component registry:

  • Base URL: https://registry.wpsyde.com
  • Public key: https://registry.wpsyde.com/public-key.pem
  • Catalog: https://registry.wpsyde.com/index.json
  • Components: https://registry.wpsyde.com/components///{manifest.json, component.zip}

Caching

  • index.json: Cache-Control: public, max-age=60
  • components/*: Cache-Control: public, max-age=31536000, immutable
  • public-key.pem: Cache-Control: public, max-age=31536000, immutable

🔧 Development

Available Scripts

# Code quality
pnpm run format          # Format all files
pnpm run format:check    # Check formatting without changing
pnpm run lint            # Run prettier + registry verification
pnpm run verify          # Verify registry setup

# WPSyde CLI
pnpm run wpsyde          # Run CLI directly
pnpm run wpsyde:init     # Initialize wpsyde.json
pnpm run wpsyde:list     # List available components
pnpm run wpsyde:add      # Add a component

Registry Verification

# Verify your registry setup
pnpm run verify

📚 How It Works

  1. Users install npm install wpsyde-ui
  2. CLI downloads components from your live registry at https://registry.wpsyde.com
  3. Components are extracted directly to the user's WordPress theme
  4. No external dependencies - everything works offline after installation

🎯 Component Structure

When you install a component, you get:

your-theme/
├── components/
│   └── Button/
│       ├── Button.css          # Component styles
│       └── component.php       # WordPress integration
└── wpsyde.json                 # Configuration

🔑 Key Management

  • Rotate signing keys: Update public-key.pem and re-sign all manifests with the new private key
  • Keep private keys secure: Never commit private.pem to this repo
  • Key format: Ed25519 public key in PEM format

📝 Notes

  • Versions are immutable; publish a new version for changes
  • CI blocks edits to published versioned paths (components/*/1.0.0/)
  • All component archives are verified for integrity before deployment

🌐 Links

  • Registry: https://registry.wpsyde.com
  • NPM Package: https://www.npmjs.com/package/wpsyde-ui
  • Repository: https://github.com/TechArc-io/wpsyde-registry

No global installations, no WP-CLI plugins, no complex setup! 🎉