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

@paradoc/essentials

v0.1.0

Published

Ready-to-use Paradoc artifacts for common business forms — IRS, NACHA, USCIS, HIPAA, ACORD, and more

Readme

Paradoc documentation Follow on Twitter

Paradoc is documents as code. It lets developers and AI agents define, validate, and render business documents using typed, composable schemas.

Package overview

A curated collection of common business artifacts ready to use with the Paradoc SDK. Each artifact ships with its full spec and pre-built layers (markdown and PDF) bundled in — no separate downloads, no resolver setup.

Installation

npm install @paradoc/essentials @paradoc/sdk

Included artifacts

| Domain | Import | Form | | ---------- | -------------------------- | -------------------------------------------------------------------------- | | tax | w9 | IRS W-9 — Request for Taxpayer Identification Number | | tax | f1099NEC | IRS 1099-NEC — Nonemployee Compensation | | tax | f1099MISC | IRS 1099-MISC — Miscellaneous Information | | tax | f4506T | IRS 4506-T — Request for Transcript of Tax Return | | employment | i9 | USCIS I-9 — Employment Eligibility Verification | | banking | achBankAccountInfo | ACH Bank Account Information | | banking | achChangeForm | ACH Change Form | | banking | achCreditAuthorization | ACH Credit Authorization | | banking | achDebitAuthorization | ACH Debit Authorization | | banking | achDirectDeposit | ACH Direct Deposit Authorization |

Import by domain or from the root:

import { w9 } from "@paradoc/essentials/tax";
import { i9 } from "@paradoc/essentials/employment";
import { achDirectDeposit } from "@paradoc/essentials/banking";

// or flat
import { w9, i9, achDirectDeposit } from "@paradoc/essentials";

Usage

Fill a W-9 and render its markdown layer:

import { w9 } from "@paradoc/essentials/tax";
import { textRenderer } from "@paradoc/sdk";

const markdown = await w9
  .fill({
    parties: {
      taxpayer: { id: "taxpayer-0", name: "Jane Q. Public" },
    },
    fields: {
      taxClassification: "individual_or_sole_proprietor",
      ssn: "123-45-6789",
      mailingAddress: {
        line1: "1 Main St",
        locality: "Springfield",
        region: "IL",
        postalCode: "62704",
        country: "US",
      },
    },
  })
  .render({ renderer: textRenderer(), layer: "markdown" });

Render the official PDF layer instead by swapping the renderer:

import { pdfRenderer } from "@paradoc/sdk";

const pdf = await w9.fill(data).render({ renderer: pdfRenderer(), layer: "pdf" });

Each artifact's bundled resolver is applied automatically — you don't need to pass one. Validate without filling using safeParseData:

const result = w9.safeParseData(rawInput);
if (result.success) {
  // result.data is fully typed
}

Changelog

View the Changelog for updates.

Related packages

Contributing

We're open to all community contributions! If you'd like to contribute in any way, please read our contribution guidelines and code of conduct.

License

This project is licensed under the MIT license.

See LICENSE for more information.