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

@seulhyi/eslint-config

v1.0.14

Published

![npm (scoped)](https://img.shields.io/npm/v/@seulhyi/eslint-config?color=blue&style=flat-square) ![npm downloads](https://img.shields.io/npm/dm/@seulhyi/eslint-config?style=flat-square) ![License](https://img.shields.io/npm/l/@seulhyi/eslint-config?sty

Readme

@seulhyi/eslint-config

npm (scoped) npm downloads License TypeScript ESLint

JavaScript / TypeScript / React 프로젝트를 위한 통합 ESLint + Prettier 설정 패키지입니다.

프로젝트마다 ESLint를 복붙할 필요 없이, 이 패키지를 설치하면 일관된 코드 스타일과 린팅 규칙을 적용할 수 있습니다.

설치

npm i -D @seulhyi/eslint-config

npm i -D eslint prettier \
  @typescript-eslint/parser @typescript-eslint/eslint-plugin \
  eslint-plugin-react eslint-plugin-react-hooks \
  eslint-plugin-import eslint-plugin-no-relative-import-paths \
  eslint-plugin-unused-imports prettier-plugin-tailwindcss

사용법

프로젝트 루트에 eslint.config.mjs 파일을 생성합니다.

import config from "@seulhyi/eslint-config";

export default [...config];

Prettier는 함께 포함된 prettier.config.cjs를 자동으로 인식합니다.

구성

Config 설명

@seulhyi/base JavaScript / TypeScript 공통 규칙

@seulhyi/typescript TS 네이밍 컨벤션 및 any 제한

@seulhyi/react React 및 Hooks 관련 규칙

각 설정은 다음과 같이 export됩니다.

규칙 상세

Base 규칙

  • no-unused-vars 경고

  • no-undef 오류

  • no-console 경고

  • eqeqeq, curly, no-var, object-curly-spacing

  • unused-imports 자동 감지 및 제거

  • import 정렬 자동화(import/order)

TypeScript 규칙

  • @typescript-eslint/no-explicit-any: any 사용 경고

  • @typescript-eslint/naming-convention

    • 변수: camelCase, UPPER_CASE

    • 타입: PascalCase

React 규칙

  • react/react-in-jsx-scope 비활성화

  • Hooks 규칙

    • rules-of-hooks: 오류

    • exhaustive-deps: 경고

Prettier 설정

prettier.config.cjs 포함:

module.exports = {
singleQuote: false,
tabWidth: 2,
semi: true,
trailingComma: "all",
printWidth: 100,
plugins: [require("prettier-plugin-tailwindcss")],
};

TailwindCSS 클래스 자동 정렬 기능이 포함됩니다.