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

@craftily/ui

v1.0.0

Published

The core package for Craftily UI, a Tailwind CSS component library.

Downloads

29

Readme

CraftilyUI Core

CraftilyUI is the foundational package for the CraftilyUI component library. Built on top of Tailwind CSS, it provides essential utilities, base components, and shared functionality to build modern, scalable, and customizable user interfaces.

Features

  • Reusable Components: A collection of base components to kickstart your UI development.
  • Customizable: Easily extend and customize components to fit your design system.
  • Lightweight: Optimized for performance and minimal footprint.
  • TypeScript Support: Fully typed for better developer experience.

Installation

Use npm or yarn to install the package:

npm install @craftily/ui
# or
yarn add @craftily/ui

Usage

import in your main css file. e.g. index.css

@import "tailwindcss";
@plugin "@craftily/ui" {
  name: "light";
  default-theme: true;
  color-scheme: "light";
  selector: "<css_selector>";
  --color-base-100: oklch(92% 0.006 264.531);
  --color-base-200: oklch(97% 0.001 106.424);
  --color-base: oklch(92% 0.003 48.717);
  --color-base-content: oklch(21% 0.006 56.043);
  --color-primary: oklch(72% 0.219 149.579);
  --color-primary-content: oklch(98% 0.018 155.826);
  --color-secondary: oklch(64% 0.246 16.439);
  --color-secondary-content: oklch(98% 0.026 102.212);
  --color-accent: oklch(62% 0.265 303.9);
  --color-accent-content: oklch(97% 0.014 308.299);
  --color-neutral: oklch(14% 0.004 49.25);
  --color-neutral-content: oklch(98% 0.001 106.423);
  --color-info: oklch(60% 0.126 221.723);
  --color-info-content: oklch(98% 0.019 200.873);
  --color-success: oklch(62% 0.194 149.214);
  --color-success-content: oklch(98% 0.018 155.826);
  --color-warning: oklch(68% 0.162 75.834);
  --color-warning-content: oklch(98% 0.026 102.212);
  --color-error: oklch(59% 0.249 0.584);
  --color-error-content: oklch(97% 0.014 343.198);
}

use utility classes

<button class="btn btn-primary">Button</button>

Documentation

For detailed documentation and examples, visit the CraftilyUI Documentation.

Contributing

We welcome contributions! Please read our Contributing Guide to get started.

License

This project is licensed under the MIT License.


CraftilyUI Core - Build better UIs, faster.