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

oxlint-plugin-enforce-source-imports

v0.2.4

Published

Oxlint plugin: forbid middleman re-exports and rewrite barrel imports to their source.

Downloads

1,221

Readme

oxlint-plugin-enforce-source-imports

Oxlint plugin that keeps imports pointed at their source files instead of middleman re-export modules.

Rules

| Rule | Purpose | |------|---------| | enforce-source-imports/no-unauthorized-reexports | Forbids middleman re-exports except in allowed stub entrypoints (index.ts, registry.ts, etc.). Covers export { … } from "…", export * from "…", export type Alias = ImportedType, export const Alias = importedBinding, export default importedBinding, and export { importedBinding } without a from clause. Autofix removes or de-exports every middleman export in a file in one pass (unused imports are left for a separate unused-import rule). | | enforce-source-imports/import-from-source | Rewrites imports that pull symbols through a non-stub re-export barrel to the defining module, including default imports and multi-hop named re-exports. Autofix for named/default imports when safe (no inline or in-statement comments; namespace-only imports are skipped). |

Install

bun add -D oxlint-plugin-enforce-source-imports @oxlint/plugins oxlint typescript

For local development against a checkout of this repo:

bun add -D oxlint-plugin-enforce-source-imports@file:../oxlint-plugin-enforce-source-imports

Configure

Add the plugin to .oxlintrc.json:

{
  "jsPlugins": ["oxlint-plugin-enforce-source-imports"],
  "rules": {
    "enforce-source-imports/no-unauthorized-reexports": "error",
    "enforce-source-imports/import-from-source": "error"
  }
}

The plugin reads your project tsconfig.json path aliases (for example @/*) and builds a pre-built re-export map from src/ once per oxlint run (for fast @/… barrel lookups). When a consumer imports a middleman via a relative path outside that index (for example ./i18n-messages from scripts/), the map resolves that barrel on demand from the resolved file path — no project-wide directory walk and no hardcoded folder skip lists.

Lint scope is yours: oxlint CLI arguments and ignorePatterns in .oxlintrc.json decide which files are linted and autofixed (same as ESLint). Run lint across every file that participates in a re-export chain — for example oxlint --fix . with scripts/ included — so no-unauthorized-reexports and import-from-source can both apply.

Autofix is conservative: it skips fixes when comments are inside the statement or on the same line, and when an import mixes default/namespace and named specifiers.

Allowed stub files

Only files named index.ts, registry.ts, and related variants (index.tsx, registry.tsx, etc.) may re-export from other modules. Use registry.ts for autogenerated aggregate entrypoints (for example a subject config registry). Every other file must import from the source directly.

Development

bun install
bun run verify

verify runs typecheck, build, and the full test suite (including oxlint e2e when run via bun run test:e2e).

prepare runs build on install so dist/*.js exists for oxlint to load from node_modules.

License

MIT