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

@obvia/presets

v0.0.2

Published

Opinionated yet onboarding‑friendly eslint and typescript presets for a seamless developer experience

Readme

Version Typescript Linting License CI

Designed to provide consistent rules and configurations across projects with minimal setup.

Welcome to the Obvia presets — a shared foundation for linting and typing rules across the ecosystem. This package continuously tracks the latest modern releases of ESLint and TypeScript, ensuring every project stays aligned. It’s not meant to be a static config, but a living set of presets that evolve with the ecosystem. If following the latest versions fits your workflow, this package offers a reliable way to keep all your projects consistent and up‑to‑date.

  • Unified rules → Consistent ESLint and TypeScript configs across all Obvia projects
  • Always modern → Tracks the latest ESLint and TypeScript releases
  • Minimal setup → Drop‑in presets, no need to reinvent configs
  • Ecosystem alignment → Ensures every package and project follows the same standards
  • Onboarding‑friendly → Simplifies developer experience for new contributors

Installation

All presets are bundled in a single package — no need to install separate configs for each framework

pnpm add --save-dev @obvia/presets

Quickstart

Linting

Choose the preset that matches your project and add it to eslint.config.js

// Base → General rules for most projects
import { base } from "@obvia/presets/base-eslint"

// React → Rules for react and react Hooks
import { react } from "@obvia/presets/react-eslint"

// Next.js → Optimized rules for next.js applications
import { next } from "@obvia/presets/next-eslint"

export default [
  base,
  // react,
  // next,
]

Configuration

Extend the corresponding config in your tsconfig.json

// Base → General Typescript rules
{
  "extends": "@obvia/presets/base-config"
}
// React → Typescript config for react projects
{
  "extends": "@obvia/presets/react-config"
}
// Next.js → Typescript config for next.js projects
{
  "extends": "@obvia/presets/next-config"
}

Roadmap

The roadmap shows both the currently available presets and the planned additions.

| Preset | Description | Path | Status | |-----------|-----------------------------------------------------|--------------------------|-------------| | Base | General typescript + eslint rules for most projects | @obvia/presets/base-* | ✅ Available | | React | Additional rules for react and react hooks | @obvia/presets/react-* | ✅ Available | | Next | Optimized rules for next.js applications | @obvia/presets/next-* | ✅ Available | | Vue | Rules optimized for vue.js applications | (coming soon) | 🔜 Planned | | Nuxt | Configurations for nuxt.js projects | (coming soon) | 🔜 Planned |

Security

If you think there is a security vulnerability in the Presets, you can help resolve the issue immediately by sending an e-mail to Selçuk Çukur at [email protected]. Please do not publicly post security vulnerabilities.

License

Presets project is published as open source. The MIT License is used, which is one of the well-known open source coding licenses. You can get detailed information about the license terms by visiting the link below.