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

@cdr-kit/react-ui

v0.7.3

Published

Styled component variants for @cdr-kit/react — ConditionBadge, AccessStepper, SubscribeButton, VaultCard + DX primitives. CSS-variable themed; no Tailwind, no lucide, no framer-motion hard deps.

Readme

@cdr-kit/react-ui

Styled, batteries-included components for Story CDR. Clerk + RainbowKit pattern: @cdr-kit/react is headless, this package is the designed default.


Install

pnpm add @cdr-kit/react-ui @cdr-kit/react @cdr-kit/core

Import the stylesheet once at your app root:

import "@cdr-kit/react-ui/styles.css";

Quick start

import { CdrProvider } from "@cdr-kit/react";
import { createMockCdrKit } from "@cdr-kit/core";
import { SubscribeButton } from "@cdr-kit/react-ui";

<CdrProvider mockKit={createMockCdrKit()}>
  <SubscribeButton uuid={4200} priceWei={5n * 10n ** 18n} priceLabel="5 $IP" />
</CdrProvider>

Components

| component | what | | ------------------------------- | ------------------------------------------------------------------- | | <ConditionBadge> | tone-coded badge for any condition kind | | <AccessStepper> | progress strip: idle → paying → collecting-partials → ready/error | | <SubscribeButton> | batteries-included CTA (wraps useSubscribeAndAccess) | | <UnlockablePill> | inline-prose paywall pill (Onscroll / Confide pattern) | | <VaultCard> | full vault tile for discovery grids | | <HeartbeatTimer> | dead-man-switch countdown | | <TimeWindowBadge> | time-window state (before / inside / after) | | <MultiSigApprovalTracker> | live signer-set + epoch + counts | | <MultiSigSigner> | sign / approve button for multi-sig vaults | | <EscrowDeliveryConfirm> | buyer-side pay → confirm flow | | <CopyButton> <CopyLine> | one-click copy helpers | | <ShortAddress> | EIP-55 truncated address | | <ExplorerLink> | external link to the Aeneid block explorer | | <IpPrice> | render a wei BigInt as 5 $IP / month | | <CdrNetworkChip> | live/connecting status pill (Aeneid vs mainnet vs offline) | | <CdrSpinner> <CdrProgress> | loading + progress primitives | | <CdrError> | typed-error renderer (maps CdrErrorCode → readable copy) |


Theming

No Tailwind, no lucide, no framer-motion as hard requirements. Styled via CSS custom properties on a --cdr-ui-* namespace, with light + dark defaults shipped via [data-theme="dark"]. Override at any ancestor:

:root {
  --cdr-ui-primary: #e86c2e;
  --cdr-ui-signal:  #1E9C66;
  --cdr-ui-warn:    #C0863A;
  --cdr-ui-danger:  #D32D2D;
  /* …see styles.css for the full token set */
}

Peer dependencies

  • @cdr-kit/react ≥ 0.7.0
  • @cdr-kit/core ≥ 0.7.0
  • react ≥ 18

Links