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

@priscilamoura29/design-tokens

v1.0.4

Published

Design Tokens do Projeto

Downloads

19

Readme

🎨 Design Tokens

This repository stores and manages the core Design Tokens for all products and interfaces of the priscilamoura-codestudio-creator ecosystem.

Design Tokens serve as the Single Source of Truth, ensuring:

Visual consistency

Smooth alignment between Design & Dev

Scalability

Automated delivery (via GitHub Actions)

📁 Project Structure design-tokens/ ├─ build/ │ ├─ css/ │ │ └─ tokens.css │ └─ js/ │ └─ tokens.js ├─ .github/ │ └─ workflows/ │ └─ publish.yml ├─ tokens.json ├─ config.json └─ package.json

✨ Generated Artifacts Path Format Description Usage build/css/tokens.css CSS Custom Properties --token-name: value; Web / CSS build/js/tokens.js ES Modules Exported object JS / Node / Front-end 🛠️ How to Contribute Designers / Token Masters

All changes must be made only in:

tokens.json

Workflow:

git add . git commit -m "feat: add new primary color" git push origin main

GitHub Actions will automatically generate updated artifacts.

🧩 Using Tokens in Code JavaScript (ESM): import { color, space } from './path/to/design-tokens/build/js/tokens.js';

const primary = color.primary.base; const spacing = space.medium;

element.style.background = primary; element.style.padding = spacing;

🇧🇷 Português – Brasil

Este repositório armazena e gerencia os Design Tokens centrais para todos os produtos e interfaces do ecossistema priscilamoura-codestudio-creator.

Os Design Tokens funcionam como a Single Source of Truth, garantindo:

  • Consistência visual
  • Sincronização entre Design & Dev
  • Escalabilidade
  • Automatização na entrega (via GitHub Actions)

📁 Estrutura do Projeto

design-tokens/ ├─ build/ │ ├─ css/ │ │ └─ tokens.css │ └─ js/ │ └─ tokens.js ├─ .github/ │ └─ workflows/ │ └─ publish.yml ├─ tokens.json ├─ config.json └─ package.json

yaml Copiar código


✨ Artefatos Gerados

| Caminho | Formato | Descrição | Uso | |--------|---------|-----------|-----| | build/css/tokens.css | CSS Custom Properties | --token-name: value; | Aplicações Web | | build/js/tokens.js | ES Modules | Objeto exportado | JS / Node / Front-end |


🛠️ Como Contribuir

Designers / Token Masters

Toda alteração deve ser feita exclusivamente no arquivo:

tokens.json

sql Copiar código

Fluxo:

git add .
git commit -m "feat: adiciona nova cor primária"
git push origin main
O GitHub Actions se encarrega de gerar os tokens atualizados.

🧩 Como Consumir os Tokens
JavaScript (ESM):
javascript
Copiar código
import { color, space } from './path/to/design-tokens/build/js/tokens.js';

const primary = color.primary.base;
const spacing = space.medium;

element.style.background = primary;
element.style.padding = spacing;