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

@nipsysdev/lsd-react

v0.0.3

Published

@nipsysdev/lsd-react is a UI component library based on the Logos Design System

Downloads

8

Readme

@nipsysdev/lsd-react

A React component library implementing the Logos Design System (LSD) using shadcn / Radix UI and Tailwind CSS.

Overview

@nipsysdev/lsd-react follows a minimalist design system. The library offers a comprehensive set of UI components with built-in light and dark theme support.

Installation

npm install @nipsysdev/lsd-react
# or
pnpm add @nipsysdev/lsd-react

Quick Start

import { Button, Input, Card } from '@nipsysdev/lsd-react';
import '@nipsysdev/lsd-react/css';

function App() {
  return (
    <div className="min-h-screen bg-background text-foreground">
      <Card className="p-6">
        <h1 className="text-2xl mb-4">Welcome to LSD React</h1>
        <Input placeholder="Enter your name" className="mb-4" />
        <Button>Submit</Button>
      </Card>
    </div>
  );
}

Theming

LSD React uses CSS custom properties for theming. The theme can be switched by adding/removing the .dark class on the root element (or any container).

Light Theme (Default)

:root {
  --lsd-text: 0 0 0;           /* Black */
  --lsd-border: 0 0 0;         /* Black */
  --lsd-surface-primary: 255 255 255; /* White */
  --lsd-surface-secondary: 255 255 255; /* White */
}

Dark Theme

.dark {
  --lsd-text: 255 255 255;     /* White */
  --lsd-border: 255 255 255;   /* White */
  --lsd-surface-primary: 0 0 0;     /* Black */
  --lsd-surface-secondary: 0 0 0;     /* Black */
}

Components

LSD React provides a comprehensive set of UI components:

Form Components

  • Input: Text input with size variants
  • Autocomplete: Searchable dropdown with async support
  • Select: Native select with custom styling
  • Checkbox: Accessible checkbox component
  • Switch: Toggle switch component
  • Label: Form label with variants

Navigation Components

  • Tabs: Tabbed interface with size variants
  • Sidebar: Collapsible sidebar with submenus
  • Breadcrumb: Navigation breadcrumb (coming soon)

Layout Components

  • Card: Container with header, content, and footer
  • Sheet: Slide-out panel component
  • Separator: Visual divider
  • ScrollArea: Custom scrollable area

Data Display Components

  • Badge: Status and label badges
  • Typography: Text components with variants
  • Skeleton: Loading placeholder
  • Progress: Progress bar with indeterminate state

Feedback Components

  • Dialog: Modal dialog component
  • AlertDialog: Confirmation dialog
  • Popover: Popup content component
  • Tooltip: Hover tooltip
  • Sonner: Toast notifications

Input Components

  • Button: Versatile button with variants and sizes
  • ButtonGroup: Grouped buttons
  • Toggle: Toggle button component
  • ToggleGroup: Grouped toggle buttons

Development

Prerequisites

  • Node.js >= 24.0.0
  • pnpm >= 10

Setup

git clone https://github.com/nipsysdev/lsd-react.git
cd lsd-react
pnpm install

Scripts

  • pnpm dev - Start development server
  • pnpm build - Build the library
  • pnpm cosmos - Start React Cosmos dev server
  • pnpm cosmos:export - Export Cosmos site
  • pnpm lint - Run linting
  • pnpm type-check - Run TypeScript type checking

License

Licensed under GNU GPL v3+