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

designers

v3.1.0

Published

A complete, lightweight, headless design system for React applications

Readme

Designers

A complete, lightweight, headless design system for React applications with automatic Tailwind CSS integration.

Quick Start

npm install designers

This single package includes everything you need:

  • Core design tokens and utilities
  • React components and hooks
  • Animation utilities (Framer Motion & GSAP)
  • UI library integrations (shadcn, MUI, Chakra UI, Mantine)
  • Tailwind CSS plugin
  • CLI for project initialization

Usage

Initialize a new project

npx designers init

Import everything

import designers from 'designers';

// Access individual modules
const { core, react, animations, integrations, tailwindPlugin, cli } = designers;

Import specific modules

// Core design tokens
import { tokens, createTheme } from 'designers/core';

// React components and hooks
import { useTheme, ThemeProvider } from 'designers/react';

// Animations
import { fadeIn, slideUp } from 'designers/animations';

// UI integrations
import { shadcnIntegration } from 'designers/integrations';

// Tailwind plugin
import tailwindPlugin from 'designers/tailwind-plugin';

Tailwind CSS Integration

Add the plugin to your tailwind.config.js:

module.exports = {
  plugins: [
    require('designers/tailwind-plugin')
  ]
}

Individual Packages

If you prefer to install packages individually:

  • designers-core - Core design tokens and utilities
  • designers-react - React components and hooks
  • designers-animations - Animation utilities
  • designers-integrations - UI library integrations
  • designers-tailwind-plugin - Tailwind CSS plugin
  • designers-cli - Command-line interface

Features

🎨 Design Tokens

  • Comprehensive color palettes
  • Typography scales
  • Spacing systems
  • Responsive breakpoints

⚛️ React Components

  • Headless, unstyled components
  • Full TypeScript support
  • Accessibility built-in
  • Customizable themes

🎬 Animations

  • Framer Motion presets
  • GSAP utilities
  • Performance optimized
  • Easy-to-use APIs

🔌 UI Library Integration

  • shadcn/ui - Seamless integration
  • Material-UI - Theme mapping
  • Chakra UI - Token synchronization
  • Mantine - Style system bridge

🎯 Tailwind CSS Plugin

  • Automatic token injection
  • Custom utilities
  • Responsive variants
  • Dark mode support

Documentation

Visit our documentation site for:

  • Complete API reference
  • Usage examples
  • Migration guides
  • Best practices

Examples

Check out the /examples directory for:

  • Basic usage
  • Complete workflow
  • UI library integrations
  • Custom theming

Contributing

See CONTRIBUTING.md for guidelines.

License

MIT © arkit karmokar