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

@lazymac/sdk

v0.1.0

Published

Type-safe JavaScript/TypeScript SDK for api.lazy-mac.com — 42 developer tools + K-MCP

Readme

@lazymac/sdk

Type-safe JavaScript/TypeScript SDK for api.lazy-mac.com — 42 developer tools + Korean wedge (K-MCP), backed by Cloudflare Workers (sub-200ms p95).

npm license lazymac Pro

Install

npm install @lazymac/sdk
# or pnpm add @lazymac/sdk / yarn add @lazymac/sdk

Usage

import { LazymacClient } from '@lazymac/sdk';

// Free tier (100 req/day/IP)
const client = new LazymacClient();

// Or with Pro key (unlimited)
const pro = new LazymacClient({ apiKey: process.env.LAZYMAC_API_KEY });

// QR code
const qr = await client.qr.generate({ text: 'https://example.com', format: 'svg' });

// IP geolocation
const geo = await client.ip.lookup({ ip: '8.8.8.8' });

// AI cost estimation
const cost = await client.ai.estimate({ tokens: 1000, model: 'gpt-4o' });

// LLM router — pick cheapest model that hits quality bar
const pick = await client.llm.route({ prompt: 'Hello world', min_quality: 80 });

// Korean wedge — PIPA compliance scan
const pipa = await client.k.privacyScan({ url: 'https://notion.so' });

// KRW exchange rate + BOK base rate
const rates = await client.k.exchangeRate();

Included APIs (10 core clients, 42 total tools)

| Client | Methods | |--------|---------| | client.qr | generate | | client.url | shorten | | client.ip | lookup | | client.tech | detect (BuiltWith alt) | | client.ai | estimate | | client.llm | route | | client.k | privacyScan, exchangeRate, companyLookup, addressGeocode | | client.email | validate | | client.seo | analyze | | client.regex | test |

Raw client.request() is always available for any endpoint:

const result = await client.request('GET', '/fake-data/generate', { schema: 'person', count: 5 });

Error handling

import { LazymacClient, LazymacError } from '@lazymac/sdk';

try {
  await client.qr.generate({ text: 'hello' });
} catch (err) {
  if (err instanceof LazymacError) {
    console.log('Status:', err.status);       // 402 = free tier exceeded
    console.log('Usage:', err.usage);         // { used, limit, plan, resetAt }
    console.log('Upgrade URL:', err.upgrade); // → Pro tier
  }
}

Pricing

  • Free — 100 req / IP / day, all 42 tools
  • Pro$29/mo, unlimited calls, premium key
  • Annual$290/year (2 months free)
  • Team$99/mo, 5 seats

Full pricing: api.lazy-mac.com/pricing

Also install

  • 🧰 @lazymac/mcp — unified MCP server (42 tools) for Claude Code, Cursor, Windsurf
  • 🇰🇷 @lazymac/k-mcp — Korean wedge MCP (9 tools)

License

MIT

💡 Host your own stack? Get $200 DigitalOcean credit.