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

@luckyluu/wonder-ui

v0.1.0

Published

A playful, kid-friendly React design system

Readme

Wonder UI

A playful, kid-friendly React design system built with TypeScript and CSS only — no Tailwind, no CSS-in-JS.

Soft pastel colors, chunky 3D buttons, large friendly typography, and big tap targets make Wonder UI perfect for apps aimed at young users.

Install

npm install @luckyluu/wonder-ui

Quick Start

import { Button, Card, Heading } from '@luckyluu/wonder-ui';
import '@luckyluu/wonder-ui/styles.css';

function App() {
  return (
    <Card variant="sky" header="Hello!">
      <Heading level="h2">Welcome to Wonder UI</Heading>
      <Button variant="primary">Let's Go!</Button>
    </Card>
  );
}

Note: Load the Nunito font in your app for the intended typography:

<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap" rel="stylesheet" />

Components

| Component | Description | |-----------|-------------| | Button | 3D press buttons: primary (sky blue), secondary (mint), accent (coral), ghost | | Input | Text field with recessed inset shadow, label, helper text, and error state | | Card | Soft floating surface with pastel variants: sky, butter, blush, mint | | Badge | Raised pill-shaped status labels | | Alert | Info, success, warning, and error banners | | Heading | Semantic headings (h1–h4) | | Text | Body copy with muted variant | | Checkbox | 3D checkbox with large tap area | | Spinner | Animated loading indicator |

Design Tokens

All visual decisions live in CSS custom properties (src/styles/tokens.css):

  • Colors — sky blue primary, mint secondary, coral accent, warm off-white background
  • Card tints — sky, butter, blush, mint pastels
  • 3D depthbox-shadow bottom edges (3–6px) for chunky button press effect
  • Typography — Nunito, 1rem–2.5rem scale
  • Shape — 16px–32px border radii, pill buttons
  • Motion — bouncy press transitions on transform + box-shadow

Local Development

npm install
npm run dev        # docs site at http://localhost:5173
npm run build      # build npm library → dist/
npm run build:docs # build docs → docs-dist/
npm run typecheck  # TypeScript check

Documentation

Live docs: luubinhan.github.io/wonder-ui

Pushes to main automatically build and deploy the docs site to GitHub Pages.

Publishing

Releases are automated via GitHub Actions.

One-time setup

  1. GitHub Pages — Repo Settings → Pages → Build and deployment → Source: GitHub Actions
  2. npm token — Create an npm Automation token for the luckyluu account, then add it as a repo secret named NPM_TOKEN
  3. First publish — The first publish may need to be done once manually while logged in as luckyluu

Release flow

# 1. Bump version in package.json
# 2. Commit and push to main (docs auto-deploy)
git tag v0.2.0
git push origin v0.2.0   # triggers npm publish

The tag must match the version in package.json (e.g. tag v0.2.0 for version 0.2.0).

Manual publish (fallback)

npm run build
npm publish --access public

License

MIT