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/adapter-claude-design

v0.1.11

Published

Claude Design reference adapter: resolves a committed HTML export via design-map.json, rasterizes it headlessly, and normalizes to a DesignReference. Claude Design has no read API and no Figma export.

Readme

@design-parity/adapter-claude-design

The Claude Design ReferenceAdapter for design-parity. Depends only on @design-parity/core.

There is no Claude Design read API

Claude Design is a research preview. It exposes no read API and no Figma export, so — unlike the Figma adapter (REST + Code Connect) or even Stitch (SDK) — there is nothing to fetch. The reference is consumed as a committed HTML export that a human (or the compose-preview-design-board skill, which owns the reverse direction — building the HTML imported into Claude Design) checks into the consumer repo. Because there is no machine link, the correspondence is always a design-map.json entry and the resulting DesignReference always has linkMethod: "manifest".

design-map.json ──▶ design/reference/*.html ──▶ rasterize ─┐
   (manifest)         (committed export)        (headless)  ├─▶ DesignReference
                          └─ handoff manifest ──▶ tokens ───┘     (manifest)

The HTML export

A committed export is an ordinary HTML document carrying one embedded handoff manifest:

<script type="application/design-parity+json">
  {
    "componentId": "ui/Card.kt#OfferCard",
    "tokens": { "spacing": { "padding": 16 }, "radius": { "corner": 12 } },
    "images": [
      { "state": "default", "theme": "light", "size": "medium",
        "src": "./offer-card.light.png" }
    ]
  }
</script>
  • images[].src — a pre-rendered PNG, resolved relative to the HTML file. Its width/height are read from the PNG itself, so reference dimensions can never drift from the committed bytes. A variant with no src (or an export with no images at all) is rasterized headlessly from the document.
  • tokens — inline DesignTokens, or a string path to a handoff token file (relative to the HTML) for token-compliance checks.
  • componentId — optional; when present it must match the component the resolver asked for, else resolve throws.

Usage

import { ClaudeDesignAdapter } from "@design-parity/adapter-claude-design";

const adapter = new ClaudeDesignAdapter();
const ref = await adapter.resolve(
  "ui/Card.kt#OfferCard",          // resolver-supplied code handle
  "design/reference/offer-card.html", // the design-map ref (repo-relative)
  { repoRoot: process.cwd(), env: process.env },
);

Rasterization

Rasterizing raw HTML variants defaults to browserRasterizer, which drives a headless Chrome/Chromium already on PATH (set CHROME_BIN to point at a specific binary) — no browser-automation dependency is bundled, keeping the package's only runtime dependency @design-parity/core. Inject your own to render inside an existing harness:

new ClaudeDesignAdapter({ rasterizer: myRasterizer });

Exports that ship pre-rendered src images never invoke a rasterizer.

Errors

resolve throws a clear, prefixed error when the export is missing, its handoff block is malformed, a referenced token file or image is missing, or the export's componentId contradicts the resolver.