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

@tamu-dor/aggieux-mui

v1.0.6

Published

AggieUX MUI react component library

Downloads

11

Readme

AggieUX MUI

A React component library built with Material-UI (MUI) components following Texas A&M University's AggieUX design system.

Features

  • 🎨 AggieUX Design System: Components that follow Texas A&M's visual identity
  • 🔧 TypeScript: Full TypeScript support with type definitions
  • 📦 Tree Shaking: Optimized bundle size with ES modules
  • 🎯 MUI Integration: Built on top of Material-UI for consistency
  • 🧪 Testing: Comprehensive test suite with Vitest
  • 📖 Documentation: Well-documented components with examples

Installation

npm install @tamu-dor/aggieux-mui
yarn add @tamu-dor/aggieux-mui
pnpm add @tamu-dor/aggieux-mui

Components

AggieUXButton

A customized button component following AggieUX design guidelines.

AggieUXHeading

Typography component for consistent heading styles across your application.

AggieUXLottieLoader

An animated loading component using Lottie animations.

AggieUXGravatar

A profile picture component with Gravatar integration.

Quick Start

import React from "react";
import { AggieUXButton, AggieUXHeading } from "@tamu-dor/aggieux-mui";

function App() {
  return (
    <div>
      <AggieUXHeading variant="h1">Welcome to AggieUX</AggieUXHeading>
      <AggieUXButton variant="contained" color="primary">
        Get Started
      </AggieUXButton>
    </div>
  );
}

export default App;

Theme Integration

The library includes a custom Aggie theme that can be used with MUI's ThemeProvider:

import { ThemeProvider } from "@mui/material/styles";
import { aggieTheme } from "@tamu-dor/aggieux-mui";

function App() {
  return (
    <ThemeProvider theme={aggieTheme}>
      {/* Your app components */}
    </ThemeProvider>
  );
}

Development

Prerequisites

  • Node.js (v16 or higher)
  • npm, yarn, or pnpm

Setup

  1. Clone the repository:
git clone https://github.com/tamu-edu/aggieux-mui.git
cd aggieux-mui
  1. Install dependencies:
npm install
  1. Start development server:
npm run dev

Available Scripts

  • npm run dev - Start development server
  • npm run build - Build the library for production
  • npm run test - Run tests
  • npm run test:coverage - Run tests with coverage report
  • npm run lint:scripts - Lint TypeScript files
  • npm run format - Format code with Prettier

Building

To build the library:

npm run build

This will generate:

  • ES modules in build/dist/
  • TypeScript declarations
  • Optimized bundle for production

Testing

The library uses Vitest for testing. Run tests with:

npm run test

For coverage reports:

npm run test:coverage

Dependencies

Runtime Dependencies

  • React 19.1.0+
  • Material-UI 7.2.0+
  • Emotion (for styling)
  • Lottie React Player (for animations)

Development Dependencies

  • TypeScript
  • Vite (build tool)
  • Vitest (testing)
  • ESLint + Prettier (code quality)
  • Husky (git hooks)

Browser Support

This library supports all modern browsers that are compatible with React 19 and Material-UI 7.

Contributing

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/new-component
  3. Make your changes
  4. Run tests: npm run test
  5. Run linting: npm run lint:scripts
  6. Commit your changes: git commit -am 'Add new component'
  7. Push to the branch: git push origin feature/new-component
  8. Submit a pull request

Code Style

This project uses:

  • ESLint for code linting
  • Prettier for code formatting
  • Husky for pre-commit hooks
  • Lint-staged for staged file linting

Code is automatically formatted on commit.

License

MIT © Matt Voss

Links

Changelog

1.0.0

  • Initial release
  • AggieUXButton component
  • AggieUXHeading component
  • AggieUXLottieLoader component
  • AggieUXGravatar component
  • Custom Aggie theme integration
  • TypeScript support
  • Full test coverage