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

lintmyai

v1.0.6

Published

AI code safety scanner for JavaScript/TypeScript

Readme

lintmyai

Make AI-generated code production-ready.

AI writes code fast, but it makes mistakes you won't catch in review. LintMyAI finds them automatically before they reach production.

Quick Start

npx lintmyai

Scans your project for AI-generated code issues and reports findings instantly. No config needed.

Scan specific files or folders:

npx lintmyai src/
npx lintmyai src/api.ts src/utils.ts

Installation

npm install -D lintmyai

Then add to your scripts:

{
  "scripts": {
    "lint:ai": "lintmyai"
  }
}

What It Catches

  • Hallucinated imports -- packages and APIs that don't exist
  • Security anti-patterns -- hardcoded secrets, exposed credentials, unsafe operations
  • Dead code and empty stubs -- functions that do nothing, unreachable branches
  • AI behavior patterns -- hedging comments, prompt artifacts, TODO placeholders
  • Boilerplate and complexity -- duplicated logic, overly complex functions
  • Framework-specific issues -- React, Vue, Express, and Next.js anti-patterns

34 rules across 8 categories. Purpose-built for AI-generated code.

License Activation

After purchasing a license at lintmyai.com/pricing, activate it to unlock all rules.

Local development -- Run the activate command once per machine:

npx lintmyai activate <your-license-key>

Your license is stored at ~/.config/lintmyai/license.json. No .env file needed.

CI/CD -- Set the LINTMYAI_LICENSE_KEY environment variable instead of running activate:

# GitHub Actions example
env:
  LINTMYAI_LICENSE_KEY: ${{ secrets.LINTMYAI_LICENSE_KEY }}

The env var is checked automatically -- no activate command needed in CI.

Performance -- License checks are disk-only during scans. No network calls, zero latency impact. The activate command is the only step that contacts the license server.

Output Formats

lintmyai                      # Text output (default)
lintmyai --format json        # JSON for programmatic use
lintmyai --format sarif       # SARIF for GitHub Code Scanning

ESLint Integration

LintMyAI includes a built-in ESLint plugin. Add it to your ESLint config:

import lintmyai from 'lintmyai';

export default [
  ...lintmyai.configs.recommended,
];

Documentation

Full rule documentation, configuration options, and guides at lintmyai.com.

License

MIT