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

maverick-wave

v3.3.0

Published

A lightweight, modern CSS framework for building responsive websites with elegance and speed.

Readme

MaverickWave

A lightweight, modern CSS framework for building responsive websites with elegance and speed. MaverickWave provides a clean foundation suitable for projects ranging from personal portfolios to corporate websites and e-commerce platforms.

While AI tools helped kickstart the development of some components and provided initial structure, approximately 80% of the codebase required manual refinement and customization. The framework has been meticulously crafted to ensure:

  • Consistent implementation of custom variables throughout the system
  • Proper integration between components and logical SCSS structure
  • Optimized specificity and selector hierarchy
  • Reliable responsive behavior across devices
  • Built-in dark mode support and accessibility considerations

The result is a framework that balances utility with simplicity, offering developers a solid foundation that can be easily customized.

➡️ View the Live Showcase & Documentation

Features

  • Responsive Grid System
  • 30+ UI Components: Buttons, Cards, Panels, Tabs, Accordions, Modals, Tiles, Alerts, Spinners, Progress Bars, Avatars, Tags, Ratings, Stepper, Skeleton Loader, Empty State, Divider, and more
  • Form Elements: Input, Select, Textarea, Checkbox, Radio, Toggle, Input Group, with mw-field wrapper pattern for Angular Reactive Forms
  • Utility Classes for spacing, flex, display, and typography
  • Easy Customization via CSS Custom Properties
  • Built-in Light & Dark Mode with optional theme switching
  • SCSS Source Files for advanced customization (Dart Sass, @use/@forward)
  • Minimal JavaScript footprint (single vanilla JS file, no dependencies)

Installation & Usage

1. CDN (jsDelivr)

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>My MaverickWave Project</title>
    <link
      rel="stylesheet"
      href="https://cdn.jsdelivr.net/npm/[email protected]/maverick-wave.min.css"
    />
  </head>
  <body>
    <!-- Your content here -->
    <script src="https://cdn.jsdelivr.net/npm/[email protected]/maverick-wave.min.js"></script>
  </body>
</html>

Always pin to a specific version (e.g., @3.0.0) in production for stability.

2. Direct Download

Download maverick-wave.min.css and maverick-wave.min.js from the latest release and include them manually:

<link rel="stylesheet" href="path/to/maverick-wave.min.css" />
<script src="path/to/maverick-wave.min.js"></script>

Customization

CSS Custom Properties

Override framework variables in your own stylesheet (load it after maverick-wave.min.css):

:root {
  --mw-primary-color: #your-brand-color;
  --mw-secondary-color: #your-secondary-color;
  --mw-dark-page-background: #1a1a2e;
  --mw-dark-card-background: #2a2a4a;
  --mw-font-family-base: 'Your Font Name', sans-serif;
}

SCSS Source

For full control, clone the repository and integrate src/scss/main.scss into your Sass build (Dart Sass required). MaverickWave uses modern @use/@forward syntax. Set your variable overrides before the @use statement:

// your styles.scss

// Optional: choose theme mode ('switchable' | 'dark' | 'light')
$mw-theme-mode: 'switchable';

// Override base colors
$primary-color: #e94560;
$secondary-color: #f39c12;
$dark-background: #1f1f2e;
$light-background: #f8f9fa;

// Import the framework
@use 'path/to/maverick-wave/src/scss/main';

Angular Integration

Copy maverick-wave.min.css and maverick-wave.min.js into your Angular project (e.g. src/assets/) and reference them in angular.json:

"styles": ["src/assets/maverick-wave.min.css", "src/styles.scss"],
"scripts": ["src/assets/maverick-wave.min.js"]

MaverickWave automatically styles Angular Reactive Forms state classes (.ng-invalid.ng-touched, .ng-valid.ng-touched.ng-dirty). Use the mw-field wrapper pattern:

<div
  class="mw-field"
  [class.mw-field-has-error]="email.invalid && email.touched"
>
  <label class="mw-field-label mw-required" for="email">Email</label>
  <input id="email" type="email" class="mw-input" formControlName="email" />
  <span class="mw-field-error" *ngIf="email.invalid && email.touched">
    <i class="fas fa-exclamation-circle"></i> Please enter a valid email
    address.
  </span>
</div>

Development

Prerequisites

  • Node.js v18 or newer
  • npm
  • Git

Setup

git clone https://github.com/m1well/maverick-wave.git
cd maverick-wave
npm install

Development Commands

npm run start     # Start Gulp watcher (recompiles on changes)
npm run showcase  # Serve the built dist/ on http://localhost:8888
npm run build     # Full clean build → dist/
npm run format    # Format all source files with Prettier
npm run release   # Build non-minified release files to project root

Project Structure

maverick-wave/
├── dist/                   # Compiled output (CSS, JS, HTML showcase)
├── src/
│   ├── assets/             # Logos, favicons
│   ├── js/                 # JavaScript source (single file)
│   ├── partials/           # HTML partials for the showcase
│   └── scss/
│       ├── abstracts/      # Variables, mixins, functions
│       ├── base/           # Reset, typography
│       ├── components/     # Component styles (one file per component)
│       ├── form-elements/  # Input, select, checkbox, toggle, etc.
│       ├── layout/         # Grid, container, header, footer
│       ├── utilities/      # Spacing, flex, display helpers
│       └── main.scss       # SCSS entry point
├── .claude/
│   └── commands/mw.md      # Claude Code slash command for Angular projects
├── .prettierrc.json        # Prettier configuration
├── gulpfile.js             # Gulp tasks configuration
├── index.html              # Showcase entry point
└── package.json

Contribution

Contributions are welcome!

  1. Fork the repository.
  2. Create a new branch for your feature or fix.
  3. Make your changes and run npm run format.
  4. Commit using Conventional Commits (e.g., feat: add new component).
  5. Push and open a Pull Request.

License

MIT License

Author

Created by m1well