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

@doublejun1/ui-starter-kit

v0.0.1

Published

A UI starter kit with commonly used components, based on Shadcn UI and Magic UI.

Readme

@doublejun1/ui-starter-kit

npm version License: MIT

이 패키지는 애플리케이션 전반에서 사용할 수 있는 재사용 가능한 UI 컴포넌트의 시작 세트를 제공합니다. shadcn/ui를 기반으로 하며, Magic UI의 일부 컴포넌트도 포함하고 있습니다.

설치

NPM 또는 Yarn을 사용하는 경우

npm install @doublejun1/ui-starter-kit
# 또는
yarn add @doublejun1/ui-starter-kit
# 또는
pnpm add @doublejun1/ui-starter-kit

모노레포 내부에서 사용하는 경우 (pnpm workspaces)

애플리케이션의 package.json에 다음과 같이 의존성을 추가합니다 (버전은 최신 버전을 확인하세요):

{
  "dependencies": {
    "@my-org/ui-starter-kit": "^0.0.1" // 예시 버전, 실제 버전으로 교체
  }
}

그런 다음, 모노레포 루트에서 pnpm install을 실행합니다.

사용 방법

다음과 같이 컴포넌트를 가져와서 사용할 수 있습니다:

import { Button } from '@my-org/ui-starter-kit';

const MyComponent = () => {
  return <Button>클릭하세요</Button>;
};

포함된 컴포넌트 (shadcn/ui 기반)

이 스타터 킷에는 다음과 같은 shadcn/ui 컴포넌트들이 기본적으로 포함되어 있으며, 필요에 따라 추가될 수 있습니다:

  • Accordion
  • Alert
  • Alert Dialog
  • Aspect Ratio
  • Avatar
  • Badge
  • Button
  • Calendar
  • Card
  • Carousel
  • Checkbox
  • Collapsible
  • Combobox
  • Command
  • Context Menu
  • Dialog
  • Drawer
  • Dropdown Menu
  • Form
  • Hover Card
  • Input
  • Label
  • Menubar
  • Navigation Menu
  • Pagination
  • Popover
  • Progress
  • Radio Group
  • Resizable
  • Scroll Area
  • Select
  • Separator
  • Sheet
  • Skeleton
  • Slider
  • Sonner (Toast)
  • Switch
  • Table
  • Tabs
  • Textarea
  • Toast
  • Toggle
  • Toggle Group
  • Tooltip

(이 목록은 프로젝트 진행 상황에 따라 업데이트됩니다.)

Magic UI 기반 컴포넌트

이 스타터 킷에는 다음과 같은 Magic UI 컴포넌트들이 포함되어 있습니다:

  • Animated Shiny Text (AnimatedShinyText)

scripts/add-magic-component.mjs 스크립트를 사용하여 더 많은 Magic UI 컴포넌트를 프로젝트에 쉽게 추가할 수 있습니다. (자세한 내용은 해당 스크립트 참조)

(이 목록은 프로젝트 진행 상황에 따라 업데이트됩니다.)

고급 라이브러리 통합 가이드 (선택 사항)

@my-org/ui-starter-kit는 핵심 UI 컴포넌트에 집중하여 가볍게 유지하는 것을 목표로 합니다. 그러나 BlockNote (리치 텍스트 편집기)나 Dnd Kit (드래그 앤 드롭 기능)과 같은 고급 라이브러리도 필요에 따라 쉽게 통합하여 사용할 수 있습니다.

이러한 라이브러리들은 기본적으로 포함되어 있지 않지만, 다음 가이드라인을 통해 프로젝트에 추가할 수 있습니다.

BlockNote (리치 텍스트 편집기)

BlockNote는 블록 기반의 강력한 리치 텍스트 편집기입니다. ui-starter-kit와 함께 사용하려면 다음 단계를 따르세요:

  1. 설치: 애플리케이션 또는 ui-starter-kit 패키지에 BlockNote 관련 패키지를 설치합니다.

    pnpm add @blocknote/core @blocknote/react
  2. 통합: BlockNote 문서를 참조하여 편집기를 애플리케이션의 필요한 부분에 통합합니다. ui-starter-kit의 스타일과 일관성을 유지하기 위해 필요에 따라 스타일을 조정할 수 있습니다.

Dnd Kit (드래그 앤 드롭)

Dnd Kit은 현대적이고 접근성 높은 드래그 앤 드롭 기능을 위한 경량 라이브러리입니다.

  1. 설치: 애플리케이션 또는 ui-starter-kit 패키지에 Dnd Kit 관련 패키지를 설치합니다.

    pnpm add @dnd-kit/core @dnd-kit/sortable @dnd-kit/utilities
  2. 통합: Dnd Kit 문서를 참조하여 필요한 드래그 앤 드롭 기능을 구현합니다. ui-starter-kit의 컴포넌트들과 함께 사용하여 풍부한 사용자 인터페이스를 만들 수 있습니다.

이처럼 ui-starter-kit는 핵심적인 UI 기반을 제공하며, 프로젝트의 특정 요구사항에 맞춰 다양한 외부 라이브러리와 함께 확장하여 사용할 수 있도록 설계되었습니다.

기여 방법

(추후 내용 추가)

라이선스

이 프로젝트는 MIT 라이선스 하에 배포됩니다. 자세한 내용은 LICENSE 파일을 참조하십시오.