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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@dev-peakstudio/ds-cpf-cnpj

v1.1.7

Published

A library of design system

Downloads

140

Readme

Design System CPF.CNPJ

Logo do Design System CPF.CNPJ

O Design System CPF.CNPJ é uma biblioteca interativa de componentes desenvolvida para sistemas que lidam com validação e exibição de informações relacionadas a CPF e CNPJ. Este projeto utiliza React com Vite e é documentado com Storybook, permitindo uma colaboração eficiente entre desenvolvedores e designers.

Acesse o Design System em: http://ds-cpf-cnpj.s3-website-us-east-1.amazonaws.com/


📋 Visão Geral

Este projeto fornece:

  • Componentes reutilizáveis: Focados na consistência e funcionalidade para projetos relacionados a CPF e CNPJ.
  • Documentação interativa: O Storybook exibe cada componente isoladamente, permitindo testes e customizações.
  • Colaboração otimizada: Desenvolvedores e designers podem ajustar propriedades de forma visual e em tempo real.

🚀 Tecnologias Utilizadas

  • React: Para construção de interfaces dinâmicas e reutilizáveis.
  • Vite: Para um ambiente de desenvolvimento rápido e moderno.
  • Storybook: Para documentar e testar os componentes de maneira isolada.

📂 Estrutura do Projeto

A estrutura principal do projeto é:

├── .storybook/       # Configuração do Storybook
├── assets/           # Arquivos estáticos do projeto
├── src/              # Código-fonte dos componentes
├── stories/          # Stories documentados no Storybook
├── storybook-static/ # Arquivos estáticos gerados pelo Storybook
├── package.json      # Dependências e scripts do projeto
└── vite.config.js    # Configuração do Vite

🔧 Instalação

  1. Clone o repositório:
git clone [email protected]:dev-peakstudio/ds-cpf-cnpj.git
  1. Instale as dependências:
yarn install
  1. Execute o Storybook:
yarn storybook
  1. Construa os componentes:
yarn build

🛠️ Scripts Disponíveis

  • yarn dev: Inicia o servidor de desenvolvimento com Vite.
  • yarn storybook: Inicia o Storybook para documentação interativa.
  • yarn build: Constrói a biblioteca para produção.
  • yarn build-storybook: Constrói os arquivos estáticos do Storybook.

🖥️ Uso no Projeto

Após construir a biblioteca, você pode importá-la em outros projetos:

import { MeuComponente } from "@dev-peakstudio/ds-cpf-cnpj";

🚀 Publicação no NPM

Este projeto está configurado para publicar automaticamente uma nova versão no GitHub Packages sempre que uma release é criada no repositório. O fluxo de trabalho (workflow) está configurado da seguinte forma:

Workflow para Publicação

name: Publish package to GitHub Packages
on:
  release:
    types: [published]
jobs:
  build:
    runs-on: ubuntu-latest
    permissions:
      contents: read
      packages: write
    steps:
      - uses: actions/checkout@v4
      # Setup .npmrc file to publish to GitHub Packages
      - uses: actions/setup-node@v3
        with:
          node-version: '20.x'
          registry-url: 'https://npm.pkg.github.com'
          # Defaults to the user or organization that owns the workflow file
          scope: '@dev-peakstudio'
      - name: Install dependencies
        run: yarn
      - name: Publish package
        run: yarn publish --access public
        env:
          NODE_AUTH_TOKEN: ${{ secrets.NODE_TOKEN }}

Publicação Manual

Se necessário, é possível publicar manualmente utilizando o comando:

yarn publish --access public