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

biome-config

v0.1.3

Published

A simple configuration library for Biome.js

Readme

Biome Config

CI Checked with Biome

A simple configuration utility for Biome.js, the best linter/formatter for JavaScript.

Features

Interactive Setup - Beautiful CLI prompts with @clack/prompts
🎨 Smart Merging - Preserves existing VS Code settings
📦 Auto-detection - Detects your package manager (npm, pnpm, yarn, bun)
Fast & Light - Minimal dependencies, maximum performance
🛠️ Flexible - Skip steps with CLI flags or use interactive mode

Installation

npx biome-config setup

Usage

Setup Command

Set up Biome in your project with an interactive wizard:

npx biome-config setup

Options:

  • --skip-vscode - Skip VS Code settings configuration
  • --skip-scripts - Skip npm scripts addition
  • -y, --yes - Accept all defaults without prompts

What it does:

  1. Installs @biomejs/biome (latest version)
  2. Creates a biome.json file with a complete configuration
  3. Optionally adds/merges VS Code settings (.vscode/settings.json)
  4. Optionally adds npm scripts (check, check:fix, format, lint)
  5. Formats the configuration files

Examples:

# Interactive mode (recommended)
npx biome-config setup

# Non-interactive mode (accept all defaults)
npx biome-config setup --yes

# Skip VS Code settings
npx biome-config setup --skip-vscode

# Skip everything except Biome installation and config
npx biome-config setup --skip-vscode --skip-scripts

Update Command

Update Biome to the latest version and sync your configuration:

npx biome-config update

What it does:

  1. Updates @biomejs/biome to the latest version
  2. Updates the $schema in your biome.json to match the installed version
  3. Formats the configuration files

VS Code Integration

If you accepted VS Code settings during setup, the configuration is already applied!

Otherwise, install the Biome VS Code extension and add this to your .vscode/settings.json:

{
  "[graphql][javascript][javascriptreact][json][jsonc][typescript][typescriptreact][css]": {
    "editor.codeActionsOnSave": {
      "source.action.useSortedAttributes.biome": "explicit",
      "source.action.useSortedKeys.biome": "explicit",
      "source.fixAll.biome": "explicit",
      "source.organizeImports.biome": "explicit"
    },
    "editor.defaultFormatter": "biomejs.biome"
  },
  "biome.enabled": true,
  "biome.requireConfiguration": true,
  "biome.suggestInstallingGlobally": false
}

[!TIP] Biome supports the following languages:

javascript, javascriptreact, typescript, typescriptreact, json, jsonc, css, graphql

npm Scripts

If you accepted npm scripts during setup, you can use:

npm run check        # Check for errors and warnings
npm run check:fix    # Check and auto-fix issues
npm run format       # Format code
npm run lint         # Lint and auto-fix code

CLI Help

# Show all commands
npx biome-config --help

# Show setup command options
npx biome-config setup --help

# Show version
npx biome-config --version

Configuration

The generated biome.json includes:

  • ✅ Recommended linting rules
  • ✅ React domain support
  • ✅ Test domain support
  • ✅ Consistent formatting (2 spaces, 80 chars)
  • ✅ Import organization
  • ✅ Sorted attributes/keys
  • ✅ VCS integration

Now you are ready to go! 🚀


Repo Activity

Alt