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

@ravenopsnet/ui

v0.0.15

Published

Tree-shakeable React 19 component library built from the shadcn/ui component set.

Readme

Raven UI

Tree-shakeable React component library built from the shadcn/ui component set.

Requirements

  • React and React DOM 19.x
  • ESM-compatible bundler or runtime
  • A modern browser supported by Tailwind CSS 4
  • TypeScript 5.x or 6.x when using TypeScript

The declarations support TypeScript bundler, node16, and nodenext module resolution.

Installation

pnpm add @ravenopsnet/ui
npm install @ravenopsnet/ui

Import the component stylesheet once in your application entry point:

import "@ravenopsnet/ui/styles.css"

The stylesheet contains the compiled component utilities, Tailwind base styles, Raven theme tokens, and the light/dark global theme. Consumers do not need to redefine the shadcn theme.

Inter is intentionally not embedded in the package stylesheet. Install and import it separately when you want the default Raven typography:

@import "@fontsource-variable/inter";
@import "@ravenopsnet/ui/styles.css";

Applications that also use Tailwind for their own source can keep their normal Tailwind import:

@import "tailwindcss";
@import "@fontsource-variable/inter";
@import "@ravenopsnet/ui/styles.css";

Usage

Import from the root barrel:

import { Button, Card, CardContent } from "@ravenopsnet/ui"

export function Example() {
  return (
    <Card>
      <CardContent>
        <Button>Continue</Button>
      </CardContent>
    </Card>
  )
}

For the smallest and most direct module graph, use component subpaths:

import { Button } from "@ravenopsnet/ui/components/button"

Both import styles are tree-shakeable.

TypeScript

Public declarations are included in the package. Frequently composed components also expose named prop types:

import { Button, type ButtonProps } from "@ravenopsnet/ui"

export function SubmitButton(props: ButtonProps) {
  return <Button type="submit" {...props} />
}

Go to Definition opens the published declaration for the selected component. Source-level declaration maps are intentionally not shipped to keep the package compact.

Dark mode and themes

Dark mode is activated by adding the dark class to a document ancestor, normally <html>.

The Toaster component integrates with next-themes. Applications using automatic theme detection should mount a ThemeProvider from next-themes:

import { ThemeProvider } from "next-themes"
import { Toaster } from "@ravenopsnet/ui"

export function Providers({ children }: { children: React.ReactNode }) {
  return (
    <ThemeProvider attribute="class">
      {children}
      <Toaster />
    </ThemeProvider>
  )
}

Server rendering

Server rendering is supported. In React Server Component frameworks, import the library from a Client Component and keep event handlers and browser-only values on the client side.

Components

The public package includes:

  • Accordion, Alert, Alert Dialog, Aspect Ratio and Avatar
  • Badge, Breadcrumb, Button, Button Group and Calendar
  • Card, Carousel, Chart, Checkbox, Collapsible, Combobox and Command
  • Context Menu, Dialog, Direction Provider, Drawer and Dropdown Menu
  • Empty, Field, Hover Card, Input, Input Group, Input OTP and Item
  • Kbd, Label, Menubar, Native Select, Navigation Menu and Pagination
  • Popover, Progress, Radio Group, Resizable Panels and Scroll Area
  • Select, Separator, Sheet, Sidebar, Skeleton, Slider and Sonner
  • Spinner, Switch, Table, Tabs, Textarea, Toggle, Toggle Group and Tooltip

Development

pnpm install --frozen-lockfile
pnpm dev

Run the complete local verification suite with:

npm test
npm run lint
npm run format:check

License

MIT