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

@alexourus/ui

v0.3.7

Published

Alexourus UI — Sade, erişilebilir ve minimal React bileşen kütüphanesi

Readme


🌟 Features

  • 🎯 Copy-Paste & Package Hybrid Architecture: Either copy component sources into your project with npx @alexourus/ui add and customize them, or import them directly as a package via npm i @alexourus/ui.
  • Built-in CLI: Zero extra packages required to configure your project (npx @alexourus/ui init) and add components (npx @alexourus/ui add button).
  • Accessibility (WCAG 2.1 AA): Built on top of Radix UI primitives with full keyboard navigation and screen reader support.
  • 🎨 Rich Theming Support: 7 vibrant theme palettes, 5 radius presets, and full CSS Variables-driven Dark Mode.
  • 🧱 49+ Components & SaaS Blocks: Complete set from base primitives (Button, Dialog, InputOTP) to composite SaaS blocks (CookieNotice, PricingTable, AuthCard, DataTable).

🚀 Method 1: Using via CLI (Recommended)

To copy component source codes directly into your project's components/ui directory:

Step 1: Initialize Your Project (Init)

# npm / npx
npx @alexourus/ui init

# pnpm
pnpm dlx @alexourus/ui init

# bun
bunx @alexourus/ui init

Step 2: Add Components (Add)

# Add single or multiple components
npx @alexourus/ui add button card dialog alert input-otp pricing-table

# Add using interactive multi-select picker
npx @alexourus/ui add

# Add all components at once
npx @alexourus/ui add --all

📦 Method 2: Using as a Standard NPM Package

You can also install the package and import components directly in your app:

pnpm add @alexourus/ui
# or
npm install @alexourus/ui
# or
bun add @alexourus/ui
import { Button, Card, CardHeader, CardTitle, CardContent } from "@alexourus/ui";

export default function Example() {
  return (
    <Card className="max-w-sm">
      <CardHeader>
        <CardTitle>alexourus-ui</CardTitle>
      </CardHeader>
      <CardContent className="space-y-4">
        <p className="text-sm text-muted-foreground">Ready for your modern web projects.</p>
        <Button variant="default" className="w-full">Get Started</Button>
      </CardContent>
    </Card>
  );
}

💻 CLI Commands Summary

| Command | Description | |---|---| | npx @alexourus/ui init | Analyzes project, creates components.json, and injects theme CSS variables. | | npx @alexourus/ui add <name> | Copies the specified component to your project and installs required npm dependencies. | | npx @alexourus/ui add --all | Copies all available components and blocks to your project at once. | | npx @alexourus/ui list | Lists all available components and blocks in the library. |


📄 License

This project is licensed under the MIT license.

Developed by Alexourus 🐺