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

@design-parity/diff

v0.1.26

Published

Source-agnostic diff engine: consume a (DesignReference, CandidateRender) pair and emit a deterministic Verdict — a11y + i18n first, then token compliance, then visual diff.

Readme

@design-parity/diff

The source-agnostic diff engine. Consume a (DesignReference, CandidateRender) pair — from any adapter plus the candidate renderer — and emit a deterministic Verdict, a markdown summary, and a reference/candidate/diff triptych per image.

Per docs/PRINCIPLES.md: the engine runs only committed, deterministic rules/config — no model calls at run time, and the verdict leads with a11y + i18n, then token compliance, then the raw visual diff.

Use

import { diff } from "@design-parity/diff";

const { verdict, summary, triptychs } = await diff(reference, candidate, {
  repoRoot,          // image `uri`s resolve against this (default: cwd)
  outDir: "out",     // optional: write triptych-<key>.png here
  // config: { spacingTolerance: 0, pixelThreshold: 0.05, ... },
  // checksConfig: { contrastLevel: "AAA" },  // a11y/i18n thresholds
  // checks: myProvider,   // swap the default @design-parity/checks provider
});

verdict.status is pass | warn | fail (any error finding ⇒ fail); findings are ordered a11y → token → semantic → visual; verdict.visualScores maps each state/theme/size key to its differing-pixel fraction.

Dimensions

  • a11y + i18n — delegated to @design-parity/checks (#10) through a ChecksProvider seam: WCAG contrast, touch targets, semantic roles/labels, and i18n risks. defaultChecks wires the real package; inject a custom provider (or checksConfig) to override.
  • Token compliance — flatten the candidate's tree tokens and compare against the reference spec: numeric tokens honour a committed tolerance, typography matches exactly, colours match modulo a full-alpha suffix (with a same-role value fallback). When the design and code token vocabularies differ, a design-map.json tokens alias (code-name → design-name) canonicalises the reference to code names first, so e.g. design color/on-surface lines up with code onSurface.
  • Design system — a whole-table audit: the reference's resolved token table (DesignReference.themeTokens, e.g. the Figma Variables + type ramp) vs the code's resolved theme (SemanticTree.themeTokens), keyed through the same alias. Covers colours (mode-aware), the type ramp (exact, spec-driven), and the numeric radius/spacing scale (within the committed tolerance). Typography and shape/spacing names resolve through the alias first, then the Material role they denote (Body/LargebodyLarge, radius/mediummedium). Findings carry detail.scope: "design-system" so the orchestrator reports each drift once per run, not once per screen.
  • Semantics — theme-coverage and structural (role/label) deltas.
  • Visual — per-pixel diff via pixelmatch, plus the triptych.

Everything is committed config (see config.ts); the same pair always yields the same verdict.

Develop

npm run build --workspace @design-parity/diff
npm test --workspace @design-parity/diff