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

@clipora/clipora-ui-lib

v1.0.1

Published

Clipora design system — React component library

Readme

Clipora UI

The Clipora design system as a runnable React component library — React 19 · Vite 7 · TypeScript · Tailwind CSS v4 · shadcn pattern · Storybook 10.

Every component is built from the Clipora tokens (color ramps, type scale, spacing, radii, elevation, motion easings) defined in src/styles/globals.css.

Quick start

cd clipora-ui
npm install
npm run storybook      # opens http://localhost:6006

Other scripts:

npm run dev             # Vite dev server (app sandbox)
npm run build           # type-check + production build
npm run build-storybook # static Storybook for hosting

This repo was generated in an environment without Node, so it ships as source only — run npm install locally to pull dependencies and launch.

How the design system maps in

src/styles/globals.css is the single source of truth. The Clipora tokens are expressed as CSS variables on :root, flipped under .dark, and projected into Tailwind v4 via @theme inline so utilities like bg-primary, text-spark, shadow-brand, and bg-grad-brand exist.

| Clipora token | shadcn / Tailwind variable | | ------------------------ | ----------------------------------- | | --blue-500 (primary) | --primarybg-primary | | --spark-500 | --sparkbg-spark | | --green-500 | --success | | --r-md (14px) | --radiusrounded-md | | --e-1…3, --e-brand | shadow-e1…e3, shadow-brand | | Switzer / Geist Mono | font-sans / font-mono |

Light is the default theme; add class="dark" to <html>. In Storybook, use the Theme toolbar toggle (light/dark) — it's wired in .storybook/preview.tsx with a global decorator, so no extra addon is required.

Components

src/components/ui/ — 24 components, each with a *.stories.tsx.

Actions & display — Button (7 variants), Badge (status), Card, Avatar, Progress, Skeleton, Separator Forms — Input, Textarea, Label, Switch, Checkbox, RadioGroup, Slider, Toggle, ToggleGroup, Select Navigation — Tabs (segmented), Accordion Overlays — Dialog, Popover, Tooltip, DropdownMenu Feedback — Toast (Sonner) Foundations — Typography (full type scale as a component), Colors story

Highlights:

  • Buttonbrand (gradient), primary, secondary, ghost, spark, destructive, link; sizes sm / default / lg / icon
  • Badgebrand, spark, success, warning, neutral, outline (+ optional dot)
  • Typography — polymorphic (variant + tone, as override)

Everything is exported from src/index.ts, so consumers can import { Button, Dialog, toast } from "clipora-ui".

Adding more shadcn components

components.json is configured (New York style, lucide icons, @/ alias), so:

npx shadcn@latest add dialog dropdown-menu tooltip

New components inherit the Clipora theme automatically because they read the same CSS variables.

Project layout

clipora-ui/
├─ .storybook/         main.ts · preview.tsx (globals.css + theme toggle)
├─ src/
│  ├─ components/
│  │  ├─ ui/           button, badge, card, input, label, switch, tabs, typography
│  │  └─ foundations/  colors.stories.tsx
│  ├─ lib/utils.ts     cn()
│  ├─ styles/globals.css   ← tokens + Tailwind v4 theme
│  └─ index.ts         barrel export
├─ components.json     shadcn config
├─ vite.config.ts · tsconfig.json · package.json