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

@nebutra/ui

v0.2.1

Published

Unified UI component library — Lobe UI + Radix + HeroUI + layout components

Readme

@nebutra/ui

UI layer for the AI Chat product feature (apps/web /chat route). Built on Lobe UI + Lobe Icons + Lucide Icons.

Design Intent

| Dependency | Purpose | | ---------------- | ----------------------------------------------------------------------------- | | @lobehub/ui | Chat bubbles, streaming text, model selector, chat input, markdown renderer | | @lobehub/icons | AI provider icons: OpenAI, Anthropic, Claude, Gemini, Mistral, DeepSeek, etc. | | antd | Back-office admin tables / forms if needed in enterprise tier |

Usage in apps/web:

import { ChatList, ChatInputArea } from "@nebutra/ui/components";
import { Anthropic, Claude } from "@nebutra/ui/icons";

Installation

pnpm add @nebutra/ui

Usage

Theme Provider

Wrap your app with NebutraThemeProvider to apply Nebutra design tokens:

import { NebutraThemeProvider } from "@nebutra/ui";

function App() {
  return (
    <NebutraThemeProvider appearance="auto">
      <YourApp />
    </NebutraThemeProvider>
  );
}

Components

import { Button, ChatList, ActionIcon } from "@nebutra/ui/components";

<Button type="primary">Submit</Button>
<ActionIcon icon={<Settings />} />

AI Provider Icons

import { OpenAI, Anthropic, Google, Claude, Gemini } from "@nebutra/ui/icons";

// In a model selector
<OpenAI size={24} />
<Anthropic size={24} />
<Google size={24} />

All Lobe Icons

import { HuggingFace, Mistral, DeepSeek, Qwen } from "@nebutra/ui/icons";

General UI Icons (Lucide)

import { Settings, Search, Menu, Plus, Check } from "@nebutra/ui/icons";

<Settings size={20} />;

Design Tokens

Runtime design tokens live in @nebutra/tokens/styles.css (CSS variables). Use Tailwind classes or var() in your components:

// Tailwind classes (preferred)
<div className="bg-primary text-foreground border-border" />

// CSS variables (when Tailwind isn't available)
<div style={{ color: "var(--color-primary)" }} />

Note: @nebutra/ui/theme also exports JS token objects (tokens, colors, etc.) but these are an internal Lobe UI bridge and are deprecated for app use.

Exports

| Path | Description | | ------------------------ | ------------------------------------------------------- | | @nebutra/ui | Main exports (theme provider + common components/icons) | | @nebutra/ui/components | All Lobe UI components + AnimateIn | | @nebutra/ui/layout | Layout components (PageHeader, EmptyState, etc.) | | @nebutra/ui/icons | All icons (Lobe + Lucide) | | @nebutra/ui/theme | Lobe UI theme provider (NebutraThemeProvider) | | @nebutra/ui/primitives | Design primitive tokens (spacing, typography, etc.) | | @nebutra/ui/typography | Typography system (font families, type styles) | | @nebutra/ui/utils | Utilities (cn, etc.) |

Available AI Icons

  • OpenAI: OpenAI, ChatGPT, Gpt
  • Anthropic: Anthropic, Claude
  • Google: Google, Gemini, GoogleColor
  • Meta: Meta, Llama
  • Mistral: Mistral
  • Cohere: Cohere
  • Hugging Face: HuggingFace
  • Perplexity: Perplexity
  • Groq: Groq
  • DeepSeek: DeepSeek
  • Qwen/Tongyi: Qwen, Tongyi
  • Baidu/Wenxin: Baidu, Wenxin
  • Zhipu: Zhipu
  • Moonshot: Moonshot
  • Yi: Yi
  • And many more from @lobehub/icons

Token Architecture

@nebutra/brand    → Brand primitives (color definitions, motion language)
@nebutra/tokens   → Runtime CSS variables (light/dark, 12-step scales)  ★ SOURCE OF TRUTH
@nebutra/theme    → Multi-theme presets (6 oklch variants for SaaS)
@nebutra/ui       → Component library (consumes tokens via CSS variables)

License

AGPL-3.0 (inherits from Lobe UI)

⚠️ AI provider icons may be subject to their respective trademark guidelines.