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

@limpioluxsa/ui

v3.5.0

Published

Limpiolux shared UI component library — design system, styles, and React components

Readme

@limpioluxsa/ui

Design system de Limpiolux — componentes React (shadcn + radix + cva) con estética liquid glass como look por defecto. Light-first, system-first, brand #0a66ad.


🤖 Para agentes de código (Claude)

Empezá por llms.txt — es el índice de todos los componentes con sus reglas de uso. Para el detalle de un componente (props, ejemplos, anti-patrones), leé su metadata en src/components/ui/{Nombre}.meta.json (viajan dentro del paquete, en node_modules/@limpioluxsa/ui/).

Reglas críticas: importar siempre desde @limpioluxsa/ui; nunca crear estilos Tailwind ad-hoc si existe un componente; usar DatePicker (nunca <input type="date">), DataTable para datos dinámicos, StatCard para KPIs. El chrome (Card, Dialog, Sheet, Popover, DropdownMenu, AlertDialog, Tabs) es glass por defecto; variant="solid" es el escape hatch. Envolvé las pantallas en AppShell para el fondo ambiental.


Instalación

npm install @limpioluxsa/ui
npm install react react-dom lucide-react tailwindcss   # peers requeridas
npm install framer-motion                              # OPCIONAL (slider de SoftTabBar)

Paquete público en npm — no requiere auth ni .npmrc para instalar.

Setup de Tailwind

tailwind.config:

import lxPreset from '@limpioluxsa/ui/tailwind/preset'

export default {
  presets: [lxPreset],
  content: [
    './src/**/*.{ts,tsx}',
    './node_modules/@limpioluxsa/ui/dist/**/*.{js,cjs}',  // ← imprescindible: si falta, los componentes salen sin estilo
  ],
}

Entry CSS:

@import '@limpioluxsa/ui/styles/base.css';
@tailwind base;
@tailwind components;
@tailwind utilities;

Uso

import { AppShell, Card, CardContent, Button } from '@limpioluxsa/ui'

export default function App() {
  return (
    <AppShell>            {/* fondo ambiental: el glass necesita esto para "leerse" */}
      <Card>              {/* glass por defecto */}
        <CardContent>
          <Button>Acción</Button>
        </CardContent>
      </Card>
    </AppShell>
  )
}

Light-first por defecto. Para dark, poné .dark en el <html> (o usá el componente ThemeToggle).

Enganche para desarrollo asistido (CLAUDE.md de tu app)

Para que Claude use bien la lib desde el primer momento, pegá esto en el CLAUDE.md de la app cliente (los agentes leen el CLAUDE.md del proyecto, no el de node_modules):

## UI: @limpioluxsa/ui
Esta app usa el design system @limpioluxsa/ui (liquid glass por defecto).
Antes de crear UI, leé `node_modules/@limpioluxsa/ui/llms.txt` (índice de componentes)
y la `*.meta.json` del componente que vayas a usar.
Reglas: importar desde '@limpioluxsa/ui'; envolver pantallas en <AppShell>; no crear
estilos ad-hoc si hay un componente; DatePicker (no input date), DataTable (datos), StatCard (KPIs).

Catálogo visual navegable: npm --prefix docs run dev/. Diseño y tokens: DESIGN.md. Publicación y versionado: wiki/publishing.md.