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 🙏

© 2025 – Pkg Stats / Ryan Hefner

oxyne-ui

v3.0.7

Published

A beautiful and customizable UI component library CLI for React. Add stunning, accessible components to your project with a single command.

Downloads

506

Readme

Oxyne UI

A beautiful and customizable UI component library CLI for React. Add stunning, accessible components to your project with a single command.

Features

  • 🎨 Beautiful Components - Pre-built, customizable UI components
  • Quick Setup - Initialize in seconds with one command
  • 🎯 Type-Safe - Full TypeScript support
  • 🌈 Tailwind CSS - Built with Tailwind for easy customization
  • Accessible - Components built with accessibility in mind
  • 📦 Modular - Add only the components you need

Installation

No installation required! Use with pnpm dlx to always get the latest version:

pnpm dlx oxyne-ui@latest init

Or use with npx:

npx oxyne-ui@latest init

Quick Start

1. Initialize Oxyne UI in your project

pnpm dlx oxyne-ui@latest init

This creates an oxyne.json configuration file in your project root with your preferred settings.

2. Add components

pnpm dlx oxyne-ui@latest add mode-toggle

This will add the component to your project's components directory.

Commands

init

Initialize Oxyne UI in your project. This creates a configuration file (oxyne.json) with your project settings.

pnpm dlx oxyne-ui@latest init

The configuration includes:

  • Project name (from package.json)
  • Components directory path
  • Tailwind CSS settings
  • Path aliases
  • Style preferences

add <component-name>

Add a specific component to your project.

pnpm dlx oxyne-ui@latest add button
pnpm dlx oxyne-ui@latest add card
pnpm dlx oxyne-ui@latest add dialog

Configuration

After running pnpm dlx oxyne-ui@latest init, you'll have an oxyne.json file:

{
  "$schema": "https://oxyne-ui.dev/schema.json",
  "projectName": "my-project",
  "version": "1.0.0",
  "componentsDir": "./src/components/ui",
  "style": "default",
  "tailwind": {
    "config": "tailwind.config.js",
    "css": "./src/styles/globals.css",
    "baseColor": "slate",
    "cssVariables": true
  },
  "aliases": {
    "components": "@/components",
    "utils": "@/lib/utils"
  }
}

Configuration Options

| Option | Description | Default | |--------|-------------|---------| | projectName | Your project name | From package.json | | componentsDir | Where components are installed | ./src/components/ui | | style | Component style variant | default | | tailwind.config | Path to Tailwind config | tailwind.config.js | | tailwind.css | Path to global CSS | ./src/styles/globals.css | | tailwind.baseColor | Base color theme | slate | | tailwind.cssVariables | Use CSS variables | true | | aliases | Path aliases for imports | See example above |

Requirements

  • Node.js 18.0.0 or higher
  • React 18+
  • Tailwind CSS 3+

Examples

Next.js Project

# Create a new Next.js project
npx create-next-app@latest my-app
cd my-app

# Initialize Oxyne UI
pnpm dlx oxyne-ui@latest init

# Add components
pnpm dlx oxyne-ui@latest add button
pnpm dlx oxyne-ui@latest add card

Vite Project

# Create a new Vite project
npm create vite@latest my-app -- --template react
cd my-app

# Initialize Oxyne UI
pnpm dlx oxyne-ui@latest init

# Add components
pnpm dlx oxyne-ui@latest add button

Available Components

More components coming soon! Currently in development:

  • Button
  • Card
  • Dialog
  • Mode Toggle (Dark/Light theme)
  • Input
  • Select
  • And many more...

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT © Eduardo Silveira

Support

Acknowledgments

Inspired by modern component libraries and built for the developer community.


Made with ❤️ by Eduardo Silveira