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

@nanohype/tokens

v0.2.0

Published

Design tokens for nanohype interfaces — Tailwind v4 theme plus a typed mirror, held together by a parity test.

Readme

@nanohype/tokens

The design tokens every nanohype interface renders from: colours for both themes, a radius scale, the type stacks, and one motion scale.

Use it

/* your app's entry stylesheet */
@import "tailwindcss";
@import "@nanohype/tokens/tokens.css";

Every token is a Tailwind v4 @theme entry, so it arrives as a utility — --color-card backs bg-card, --radius-md backs rounded-md, --duration-base backs duration-base. Nothing else to configure.

The stylesheet ships the dark theme as the default and redefines the same colour names under html.light, so a single class swap flips every bg-, text- and border- utility. Set the class pre-paint from an inline script or the page flashes the wrong theme on load.

For the values TypeScript needs — a chart series colour, a canvas fill, an <svg> attribute — import them:

import { colors, duration, easing } from "@nanohype/tokens";

chart.setOption({ color: [colors.primary, colors.success, colors.warning] });

Why the values exist twice

CSS custom properties are invisible to TypeScript. A charting library cannot read a Tailwind utility, so without a typed mirror it ends up with #3e8e82 hardcoded somewhere the stylesheet does not know about — which is the drift a token layer exists to prevent.

So the values live in tokens.css and in tokens.ts, and a parity test parses the stylesheet and compares the two. A token in one and not the other fails the build; so does a value that disagrees. Adding --color-info to the CSS and forgetting the mirror would otherwise produce no error at all — a consumer reaching for colors.info just gets undefined and paints nothing.

The test also holds the two themes to the same key set. A colour with no html.light override keeps its dark value when the user flips the toggle: one unreadable surface, and nothing to report it.

Adding a token

Add it to src/tokens.css, add it to src/tokens.ts, run npm test. The test tells you if you did one and not the other. Colours need both themes.