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

@digital2analogue2/tokens

v0.1.1

Published

Built CSS custom properties for the River Romney design system — base dark theme plus the decision-engine, dot-art, and dot-blog brand themes.

Downloads

322

Readme

@digital2analogue2/tokens

Built CSS custom properties for the River Romney design system. Install this package instead of hand-copying the token block into each consumer repo — the version you depend on is the version you get.

Ships one stylesheet per brand:

| Import | Brand | |---|---| | @digital2analogue2/tokens/base.css | Base dark / phosphor theme (.com, .design) | | @digital2analogue2/tokens/decision-engine.css | Light enterprise inversion | | @digital2analogue2/tokens/dot-art.css | Pure-black canvas (.art) | | @digital2analogue2/tokens/dot-blog.css | Relaxed reading (.blog) |

Install

Published to the public npm registry — no scope config or auth needed:

npm install @digital2analogue2/tokens

Use

Import the brand stylesheet once at your app's entry point; every semantic token (--color-*, --font-*, --spacing-*) is then available globally:

import "@digital2analogue2/tokens/base.css";
.button {
  background: var(--color-background-action);
  color: var(--color-foreground-on-action);
  padding: var(--spacing-element);
}

Versioning

The package version tracks the design system. A token rename or removal is a breaking change → minor/major bump per semver. Consuming repos pin a version and upgrade deliberately, which is the whole point: no more silent drift from a copied CSS block.


Maintainer note — publishing (public npm)

Published to the public npm registry under the @digital2analogue2 scope — the maintainer's npm username, which is a free scope that doubles as a privacy handle (no real name on the registry). Public npm keeps the scope independent of the GitHub repo owner, so this repo stays under digital2analogue with no transfer and the Vercel wiring untouched.

Note: the unpublished packages/components and packages/mcp are still scoped @riverromney. If those ever publish, align the scopes (own @riverromney on npm, or move them under @digital2analogue2).

One-time setup before the first publish:

  1. Sign in to npmjs.com as digital2analogue2 (your username is automatically the @digital2analogue2 scope — no org needed).
  2. Create an npm Automation access token and add it to this repo's Actions secrets as NPM_TOKEN.
  3. Run the Publish @digital2analogue2/tokens workflow (Actions → Run workflow), or push a tokens-v* tag. The first publish creates the package.

Preview the exact tarball anytime with npm pack --workspace @digital2analogue2/tokens --dry-run.

The package ships "license": "UNLICENSED" — publicly visible (a portfolio artifact), but not licensed for third-party reuse. Change the license field if you want to grant reuse.