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

@warble/ir-spec

v0.7.0

Published

The Warble IR (warble_ir_version) as a resolvable npm package: a version constant plus the compile-contract schema document. Not a runtime dependency — its version IS the contract.

Readme

@warble/ir-spec

The Warble IR (warble_ir_version) as a resolvable npm package.

This package's version is the payload. IR x.y publishes as npm version x.y.0, with the patch component always zero — so this package's own version on the registry tells you which warble_ir_version it describes, and the bundled ir-schema.md is that IR's spec as it stood. Everything else in the package — the bundled ir-schema.md (a copy of docs/spec/ir-schema.md) and the IR_VERSION constant exported from index.js — is documentation, not enforcement.

Why this package exists

Before this package, the IR version a published dispatcher (@warble/claude-agent-sdk, @warble/codex-local) accepts was discoverable only by reading its source. Both dispatchers now declare @warble/ir-spec as a peerDependencies range (x.y.x) plus an advisory "warble": { "irVersion": "x.y" } field, so a consumer — or npm's own resolver — can see which IR a dispatcher speaks without opening it.

This package is not meant to be imported. A peerDependency is a declaration, not a dependency edge: each dispatcher keeps its own independently declared SUPPORTED_IR_VERSION (or SUPPORTED_IR_VERSIONS) constant rather than importing this package's IR_VERSION. See ir-schema.md for why independent copies are what make the core-owned lockstep test a real check rather than a formality.

What this package does not do

  • It does not ship a machine-readable IR JSON Schema — ir-schema.md is prose. See docs/spec/ir-schema.md in the main repository for the rationale.
  • It does not, by itself, reject a mismatched dispatcher/IR pair at install time. A missing peer (this package absent from the registry at the named version) fails installation under every package manager's default configuration; a mismatched peer range across two npm packages is enforced only once a second party (e.g. a future @warble/cli) also declares the peer.
  • It is not locked to the Warble workspace/crate version (0.4.0 and friends). It moves only when the IR moves, on its own release line.