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

@lablnet/ui

v1.0.1

Published

Premium React UI component library using Tailwind CSS, Radix UI, and Lucide React

Readme

Lablnet UI

A premium, production-ready React UI component library styled with Tailwind CSS and backed by Radix UI primitives for accessibility.

Features

  • 🛠️ 27+ Core Components: Everything from buttons and input fields to responsive collapser sidebars and programmatic alert modals.
  • 🎨 Obsidian Design Tokens: A sleek, dark obsidian mode (#0B0F19) and a clean light mode out of the box, fully customizable using CSS variables.
  • Highly Accessible: Backed by Radix UI primitive specifications, offering screen-reader compatibility and complete keyboard controls.
  • 📚 VitePress Documentation: A complete markdown-based guide site with inline interactive Storybook "Try Now" playgrounds.
  • 📓 Storybook Stories: Storybook coverage for all components to easily develop and verify components.

Installation

Install the package and its peer dependencies via your preferred package manager:

# Using pnpm
pnpm add @lablnet/ui lucide-react

# Using npm
npm install @lablnet/ui lucide-react

Quick Start

Import the CSS variables stylesheet at the root of your application (index.tsx or main.tsx):

import "@lablnet/ui/styles.css";

Then import and use any component:

import React from "react";
import { Button } from "@lablnet/ui";
import { Send } from "lucide-react";

export default function App() {
  return (
    <Button 
      variant="primary" 
      rightIcon={<Send className="h-4 w-4" />}
      onClick={() => alert("Message Sent!")}
    >
      Send Message
    </Button>
  );
}

Scripts & CLI Commands

Inside the workspace directory, you can run the following development commands:

# Compile library ES & CJS bundles
pnpm build

# Launch local Storybook preview server (port 6006)
pnpm storybook

# Launch local VitePress documentation server
pnpm docs:dev

# Build unified VitePress site and static Storybook previews for deployment
pnpm docs:build

Cloudflare Pages Deployment

Deploy your documentation and static Storybook preview folder by setting the build settings on Cloudflare Pages:

  • Build Command: pnpm docs:build
  • Output Directory: docs/.vitepress/dist
  • Environment Variable: Set NODE_VERSION to 20.

Publishing to NPM Registry

To publish the UI library package to the public NPM registry:

1. Build the assets

Compile the ES module, CommonJS files, CSS styling, and typescript declarations:

pnpm build

2. Log in and Bump Version

Log in to your npm account and bump the package version:

pnpm login
npm version patch # or minor / major

3. Dry Run Check

Generate a local tarball package to verify your package output:

pnpm pack

4. Publish

Publish the scoped package to the public registry:

pnpm publish --no-git-checks

Alternative Registries

A. GitHub Packages

To publish to your GitHub repository packages registry, update your package.json with:

"publishConfig": {
  "registry": "https://npm.pkg.github.com"
}

Define your organization/user scope registry inside a .npmrc file:

@YOUR_ORG:registry=https://npm.pkg.github.com/
//npm.pkg.github.com/:_authToken=${GITHUB_TOKEN}

B. Local Testing (Verdaccio)

To test publishing locally:

  1. Start Verdaccio: npx verdaccio
  2. Add a user: npm adduser --registry http://localhost:4873/
  3. Publish: pnpm publish --registry http://localhost:4873/ --no-git-checks