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

@littlebigideas/sketchbook

v0.0.3

Published

A lightweight React + Tailwind component library

Readme

Sketchbook

A lightweight React + Tailwind component library for little big ideas.

Installation

npm install @littlebigideas/sketchbook

Usage

Import the components and styles in your app:

import { Button, Card, Input } from '@littlebigideas/sketchbook'
import '@littlebigideas/sketchbook/styles'

function App() {
  return (
    <Card>
      <Button variant="primary">Click me!</Button>
      <Input label="Enter your name" />
    </Card>
  )
}

Development

Install dependencies

npm install

Run Storybook for development

npm run storybook

Build the library

npm run build

Build Storybook for production

npm run build-storybook

Components

  • Badge - A status indicator component with multiple variants and sizes
  • Button - A versatile button component with multiple variants and sizes
  • Card - A container component with header and content sections
  • Input - A form input component with label, error, and helper text support

Storybook

View the component documentation and playground at GitHub Pages (after deployment).

Publishing & Releases

Automated Release Process (Recommended)

The package is automatically published to npm when you create a GitHub release.

Steps:

  1. Update version in package.json:

    npm version patch  # For bug fixes (0.0.1 → 0.0.2)
    npm version minor  # For new features (0.0.2 → 0.1.0)
    npm version major  # For breaking changes (0.1.0 → 1.0.0)
  2. Push changes with tags:

    git push origin main --tags
  3. Create a GitHub release (this triggers auto-publish):

    # Using GitHub CLI
    gh release create v0.0.3 --title "Version 0.0.3" --notes "Description of changes"
    
    # Or via GitHub UI: Go to Releases → "Create a new release"
  4. The GitHub Action will automatically build and publish to npm!

Manual Publishing

If you need to publish manually:

  1. First authenticate to npm:

    npm login
  2. Update version, build and publish:

    npm version patch  # Update version
    npm publish --access public

NPM Token Setup

For automated publishing, you need to add your npm token as a GitHub secret:

  1. Create an npm access token at npmjs.com
  2. In your GitHub repository, go to Settings → Secrets and variables → Actions
  3. Add a new secret named NPM_TOKEN with your npm token as the value

GitHub Pages Setup (Already Configured)

The Storybook is automatically deployed to GitHub Pages when you push to main. View it at: https://devgetlittlebigideas.github.io/sketchbook/

License

MIT