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

@dnd-lab/desktop

v0.3.0

Published

> **Vanilla Extract 기반 Recipe를 사용하는 데스크톱 디자인 시스템 패키지**

Readme

DDS Desktop

Vanilla Extract 기반 Recipe를 사용하는 데스크톱 디자인 시스템 패키지

DDS Desktop은 일관된 UI/UX와 확장 가능한 스타일 아키텍처를 목표로 한 디자인 시스템 패키지입니다. Vanilla Extract를 기반으로 한 Recipe 패턴을 사용해 타입 안정성, 재사용성, 유지보수성을 높였습니다.

컴포넌트 개발 및 기여 전, 반드시 Component Guidelines 문서를 확인해주세요.

설치 방법

DDS Desktop을 사용하려면 아래 명령어를 통해 패키지를 설치하세요.

# npm 사용 시
npm install @dnd-lab/desktop

# yarn 사용 시
yarn add @dnd-lab/desktop

의존성 설치

@dnd-lab/desktop은 아래 패키지를 peer dependency로 사용합니다.

  • react: ^18.0.0 || ^19.0.0
  • react-dom: ^18.0.0 || ^19.0.0
  • framer-motion: ^12.0.0
  • @vanilla-extract/css: ^1.0.0
  • lucide-react: ^0.562.0Icon 컴포넌트 사용 시 필요

프로젝트에 설치되어 있지 않다면 함께 설치해주세요.

# npm 사용 시
npm install react react-dom framer-motion @vanilla-extract/css lucide-react

# yarn 사용 시
yarn add react react-dom framer-motion @vanilla-extract/css lucide-react

사용 방법

1. 전역 CSS import

Vanilla Extract로 빌드된 CSS 결과물을 애플리케이션 엔트리 포인트에서 한 번만 import 해주세요.

// main.tsx
import '@dnd-lab/desktop/desktop.css'
import App from './App'
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'

createRoot(document.getElementById('root') as HTMLElement).render(
  <StrictMode>
    <App />
  </StrictMode>
)

2. 컴포넌트 사용

패키지에서 제공하는 컴포넌트를 import하여 바로 사용할 수 있습니다.

import { Button } from '@dnd-lab/desktop'

export function Example() {
  return <Button variant='primary'>확인</Button>
}

문서

  • 📘 Component Guidelines

    • 컴포넌트 설계 원칙
    • 네이밍 규칙
    • Recipe 및 스타일 작성 가이드
  • 📕 Storybook

    • DDS Desktop에서 제공하는 모든 컴포넌트의 사용 예제 및 Variant를 확인할 수 있습니다.
    • 실제 서비스 적용을 고려한 인터랙션과 상태를 문서화합니다.
# 로컬에서 Storybook 실행
npm run storybook
# 또는
yarn storybook

기여 방법

기여를 환영합니다 🙌

  • 새로운 컴포넌트 추가 시 Component Guidelines 준수 필수
  • PR 전 로컬 빌드 및 테스트 확인