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

@jpm1475/aurora-design-tokens

v1.3.39

Published

Aurora Design System - Professional Design Tokens for React Applications

Readme

🎨 Aurora Design Tokens

Professional design tokens for the Aurora Design System, optimized for React applications.

🚀 Quick Start

Installation

npm install @jpm1475/aurora-design-tokens

React Usage

import '@jpm1475/aurora-design-tokens/css/shared-tokens.css';

function Button({ children, variant = 'primary' }) {
  return (
    <button 
      className={`button button--${variant}`}
      style={{
        '--button-bg': 'var(--color-aurora-blue-500)',
        '--button-text': 'var(--color-white)'
      }}
    >
      {children}
    </button>
  );
}

🎯 Available Formats

  • CSS Variables - @jpm1475/aurora-design-tokens/css/shared-tokens.css
  • SCSS Variables - @jpm1475/aurora-design-tokens/scss/_shared-tokens.scss
  • JavaScript Objects - @jpm1475/aurora-design-tokens/js/shared-tokens.js

🔧 Framework Integration

React/Next.js

// Import in your app
import '@jpm1475/aurora-design-tokens/css/shared-tokens.css';

// Use CSS variables
const styles = {
  button: {
    backgroundColor: 'var(--color-aurora-blue-500)',
    padding: 'var(--spacing-scale-md)',
    borderRadius: 'var(--border-radius-md)'
  }
};

React Native

import tokens from '@jpm1475/aurora-design-tokens/js';

const styles = StyleSheet.create({
  button: {
    backgroundColor: tokens.colors.auroraBlue[500],
    padding: tokens.spacing.scale.md,
    borderRadius: tokens.borders.radius.md,
  }
});

🎨 Token Categories

Colors

/* Primary Colors */
--color-aurora-blue-500: #737f97;
--color-aurora-orange-500: #ff9e2c;

/* Semantic Colors */
--color-success: #34c759;
--color-warning: #ff9500;
--color-error: #ff3b30;

Typography

/* Desktop */
--typography-desktop-heading-1: 32px;
--typography-desktop-body: 16px;

/* Mobile */
--typography-mobile-heading-1: 24px;
--typography-mobile-body: 14px;

Spacing

--spacing-scale-xs: 4px;
--spacing-scale-sm: 8px;
--spacing-scale-md: 16px;
--spacing-scale-lg: 24px;
--spacing-scale-xl: 32px;

📊 Quality Reports

This package includes comprehensive quality and performance reports:

  • reports/validation-report.json - Token validation results and quality metrics
  • reports/performance-report.json - Build performance analysis and recommendations
  • reports/quality-report.json - Quality gate validation results
  • reports/performance-metrics.json - Historical performance data

Accessing Reports

// Import reports directly
import validationReport from '@jpm1475/aurora-design-tokens/reports/validation-report.json';
import performanceReport from '@jpm1475/aurora-design-tokens/reports/performance-report.json';
import qualityReport from '@jpm1475/aurora-design-tokens/reports/quality-report.json';

console.log('Quality Score:', qualityReport.summary.overallScore);
console.log('Performance:', performanceReport.summary.averageProcessingTime);

🔄 Updates

# Update to latest version
npm update @jpm1475/aurora-design-tokens

# Check version
npm list @jpm1475/aurora-design-tokens

📚 Documentation

For complete documentation, visit: Aurora Design System


Auto-generated from Aurora Design System workflow 🚀