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

@grapefruitgreentealoe/library-with-cursor-test

v1.0.7

Published

간단한 TypeScript 라이브러리

Readme

Library

간단한 TypeScript 라이브러리입니다.

설치

npm install library

또는

yarn add library

사용 방법

import { add, multiply } from 'library';

// 덧셈 함수 사용
const sum = add(5, 3); // 8

// 곱셈 함수 사용
const product = multiply(5, 3); // 15

기술 스택

이 프로젝트는 다음과 같은 기술 스택을 사용합니다:

핵심 기술

  • TypeScript: 정적 타입 지원을 통한 안정적인 코드 작성
  • tsup: 빠르고 효율적인 TypeScript 빌드 도구
  • Jest: 단위 테스트 프레임워크

코드 품질

  • ESLint: 코드 스타일 및 오류 검사
  • Prettier: 일관된 코드 포맷팅
  • TypeDoc: API 문서 자동 생성

CI/CD 및 배포

  • GitHub Actions: 자동화된 테스트, 빌드, 배포 파이프라인
  • semantic-release: 커밋 메시지 기반 자동 버전 관리 및 배포

주요 기능

자동 버전 관리

커밋 메시지 컨벤션에 따라 자동으로 버전이 관리됩니다:

  • fix:: 패치 버전 증가 (예: 1.0.0 → 1.0.1)
  • feat:: 마이너 버전 증가 (예: 1.0.0 → 1.1.0)
  • feat: + BREAKING CHANGE:: 메이저 버전 증가 (예: 1.0.0 → 2.0.0)

자동 문서화

TypeDoc을 통해 소스 코드에서 API 문서가 자동으로 생성됩니다.

멀티 포맷 지원

CommonJS와 ES Module 두 가지 포맷으로 빌드되어 다양한 환경에서 사용 가능합니다.

개발

필수 조건

  • Node.js (>= 14.x)
  • npm 또는 yarn

설치

# 의존성 설치
npm install

스크립트

# 개발 모드로 실행
npm run dev

# 빌드
npm run build

# 테스트 실행
npm test

# 린트 실행
npm run lint

# 린트 수정
npm run lint:fix

# 코드 포맷팅
npm run format

# 문서 생성
npm run docs

라이선스

MIT