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

writinglint-core

v0.5.0

Published

Grammar-linter engine: a Document model over a dependency-parse + POS graph, an authorable Rule API, config resolution, and the Linter.

Readme

writinglint-core

The engine behind WritingLint: a Document model over a dependency-parse + POS graph, an authorable Rule API (defineRule), config resolution, and the Linter. Bring your own parser (e.g. writinglint-parser-node).

import { Linter, resolveConfig } from 'writinglint-core';
import { loadParser } from 'writinglint-parser-node';
import { recommended } from 'writinglint-rulepack-ai-style';

const linter = new Linter(await loadParser({ modelDir: './models/xsmall' }));
const { lints } = await linter.lint('Trust the graph, not the vibes.', resolveConfig(recommended));

See the docs for the full API.

Building language and standards rulepacks

WritingLint keeps reusable analysis in core and policy decisions in rulepacks. The parser can identify its BCP 47 languages, model version, fingerprint, and available annotations through ParserDescriptor. A rule can declare the capabilities it requires; the linter records the rule as skipped when the active parser cannot supply them.

Callers can give Linter.lint() structured source regions, independent span annotations, and services without changing the parser:

const report = await linter.lint(text, config, {
  language: 'en',
  regions: [
    { id: 'step-1', role: 'step', mode: 'procedural', start: 0, end: 24 },
  ],
  annotations: [
    { kind: 'measurement', provider: 'units-v1', start: 8, end: 13 },
  ],
  services: { terminology },
});

Core provides these standard-neutral extension points:

  • DocumentRegion for headings, lists, procedures, steps, notes, warnings, cautions, tables, quotations, code, and custom roles;
  • SpanAnnotation for proper names, measurements, abbreviations, terms, and other independently produced annotations;
  • ParserDescriptor and RuleMeta.requires for explicit capability checks;
  • optional token lemmas, Universal Dependencies morphological features, and calibrated parser confidence;
  • TerminologyProvider, InMemoryTerminologyProvider, and LayeredTerminologyProvider for standard, industry, organization, project, and document vocabularies;
  • CountPolicy and countSentenceUnits() for inspectable, standard-specific word counting; and
  • structured finding evidence, split-point and other positional anchors, multi-dimensional magnitude metrics, visible assumptions, and per-rule execution records.

The core does not decide whether a word, sentence, or construction conforms to a standard. A rulepack combines these capabilities and remains responsible for that interpretation.