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

@yiftee/design-system

v0.3.23

Published

Yiftee Design System - A comprehensive component library

Readme

Yiftee Design System

A modern, accessible, and performant design system for Yiftee applications. Built with React, TypeScript, Tailwind CSS, and Radix UI.

npm version License: MIT Storybook

🎨 Overview

The Yiftee Design System provides a comprehensive set of reusable components, design tokens, and patterns that ensure consistency across all Yiftee applications. It's built for performance, accessibility, and developer experience.

Key Features

  • 🚀 Performance First - Tree-shakeable, optimized bundle sizes
  • Accessible - WCAG 2.1 AA compliant components
  • 🎨 Themeable - Customizable design tokens and CSS variables
  • 📱 Responsive - Mobile-first responsive design
  • 🔧 TypeScript - Full TypeScript support with exported types
  • 📚 Well Documented - Comprehensive docs and interactive examples
  • Modern Stack - React 18, Vite, Tailwind CSS, Radix UI

🚀 Getting Started

Installation

# Using npm
npm install @yiftee/design-system

# Using yarn
yarn add @yiftee/design-system

# Using pnpm
pnpm add @yiftee/design-system

Peer Dependencies

Make sure you have the following peer dependencies installed:

npm install react@^18.0.0 react-dom@^18.0.0

Setup

  1. Import the CSS (in your app's entry point):
import '@yiftee/design-system/styles';
  1. Configure Tailwind (if using Tailwind in your app):
// tailwind.config.js
module.exports = {
  presets: [require('@yiftee/design-system/tailwind.config')],
  content: [
    './src/**/*.{js,jsx,ts,tsx}',
    './node_modules/@yiftee/design-system/dist/**/*.js'
  ],
};
  1. Start using components:
import { Button, Card, Input } from '@yiftee/design-system';

function App() {
  return (
    <Card>
      <Card.Header>
        <Card.Title>Welcome to Yiftee</Card.Title>
      </Card.Header>
      <Card.Content>
        <Input placeholder="Enter your email" />
        <Button variant="primary">Get Started</Button>
      </Card.Content>
    </Card>
  );
}

📦 What's Included

Components

  • Core: Button, Input, Select, Checkbox, Radio, Switch
  • Layout: Container, Grid, Flex, Spacer
  • Navigation: Header, Sidebar, Tabs, Breadcrumb, Pagination
  • Feedback: Toast, Alert, Badge, Progress, Skeleton
  • Overlays: Modal, Popover, Tooltip, Dropdown
  • Data Display: Table, Card, Avatar, List
  • Forms: Form, FormField, ValidatedForm, InputGroup

Utilities

  • Hooks: useToast, useModal, useTheme, useMediaQuery
  • Utils: cn (class names), validation helpers
  • Tokens: Colors, typography, spacing, breakpoints

🎨 Design Tokens

Brand Colors

--yiftee-orange: #F37726;
--yiftee-teal: #2EC4B6;
--yiftee-green: #4D9D2A;
--yiftee-white: #FCF8F8;
--yiftee-black: #2C2D2E;

Using Tokens

// In CSS/Tailwind
<div className="text-yiftee-orange bg-yiftee-white" />

// In JavaScript
import { tokens } from '@yiftee/design-system';
console.log(tokens.colors.primary); // #F37726

📚 Documentation

Interactive Documentation

Quick Links

🛠️ Development

# Clone the repository
git clone https://github.com/yiftee/design-system.git
cd design-system

# Install dependencies
npm install

# Start Storybook (development)
npm run storybook

# Build library
npm run build

# Run tests
npm run test

# Run linting
npm run lint

Available Scripts

  • npm run storybook - Start Storybook dev server
  • npm run build - Build the library for production
  • npm run test - Run all tests
  • npm run lint - Lint code
  • npm run format - Format code with Prettier
  • npm run typecheck - Run TypeScript type checking

🏗️ Project Structure

design-system/
├── src/
│   ├── components/      # React components
│   │   ├── core/       # Basic building blocks
│   │   ├── forms/      # Form components
│   │   ├── layout/     # Layout components
│   │   ├── navigation/ # Navigation components
│   │   ├── feedback/   # Feedback components
│   │   └── overlays/   # Modal, popover, etc.
│   ├── hooks/          # Custom React hooks
│   ├── utils/          # Utility functions
│   ├── tokens/         # Design tokens
│   └── styles/         # Global styles
├── docs/               # Documentation
├── stories/            # Storybook stories
└── tests/              # Test utilities

🤝 Contributing

We welcome contributions! Please see our Contributing Guide for details on:

  • Code of Conduct
  • Development workflow
  • Submitting pull requests
  • Reporting issues

📄 License

MIT © Yiftee, Inc.

🙏 Acknowledgments

Built with amazing open source projects:

  • Radix UI - Unstyled, accessible components
  • Tailwind CSS - Utility-first CSS framework
  • Vite - Next generation frontend tooling
  • Storybook - Component development environment