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

liminal-ui

v0.17.0

Published

CLI para liminal-ui

Readme

Liminal UI CLI

Copy-paste component library for React/Next.js with full ownership

npm MIT

Quick Start

# 1. Initialize config
npx liminal-ui init

# 2. Add components (ejemplos)
npx liminal-ui add button
npx liminal-ui add accordion dialog select
npx liminal-ui add tabs alert popover

Commands

| Command | Description | |---------|-------------| | liminal init | Setup components.json config file | | liminal add <name> | Add component to your project | | liminal add <name> -y | Add + auto-install dependencies | | liminal add <name> -f | Force overwrite existing files | | liminal list | Show available components | | liminal diff <name> | Compare local vs registry version |

Available components

Liminal UI incluye una colección de componentes listos para copiar en tu proyecto (no viven en node_modules). Algunos ejemplos:

  • accordion, tabs — navegación y contenido colapsable
  • button — botones con variantes y tamaños
  • dialog, popover, tooltip — overlays y feedback
  • input, textarea, checkbox, switch, label — formularios
  • card, badge, separator, avatar — layout y display
  • toast — notificaciones via wrapper de sonner

Puedes ver la lista completa con:

liminal-ui list

Y cada componente tiene su propia página de documentación en la app de docs de este repo (apps/www), por ejemplo /docs/components/button.

Configuration

Running liminal init creates components.json:

{
  "tsx": true,
  "rsc": true,
  "tailwind": {
    "config": "tailwind.config.js",
    "css": "app/globals.css",
    "baseColor": "slate",
    "cssVariables": true
  },
  "aliases": {
    "ui": "@/components/ui",
    "lib": "@/lib",
    "utils": "@/lib/utils"
  }
}

Requirements

  • Tailwind CSS with CSS variables (background, foreground, primary, etc.)
  • TypeScript (optional but recommended)

You have two options for the CSS tokens:

  1. Let liminal init copy them for you (recommended)

    • During liminal init, answer:
      • ¿Copiar CSS de tokens base?yes
      • Choose a preset: slate, blue, green
      • Confirm the path for your global CSS (default app/globals.css)
    • The CLI will write a full @layer base { :root { ... } .dark { ... } } block compatible with shadcn/ui.
  2. Copy tokens manually

    • Use the reference file registry/lib/themes.css from this repo.
    • Or generate a theme visually with tools like tweakcn and paste the exported CSS into your global stylesheet.

Usage

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

export default function App() {
  return (
    <div className="space-x-2">
      <Button>Default</Button>
      <Button variant="destructive">Destructive</Button>
      <Button variant="outline">Outline</Button>
    </div>
  );
}

License

MIT