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

@kuboxx/craft-ui

v0.1.2

Published

Craft-themed React UI primitives — paper, rope, crayon palette

Readme

@kuboxx/craft-ui

React components with a handmade desk look: paper surfaces, rope frames, and a crayon palette. Use it when you want UI that feels like cardstock, tape, and markers—not flat corporate chrome.

Docs in the browser: Storybook
Package: @kuboxx/craft-ui on npm

Install

npm install @kuboxx/craft-ui

Peer dependencies: React 18+ or 19 (react, react-dom).

Quick start

Import components from the package entry and load the stylesheet once (usually at your app or layout root). Wrap craft-themed UI in CraftProvider so typography and theme hooks apply.

import { CraftProvider, CraftCard, CraftButton, RopeFrame } from '@kuboxx/craft-ui'
import '@kuboxx/craft-ui/styles.css'

export function App() {
  return (
    <CraftProvider>
      <RopeFrame>
        <CraftCard tint="yellow" elevation="lg">
          <CraftButton variant="clay" crayon="pink">
            Hello
          </CraftButton>
        </CraftCard>
      </RopeFrame>
    </CraftProvider>
  )
}

For a warmer scrapbook / greeting-card feel, use CraftProvider vibe="scrapbook" and pieces like CraftTwineGarland, CraftLetterChip, and CraftCard lift="paste". Examples live in Storybook.

Fonts

For the intended script and marker typography, load Caveat and Kalam (see .storybook/preview-head.html for reference), or set --craft-font-display / --craft-font-marker in your own CSS.

Styling and Tailwind

The library ships ready-to-use CSS via import '@kuboxx/craft-ui/styles.css' (built with Tailwind; design tokens such as --craft-paper and --craft-orange live on :root). Consumer apps do not need Tailwind to use it. If your app also runs Tailwind and you customize purging, you may need to include the package’s built JS in content—see advanced notes in published typings or Storybook.

TypeScript: all public exports and props are described in dist/index.d.ts after install (node_modules/@kuboxx/craft-ui/dist/index.d.ts).

What’s in the box

Exports include primitives for layout & surfaces (e.g. RopeFrame, CraftCard, CraftClippedCard, CraftClippedStack, sticky notes, tape strips, washes), forms (labels, inputs, radios, switch, select), navigation (tabs, breadcrumbs), overlays & feedback (tooltip, popover, dialog, alerts, toasts, progress, spinner, skeleton), and data display (lists, avatars, table building blocks). cn is included for class names.

The interactive catalog, prop variations, and composition ideas are maintained in Storybook—that’s the best place to browse before coding.

Agent skill (optional)

The published tarball includes an Agent Skills folder (cursor-skills/craft-ui-library-usage/) so tools like Cursor or Claude Code can follow correct imports, CSS setup, and composition when you ask for help with this library.

Copy that folder from node_modules into your project’s skills directory (e.g. .cursor/skills/ or .claude/skills/), or use the plugin layouts in this repo for marketplace submission. Maintainer notes: docs/marketplace-publish.md.

Contributing

npm install
npm run storybook   # http://localhost:6006
npm run build      # library output in dist/

License

MIT