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

@rdolcegroup/runlintic-app

v8.1.0

Published

A toolkit for automating code quality, cleanup, and releases.

Readme

⚡ ◯ ➤ Runlintic App

NPM Version NPM Downloads GitHub Issues GitHub Pull Requests Build Status License: MIT Node.js Version Security

A production-ready toolkit for automating code quality, cleanup, and releases.

Stop wrestling with ESLint configs, dependency management, and release workflows. Runlintic App provides everything you need in one simple CLI tool.

# Global installation (recommended)
npm install -g @rdolcegroup/runlintic-app
runlintic init && runlintic health-check

# Or local installation
npm install --save-dev @rdolcegroup/runlintic-app
npx runlintic init && npx runlintic health-check

✨ What It Does

  • 🔧 Lint & Format – ESLint + Prettier with zero warnings
  • 🧹 Clean Dependencies – Remove unused deps automatically
  • 🚀 Smart Releases – Semantic versioning with changelogs
  • 📝 Intelligent Commits – Auto-stage changes & generate conventional commit messages
  • 40% Faster – Parallel execution for all quality checks
  • 🎯 Zero Config – Works immediately, customize later

🚀 Quick Start

1. Install

Choose between global or local installation:

Global Installation (Recommended)

npm install -g @rdolcegroup/runlintic-app
runlintic init

Local Installation (Project-specific)

npm install --save-dev @rdolcegroup/runlintic-app
npx runlintic init

What's the difference?

  • Global: Install once, use everywhere. Commands work from any directory with runlintic
  • Local: Install per project. Use with npx runlintic or add to package.json scripts

2. Initialize Your Project

cd your-project
runlintic init

3. Run Health Check

runlintic health-check

That's it! Your project now has automated code quality and release workflows.

📖 Documentation

Getting Started

Core Features

Examples & Guides

Help & Support

🛠️ Daily Workflow

# Make changes to your code (edit files)

# Generate smart commit message (auto-stages changes)
runlintic commit

# Run quality checks
runlintic check-all

# Create a release
runlintic release:dry    # Preview first
runlintic release:patch  # Then release

🎯 Perfect For

  • Next.js applications - Optimized configs included
  • Monorepos - Turbo integration for performance
  • TypeScript projects - Strict type checking
  • React libraries - Component-focused linting
  • Node.js apps - Server-side optimizations

🔧 Requirements

  • Node.js ≥ 22.16.0
  • Git (for releases)
  • GitHub token (for releases) - Setup Guide

📦 What's Included

When you run runlintic init, you get:

your-project/
├── eslint.config.js      # Zero-warning ESLint setup
├── tsconfig.json         # Strict TypeScript config
├── .release-it.json      # Automated release config
├── commitlint.config.cjs # Conventional commits
└── RUNLINTIC-*.md        # Complete guides

🤝 Contributing

This package is part of The R. Dolce Organization.

  1. Fork the repository
  2. Create a feature branch
  3. Run runlintic health-check
  4. Submit a pull request

📞 Support

📄 License

MIT - See LICENSE file for details.


Ready to supercharge your development workflow?

# Global installation (recommended)
npm install -g @rdolcegroup/runlintic-app
runlintic init && runlintic health-check

# Or add to your project
npm install --save-dev @rdolcegroup/runlintic-app
npx runlintic init && npx runlintic health-check

Built with ❤️ by The R. Dolce Organization