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

@vyomsrs/kinsu-design-system

v0.3.0

Published

Kinsu Design System — production-grade React + TypeScript components with locked color identity and WCAG 2.2 AA accessibility.

Readme

Kinsu Design System

Production-grade React + TypeScript design system. Color identity is locked in DESIGN_TOKENS.md. Typography uses Atkinson Hyperlegible Next at an MUI-style scale. Accessibility target: WCAG 2.2 AA.

Install

npm install

Dev build & playground:

npm run dev            # Vite dev server
npm run storybook      # component gallery
npm run build          # library bundle
npm run test           # vitest
npx tsc --noEmit       # strict typecheck

Usage

import '@kinsu/design-system/styles';
import { Button, Input, FormField, Card } from '@kinsu/design-system';

export function LoginForm() {
  return (
    <Card>
      <Card.Body className="flex flex-col gap-4">
        <FormField label="Email" required>
          <Input type="email" />
        </FormField>
        <FormField label="Password" required>
          <Input type="password" clearable />
        </FormField>
        <Button variant="primary">Sign in</Button>
      </Card.Body>
    </Card>
  );
}

All color, spacing, radius, and shadow tokens are exposed as Tailwind utilities (bg-primary-default, text-text-secondary, border-border-default, shadow-md, rounded-lg, …) and as CSS custom properties for runtime access.

Component index

| Phase | Components | | --- | --- | | 1 — Foundations | Button, IconButton, Input, Textarea, Label, HelperText, FormField | | 2 — Selection | Checkbox, Radio, Switch, Select, Slider | | 3 — Surfaces | Card, Divider, Badge, Chip, Avatar | | 4 — Disclosure & nav | Accordion, Tabs, Tooltip, Popover, Breadcrumb | | 5 — Overlays | Dialog, BottomSheet, Alert, Toast | | 6 — Feedback | Spinner, ProgressBar, Skeleton, EmptyState |

Every interactive component ships rest / hover / active / focus-visible / disabled states, plus the domain-specific states documented in COMPONENTS.md. Radix primitives (Accordion, Dialog, Popover, Tooltip, Select, Slider, Switch, Checkbox, RadioGroup, Tabs, Progress) are wrapped, not rebuilt — the asChild pattern is preserved where Radix uses it.

Token access

// Tailwind utility (preferred)
<div className="bg-primary-default text-text-inverse rounded-lg p-4">…</div>

// CSS custom property (for style attribute or bespoke CSS)
<div style={{ background: 'var(--color-primary-default)' }}>…</div>

Tests & QA

  • vitest + React Testing Library for keyboard / ARIA behavior across 30+ suites (170+ tests).
  • tsc --noEmit in CI with strict, noUncheckedIndexedAccess, and noUnusedLocals all on.
  • Storybook 8 gallery with every state of every component.