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

@arach/speakeasy

v0.2.15

Published

Convenient TTS CLI for Mac — centralized credentials + configurable caching so all your apps and agents can speak.

Readme

SpeakEasy

npm version license

Convenient TTS CLI for Mac — centralized credentials + configurable caching so all your apps and agents can speak.

speakeasy.arach.dev · npm: @arach/speakeasy · docs: quickstart

What you get

| Surface | What it does | | --- | --- | | CLI | speakeasy "hello" — shell control, cache, diagnostics | | SDK | import { say } from '@arach/speakeasy' — queue, fallbacks, cache | | macOS app | Menu-bar settings + floating HUD (speakeasy --app) | | Adapters | Normalized TTSAdapter API — plug in bespoke providers |

Five built-in providers (system, OpenAI, ElevenLabs, Groq, Gemini). One config file. SQLite cache for API voices. macOS playback via afplay.

Try it in 30 seconds

npm install -g @arach/speakeasy

speakeasy "Hello from SpeakEasy!" --provider system
speakeasy --doctor

No API key needed for macOS system voices. First run shows a welcome screen — replay anytime with speakeasy --welcome.

SDK

import { say, SpeakEasy } from '@arach/speakeasy';

await say('Hello world!');           // system voice (macOS)
await say('Hello!', 'openai');       // cloud providers

const speaker = new SpeakEasy({
  provider: 'groq',
  cache: { enabled: true },
});
await speaker.speak('Cached on repeat.');

Custom TTS backends

Implement TTSAdapter (synthesize, validate, formatError) and use SpeakEasy's playback + cache utilities — or wire into the registry for first-class CLI support. Guide: custom providers.

macOS companion app

Native menu-bar app: provider settings, cache management, speech history, and a floating HUD while the CLI speaks.

speakeasy --app          # install from GitHub Releases and open
speakeasy --update-app   # pull the latest signed DMG

Build from source: cd app && ./build-app.sh · release: cd app && ./Scripts/build.sh

Providers

| Provider | API key | Notes | | --- | --- | --- | | System | No | macOS say — offline, instant | | OpenAI | Yes | Neural voices + optional steering instructions | | ElevenLabs | Yes | Premium voices (voice IDs, not names) | | Groq | Yes | Fast Orpheus TTS | | Gemini | Yes | Google TTS |

export OPENAI_API_KEY=sk-...
export GROQ_API_KEY=gsk_...

Configure once in ~/.config/speakeasy/settings.json. Details: providers.

Configuration

{
  "defaults": {
    "provider": "groq",
    "fallbackOrder": ["groq", "openai", "elevenlabs", "gemini", "system"],
    "volume": 0.7
  },
  "providers": {
    "openai": { "enabled": true, "voice": "nova", "apiKey": "sk-..." },
    "system": { "enabled": true, "voice": "Samantha" }
  }
}
speakeasy --config --edit

Caching

API audio is cached in SQLite. Repeated phrases hit disk instead of the network — typically 8–24× faster on cache hits.

speakeasy --cache --list
speakeasy --cache --stats

Claude Code & agents

Pair with Claude Code hooks or @arach/hooked so IDE events become spoken updates:

import { SpeakEasy } from '@arach/speakeasy';

const speech = new SpeakEasy({ provider: 'groq', cache: { enabled: true } });
await speech.speak('Build completed.');

Requirements

  • Node.js >= 22.12 or Bun >= 1.0 (built-in SQLite)
  • macOS for system voice, afplay playback, and the companion app

Install

npm install @arach/speakeasy      # library
npm install -g @arach/speakeasy     # global CLI

Documentation

Development

pnpm install && pnpm run build && pnpm test

License

MIT · Arach