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

@interlace/eslint-config

v0.1.0

Published

One-extends meta-config for the Interlace ESLint ecosystem. Composes the 9 flagship-hosting plugins (10 rules) and the full 19-plugin recommended preset (security + code-quality + React) into a single import. Replaces the manual 11-plugin compose document

Readme

@interlace/eslint-config

One-extends meta-config for the Interlace ESLint ecosystem. Replaces the manual 11-plugin compose previously documented in .agent/flagship-rules.md.

ESLint 8 / 9 / 10 — flat-config only. If you're still on .eslintrc.js, see ESLint's flat-config migration guide.


Install

npm install --save-dev eslint @interlace/eslint-config

This package depends on every Interlace plugin. One install brings them all.


Use

// eslint.config.mjs
import interlace from '@interlace/eslint-config';

export default [
  ...interlace.recommended,
];

That's it. Nineteen plugins, hundreds of rules, one import.

Presets

| Preset | Plugins | Use when | | -------------- | ------: | ------------------------------------------------------------------------------------------------- | | flagship | 9 | CI gate that should fail on the highest-signal 10 rules only. See flagship-rules.md. | | security | 10 | All security plugins' recommended presets. | | quality | 7 | All code-quality plugins' recommended presets (import-next, maintainability, etc.). | | react | 2 | react-features + react-a11y recommended. | | recommended | 19 | The full default. Equivalent to [...security, ...quality, ...react]. |

Every preset is a readonly FlatConfig[] — spread it into your config array.

CI-gate (flagship only)

// eslint.config.mjs
import { flagship } from '@interlace/eslint-config';

export default [
  ...flagship,
];

The flagship preset enables exactly the 10 rules in .agent/flagship-rules.md § "The 10", all at error. No opinionated extras, no recommended-tier noise — drop it into a release gate and it'll fail closed on real bugs only.

React only on JSX/TSX

The React presets bind globally by default. To scope them:

import interlace from '@interlace/eslint-config';

export default [
  ...interlace.security,
  ...interlace.quality,
  ...interlace.react.map(c => ({ ...c, files: ['**/*.{jsx,tsx}'] })),
];

Overrides

Flat config is order-sensitive — later entries win. Place your overrides after the preset spread:

import interlace from '@interlace/eslint-config';

export default [
  ...interlace.recommended,
  {
    files: ['**/*.test.ts'],
    rules: {
      'secure-coding/no-hardcoded-credentials': 'off',
      'maintainability/max-lines-per-function': 'off',
    },
  },
];

What's inside

Security (10)

eslint-plugin-secure-coding · eslint-plugin-node-security · eslint-plugin-browser-security · eslint-plugin-jwt · eslint-plugin-pg · eslint-plugin-mongodb-security · eslint-plugin-express-security · eslint-plugin-lambda-security · eslint-plugin-nestjs-security · eslint-plugin-vercel-ai-security

Covers OWASP Web Top 10 2021, OWASP LLM Top 10 2025 (partial), and a broad MITRE CWE map. Domain-vertical depth where the generic eslint-plugin-security stops.

Code quality (7)

eslint-plugin-import-next · eslint-plugin-conventions · eslint-plugin-maintainability · eslint-plugin-reliability · eslint-plugin-operability · eslint-plugin-modularity · eslint-plugin-modernization

React (2)

eslint-plugin-react-features · eslint-plugin-react-a11y


ESLint version support

Peer dep: eslint@^8.0.0 || ^9.0.0 || ^10.0.0. The ESLint 10 compat matrix runs on every PR in the parent monorepo — see .github/workflows/eslint-version-matrix.yml.


Engine portability

Every rule in every preset has an oxlint manifest entry in .agent/oxlint-jsplugins-manifest.json (currently 398/398 compatible). Once oxlint flat-config consumes ESLint configs directly, this preset will work there unchanged. See INTEROP_PHILOSOPHY.md.


License

MIT © Ofri Peretz.