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

@boeschj/ts-tooling

v2.0.1

Published

Interactive setup wizard for TypeScript tooling

Readme

Orion Labs Shared Configs

Description

This project contains shared configurations to help us be more consistent with tooling across projects, and to spin up new projects faster.

Packages

ts-tooling

Description

Contains a set of shared eslint, prettier, and tsconfig configurations for use in TypeScript projects. These configurations are highly opinionated, and make strong assumptions about the tech stack they're used in. ts-tooling is targeted for the following:

Frameworks:

  • React > v19
  • Next.js > v15
  • Node.js > v23

Languages:

  • TypeScript > v5

Libraries:

  • TailwindCSS > v3 (for now 😬)

Build Tools:

  • Modern bundlers (Vite, Esbuild, Bun)

Other:

  • Heavily assumes ESM module resolution
  • Node.js 23+ or Bun runtimes

As this config was intended to be very forward facing, assume limited/no backwards compatibility. These configs will also not be ideal for tsc as it reflects my personal preference of using bundlers for compiling projects.

Features

ESLint Configurations:

Features:

  • Enforces strict type checking and stylistic consistency
  • Enforces import organization with type import consistency
  • Enforces accessibility best practices for React/Next.js
  • Enforces Next.js development patterns and SEO optimization
  • TailwindCSS class organization and best practices

Extends @eslint/js recommended rules and typescript-eslint strict + stylistic type-checked configurations. Includes plugins for:

Base config:

@eslint/js (recommended) - Core JavaScript linting rules typescript-eslint (strictTypeChecked + stylisticTypeChecked) - Strict TypeScript-aware linting with style enforcement

React:

eslint-plugin-react - React-specific linting (hooks rules, JSX patterns) eslint-plugin-react-hooks - Enforces Rules of Hooks for safe React usage eslint-plugin-jsx-a11y - Accessibility linting for inclusive UIs eslint-plugin-tailwindcss - TailwindCSS class organization and conflict detection

Next.js:

@next/eslint-plugin-next (recommended + core-web-vitals) - Next.js best practices and performance optimization

TSConfig Configurations:

Features:

Maximum type safety with all strict options enabled Modern ESM module syntax with verbatimModuleSyntax Environment-appropriate library definitions (DOM vs Node.js) Bundler-optimized compilation (not tsc compatible)

Extends @tsconfig/strictest for maximum type safety and @total-typescript/tsconfig for modern environment-specific settings:

Base:

@tsconfig/strictest - Maximum TypeScript strictness (unused vars, unreachable code, exact optional properties, etc.) Adds modern module syntax enforcement and build optimizations

React:

@total-typescript/tsconfig/bundler/dom/app - DOM types and bundler-optimized settings for React apps Modern JSX transform (no React imports required)

Next.js:

Extends React config with Next.js TypeScript plugin integration Optimized caching and build performance

Node.js:

@total-typescript/tsconfig/bundler/no-dom/app - Server-side types without DOM globals Node.js type definitions included

Getting Started

Installation

  1. Install the package:
pnpm install --D @boeschj/ts-tooling
  1. Install peer dependencies:
npx install-ts-tooling-peerdeps

Configuration

ESLint Setup

Create an eslint.config.mjs file in your project root if you don't have one already:

Base TypeScript:

import config from "@boeschj/ts-tooling/eslint";

export default config;

React Projects:

import { react } from "@boeschj/ts-tooling/eslint";

export default react;

Next.js Projects:

import { next } from "@boeschj/ts-tooling/eslint";

export default next;

Prettier Setup

Create a prettier.config.mjs file in your project root:

import config from "@boeschj/ts-tooling/prettier";

export default config;

TSConfig Setup

Base TypeScript:

{
  "extends": "@boeschj/ts-tooling/tsconfig"
}

React Projects:

{
  "extends": "@boeschj/ts-tooling/tsconfig/react"
}

Next.js Projects:

{
  "extends": "@boeschj/ts-tooling/tsconfig/next"
}

Node.js Projects:

{
  "extends": "@boeschj/ts-tooling/tsconfig/node"
}