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

@lmdelm-dev/bmo

v0.3.0

Published

BMO - a GameBoy-style terminal for Linux and Windows. Python (tkinter) app bootstrapped by npm/bun.

Readme

BMO

A GameBoy-style terminal. Cute BMO face, round buttons, Blue Water logo font, a real shell, embedded terminals, and an idle screen-saver where BMO blinks and looks around.

  • Linux and Windows
  • Double-click to launch (desktop entry on Linux, .pyw on Windows)
  • Install via curl | npm | bun | brew

Requirements

The installer checks for these and installs any that are missing for you (it uses each tool's own one-liner - no manual steps):

  • Python 3 with tkinter (system package)
  • Pillow (optional - BMO's face saver)
  • python-xlib (Linux, optional - minimize/restore hotkey)
  • xterm (Linux, optional - the embedded interactive terminal)
  • opencode (optional - powers the mo command; installed via curl -fsSL https://opencode.ai/install | bash)
  • Ollama (optional - powers BMO's AI chat friend; free + offline, no API key; the installer offers curl -fsSL https://ollama.com/install.sh | sh)

AI chat friend

BMO is not just a terminal - it's a friend. Just type something and it chats back (a small local model, fully offline, no API key, nothing leaves your machine):

hello!
  • Memory: BMO asks your name on first launch and remembers you - your name and your conversations are saved in ~/.local/share/bmo/chat.json.
  • Commands are prefixed with /. Anything without a / is chat.
  • First chat auto-downloads a small model (qwen2.5:0.5b, ~400MB) via Ollama.
  • /help, /name <n>, /memory, /forget, /model [name] manage the friend features.

Install

curl (Linux / macOS)

curl -fsSL https://raw.githubusercontent.com/lmdelm-dev/bmo/main/install.sh | bash

Installs to ~/.local/share/bmo, adds a bmo command, a desktop entry, and the Blue Water logo font. It also bootstraps any missing dependencies (Python 3 + tkinter, Pillow, python-xlib, xterm, opencode) using their standard installers. Run it with bmo or from your app menu.

npm

npm install -g @lmdelm-dev/bmo
bmo

bun

bun add -g @lmdelm-dev/bmo
bmo

brew (macOS / Linux)

brew tap lmdelm-dev/tap https://github.com/lmdelm-dev/homebrew-tap
brew install bmo

From source

git clone https://github.com/lmdelm-dev/bmo.git
cd bmo
./bmo

Windows

Install Python (tick "Add python.exe to PATH", plus tkinter), then:

  • Double-click bmo.pyw, or
  • Open a terminal and run bmo.bat, or
  • npm install -g @lmdelm-dev/bmo && bmo

Usage

  • Just type and BMO chats with you (local AI, free + offline)
  • Commands start with /: /ls, /pwd, /mo (opencode), /gmo (w3m), /fs (fullscreen), /clear, /quit, /help
  • /name <name> - tell BMO your name, /memory - what it remembers, /forget - clear memory, /model [name] - change the AI model
  • The blue _ button minimizes; on Linux bring it back with Ctrl+Alt+B
  • The red X button closes BMO
  • After 60s idle, BMO falls asleep (blinks; move mouse or press a key to wake)

Packaging notes for maintainers

  • install.sh - the curl installer (BMO_REPO/BMO_BRANCH env vars override the source)
  • package.json + cli.js - the npm/bun package (@lmdelm-dev/bmo)
  • Formula/bmo.rb - Homebrew formula (lives in the lmdelm-dev/homebrew-tap repo)
  • scripts/release.sh - fills the real tarball sha256 into the Formula
  • .github/workflows/ci.yml - lint checks on push, checksum verification on tags

Release checklist (publish a new version)

# 1. commit your changes, then create the tag
git add -A
git commit -m "My change"
git tag v0.1.0          # bump versions in package.json and Formula too

# 2. push the repo and the tag
git remote add origin https://github.com/lmdelm-dev/bmo.git
git push -u origin main
git push origin v0.1.0

# 3. now that the tarball exists on GitHub, get the real checksum:
./scripts/release.sh v0.1.0   # prints the sha256 and updates Formula/bmo.rb

Note: a tag commit cannot contain its own tarball checksum (it would change the tarball). The computed sha256 must live in the Homebrew tap repo (a separate git repo), which scripts/release.sh produces for you.

After that:

  • npm / bun: npm publish (must be run from a machine logged into npm; requires an npm account with @lmdelm-dev scope access).
  • Homebrew: push the updated Formula/bmo.rb to the lmdelm-dev/homebrew-tap repo; brew install bmo then works.

CI lints on push, and on each tag it re-packages the GitHub tarball to confirm it builds.

License

MIT