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

@welltarot/proof-of-life

v0.1.1

Published

Embed keystroke-level writing replays into any blog post. Proof that a human wrote it.

Readme

@welltarot/proof-of-life

Embed the writing process into any blog post. When a reader hits PLAY, they watch your article appear character by character, with every pause, deletion, and second-guess intact.

Why: AI writes text. Humans write with friction, hesitation, and revision. Proof of Life is a receipt for human effort — the tape of how the words actually came together.

How it works: an Obsidian plugin silently records keystrokes while you write. When you publish, it copies a self-contained HTML snippet to your clipboard. Paste it into WordPress, Ghost, Hugo, or any site that accepts HTML, and the replay lives inside the post. No second file, no URL to host, no friction.

One-time setup on your site

Add this one line to your site's header (Ghost: Code Injection → Site Header. WordPress: header.php or a headers plugin. Static sites: your base template):

<script src="https://cdn.jsdelivr.net/npm/@welltarot/proof-of-life" defer></script>

That's it. Now every post you publish with a Proof of Life embed will play back.

Per-post flow

  1. Install the Proof of Life Obsidian plugin (separate package)
  2. Write a post in Obsidian — recording is automatic
  3. Run the Copy post with replay command
  4. Paste into your CMS
  5. Publish

The pasted HTML contains a fallback card (visible immediately, even before the script loads) and a base64-encoded copy of the entire recording. When the script runs, the card becomes a full interactive player.

Embed anatomy

The Obsidian plugin outputs something like this:

<div class="proof-of-life-embed" data-pol-payload="H4sIAAA...BASE64...">
  <pre class="pol-brand">⢹⠁ ⣇⡀ ⢀⡀   ⡇⢸ ⢀⡀ ⡇ ⡇   ⢹⠁ ⢀⣀ ⡀⣀ ⢀⡀ ⣰⡀
 ⠸  ⠇⠸ ⠣⠭   ⠟⠻ ⠣⠭ ⠣ ⠣   ⠸  ⠣⠼ ⠏  ⠣⠜ ⠘⠤</pre>
  <p class="pol-kicker">Proof of Life by The Well Tarot</p>
  <p class="pol-fallback-text">
    This text was written by a human. As proof, this post includes an
    in-line replay of the writing process as verification.
  </p>
  <a class="pol-link" href="https://github.com/welltarot/proof-of-life">
    welltarot/proof-of-life
  </a>
</div>

The data-pol-payload attribute holds a gzipped + base64-encoded JSONL recording of every keystroke. All styling is self-contained — the script injects its own <style> block when it loads.

Where it works

  • Ghost — yes (one paste into Code Injection, done)
  • Self-hosted WordPress — yes (via header.php or a plugin like "Insert Headers and Footers")
  • Hugo / Eleventy / Astro / Quartz / Jekyll — yes (add script to base template)
  • Any custom HTML — yes
  • Substack / Medium / WordPress.com freeno, these block custom scripts

Manual embed (without the Obsidian plugin)

You can also hand-author an embed from any JSONL recording. The payload is produced by gzipping the .jsonl file and base64-encoding the result:

gzip -c recording.jsonl | base64 | tr -d '\n'

Paste the resulting string into data-pol-payload.

Alternative: hosted-asset mode

If you host your .jsonl file separately and prefer a tiny embed that fetches it on demand:

<proof-of-life src="https://example.com/my-post.jsonl.gz" target="#article-content"></proof-of-life>

This mode swaps the content of #article-content during playback and restores it on pause. Useful if you run your own blog and want the replay to inhabit the actual rendered article instead of a separate card.

The recording format

Proof of Life logs are JSONL files where line 1 is a session header and subsequent lines are event tuples. The format is documented in the Obsidian plugin's design doc. All tools in the ecosystem read and write the same format, and the format is plain text — you can inspect any recording by hand.

License

MIT © Joe Bowers