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

@goodbyenjn/configs

v26.5.3

Published

GoodbyeNJN's configs, including oxlint, oxfmt, and tsconfig.

Readme

@goodbyenjn/configs

A personal configuration set that includes Oxlint, Oxfmt, TypeScript, and other configurations.

Usage

Installation

npm install --save-dev @goodbyenjn/configs
# or
pnpm add -D @goodbyenjn/configs
# or
yarn add -D @goodbyenjn/configs

Oxlint

This configuration provides a set of linting rules for Oxlint, supporting JavaScript, TypeScript, React, and import configurations.

npm install --save-dev oxlint
# or
pnpm add -D oxlint
# or
yarn add -D oxlint

Create an oxlint.config.ts file in your project root and copy the following content into it:

import { withConfig } from "@goodbyenjn/configs/oxlint";

export default withConfig();

This configuration automatically enables corresponding rules based on whether react and typescript dependencies exist in your package.json file.

You can also manually override the configuration, for example:

import { withConfig } from "@goodbyenjn/configs/oxlint";

export default withConfig({
    // Disable TypeScript-related rules
    typescript: false,

    // Enable React-related rules
    react: true,
});

This configuration includes type definitions, providing intelligent prompts during configuration.

Oxfmt

This configuration provides a set of formatting configurations for Oxfmt, supporting JavaScript, TypeScript, JSX, JSON, JSONC, YAML, and other file formats.

npm install --save-dev oxfmt
# or
pnpm add -D oxfmt
# or
yarn add -D oxfmt

Create an oxfmt.config.ts file in your project root and copy the following content into it:

import { withConfig } from "@goodbyenjn/configs/oxfmt";

export default withConfig();

This configuration includes the following preset configurations:

  • defaults: Default formatting options
  • imports: Formatting rules for import statements
  • jsdoc: Formatting rules for JSDoc comments
  • jsonc: Formatting rules for JSONC files
  • pkg: Formatting rules for package.json files
  • tailwind: Sorting rules for Tailwind CSS class names
  • yaml: Formatting rules for YAML files

You can also manually override the configuration, for example:

import { withConfig } from "@goodbyenjn/configs/oxfmt";

export default withConfig(
    {
        // Disable tailwind configuration
        tailwind: false,
    },
    {
        // Directly override oxfmt configuration
        lineWidth: 100,
    },
);

This configuration includes type definitions, providing intelligent prompts during configuration.

TypeScript

npm install --save-dev typescript
# or
pnpm add -D typescript
# or
yarn add -D typescript

Create a tsconfig.json file in your project root and copy the following content into it:

{
    "extends": "@goodbyenjn/configs/tsconfigs/<name>"
}

Where <name> can be one of the following values:

  • base: Base configuration with most common configuration options.
  • react: Extends base with React-related configurations, including jsx configuration and DOM-related libraries.
  • decorator: Extends base with decorator-related configurations, including emitDecoratorMetadata and experimentalDecorators options.

Versioning

Note: This project does not follow Semantic Versioning (semver). Instead, it uses a calendar-based versioning scheme:

Version Format: v<YY>.<M>.<PATCH>

  • <YY> - Release year (e.g., 26 for 2026)
  • <M> - Release month (1-12)
  • <PATCH> - Patch/revision number within the same month (starting from 0)

Example versions:

  • v26.1.0 - First release in January 2026
  • v26.1.1 - Second release in January 2026
  • v26.2.0 - First release in February 2026

This scheme provides clarity on when features were released while allowing multiple updates within the same month.