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

chronoverify

v0.1.1

Published

Client for the ChronoVerify image capture-time and provenance verification API.

Readme

chronoverify

TypeScript/JavaScript client for the ChronoVerify image capture-time and provenance verification API. Send any image, get one plain verdict (provenance_confirmed, consistent, inconclusive, metadata_anomaly, or manipulation_indicated) with a 0 to 100 confidence and the signals behind it. It reads C2PA Content Credentials when present and falls back to EXIF, XMP, and pixel forensics when they are not, so it works on any image, signed or not.

Get an API key (the first 100 verifications each month are included, then a flat $0.003 per image, no per-operation multipliers): https://chronoverify.com/pricing

ChronoVerify is provenance-first and deliberately not a deepfake detector. Verdicts are investigative triage to support human review, not proof.

Install

npm install chronoverify

Requires Node 18+ (uses the built-in fetch and FormData).

Use

import { ChronoVerify } from "chronoverify";

const cv = new ChronoVerify("cv_live_...");      // or omit the key for the free, rate-limited public path
const result = await cv.verify({ file: "photo.jpg" });

console.log(result.verdict, result.confidence);  // e.g. "consistent" 58
console.log(result.capture_time);                // { value, source, consistent }

Verify a remote image by URL (the server fetches it):

const result = await cv.verify({ url: "https://example.com/photo.jpg" });

You can pass a path, a Uint8Array/Buffer, or a Blob:

const bytes = await fs.promises.readFile("photo.jpg");
const result = await cv.verify({ file: bytes, filename: "photo.jpg" });

The key can also come from the CHRONOVERIFY_API_KEY environment variable. Errors throw ChronoVerifyError with status and detail.

Signed audit report

Get a shareable, independently verifiable PDF audit record for one image (an Ed25519 signature over the canonical verdict, with an optional RFC 3161 timestamp). A report requires an API key. It is the premium artifact: included within a paid plan's monthly quota, otherwise $0.20 from your prepaid balance. report() returns the PDF as a Uint8Array.

import { writeFile } from "node:fs/promises";

const pdf = await cv.report({ file: "photo.jpg" });
await writeFile("report.pdf", pdf);

Verify a report's signature against the public key at https://chronoverify.com/v1/key .

Command line

chronoverify verify photo.jpg
chronoverify verify --url https://example.com/photo.jpg
chronoverify verify photo.jpg --json
chronoverify report photo.jpg -o report.pdf

Response

The verdict object is documented in full, with field reference and examples, at https://chronoverify.com/method#api . A clean result means a file's saved data is internally consistent, not that the scene it shows is real.

License

MIT