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

@t54-labs/react-kit

v0.1.1

Published

React/Vite design-system package for t54 web portals.

Readme

@t54-labs/react-kit

React design-system package for T54 web products. It ships token-backed base components, reusable product patterns, CSS styles, TypeScript declarations, and component-level subpath exports.

Install

npm install @t54-labs/react-kit

Import the stylesheet once at the application entry:

import '@t54-labs/react-kit/styles.css';

Usage

Prefer component-level imports for smaller application bundles:

import '@t54-labs/react-kit/styles.css';
import { T54Button } from '@t54-labs/react-kit/button';
import { T54Card } from '@t54-labs/react-kit/card';
import { T54Accordion } from '@t54-labs/react-kit/accordion';

export function Example() {
  return (
    <T54Card>
      <T54Accordion
        type="single"
        items={[
          {
            value: 'overview',
            title: 'Overview',
            content: 'Token-backed components for T54 product interfaces.'
          }
        ]}
      />
      <T54Button>Continue</T54Button>
    </T54Card>
  );
}

Grouped imports are also supported for convenience:

import { T54Button, T54Card } from '@t54-labs/react-kit';

For smaller bundles, prefer subpath imports such as @t54-labs/react-kit/button, @t54-labs/react-kit/card, and @t54-labs/react-kit/dialog.

Exports

The package publishes ESM and TypeScript declarations from dist.

Common exports:

  • @t54-labs/react-kit
  • @t54-labs/react-kit/components
  • @t54-labs/react-kit/patterns
  • @t54-labs/react-kit/icons
  • @t54-labs/react-kit/tokens
  • @t54-labs/react-kit/styles.css
  • @t54-labs/react-kit/<component>

Examples:

import { T54Input } from '@t54-labs/react-kit/input';
import { T54Select } from '@t54-labs/react-kit/select';
import { T54Tooltip } from '@t54-labs/react-kit/tooltip';

Theming

Components use var(--t54-*) CSS variables. Importing styles.css provides the default theme tokens and component styles.

import '@t54-labs/react-kit/styles.css';

Do not hardcode T54 brand colors, spacing, radius, typography, or elevation in product code. Compose the exported components and override through approved token/theme surfaces.

Release

This scoped package is published as a public npm package under @t54-labs.

Maintainers publish from the repository root:

npm run changeset
npm run publish:web

publish:web runs the release checks, builds dist, updates package versions with Changesets, and publishes with public npm access.