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

@systemfsoftware/stryker-plugins

v0.13.2

Published

Stryker mutation-testing plugins for Effect-TS — ignore equivalent mutants on Effect Schema declarations (brands, TaggedClass/TaggedError tags) so the score reflects behaviour, not data.

Downloads

2,751

Readme

@systemfsoftware/stryker-plugins

version license

Stop Effect Schema declarations from dragging your Stryker score below 100%.

A brand description, a _tag, a title — mutate any of them and the source changes but the behaviour does not, so no test can ever kill the mutant. Those unkillable mutants sit in your report forever, indistinguishable from real coverage gaps. This Stryker Ignore plugin removes them, so the score that remains is behaviour.

Install

pnpm add -D @systemfsoftware/stryker-plugins

In stryker.config.json:

{
  "plugins": [
    "@systemfsoftware/stryker-js-vitest-runner",
    "@systemfsoftware/stryker-js-typescript-checker",
    "@systemfsoftware/stryker-plugins"
  ],
  "ignorers": ["effect-schema-declarations"]
}

Mutants it recognizes are reported as Ignored, each carrying the reason it was safe to skip.

[!NOTE] @systemfsoftware/stryker-js-plugin-api is a peer dependency — your Stryker install provides it. effect is a direct dependency (the plugin decodes AST nodes with Schema).

What it ignores

| Declaration | Example | | --------------------------------------------------------- | ----------------------------------------------------------------- | | Brand descriptions | Symbol.for('UserId') | | TaggedClass / TaggedError tags | S.TaggedClass<A>()('Placed', {…}) | | The field schemas of those declarations | the {…} above | | optionalWith defaults | S.optionalWith(S.Number, { default: () => 0 }) | | Documentation annotations | identifier, description, title, documentation, examples | | An annotations({…}) object that is only documentation | S.annotations({ title: 'Amount' }) |

Where the line is

Every ignore is proven redundant, never merely assumed — anything a test could observe keeps its mutants.

arbitrary, pretty, equivalence, message, jsonSchema and parseIssueTitle are not documentation: each changes what the schema does, so a survivor there is a test gap to close. That is why the two annotations rules differ — a title is ignored wherever it appears, but the enclosing object is ignored only when every entry documents, since emptying an object holding an arbitrary would silently change what your property tests generate.

Contributing

Development setup and workflow: AGENTS.md.

License

Apache 2.0