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

@vibing-ai/block-kit

v0.1.1

Published

Composable React + Tailwind component library for building Vibing apps, agents and plugins

Readme

Vibing Block Kit

npm version License: MIT PRs Welcome

Composable React + Tailwind component library for building Vibing apps, agents and plugins. Includes fully-typed props, dark-mode tokens and a Storybook playground.

Features

  • 🧩 Composable Components: A comprehensive set of UI components designed to work seamlessly together
  • 🎨 Theme Support: Built-in light and dark themes with customization options
  • 📱 Responsive Design: Components work across desktop and mobile devices
  • 🔍 Accessibility: WCAG 2.1 AA compliant components
  • 🧠 AI-Ready: Special components designed for AI interactions
  • 📦 Tree-Shakeable: Only import what you need
  • 🔒 Type-Safe: Fully typed props for improved developer experience

Installation

npm install @vibing-ai/block-kit

Or using yarn:

yarn add @vibing-ai/block-kit

Quick Start

import { TextBlock, AICompletionBlock, BlockKitProvider } from '@vibing-ai/block-kit';

function MyApp() {
  return (
    <BlockKitProvider theme="light">
      <div>
        <TextBlock 
          id="intro-text"
          content="Welcome to Vibing Block Kit"
        />
        
        <AICompletionBlock
          id="ai-completion"
          initialPrompt="Tell me about Vibing"
        />
      </div>
    </BlockKitProvider>
  );
}

Core Components

Vibing Block Kit includes a variety of components:

  • Text Components: TextBlock, HeadingBlock, CodeBlock
  • Input Components: InputBlock, SelectBlock, CheckboxBlock
  • Layout Components: CardBlock, GridBlock, ContainerBlock
  • AI Components: AICompletionBlock, AIImageBlock, AIFormBlock
  • Interactive Components: ButtonBlock, ToggleBlock, SliderBlock

HeroUI Integration

Block Kit is built on top of HeroUI components, providing a consistent design system. There are several ways to use and customize the theme:

Basic Usage

Wrap your application with the BlockKitProvider:

import { BlockKitProvider } from '@vibing-ai/block-kit';

function App() {
  return (
    <BlockKitProvider theme="light">
      <YourApp />
    </BlockKitProvider>
  );
}

Theme Options

// Light/dark theme
<BlockKitProvider theme="light" />
<BlockKitProvider theme="dark" />

// System theme preference
<BlockKitProvider useSystemTheme />

// Custom theme
import { createCustomTheme } from '@vibing-ai/block-kit';

const customTheme = createCustomTheme({
  type: 'light',
  primary: '#3498db',
  secondary: '#2ecc71',
});

<BlockKitProvider theme={customTheme} />

Theme Switching

import { useState } from 'react';
import { BlockKitProvider } from '@vibing-ai/block-kit';

function App() {
  const [theme, setTheme] = useState('light');
  
  const toggleTheme = () => {
    setTheme(current => current === 'light' ? 'dark' : 'light');
  };
  
  return (
    <BlockKitProvider theme={theme}>
      <button onClick={toggleTheme}>Toggle Theme</button>
      <YourApp />
    </BlockKitProvider>
  );
}

Documentation

For full documentation, visit the Storybook.

Development

# Install dependencies
npm install

# Run Storybook
npm run storybook

# Build the library
npm run build

# Run tests
npm test

Contributing

We welcome contributions! Please see CONTRIBUTING.md for details on how to submit pull requests, report issues, and suggest improvements.

License

This project is licensed under the MIT License - see the LICENSE file for details.