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

@libid/claim-full

v0.3.0

Published

@libid/claim plus every static proving asset it loads at runtime, bundled in the npm tarball: the tlsn wasm bundle, the released compiled circuits (sha256-verified), and noir's acvm/abi wasm. One install, no staging scripts, no curl.

Readme

@libid/claim-full

@libid/claim plus batteries: the npm tarball carries every static asset the claim flows load at runtime, so an integration needs no staging scripts and no curl.

npm install @libid/claim @libid/claim-full
npx libid-claim-assets public        # copy the asset tree into your static root

That is the whole setup. public/ (vite, next.js, any static server) now serves exactly the layout @libid/claim's default same-origin URLs expect:

| staged path | consumer | |---|---| | /tlsn_wasm.js, /tlsn_wasm_bg.wasm, /spawn.js | X flow's MPC-TLS prover (libid-org/notary release) | | /circuits/dyaka_noir_token.json | X token circuit (libid-org/libid-circuits release) | | /circuits/jwt_email.json | Google OIDC circuit (libid-org/libid-circuits release) | | /circuits/manifest.json | the circuits release manifest (provenance) | | /wasm/acvm_js_bg.wasm, /wasm/noirc_abi_wasm_bg.wasm | noir witness generation (@noir-lang pins) |

The GitHub flow needs none of these — its proof comes from the identity-backend.

Programmatic staging (build scripts, postinstall hooks):

import { copyAssets } from '@libid/claim-full' // node-only entry
copyAssets('public')

Per-call URL overrides via subpath imports

Every asset is also exported under ./assets/*, for passing explicit URLs to @libid/claim instead of (or on top of) staging:

  • vite — both forms work and emit the asset into the build:
    import circuitUrl from '@libid/claim-full/assets/circuits/jwt_email.json?url'
    const wasm = new URL('@libid/claim-full/assets/tlsn_wasm_bg.wasm', import.meta.url).href
  • next.jsnew URL('@libid/claim-full/assets/…', import.meta.url) works under BOTH bundlers (verified with next 16: turbopack and --webpack each emit the file under /_next/static/media/).

Staging into public/ remains the recommended path: @libid/claim's default asset URLs are same-origin absolute paths fetched at runtime (including from inside workers), so overrides only cover call sites that accept a URL (circuitUrl, the prover wasm URLs) — the tlsn bundle's spawn.js sibling, for instance, must still be served from the origin.

Provenance and the toolchain tie

package.json's libid field pins the release tags the bundle was staged from (notaryRelease, circuitsRelease). The assets are not in git: scripts/fetch-assets.mjs fetches them at build/publish time, verifying each circuits tarball and file against the release manifest's sha256s.

The build fails if @libid/claim's @aztec/bb.js / @noir-lang/noir_js pins differ from the toolchain recorded in the circuits release manifest, and the test suite derives both circuits' verification keys with the pinned bb.js and asserts their sha256s equal the manifest's — the deployed on-chain verifiers are generated from those exact vk bytes. Bump the prover pins and the circuits release together, or not at all.