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

@lanrenbang/basecoat-ultra

v0.2.0

Published

Basecoat UI - Ultra edition. A Tailwind-first component library for any web stack.

Readme

Basecoat Ultra

Version License

Basecoat Ultra is a Tailwind-first UI component library designed for high performance, minimalism, and deep customization. Built upon the excellent foundation of Basecoat by hunvreus, it brings the magic of shadcn/ui to any traditional web stack without requiring React.

🎡 Live Demo & Documentation

✨ Features

🛠️ Core Improvements Over Upstream

Enhanced from the original Basecoat with numerous optimizations and bug fixes:

  • CSS Modularization: Refactored monolithic CSS into modular structure supporting on-demand loading
  • Tailwind v4 Compatibility: Fixed escaping issues with complex selectors and modern CSS nesting
  • Component Optimizations:
    • Button: Fixed Ghost/Link variant background issues
    • Dialog: Enhanced animations with natural scaling and bounce effects
    • Dropdown Menu: Resolved initialization flickering
    • Sidebar: Intelligent current page highlighting logic
    • Form Elements: Improved contrast and accessibility

🧩 New Components

Comprehensive component library inspired by shadcn/ui, completely framework-independent:

  • Standard Components: Accordion, Sheet, Carousel, Input OTP, Toggle Group, Toggle
  • External Integrations: Date Picker (Flatpickr), Resizable Panels (Split.js)
  • Advanced Features: Command palette, enhanced dialogs, improved navigation

🎨 Visual Enhancements

  • Catppuccin Themes: Full suite support (Latte, Frappé, Macchiato, Mocha) with theme switcher
  • Neumorphism Effects: Global lighting system with mouse-following effects and 3D transforms
  • Enhanced Animations: Smooth transitions and micro-interactions throughout

🏗️ Multi-Package Architecture

  • Ultra Package: Framework-agnostic CSS/JS components for any stack
  • Svelte Package: Native Svelte 5 components with Runes support
  • CLI Tool: Copy-paste workflow for Svelte components
  • Documentation: Comprehensive guides and interactive examples

📦 Installation

Choose the package that fits your stack:

For Vanilla HTML/JS, React, Vue, or Other Frameworks

bun add @lanrenbang/basecoat-ultra
# or npm install @lanrenbang/basecoat-ultra

For Svelte 5 Projects

# CLI approach (recommended)
npx basecoat-ultra-svelte@latest init
npx basecoat-ultra-svelte@latest add button

# Package approach
bun add @lanrenbang/basecoat-ultra-svelte

🚀 Quick Setup

Bundler Setup (Vite, Webpack, etc.)

/* In your CSS file */
@import "tailwindcss";
@import "@lanrenbang/basecoat-ultra";
@import "@lanrenbang/basecoat-ultra/theme/catppuccin"; /* Optional */
// In your JS file
import '@lanrenbang/basecoat-ultra/all';

CDN Setup (No Build Tool)

<!-- CSS -->
<link href="https://cdn.jsdelivr.net/npm/@lanrenbang/basecoat-ultra@latest/dist/css/basecoat.cdn.min.css" rel="stylesheet">

<!-- JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/@lanrenbang/basecoat-ultra@latest/dist/js/all.min.js" defer></script>

For detailed setup instructions, configuration options, and usage examples, visit our comprehensive documentation.

🛠️ Development

This project uses a Bun workspace monorepo structure:

packages/
├── ultra/          # Core CSS/JS library (framework-agnostic)
├── svelte/         # Svelte 5 components with Runes
├── cli/            # CLI tool for Svelte components  
└── docs/           # Documentation site (SvelteKit)

Development Commands

# Install dependencies
bun install

# Development servers
bun dev:ultra      # Core Ultra package
bun dev:svelte     # Svelte components
bun dev:docs       # Documentation site

# Build packages
bun run build:ultra
bun run build:svelte  
bun run build:docs

# CLI tool
bun cli            # Run CLI locally

Build Order

Due to package dependencies: Ultra → Svelte → Docs

❤️ Credits

This project stands on the shoulders of giants:

☕ Support

BuyMeACoffee Ko-Fi USDT(TRC20)/Tether Litecoin

📄 License

This project is licensed under the MIT License. Original Basecoat content copyright belongs to hunvreus.