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

@typed-sql/conformance

v2.1.0

Published

Public grammar, capability, codec, and performance conformance kit for typed-sql dialects.

Downloads

350

Readme

@typed-sql/conformance

Versioned, feature-addressable compatibility and differential tests for first- and third-party typed-sql grammars.

Release track: stable.

The v2 kit joins parser, resolver, compiler, rendering, prepare, execution, and plan evidence in one machine-readable report. Probe IDs are permanent, target selection is version/capability aware, and skipped or quarantined layers never count toward an exact completeness claim. The package installs no database driver; applications and E2E projects supply live adapters explicitly.

import {
  CONFORMANCE_VERSION,
  defineConformanceSuite,
  runStaticConformanceProbe,
} from "@typed-sql/conformance/v2";

const suite = defineConformanceSuite({
  version: CONFORMANCE_VERSION,
  name: "acme",
  probes: [selectProbe],
});

const result = runStaticConformanceProbe(suite.probes[0], target, {
  dialect: acme(),
  snapshot,
  renderer,
  parse,
});

The package-root v1 fixture helpers remain available for typed-sql 2.x consumers. Use runAdaptedGrammarConformanceV1() from the v2 subpath while migrating; adapted probes expose missing layers as skips and therefore cannot inflate exact coverage. The v1 API is removed in typed-sql 3.0.

Repository maintainers can run the static kit with pnpm conformance:v2 and all live targets with pnpm conformance:live. A failure reproduction can be rerun with the emitted --grammar, --probe, --database-version, and optional --fixture-group filters. Live reports and reproductions contain normalized evidence only; adapter error details and bound values are redacted.

See the custom grammar guide for the complete fixture and compatibility policy.