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

@truetake/verify-aul

v1.1.0

Published

Verifier for TrueTake Authorized Use Ledger (AUL) bundles. Pinned trust anchors, RFC 8785 canonicalization, RFC 6962 Merkle proofs, RFC 3161 TSA tokens, Solana memo anchors, Ed25519 signatures.

Readme

@truetake/verify-aul

Open-source verifier for TrueTake Authorized Use Ledger (AUL) bundles.

What this verifies

A verification bundle is the full evidence envelope for a single AUL event:

  • Canonical event fields (who did what, when, with which artifact hashes).
  • The server's Ed25519 signature over the event hash.
  • A Merkle inclusion proof tying the event to a batch root.
  • RFC 3161 TSA tokens from two independent timestamping authorities (FreeTSA + DigiCert) over the batch root.
  • A Solana memo transaction over the batch root.
  • The public key used for signing (inlined — no network lookup required).

This package runs the five verification checks locally, pinning CA trust anchors by SubjectKeyIdentifier SHA-256, and returns a pass / partial / fail verdict.

Install

npm install @truetake/verify-aul
import { verifyBundle } from '@truetake/verify-aul';

const result = await verifyBundle(bundle);
console.log(result.verdict); // 'pass' | 'partial' | 'fail'

CLI

# Verify a Tier 2 bundle (event + signature + anchors).
npx @truetake/verify-aul bundle ./some-bundle.json

# Verify a Tier 1 proof (anchors only, no event/signature).
npx @truetake/verify-aul proof ./some-proof.json

# Verify a single-field Merkle disclosure against its companion bundle (spec §10).
npx @truetake/verify-aul verify-field \
  --bundle ./bundle.json --disclosure ./disclosure.json \
  --candidate [email protected]

Exit codes: 0 pass, 1 fail/partial/error, 2 usage error.

verify-field — sensitive candidate values

--candidate <VALUE> leaks the disclosed value to argv (/proc, ps, shell history, CI logs). For anything resembling PII, prefer --candidate-file, which reads UTF-8 file contents (minus a single trailing newline):

npx @truetake/verify-aul verify-field \
  --bundle ./bundle.json --disclosure ./disclosure.json \
  --candidate-file ./candidate.txt

Operational notes

  • Solana RPC trust. Bundle verification trusts the Solana RPC endpoint for transaction confirmation data. Operators SHOULD pin a known-good endpoint via --solana-rpc <url> or query multiple endpoints and compare. See spec §10.10.
  • Payload size. The CLI refuses bundle / disclosure files larger than 10 MB to mitigate DoS against automated verification pipelines.

Hosted UI

A self-hostable static verifier is published at truetake.github.io/verify-aul/. Drop a bundle file onto the page and read the report — no platform round-trip required.

Trust model

The verifier trusts only the CA fingerprints pinned in src/trust-anchors/fingerprints.ts and the Solana + TSA endpoints the caller points it at. Rotation is shipped as a patch release; consumers should pin exact versions (0.1.0-alpha.0, not ^0.1.0) and review release notes on every bump.

Spec

The bundle format is documented in spec/v1.md. Field-disclosure payloads are documented in spec/v1.md §10. JSON Schemas: spec/schema/bundle.v1.json, spec/schema/disclosure.v1.json. Reference test vectors — including four disclosure vectors and a platform-parity fixture — live in spec/test-vectors/.

Reproducible build

The hosted UI can be rebuilt from this repository and compared against the deployed artifact:

git checkout <tag>
npm ci
npm run build
npm run build:web
diff <(sort web/dist/MANIFEST.sha256) <(sort <downloaded-dist-dir>/MANIFEST.sha256)

Byte-identical diffs are unreliable across OS / filesystem / locale, so the build emits a per-file SHA-256 manifest (web/dist/MANIFEST.sha256, also shipped alongside the deployed Pages artifact at /MANIFEST.sha256) for comparison instead.

License

MIT.

Security

See SECURITY.md for disclosure contact and threat-model notes.