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

@wumbotech/wumbo-skeleton-ui

v1.0.0

Published

A Svelte component library built with SvelteKit, Tailwind CSS, and Skeleton Labs components.

Readme

Wumbo Skeleton UI

A Svelte component library built with SvelteKit, Tailwind CSS, and Skeleton Labs components.

Project Structure

src/
├── lib/                    # Library source code
│   ├── atomic/            # Base atomic components
│   │   ├── input/         # Input components (Checkbox, Input, Label, Select)
│   │   └── ui/            # UI components (Badge, Button, Card parts, Chip, Link)
│   ├── components/        # Composed components (Card)
│   ├── form/              # Form components (Form, Input, Textarea)
│   ├── common/            # Shared types and utilities
│   └── index.ts           # Main library exports
└── routes/                # Showcase/preview app

Development

Setup

pnpm install

Development Server

pnpm dev              # Start showcase app
pnpm storybook        # Start Storybook component viewer

Building

pnpm build            # Build showcase app + package library
pnpm prepack          # Package library only

GitHub Actions & Release Workflow

This project uses GitHub Actions for continuous integration and automated releases with semantic-release.

Branching Strategy

The repository follows a multi-branch release strategy:

  • Feature/Development branchesalphabetamain

CI/CD Workflows

CI Workflow (.github/workflows/ci.yml):

  • Runs on all branches except main, beta, and alpha
  • Runs on pull requests targeting main, beta, or alpha
  • Performs build and Storybook build validation
  • No deployment or publishing

Release Workflow (.github/workflows/release.yml):

  • Triggers on pushes to main, beta, or alpha branches
  • Builds the package and runs semantic-release
  • Publishes to NPM with appropriate version/tag based on branch:
    • alpha@alpha pre-release versions
    • beta@beta pre-release versions
    • main → stable release versions

Development Flow

  1. Development: Create feature branches from alpha
  2. Testing: Merge to alpha for pre-release testing (npm install wumbo-skeleton-ui@alpha)
  3. Beta Testing: Merge alphabeta for broader testing (npm install wumbo-skeleton-ui@beta)
  4. Production: Merge betamain for stable release

Commit Message Format

Use Angular commit message convention to trigger releases:

  • feat: A new feature
  • fix: A bug fix
  • docs: Documentation-only changes
  • style: Changes that do not affect the meaning or function of the code (formatting, whitespace, etc.)
  • refactor: A code change that neither fixes a bug nor adds a feature
  • perf: A code change that improves performance
  • test: Add missing or correcting existing tests
  • chore: Changes to the build process or auxiliary tools and libraries such as document generation

Setup Requirements

  • GITHUB_TOKEN and NPM_TOKEN must be configured in repository secrets
  • Commits must follow conventional commit format

Development with pnpm link

Link this package for development:

# In this project directory
pnpm build            # Build the package first
pnpm link --global    # Create global symlink

Use in another project:

# In your consuming project
pnpm link --global wumbo-skeleton-ui

During development:

# In this project - rebuild after changes
pnpm build

# Your consuming project will automatically use the updated version

Unlink when done:

# In consuming project
pnpm unlink --global wumbo-skeleton-ui

# In this project
pnpm unlink --global

Usage

After installation, import components:

import { Button, Card, Input } from 'wumbo-skeleton-ui';

Note: Components must be exported in src/lib/index.ts to be available for import.

Component Development

  • Each component follows Svelte 5 runes syntax
  • Components include TypeScript definitions
  • Storybook stories are provided for documentation
  • Styling uses Tailwind CSS with Skeleton Labs classes

View components in Storybook: pnpm storybook