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

@soraui/react

v0.1.1

Published

SoraUI React: Accessible, lightweight, customizable React components

Readme

@soraui/react

Accessible, token-first React component construction system with 44 primitives, 14 production blocks, 4 page templates, universal lucide-react iconography, and zero-runtime CSS.

npm version license


📦 Installation

# Using npm
npm install @soraui/react @soraui/core @soraui/hooks lucide-react

# Using pnpm
pnpm add @soraui/react @soraui/core @soraui/hooks lucide-react

# Using yarn
yarn add @soraui/react @soraui/core @soraui/hooks lucide-react

# Using bun
bun add @soraui/react @soraui/core @soraui/hooks lucide-react

🎨 Setup Styles

Import the consolidated stylesheet in your root layout (app/layout.tsx or src/main.tsx):

import '@soraui/react/styles';

🚀 Quick Usage

import React from 'react';
import {
  ThemeProvider,
  ThemeScope,
  Button,
  Card,
  CardHeader,
  CardTitle,
  CardDescription,
  CardContent,
  CardFooter,
  Badge,
} from '@soraui/react';
import { ArrowRight } from 'lucide-react';

export function App() {
  return (
    <ThemeProvider defaultTheme="sky" defaultMode="system">
      <main style={{ padding: '2rem', display: 'flex', justifyContent: 'center' }}>
        <Card elevated style={{ maxWidth: 420, width: '100%' }}>
          <CardHeader>
            <div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center' }}>
              <CardTitle>Welcome to SoraUI</CardTitle>
              <Badge variant="success">v0.1.0</Badge>
            </div>
            <CardDescription>Zero-runtime token-first React UI system.</CardDescription>
          </CardHeader>
          <CardContent>
            <p>Build fast, customize freely, and own your UI code.</p>
          </CardContent>
          <CardFooter style={{ display: 'flex', justifyContent: 'flex-end', gap: '0.5rem' }}>
            <Button variant="outline">Cancel</Button>
            <Button variant="primary" style={{ display: 'inline-flex', alignItems: 'center', gap: '0.375rem' }}>
              Get Started <ArrowRight size={14} />
            </Button>
          </CardFooter>
        </Card>
      </main>
    </ThemeProvider>
  );
}

🌌 Key Highlights

  • 44 Accessible Primitives: WAI-ARIA compliant, full keyboard navigation, accessible focus rings, and screen-reader support.
  • 14 Production Blocks: Authentication, Dashboards, Metric grids, Settings, and Forms.
  • 4 Full-Page Templates: Dashboard, SaaS Landing, Analytics, and Settings.
  • Universal Lucide Iconography: Native lucide-react integration across all components and blocks.
  • 9 Cosmic Themes & ThemeScope: Pure CSS cascading (Sky, Cloud, Horizon, Aurora, Twilight, Midnight, Nebula, Eclipse, Starlight).
  • Zero Runtime Styling: 100% native CSS custom properties. 0ms runtime generation, 0 KB runtime parser.
  • AI-Native MCP Support: Compatible with @soraui/mcp for Claude, Cursor, and Gemini.

📄 License

MIT © 2026 SoraUI Contributors