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

@agency-in-a-box/amphibious

v2.0.3

Published

Modern responsive CSS framework and component library - the evolution of A.mphibio.us

Readme

Amphibious 2.0

Version License Status

The Elegant HTML5 Boilerplate for Responsive Web Development - Evolved

Amphibious is a modern CSS framework and component library, rebuilt from the ground up with modern tooling while preserving the elegant responsive design patterns that made the original A.mphibio.us great.

📁 Documentation

Features

  • Modern Build System - Vite 6 with TypeScript and Biome
  • Atomic Design System - Systematic component architecture with tokens, atoms, molecules, and organisms
  • 16-Column Grid System - Flexible flexbox-based responsive grid
  • 25+ Components - Production-ready UI components including cards, modals, tabs, carousels, and more
  • E-commerce Ready - Built with modern web applications in mind
  • Dark Mode Foundation - CSS custom properties for theming
  • Accessibility First - ARIA attributes and keyboard navigation
  • Zero Dependencies - Pure CSS (except Splide.js for carousel)
  • Performance Optimized - Lazy loading, tree-shaking, minification

Quick Start

Installation

cd amphibious
bun install

Development

bun run dev          # Start development server on port 2960

Visit http://localhost:2960 to see the framework in action.

Build

bun run build        # Build for production

Usage

As a Module

import '@agency-in-a-box/amphibious';
import '@agency-in-a-box/amphibious/css';

Via CDN

<link rel="stylesheet" href="path/to/amphibious.css">
<script type="module" src="path/to/amphibious.js"></script>

Grid System

Amphibious uses a 16-column grid for maximum flexibility:

<div class="container">
  <div class="row">
    <div class="col-8">Half width (8/16)</div>
    <div class="col-8">Half width (8/16)</div>
  </div>
  
  <div class="row">
    <div class="col-4">Quarter (4/16)</div>
    <div class="col-12">Three quarters (12/16)</div>
  </div>
</div>

Responsive Columns

<div class="col-8 col-tablet-16 col-mobile-16">
  Full width on mobile/tablet, half width on desktop
</div>

Components

Cards

<div class="card">
  <div class="card-header">Card Title</div>
  <div class="card-body">Card content goes here</div>
  <div class="card-footer">Card footer</div>
</div>

Alerts

<div class="alert alert-success">Success message</div>
<div class="alert alert-danger">Error message</div>
<div class="alert alert-warning">Warning message</div>
<div class="alert alert-info">Info message</div>

Project Status

Current Version: 2.0.0 Completion: 95% - QA Phase Browser Support: Modern browsers (Chrome, Firefox, Safari, Edge)

Completed

  • Atomic Design System implementation
  • Modern build system (Vite 6)
  • 25+ production-ready components
  • Navigation system with dropdowns
  • Accessibility features
  • Grid system modernization
  • Image placeholder system

Remaining Work

  • [ ] NPM package publication
  • [ ] CDN distribution setup
  • [ ] Additional theme templates
  • [ ] Component unit tests
  • [ ] Storybook integration

Development Commands

bun run dev          # Start dev server
bun run build        # Build for production
bun run preview      # Preview production build
bun run lint         # Lint with Biome
bun run lint:fix     # Fix linting issues
bun run format       # Format code
bun run typecheck    # TypeScript type checking
bun run clean        # Clean build directory

Documentation

Full documentation coming soon. For now, refer to:

Project Structure

amphibious/
├── src/
│   ├── css/              # CSS source files
│   │   ├── components/   # Component styles
│   │   ├── grid.css      # Grid system
│   │   ├── variables.css # CSS custom properties
│   │   └── main.css      # Entry point
│   ├── js/               # JavaScript plugins
│   └── index.ts          # TypeScript entry
├── scss/                 # Sass theme files
├── examples/             # Usage examples
├── docs/                 # Documentation
├── public/               # Static assets
└── dist/                 # Built files (generated)

Philosophy

Amphibious embraces mobile-first responsive design with:

  • Progressive enhancement
  • Semantic HTML
  • Accessible components
  • Performance-first approach
  • Clean, readable code

License

MIT License - see LICENSE file for details

Credits

Original A.mphibio.us created by Clive Moore @cliveMoore

Rebuilt as part of the AIAB (Agency In A Box) monorepo.


Status: 95% Complete - Ready for production use

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Links