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

@stencitecnologia/front-kit

v0.1.40

Published

Biblioteca de componentes, design system, diretivas e utilitários para aplicações Vue da Stenci.

Downloads

3,853

Readme

@stencitecnologia/front-kit

Biblioteca de componentes, design system, diretivas e utilitários para aplicações Vue da Stenci.

Este pacote centraliza:

  • Componentes Vue reutilizáveis
  • Design System (tokens, base e UI)
  • Integração com PrimeVue
  • Diretivas customizadas
  • Validators e utils
  • Wrapper de FontAwesome
  • Overrides de estilos

Objetivo: garantir consistência visual e reuso de código entre múltiplos projetos.


📦 Instalação

npm install @stencitecnologia/front-kit

🎨 Importação de estilos (obrigatório)

No projeto consumidor, importe o CSS global:

@import "@stencitecnologia/front-kit/style.css";

Normalmente em:

src/assets/styles/index.css

🚀 Uso básico

Componentes

import { FaIcon } from '@stencitecnologia/front-kit';

app.component('FaIcon', FaIcon);

Diretivas

import { vFocus } from '@stencitecnologia/front-kit';

app.directive('focus', vFocus);

PrimeVue Setup

O front-kit fornece configuração padrão do PrimeVue (locale e ajustes).

import { setupPrimeVue } from '@stencitecnologia/front-kit';

setupPrimeVue(app);

📁 Estrutura do projeto

src/
  components/
  composables/
  directives/
  services/
  utils/
  validators/
  styles/
    tokens.css
    base.css
    ui.css
    primevue-overrides.css
  index.js

dist/
types/
package.json
vite.config.js

📦 Fluxo de Release (gerar versão e publicar)

1️⃣ Entrar na pasta

cd stenci-front-kit

2️⃣ Instalar dependências

npm install

3️⃣ Atualizar versão

Correções pequenas

npm version patch

Novas funcionalidades

npm version minor

Mudanças incompatíveis

npm version major

O comando:

  • Atualiza package.json
  • Cria commit Git
  • Cria tag Git

Se aparecer erro de git:

git add -A
git commit -m "chore: release"

4️⃣ Compilar

npm run build

Resultado esperado:

dist/
  index.es.js
  index.cjs
  style.css

5️⃣ Validar pacote (opcional)

npm pack

6️⃣ Login NPM

npm logout
npm login

Verificar:

npm whoami

7️⃣ Publicar

Primeira publicação:

npm publish --access public

Publicações futuras:

npm publish

O script prepack executa o build automaticamente antes da publicação.


🔄 Atualizar no consumidor

npm update @stencitecnologia/front-kit

ou:

npm install @stencitecnologia/front-kit@latest

🧪 Desenvolvimento local (opcional)

npm link

No consumidor:

npm link @stencitecnologia/front-kit

⚠️ Problemas comuns

CSS não aplicado

Verifique se importou:

@import "@stencitecnologia/front-kit/style.css";

Pacote não encontrado

Verifique se foi publicado:

npm view @stencitecnologia/front-kit version

Token expirado

npm logout
npm login

Versão já existe

npm version patch
npm publish

⭐ Boas práticas

  • Sempre usar named exports
  • Não usar export default em utils/validators
  • Centralizar estilos no front-kit
  • Manter UI separada do app-kit (core)

🌐 NPM

https://www.npmjs.com/package/@stencitecnologia/front-kit

📄 Licença

MIT — Stenci Tecnologia