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

eslint-config-makeable

v10.2.0

Published

ESlint config for Makeable's Typescript projects

Readme

Makeable esLint-setup

Enable Makeable's NodeJS formatting and linting for Typescript and Vue projects

Prerequisites

To enable auto-formatting when saving in vscode, the extension ESLint is required.

https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint

Installation

cd into the directory containing your Typescript or Vue package.json and run the following command:

npm i eslint-config-makeable -D

Copy the following scripts into your package.json-file:

"scripts": {
    "lint": "eslint .",
    "lint:fix": "eslint --fix ."
}

In the project root, create a file called eslint.config.mjs and copy the following content into it:

import makeable from 'eslint-config-makeable';

export default [
    {
      ignores: [
        '**/lib/**',
        '**/dist/**',
        'eslint.config.mjs'
      ],
    },
    ...makeable,
    {
        rules: {
            /* Custom rules here */
        },
    },
];

If the project is a Vue project with unplugin-auto-import enabled, add the following to your eslint.config.mjs:

import { FlatCompat } from '@eslint/eslintrc'
import makeable from 'eslint-config-makeable';

const compat = new FlatCompat()

export default [
  {
    ignores: [
      '**/lib/**',
      '**/dist/**',
      'eslint.config.mjs',
    ],
  },
  ...makeable,
  ...compat.extends('./.eslintrc-auto-import.json'),
  {
    rules: {
      /* Custom rules here */
    },
  },
];

Biome

This setup requires a biome.js file in the project root. It is added automatically after installing this package.

Copy the .vscode folder from the newly installed node-module to the root of your directory to avoid auto-formatting conflicts with other services like prettier-extension, typescript and vscode auto-formatting. The auto-formatting after save only works if the .vscode folder is in the root of the directory that is open in vscode/cursor - Even if the linting is supposed to run in a subdirectory, the .vscode folder must be in the root of the directory that is open in vscode/cursor.

The content for the .vscode/settings.json file is the following:

{
    "editor.formatOnSave": true,
    "editor.defaultFormatter": "biomejs.biome",
    "editor.codeActionsOnSave": {
      "source.fixAll.eslint": "explicit",
      "source.organizeImports.biome": "never"
    },
    "[javascript]": {
      "editor.defaultFormatter": "biomejs.biome"
    },
    "[typescript]": {
      "editor.defaultFormatter": "biomejs.biome"
    },
    "[vue]": {
      "editor.defaultFormatter": "biomejs.biome"
    },
    "[json]": {
      "editor.defaultFormatter": "biomejs.biome"
    },
    "[jsonc]": {
      "editor.defaultFormatter": "biomejs.biome"
    },
    "eslint.validate": [
      "javascript",
      "typescript",
      "vue"
    ],
    "biome.enabled": true
  }

Usage

The following command will show all the errors and warnings in the current project:

npm run lint

The following command will format all the easy fixes for the current project

If the eslint-extension for vscode is enabled, this command will be executed automatically when saving a file.

npm run lint:fix