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

@peppermint-design/devreadykit

v0.2.2

Published

A lightweight, modern React component library built with TypeScript. Ships tree-shakeable ESM and type definitions. Works with Vite, Next.js, and other modern bundlers.

Readme

DevReady Kit — react component library

A lightweight, modern React component library built with TypeScript. Ships tree-shakeable ESM and type definitions. Works with Vite, Next.js, and other modern bundlers.

Features

  • Typed: Full TypeScript support and IntelliSense
  • Tree-shakeable: ESM-first with CJS fallback
  • Composable: Headless-friendly patterns and utility-first classes
  • Framework-friendly: Works with Vite, Next.js, CRA (legacy)

Installation

npm i @peppermint-design/devreadykit

Peer dependencies

Make sure your app has:

  • react >= 18
  • react-dom >= 18

Styling

Components are styled using Tailwind utility classes. You can use them without Tailwind, but we strongly recommend enabling Tailwind for consistent styling.

Usage

Named imports:

import { Button, Input } from '@peppermint-design/devreadykit';

export default function Form() {
  return (
    <div style={{ display: "flex", flexDirection: "column", gap: "20px", padding: "20px",}}>
      <Input placeholder="Amount" type="number" startIcon="$"/>
      <Button variant="filled" color="primary">Submit</Button>
    </>
  );
}

Available components

  • Button
  • UserBold
  • Badge
  • Checkbox
  • Chip
  • ContextMenu
  • Dialog
  • Dropdown
  • Input
  • Progress
  • RadioButton
  • Slider
  • RangeSlider
  • Textarea
  • Toggle

Import as:

import { Button, Input } from '@peppermint-design/devreadykit';

Bundlers and SSR

  • ESM entry: dist/index.mjs
  • CJS entry: dist/index.cjs
  • Types: dist/types/index.d.ts

The package marks react and react-dom as peer dependencies and won’t bundle them.

Next.js

Works out of the box. Import components in server or client components as needed. Mark client components with "use client" when interactivity is required.

Vite

No extra config needed. Ensure your project includes the global CSS that pulls Tailwind (if you use Tailwind).

Theming

DevReady Kit uses composable props and Tailwind classes. You can theme by:

  • Passing className to components
  • Extending Tailwind config (colors, radius, spacing)
  • Wrapping primitives with your own design tokens

Example:

<Button className="bg-indigo-600 hover:bg-indigo-700 text-white">Save</Button>

Contributing

  • Run the docs/demo locally:
npm install
npm run dev
  • Build the library:
npm run build
  • Lint:
npm run lint

Please open issues and PRs for bug fixes or improvements.

License

MIT © Contributors