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

@gpc-cli/cli

v0.9.71

Published

GPC — Google Play Console CLI. 217 API endpoints including Managed Google Play. Upload AABs, manage releases, monitor vitals, publish private enterprise apps. Fastlane alternative for Android.

Readme

@gpc-cli/cli

Ship Android apps from your terminal. The complete CLI for the Google Play Developer API.

217 API endpoints. No Ruby. No browser. No ceremony. First publishing CLI with Managed Google Play support and AI-assisted Play Store release notes in 80+ locales.

npm install -g @gpc-cli/cli

What it does

gpc setup                                     # Guided first-time setup (or --auto for CI)
gpc status                                    # Releases + vitals + reviews in 3 seconds
gpc releases upload app.aab --track beta      # Upload to any track
gpc releases promote --from beta --to production --rollout 10
gpc publish app.aab --track beta --notes "Bug fixes"                # One-shot upload + release
gpc publish app.aab --validate-only                                 # Dry-run validation without releasing
gpc preflight app.aab                         # 9 offline policy scanners
gpc watch --on-breach halt                     # Real-time rollout monitoring + auto-halt
gpc vitals crashes --threshold 2.0            # Exit code 6 if breached
gpc reviews list --stars 1-2 --since 7d       # Filter reviews
gpc reviews reply <review-id> --text "Thanks for the feedback!"
gpc listings push --dir metadata/             # Sync store metadata (Fastlane-compatible)
gpc changelog generate --target play-store --locales auto --ai      # AI-translated "What's new" in every locale
gpc enterprise publish app.aab --account 123 --title "Private App"  # Managed Google Play
gpc verify                                    # Developer verification readiness
gpc doctor                                    # 22 setup checks

Why this over Fastlane?

| | GPC | Fastlane supply | | ------------------------------- | ------------------------------ | --------------- | | API coverage | 217 endpoints | ~20 | | Runtime | Node.js or binary | Ruby + Bundler | | Cold start | <500ms | 2-3s | | Reviews & Vitals | Yes | No | | Subscriptions | Yes | No | | Managed Google Play | Yes (Play Custom App API) | No | | AI-translated release notes | Yes (80+ locales, BYO key) | No | | Preflight scanner | 9 offline checks | No | | Output formats | JSON, CSV, TSV | JSON only | | CI/CD native | JSON + exit codes | Partial |

Migration guide with one-to-one command mapping.

CI/CD

JSON, CSV, and TSV output when piped. Semantic exit codes your pipeline can react to.

- name: Ship to Play Store
  env:
    GPC_SERVICE_ACCOUNT: ${{ secrets.GPC_SERVICE_ACCOUNT }}
    GPC_APP: com.example.myapp
  run: |
    npm install -g @gpc-cli/cli
    gpc setup --auto
    gpc preflight app.aab --fail-on error
    gpc releases upload app.aab --track internal

| Exit code | Meaning | | --------- | ------------------ | | 0 | Success | | 3 | Auth failure | | 4 | API error | | 6 | Threshold breached |

Also available as

# Homebrew
brew install yasserstudio/tap/gpc

# Standalone binary (no Node.js required)
curl -fsSL https://raw.githubusercontent.com/yasserstudio/gpc/main/scripts/install.sh | sh

Related packages

| Package | What it does | | ------------------------------------------------------------------------ | ------------------------------------------------ | | @gpc-cli/api | Typed Google Play API v3 client (standalone SDK) | | @gpc-cli/auth | Authentication (service account, OAuth, ADC) | | @gpc-cli/core | Business logic and orchestration | | @gpc-cli/config | Configuration and profiles | | @gpc-cli/plugin-sdk | Plugin interface | | @gpc-cli/plugin-ci | CI/CD helpers |

Links

Free to use. 2,269 tests. 90%+ coverage. Every write operation supports --dry-run.

Licensing

Free to use. Source code is on GitHub at yasserstudio/gpc.