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

@designesy/cli

v0.2.0

Published

Unified CLI for Designesy design verification — dispatches to tokens (DTCG validation) and score (40-check engine) subcommands.

Readme

@designesy/cli

Unified CLI for the Designesy design-verification toolkit. Single entry point that dispatches to tokens (DTCG 2025.10 token validation) and score (40-check design-contract scoring) subcommands.

Install

npm install --save-dev @designesy/cli @designesy/tokens @designesy/score
# or
npx @designesy/cli <command>

Usage

# Validate a DTCG token file (10 conformance checks)
designesy tokens https://www.designesy.org/export/dtcg
designesy tokens ./tokens.json --json

# Score a URL against the 40-check engine
designesy score designesy.org
designesy score linear.app --min-score 70 --min-grade B
designesy score stripe.com --format review

# Help
designesy help
designesy tokens --help
designesy score --help

Commands

designesy tokens <url|file>

Validates a DTCG 2025.10 design token file against the W3C Design Tokens Format Module spec. 10 conformance checks. Zero dependencies. Works offline with local files.

See @designesy/tokens for full documentation.

designesy score <url>

Scores a URL against the 40-check Designesy design-contract engine. Fetches the page, extracts CSS + :root tokens, runs all checks locally — no server required.

See @designesy/score for full documentation.

GitHub Actions

Each subcommand has a standalone GitHub Action wrapper:

# Token validation
- uses: LE-VAI/designesy-org/.github/actions/tokens-validate@main
  with:
    url: https://example.com/export/dtcg
    min-score: 80

# Score gate
- run: npx designesy-score ${{ matrix.site }} --min-grade B

Architecture

The CLI is a thin dispatcher — it spawns the tokens and score subpackage CLIs as child processes and forwards argv. This means:

  • Each subpackage can be used independently (npx designesy-tokens, npx designesy-score)
  • The unified CLI requires both subpackages installed as siblings
  • No engine code is duplicated — the CLI has zero logic

License

MIT © Designesy