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

@acjlabs/au-tax-utils

v0.1.4

Published

Zero-dependency Australian ABN checksum validation and GST math (10% rate, inclusive/exclusive conversions, tax-invoice threshold).

Readme

@acjlabs/au-tax-utils

Zero-dependency Australian tax utilities: ABN checksum validation and GST math. TypeScript, works in Node, Bun, Deno, and the browser — no network calls, no external services.

Install

npm install @acjlabs/au-tax-utils

What's in it

ABN validation

import { isValidAbn, formatAbn } from "@acjlabs/au-tax-utils";

isValidAbn("51 824 753 556"); // true — accepts spaced or unspaced input
isValidAbn("51824753557"); // false — checksum fails

formatAbn("51824753556"); // "51 824 753 556"

Implements the ATO's weighted modulus 89 checksum (ABR's ABN format reference) — the same algorithm every real Australian Business Number is validated against. This checks that a string is a structurally valid ABN (correct checksum); it does not look up whether the ABN is actually registered or active — for that, query the ABN Lookup API directly.

GST math

import { gstFromInclusive, gstFromExclusive, requiresTaxInvoice } from "@acjlabs/au-tax-utils";

gstFromInclusive(110); // { net: 100, gst: 10 }
gstFromExclusive(100); // { gst: 10, total: 110 }

requiresTaxInvoice(82.5); // true  — $82.50 inclusive is the ATO's threshold
requiresTaxInvoice(82.49); // false

10% standard-rate GST, correctly-rounded inclusive/exclusive conversions, and the tax-invoice issuance threshold — $82.50 GST-inclusive (equivalently $75.00 exclusive), per the ATO's tax-invoices guidance. This is a common enough point of confusion (inclusive vs. exclusive) that it's worth stating explicitly: requiresTaxInvoice always takes the GST-inclusive total.

Why this exists

We build Receipt Extraction, a hosted API/MCP server that turns receipt and invoice images into structured JSON with AU GST/ABN handling built in. This package is the small, standalone piece of that: the actual checksum and tax-rate math, with no vision model, no hosting, no API key — just the arithmetic, MIT-licensed, for anyone who needs it on its own.

Scope

This is engineering-reference code, not tax or legal advice. The GST rate, thresholds, and checksum algorithm are current as of 2026 — verify against the ATO's own published guidance (linked above) before relying on this for anything beyond structural validation.

If you need more than structural checksum validation — jurisdiction auto-detection across multiple countries, live registry lookup, or fraud-risk scoring — that is a different shape of tool: a hosted network service that queries the official registries (the ABR here, their equivalents elsewhere), not an offline library. This package stays deliberately offline and zero-dependency, so structural validation is the whole of what it does.

License

MIT