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

@zzou/vue-design-system

v1.0.7

Published

Reusable Vue design system for zzou.

Readme

@zzou/vue-design-system

  • Storybook (GitHub Pages): https://zzous.github.io/vue-design-system/
  • npm: https://www.npmjs.com/package/@zzou/vue-design-system

설치

pnpm add @zzou/vue-design-system vue

사용

import { SButton, SInput, SToastProvider, useToast } from '@zzou/vue-design-system';
import '@zzou/vue-design-system/dist/index.css';
import '@zzou/vue-design-system/styles';
<script setup lang="ts">
import { SButton, SToastProvider, useToast } from '@zzou/vue-design-system';
</script>

<template>
  <SToastProvider>
    <SButton variant="primary">저장</SButton>
  </SToastProvider>
</template>

개발

pnpm install
pnpm storybook   # http://localhost:6006
pnpm build
pnpm typecheck

컴포넌트

Badge, BaseButton, Button, Card, Checkbox, Chip, DatePicker, FileInput, Icon, Input, Link, Modal, Pagination, Radio, Select, Textarea, Toast, Typography

React 버전과 동일한 S 접두사 export API를 유지합니다.


배포

GitHub Pages (Storybook)

master 또는 main 브랜치에 push하면 .github/workflows/deploy-github-pages.yml이 Storybook을 빌드해 GitHub Pages에 배포합니다.

최초 1회 설정 (저장소 Settings):

  1. Settings → Pages
  2. Build and deployment → SourceGitHub Actions로 선택
  3. 워크플로 실행 후 https://zzous.github.io/vue-design-system/ 에서 확인

로컬에서 Pages와 동일한 base path로 미리보기:

STORYBOOK_BASE_PATH=/vue-design-system/ pnpm run build-storybook
pnpm dlx serve storybook-static -l 6006

npm 패키지 배포

.github/workflows/publish-npm.ymlv* 태그 push 또는 수동 실행(workflow_dispatch) 시 npm에 publish합니다.

최초 1회 설정:

  1. npmjs.com 로그인 후 @zzou 조직(또는 본인 계정)에 패키지 publish 권한 확인
  2. Access TokensGenerate New Token → type Automation (CI용)
  3. GitHub 저장소 Settings → Secrets and variables → Actions → New repository secret
    • Name: NPM_TOKEN (이름 정확히 일치)
    • Value: 방금 만든 npm 토큰 전체 문자열

ENEEDAUTH / need auth 오류는 거의 항상 NPM_TOKEN Secret이 없거나 비어 있을 때 발생합니다.

E403 + Two-factor authentication ... bypass 2fa 오류

npm 계정에 2FA(이중 인증) 가 켜져 있으면, 일반 Publish 토큰으로는 CI에서 배포할 수 없습니다. 아래 중 하나로 새 토큰을 만든 뒤 NPM_TOKEN Secret을 교체하세요.

| 토큰 종류 | 설정 | |-----------|------| | Classic → Automation (권장) | Access Tokens → Generate New Token → Automation@zzou 스코프 publish 권한 | | Granular Access Token | Permissions: Read and write packages → Bypass 2FA for publish 체크 |

Publish 타입 Classic 토큰은 2FA가 켜진 계정에서 CI publish 시 위 E403이 납니다.

배포 절차:

# 1. package.json version 수정 (예: 1.0.1)
# 2. 커밋 후 태그 생성 및 push
git add package.json
git commit -m "chore: release v1.0.1"
git tag v1.0.1
git push origin master
git push origin v1.0.1

태그가 push되면 Actions에서 typecheckbuildpnpm publish가 실행됩니다.

로컬에서 직접 publish할 때:

npm login
pnpm publish --access public

prepublishOnly 스크립트가 publish 전에 자동으로 typecheckbuild를 실행합니다.