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

@fynd-design-engineering/fynd-one-ds

v0.1.8

Published

Fynd One Design System — React + TypeScript component library

Readme

@fynd-design-engineering/fynd-one-ds

Fynd One Design System — React + TypeScript component library with design tokens, icons, and brand assets.

Prerequisites

This is a component library, not a project starter. Install it into an existing React project (Next.js, Vite, CRA, etc.):

  • React 18+ and React DOM 18+ must already be installed
  • Your project should support ES modules and CSS imports

Installation

npm install @fynd-design-engineering/fynd-one-ds

Setup

Import the design tokens CSS once in your app's entry point (e.g., main.tsx, _app.tsx, layout.tsx):

import '@fynd-design-engineering/fynd-one-ds/styles/tokens.css';

What's Included

Components

Atoms

  • Button — Primary, secondary, and tertiary variants
  • Chip — Compact label element
  • Tag — Status and category tags
  • Tabs — Tabbed navigation with indicator
  • Accordion — Expandable FAQ/collapsible items (light/dark)
  • Pagination — Page navigation with smart truncation
  • FilterButton — Filter trigger with count badge
  • SearchBar — Search input with icon and focus state
  • TextField — Form input with label, icon, error/helper text, char count
  • SectionIndicator — Visual step/section indicator
  • ImageHolder — Responsive image container
  • TitleContentPair — Title + description block
  • VisualElement — Decorative/visual wrapper
  • Text — Typography component with token-based styles
  • LogoMarquee — Scrolling logo ticker

Molecules

  • RichIconCard — Card with icon, title, and description
  • ListingCard — Product/feature listing card
  • MetricCard — KPI/metric display card
  • ContentCard — General-purpose content card
  • PricingCard — Pricing tier card with label, amount, features, popular badge
  • CTABanner — Call-to-action banner

Layout

  • Grid — Responsive grid system (auto-collapses at breakpoints)
  • BentoGrid — Asymmetric bento-style grid layout
  • Rail — Horizontally draggable scrollable track (edge-to-edge)
  • Section — Page section with header, wrapper, and spacing
  • SectionWrapper — Raw section container (no header)
  • GradientSurface — Gradient background container

Design Tokens

CSS custom properties and JS exports for:

  • Typography — font families, weights, letter spacing, type scale
  • Colors — neutrals, blue, peach, green, gold, lavender, red, gradients, semantic colors (text, background, icon, border, button, status)
  • Spacing — consistent spacing scale (8px rhythm)
  • Borders — border radius tokens
  • Effects — shadows, blur
  • Layout — container max-widths, page padding, section padding
  • Breakpoints — responsive breakpoints and media queries
  • Component tokens — button, badge, card, icon sizing

Icons

500+ icons across 16 categories: actions, AI, code, commerce, communication, data, device, editor, features, feedback, hardware, location, media, miscellaneous, navigation, and user.

import { IcAdd, IcCalendar } from '@fynd-design-engineering/fynd-one-ds';

Brand Assets

Brand icons and logos for Fynd products (commerce, boltic, pixelbin, copilot, engage, etc.) with dark and light variants.

import commerceDark from '@fynd-design-engineering/fynd-one-ds/assets/brand-icons/commerce-dark.svg';
import commerceLogo from '@fynd-design-engineering/fynd-one-ds/assets/brand-logos/commerce-dark.svg';

Usage

import { Button, Grid, Section, Text } from '@fynd-design-engineering/fynd-one-ds';
import '@fynd-design-engineering/fynd-one-ds/styles/tokens.css';

function App() {
  return (
    <Section title="Welcome" chipLabel="Getting Started">
      <Grid columns={3} gap={20}>
        <Button label="Get Started" variant="primary" />
        <Button label="Learn More" variant="secondary" />
        <Button label="Docs" variant="tertiary" />
      </Grid>
    </Section>
  );
}

AI Integration (Claude Code)

This package ships with a CLAUDE.md file containing comprehensive rules for AI tools to use the design system correctly. To enable it in your project:

Option 1 — Reference in your project's CLAUDE.md (recommended):

## Design System
This project uses `@fynd-design-engineering/fynd-one-ds`.
Before building any UI, read the design system rules at:
node_modules/@fynd-design-engineering/fynd-one-ds/CLAUDE.md

Option 2 — Copy to project root:

cp node_modules/@fynd-design-engineering/fynd-one-ds/CLAUDE.md ./CLAUDE_DS.md

This gives Claude Code the full component API, composition patterns, token system, and anti-patterns so it generates correct code on the first try.

License

UNLICENSED