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

squeaky-clean

v0.4.8

Published

✨ Easy, customizable and expandable development cache cleaner CLI with interactive configuration! Smart, safe, and configurable cache management for 25+ development tools.

Readme

🧼squeaky-clean✨

Easy cross-system development cache cleaner/manager with interactive configuration

Essentially a "universal cachectl"smart (sort of), safe (at least, I think it is...), and configurable cache cleaner/manager CLI-tool with support for most common development tools. Dsigned for easy integration expansion with additional tools (forks encouraged!).

FeaturesInstallationUsageConfigurationSupported ToolsContributing


npm downloads Node.js Version npm version License: MIT


Features

  • 🎯 Smart Detection: Automatically detects installed development tools and their cache locations
  • 🎨 Interactive Wizard: Beautiful CLI interface with progress bars and colored output
  • 📡 Real-Time Progress: Live parallel scanning status with animated indicators for 25+ tools simultaneously
  • 🔧 Highly Configurable: Choose exactly which caches to clean and when
  • 📊 Size Analytics: See how much space each cache is using before cleaning
  • 🛡️ Safe by Default: Dry-run mode to preview what will be cleaned (v0.1.0+ defaults to dry-run)
  • ⚡ Performance: Parallel cleaning operations for maximum speed
  • 🔄 Auto-clean Mode: Schedule automatic cache cleaning based on your preferences
  • 📱 Cross-platform: Works on macOS, Linux, and Windows
  • 🔄 Config Migration: Automatic migration from legacy to new configuration format
  • 🔌 Plugin Support: Discover and use community cleaners via npm packages
  • 📋 JSON Output: Machine-readable output for scripting and automation
  • 🔄 Auto-Update: Background update checking with easy self-update command

📦 Installation

Global Installation (Recommended)

npm install -g squeaky-clean

Or using other package managers:

# Yarn
yarn global add squeaky-clean

# pnpm
pnpm add -g squeaky-clean

# Bun
bun add -g squeaky-clean

Homebrew (macOS/Linux)

brew install chendrizzy/squeaky-clean/squeaky-clean

Local Installation

npm install --save-dev squeaky-clean

Updating

Squeaky Clean includes a built-in update command:

# Check for and install updates
squeaky update

# Only check for updates without installing
squeaky update --check

By default, squeaky-clean will automatically check for updates once every 24 hours when you run any command. You can disable this with:

squeaky update --disable-auto

Usage

Interactive Mode (Recommended)

Start the interactive configuration wizard:

squeaky interactive

This will guide you through:

  • Selecting which tools to clean
  • Configuring cleaning preferences
  • Setting up automatic cleaning schedules

Command Line

Clean all caches

squeaky clean --all

Clean specific cache types

# Clean only package manager caches
squeaky clean --types package-manager

# Clean multiple types
squeaky clean --types package-manager,build-tool

# Clean specific tools
squeaky clean npm yarn webpack

Dry run mode (preview without cleaning)

squeaky clean --all --dry-run

Show cache sizes

squeaky sizes

List available caches

squeaky list
# With sizes inline
squeaky list --sizes

🎯 Granular Cache Management

# View detailed cache categories
squeaky categories --tool npm
squeaky categories --verbose  # Show all tools with details

# Clean caches older than 7 days
squeaky clean --older-than 7d

# Clean caches larger than 100MB
squeaky clean --larger-than 100MB

# Clean only low priority caches (preserve critical/important)
squeaky clean --priority low

# Clean archived/experimental caches
squeaky clean --use-case archived

# Combine multiple criteria
squeaky clean --older-than 14d --priority low --larger-than 50MB

# Clean specific categories by ID
squeaky categories --tool npm  # First, list categories to get IDs
squeaky clean --categories npm-logs,npm-metrics

# Use custom config file
squeaky clean --config my-config.json --dry-run

Available Commands

| Command | Description | Aliases | |---------|-------------|---------| | clean | Clean development caches with granular control | - | | list | List available caches and their status | ls | | sizes | Show cache sizes without clearing | - | | categories | Show detailed cache categories with usage patterns | cats | | config | Manage configuration | - | | doctor | Check system and diagnose issues | - | | auto | Configure automatic cleaning | - | | update | Check for and install updates | - | | interactive | Start interactive configuration wizard | i |

Command Options

clean Options

  • -a, --all - Clean all configured caches
  • -t, --types <types> - Comma-separated list of cache types
  • -e, --exclude <tools> - Comma-separated list of tools to exclude
  • -d, --dry-run - Show what would be cleaned without actually cleaning
  • -f, --force - Skip confirmation prompts
  • -s, --sizes - Show cache sizes before cleaning

🎯 Granular Selection Options:

  • --older-than <age> - Clean caches older than specified age (e.g., 7d, 2w, 1m)
  • --newer-than <age> - Clean caches newer than specified age
  • --larger-than <size> - Clean caches larger than specified size (e.g., 100MB, 1GB)
  • --smaller-than <size> - Clean caches smaller than specified size
  • --use-case <case> - Target specific use cases (development, testing, production, experimental, archived)
  • --priority <level> - Clean only specified priority (critical, important, normal, low)
  • --categories <ids> - Clean specific category IDs (comma-separated)

categories Options

  • -t, --tool <tool> - Show categories for specific tool
  • --type <type> - Filter by cache type
  • -v, --verbose - Show detailed information

list Options

  • -s, --sizes - Include cache sizes inline with the list
  • -t, --type <type> - Filter by cache type

update Options

  • -c, --check - Only check for updates without installing
  • --auto-on - Enable automatic update checks on startup (--enable-auto/--enable-auto-update aliases)
  • --auto-off - Disable automatic update checks (--disable-auto/--disable-auto-update aliases)

Global Options

  • -v, --verbose - Enable verbose output
  • --no-color - Disable colored output
  • --config <path> - Use custom configuration file
  • --version - Show version number
  • -h, --help - Display help

🛠️ Supported Tools

Package Managers

| Tool | Caches Cleaned | |------|----------------| | npm | ~/.npm, node_modules/.cache | | Yarn | ~/.yarn/cache, .yarn/cache | | pnpm | ~/.pnpm-store, ~/.cache/pnpm | | Bun | ~/.bun/install/cache | | pip | ~/.cache/pip | | Homebrew | brew --cache, old versions | | Nix | /nix/store garbage, old generations |

Build Tools

| Tool | Caches Cleaned | |------|----------------| | Webpack | .webpack-cache, node_modules/.cache/webpack | | Vite | node_modules/.vite, .vite-cache | | Nx | node_modules/.cache/nx, .nx/cache | | Turbo | .turbo, node_modules/.cache/turbo | | Flutter | ~/.pub-cache, build/ |

IDEs & Editors

| Tool | Caches Cleaned | |------|----------------| | VS Code | ~/.config/Code/Cache*, Extensions cache | | Xcode | ~/Library/Developer/Xcode/DerivedData | | Android Studio | ~/.android/cache, Build cache | | JetBrains IDEs | ~/.cache/JetBrains/*/caches |

Browsers (Development)

| Tool | Caches Cleaned | |------|----------------| | Chrome | Dev tools cache, Service workers | | Firefox | Dev tools cache, Temporary files |

System Tools

| Tool | Caches Cleaned | |------|----------------| | Docker | Unused containers, images, volumes | | Gradle | ~/.gradle/caches, .gradle/ |

⚙️ Configuration

Squeaky Clean can be configured through:

  1. Interactive wizard: squeaky interactive
  2. Configuration file: ~/.squeaky-clean/config.json
  3. Environment variables: SQUEAKY_*

Configuration Migration (v0.2.0+)

Squeaky Clean now supports automatic migration from legacy configuration format to the new schema:

# Migrate your config automatically
squeaky config doctor

# Or use the doctor command
squeaky doctor --config

# Preview migration without changing files
squeaky config doctor --dry-run

# Migrate to a different file
squeaky config doctor --input old-config.json --output new-config.json

Configuration File Examples

New Schema (v0.2.0+)

{
  "cleaners": {
    "npm": { "enabled": true },
    "yarn": { "enabled": true },
    "webpack": { "enabled": false }
  },
  "scheduler": {
    "enabled": true,
    "interval": "weekly",
    "thresholds": {
      "size": "1GB",
      "age": "30d"
    }
  },
  "defaults": {
    "verbose": false,
    "colors": true,
    "format": "text"
  }
}

Legacy Schema (still supported)

{
  "tools": {
    "npm": { "enabled": true },
    "yarn": { "enabled": true },
    "webpack": { "enabled": false }
  },
  "auto": {
    "enabled": true,
    "schedule": "weekly",
    "sizeThreshold": "1GB"
  },
  "output": {
    "verbose": false,
    "useColors": true
  }
}

Environment Variables

  • SQUEAKY_AUTO_CLEAN - Enable automatic cleaning
  • SQUEAKY_DRY_RUN - Always run in dry-run mode
  • SQUEAKY_VERBOSE - Enable verbose output
  • SQUEAKY_NO_COLOR - Disable colored output

🔄 Automatic Cleaning

Configure automatic cache cleaning based on:

  • Schedule: Daily, weekly, or monthly
  • Size threshold: Clean when caches exceed a certain size
  • Smart detection: Clean only when tools haven't been used recently
# Configure automatic cleaning
squeaky auto

# Enable with weekly schedule
squeaky auto --enable --schedule weekly

# Set size threshold
squeaky auto --size-threshold 5GB

🏗️ Architecture

Squeaky Clean is built with a modular architecture:

src/
├── cli.ts              # CLI entry point
├── commands/           # Command implementations
│   ├── clean.ts       # Main cleaning logic
│   ├── interactive.ts # Interactive wizard
│   ├── config.ts      # Configuration management
│   └── ...
├── cleaners/          # Tool-specific cleaners
│   ├── npm.ts
│   ├── docker.ts
│   └── ...
├── config/            # Configuration system
├── utils/             # Utility functions
└── types/             # TypeScript definitions

Each cleaner module implements the CleanerModule interface:

interface CleanerModule {
  name: string;
  type: CacheType;
  description: string;
  getCacheInfo(): Promise<CacheInfo>;
  clear(dryRun?: boolean): Promise<ClearResult>;
}

🧪 Development

Prerequisites

  • Node.js >= 16.0.0
  • npm, yarn, pnpm, or bun

Setup

# Clone the repository
git clone https://github.com/justinchen/squeaky-clean.git
cd squeaky-clean

# Install dependencies
npm install

# Build the project
npm run build

# Run in development mode
npm run dev

Scripts

  • npm run build - Build the TypeScript source
  • npm run dev - Run in development mode with hot reload
  • npm test - Run tests
  • npm run test:watch - Run tests in watch mode
  • npm run test:coverage - Generate test coverage report
  • npm run lint - Lint the codebase
  • npm run format - Format code with Prettier
  • npm run release - Run tests/build, publish to npm, and sync the GitHub release (requires the gh CLI + GH_TOKEN or GITHUB_TOKEN to be set)

Testing

# Run all tests
npm test

# Run tests in watch mode
npm run test:watch

# Generate coverage report
npm run test:coverage

🤝 Contributing

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

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Adding a New Cleaner

To add support for a new tool:

  1. Create a new cleaner module in src/cleaners/
  2. Implement the CleanerModule interface
  3. Register it in src/cleaners/index.ts
  4. Add tests in src/__tests__/cleaners/
  5. Update the README with the new tool

📝 License

This project is licensed under the MIT License - see the LICENSE file for details.

🙏 Acknowledgments

Built with:

📮 Support