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

aide-cli

v0.0.3

Published

Advanced build & deployment CLI for AIDE applications. Replaces bash build script with interactive TUI, multi-region, multi-environment support, automatic VERSION_CODE increment.

Readme

AIDE Build CLI

Advanced build & deployment CLI for AIDE applications. Replaces bash build script with interactive TUI, multi-region, multi-environment support, automatic VERSION_CODE increment.

Quick Start

Interactive mode:

bun run aide-cli

Arrow keys → select options → show config → execute.

Macro mode (shortcuts):

bun run aide-cli ca dev apk local         # Canada, dev, APK, local build
bun run aide-cli in prod aab config       # India, prod, AAB, show config
bun run aide-cli all prod local-clean     # Both regions, prod, clean build
bun run aide-cli ca release local         # Canada, release (auto AAB + VERSION_CODE++)

Aliases:

  • bun run dev → same as bun run aide-cli
  • bun run aide-cli → entry point (recommended)

Project Structure

src/
├── cli.ts              # Entry point (main loop)
├── types.ts            # Type definitions (Region, Environment, BuildConfig)
├── config/
│   ├── index.ts        # Constants (defaults, paths, keystore)
│   ├── regions.ts      # Region configs (CA/IN packages, EAS projects)
│   └── environments.ts # Env configs (dev/prod/release channels)
├── ui/
│   └── menu.ts         # TUI prompts (@clack/prompts)
├── commands/
│   ├── build.ts        # APK/AAB build, keystore, VERSION_CODE
│   ├── eas.ts          # EAS build/update/submit (TODO)
│   ├── device.ts       # ADB tools (TODO)
│   ├── version.ts      # Versioning utilities
│   ├── clean.ts        # Cache/build cleanup
│   └── config.ts       # Config summary display
└── utils/
    ├── parser.ts       # Macro arg parser
    └── version.ts      # Read/write/increment app.config.ts VERSION_CODE

Shortcuts

Regions: ca | in | all Environments: dev | prod | release Build Types: apk | aab Commands: local | local-clean | eas | device | version | clean | config

Features

✅ Interactive menu (arrow keys, no typing) ✅ Macro shortcuts (e.g., ca dev apk local) ✅ Config summary display ✅ Release builds: Auto-increment VERSION_CODE, force AAB (no APK) ✅ Keystore generation (skip in dev mode) ✅ Local build options: local (prebuild) | local-clean (clean prebuild) ✅ Clean modular structure ✅ Full test coverage (parser, version utils)

🔄 TODO: Full EAS/device/version commands

Release Builds

Release environment automatically:

  • Increments VERSION_CODE in app.config.ts
  • Forces AAB output (no APK option)
  • Example: bun run dev in release local → increments code → builds India AAB

Customize

Edit src/config/regions.ts and src/config/environments.ts to adjust:

  • Region package names, EAS projects
  • Environment channels, app env vars
  • Build roots, keystore paths