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

@neokapi/kapi-format

v1.0.0

Published

Canonical TypeScript schema for the Kapi Localization Format (KLF). Block/Run content model, reference Level-1 preview renderer, target validator, annotation overlay resolver. Mirrors core/klf in Go byte-for-byte against shared golden fixtures.

Readme

@neokapi/kapi-format — canonical Block/Run schema

TypeScript port of the Kapi Localization Format (KLF) content model. Paired with core/klf in Go so both languages round-trip the same bytes through the same shared golden fixtures (examples/).

This package is the home of:

Running the examples

node --experimental-strip-types examples/validate.ts

Renders each example Block to HTML and diffs against hand-computed expected output, runs four content-validator scenarios (valid / missing-required / optional-drop / plural-preserves-pivot), and resolves eight annotation anchors (four real + four synthetic orphans). Exits non-zero on any mismatch.

The Go side — core/klf — loads the same fixtures via go:embed in core/klf/fixtures_test.go and renders them through RenderBlockHTML. The byte output of both implementations must match.

Relationship to core/klf (Go)

| Layer | TypeScript (this package) | Go (core/klf) | | ---------------- | --------------------------------------------- | --------------------------------------------------------------- | | Types | src/block.ts | core/klf/schema.go | | Vocabulary | src/vocabulary.ts | core/model/vocabularies/rich-jsx.json + core/klf/preview.go | | Preview renderer | src/preview.ts::renderBlockHtml | core/klf/preview.go::RenderBlockHTML | | Validator | src/preview.ts::validateTargetAgainstSource | core/klf/validator.go | | Annotations | src/annotation.ts | core/klf/annotation.go |

Any schema change must land in both languages in the same PR, with the golden fixtures in examples/ updated accordingly. The fixtures are the contract.

Files

| File | Purpose | | --------------------------- | ------------------------------------------------------------------------------------------- | | src/block.ts | Core types: Block, Run (including structured plural/select), Placeholder, ExtractedDocument | | src/vocabulary.ts | Vocabulary entries + template expander + default JSX vocabulary | | src/preview.ts | Level-1 Run renderer + target validator | | src/annotation.ts | Annotation overlay types + anchor resolution + orphan validator | | src/index.ts | Re-exports | | examples/files-heading.ts | Nested inline <span> + {count} variable | | examples/tag-chip.ts | Three conditional JSX placeholders + optional flag | | examples/shopping-cart.ts | <Plural> component → multi-segment block | | examples/annotations.ts | Example annotation file covering all four anchor shapes | | examples/validate.ts | Renderer + content validator + anchor-resolution tests |