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

@taxzilla/cli

v0.2.0

Published

Bun-powered local-first CLI for the TaxZilla TY2025 federal tax engine.

Readme

@taxzilla/cli

Bun-powered local-first terminal interface for the TaxZilla TY2025 federal tax engine.

WARNING

  • THIS PACKAGE HAS NOT BEEN REVIEWED, APPROVED, OR VETTED BY CPAS, EAS, TAX ATTORNEYS, OR OTHER TAX PROFESSIONALS.
  • THIS PACKAGE IS EXPERIMENTAL.
  • THIS PACKAGE IS NOT TAX ADVICE.
  • THIS PACKAGE IS NOT LEGAL ADVICE.
  • THIS PACKAGE IS NOT AN IRS PRODUCT.
  • THIS PACKAGE IS NOT A CERTIFIED E-FILE SYSTEM.
  • THIS PACKAGE DOES NOT SUBMIT RETURNS TO THE IRS OR ANY STATE AGENCY.
  • USE THIS PACKAGE AT YOUR OWN RISK.
  • REVIEW EVERY INPUT, EVERY OUTPUT, EVERY LINE, AND EVERY FILING DECISION YOURSELF.
  • NO WARRANTY. NO GUARANTEE OF ACCURACY. NO GUARANTEE OF COMPLETENESS. NO GUARANTEE OF FITNESS FOR ANY PURPOSE.

Runtime Requirement

  • THIS PACKAGE REQUIRES bun ON YOUR PATH.
  • The published taxzilla executable is #!/usr/bin/env bun.
  • Installing from npm does not remove the Bun runtime requirement.

Install And Run

bunx @taxzilla/cli help
bunx @taxzilla/cli init --session-dir ./.taxzilla/returns/demo --state CA
bunx @taxzilla/cli validate --input ./.taxzilla/returns/demo
bunx @taxzilla/cli run --input ./.taxzilla/returns/demo
bunx @taxzilla/cli export --input ./.taxzilla/returns/demo

Global install also works if bun is already installed:

npm install -g @taxzilla/cli
taxzilla help

Local Storage And Data Handling

  • Return data is stored locally on disk.
  • By default, sessions live under .taxzilla/returns/<returnId>/.
  • The source of truth is canonical-return.json.
  • run and export write local artifacts next to the canonical return, including tax-summary.json, tax-lines.csv, return-ir.json, submission-package.json, and export-manifest.json.
  • THIS PACKAGE DOES NOT PROVIDE CLOUD STORAGE, SYNC, BACKUP, OR ENCRYPTION FOR YOUR LOCAL FILES.
  • DO NOT COMMIT REAL TAXPAYER DATA.

Current Scope

  • Federal plus state-aware TY2025 sessions.
  • TY2025 only.
  • Supported commands: tui, help, init, validate, run, export.
  • Supported filing statuses: single, married_filing_jointly, married_filing_separately, head_of_household, qualifying_surviving_spouse.
  • init accepts repeated or comma-separated --state USPS codes to seed requested state payloads.
  • validate reports requested states and state return payload counts.
  • run and export include state-aware summaries and graph artifacts when state returns are present.
  • There is no submit, upload, efile, or transmit command.

For the broader engine/library caveats and blueprint coverage, see the repo root README and @taxzilla/tax-engine.