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/oxlint-plugin-effect-dmmf

v4.0.0

Published

One-shot oxlint plugin bundle: registers the surviving architecture rules in the DMMF family (property testing, test hygiene, test placement, effect-schema, effect-workflow) under a single entrypoint, excluding the core junk drawer.

Downloads

809

Readme

@systemfsoftware/oxlint-plugin-effect-dmmf

A combined oxlint plugin aggregating the surviving source plugins in this family under one entrypoint: one package, one jsPlugin, every rule set under one namespace.

This plugin defines no rules of its own. It re-exports the five surviving sources' rules under one plugin name and composes configs.recommended from each source's own recommended set.

Install

pnpm add -D @systemfsoftware/oxlint-plugin-effect-dmmf

Normal adoption: extend a shareable config

The normal way in is oxlint's native composition mechanism — a config object consumed via extends, with later configs winning on merge. In this repository, @systemfsoftware/oxlint-config exports ./base, which already registers this composite as a jsPlugin and spreads its recommended set, and ./strict:

import base from '@systemfsoftware/oxlint-config/base'
import { defineConfig } from 'oxlint'

export default defineConfig({ extends: [base] })

Standalone use: a registration convenience, not the default

Standalone use is for a consumer who wants one plugin without adopting a config. It is an internal registration convenience — one jsPlugin entry instead of five — not the recommended adoption surface:

import effectDmmf from '@systemfsoftware/oxlint-plugin-effect-dmmf'
import { defineConfig } from 'oxlint'

export default defineConfig({
  jsPlugins: ['@systemfsoftware/oxlint-plugin-effect-dmmf'],
  rules: { ...effectDmmf.configs.recommended.rules },
})

The hand-spread is load-bearing. oxlint's plugin type is { meta?, rules }: configs is absent from it and the host never dereferences it, so configs.recommended is inert metadata that takes effect only because a config object spreads it into rules — which is exactly what ./base does. This standalone form is equivalent to registering all five source plugins and spreading each one's configs.recommended.rules, except every rule is reported under the @systemfsoftware/oxlint-plugin-effect-dmmf/<rule-name> namespace instead of each source's own.

What "recommended" means here

configs.recommended.rules is not every rule the five sources register — it is exactly the union of what each source itself recommends.

To adopt gradually, drop the spread and name a subset of rules individually at 'error', narrowing blast radius instead of severity: start with fewer rules and grow the set, or scope the rules to the files you are migrating with an overrides entry. A rule you register but do not want is set to off, never warn — a warn rule still runs and still costs its per-file time.

Rules

See each source plugin's own README for its full rule table. The composite re-exports all five sources:

Development

src/index.ts merges exactly five fixed, already-tested plugins with a spread and a small rekey — there's no decision surface here for a test suite or mutation gate to earn its keep. Verify a change by building and running the result against real oxlint:

pnpm --filter @systemfsoftware/oxlint-plugin-effect-dmmf build