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

@celinejoo/design-system

v1.3.0

Published

https://www.figma.com/design/fGu30Kh6rhi5xypuH6u8OU/Chakra-UI-Figma-Kit--Community-?node-id=1411-9854&t=S36HXSTHhk8KuE31-1</br> 디자인 파일을 기반으로 한 UI 컴포넌트 라이브러리입니다.

Readme

design-system

소개

https://www.figma.com/design/fGu30Kh6rhi5xypuH6u8OU/Chakra-UI-Figma-Kit--Community-?node-id=1411-9854&t=S36HXSTHhk8KuE31-1 디자인 파일을 기반으로 한 UI 컴포넌트 라이브러리입니다.

기술 스택

코어: TypeScript, React 스타일링: scss (css module) 패키지 매니저: Yarn Berry 빌드: Vite, Rollup CI/CD: GitHub Actions

패키지 설치

https://www.npmjs.com/package/@celinejoo/design-system?activeTab=code npm i @celinejoo/design-system

스토리북

https://celinejoo.github.io/design-system/

개발명령어

yarn storybook # 스토리벅 개발 서버 실행 yarn build-storybook # 스토리벅 정적 HTML 빌드 yarn build # 라이브러리 번들 빌드 (Rollup) yarn lint # ESLint 코드 검사 yarn type-check # 타입 검사 (tsc)

📁 폴더 구조

.
├── src/
│   ├── components/                # 각 UI 컴포넌트 디렉토리 (Button, Checkbox 등)
│   │   ├── Button/
│   │   │   ├── Button.module.scss
│   │   │   ├── Button.stories.tsx
│   │   │   ├── Button.tsx
│   │   │   ├── Button.types.ts
│   │   │   └── index.ts
│   │   └── ...
│   ├── styles/
│   │   ├── css/                   # reset, normalize 등
│   │   └── tokens/                # 디자인 토큰 정의
│   │       ├── color.ts
│   │       ├── foundation.ts
│   │       ├── typography/
│   │       │   ├── typography.ts
│   │       │   └── typographyVars.ts
│   │       └── utils/             # 토큰 관련 유틸 함수
│   ├── utils/                     # 공통 유틸 함수 (예: cx.ts)
├── dist/                          # 빌드 결과 (출시 대상)
├── package.json
└── README.md #readme

testtest