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

@gtcx/ui

v0.3.4

Published

GTCX UI component library — Radix UI + Tailwind CSS v4

Downloads

844

Readme

@gtcx/ui

77-component library for the GTCX design system. Built on Radix UI primitives with Metronic v9.4.6 + Tailwind CSS v4 styling.

Install

pnpm add @gtcx/ui

Install required peer dependencies:

pnpm add react react-dom radix-ui lucide-react

Install optional peer dependencies for the components you use:

# Forms
pnpm add react-hook-form react-day-picker input-otp react-aria-components

# Data
pnpm add @tanstack/react-table recharts

# Drag and drop
pnpm add @dnd-kit/core @dnd-kit/sortable @dnd-kit/modifiers @dnd-kit/utilities

# Notifications
pnpm add sonner

# Theming
pnpm add next-themes

# Command palette
pnpm add cmdk

# Drawer
pnpm add vaul

# Carousel
pnpm add embla-carousel-react

# Resizable panels
pnpm add react-resizable-panels

# Animations
pnpm add motion

Setup

Import the global styles in your app entry point:

// app/layout.tsx or _app.tsx
import '@gtcx/ui/styles/globals.css';

For Metronic CSS variables (full styling):

import '@gtcx/ui/styles/config.metronic.css';

Usage

import { Button, Input, Card, CardHeader, CardTitle, CardContent } from '@gtcx/ui';

export function LoginCard() {
  return (
    <Card>
      <CardHeader>
        <CardTitle>Sign in</CardTitle>
      </CardHeader>
      <CardContent className="flex flex-col gap-4">
        <Input placeholder="Email" type="email" />
        <Input placeholder="Password" type="password" />
        <Button>Continue</Button>
      </CardContent>
    </Card>
  );
}

Component categories

| Category | Components | | -------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | Base | Button, Badge, Avatar, AvatarGroup, Separator, Spinner | | Forms | Input, Textarea, Label, Checkbox, Switch, Select, RadioGroup, Slider, Toggle, ToggleGroup, Calendar, InputOTP, DateField, Form, FileInput | | Feedback | Alert, AlertDialog, Dialog, Sheet, Drawer, Tooltip, Popover, HoverCard, ContextMenu, Progress, Skeleton, Sonner | | Navigation | Tabs, Breadcrumb, Pagination, DropdownMenu, NavigationMenu, Menubar, AccordionMenu, Stepper, Command | | Data | Table, DataGrid, DataGridTable, DataGridPagination, DataGridColumnHeader, Accordion, Collapsible, Carousel, Chart, Kanban, Tree | | Layout | Card, ScrollArea, AspectRatio, ResizablePanelGroup, Code, Kbd, GradientBackground, GridBackground, Marquee, CountingNumber, SlidingNumber, ShimmeringText, TypingText, WordRotate |

Next.js

For Next.js with Turbopack, add to transpilePackages:

// next.config.mjs
const nextConfig = {
  transpilePackages: ['@gtcx/ui'],
};

Requirements

  • React 18 or 19
  • Node.js ≥ 20