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

@iorate/wepub

v0.4.3

Published

CLI to publish browser extensions to Chrome Web Store, Firefox Add-ons, and Edge Add-ons

Readme

wepub

Crates.io CI License

A CLI to publish browser extensions to web stores.

Chrome Web Store, Firefox Add-ons and Edge Add-ons are supported. Only existing items can be updated; the initial submission of a new extension still has to go through each store's web UI or developer dashboard.

Install

cargo install wepub

Requires Rust 1.88+.

Quick start

Chrome Web Store

wepub chrome ./my-extension.zip \
  --publisher-id  "..." \
  --item-id       "..." \
  --client-id     "..." \
  --client-secret "..." \
  --refresh-token "..."

Firefox Add-ons

wepub firefox ./my-addon.zip \
  --addon-id   "..." \
  --api-key    "..." \
  --api-secret "..." \
  --channel    listed

Edge Add-ons

wepub edge ./my-extension.zip \
  --product-id "..." \
  --client-id  "..." \
  --api-key    "..."

Usage

Chrome Web Store

Follow the Chrome Web Store API setup guide to obtain an OAuth client ID, client secret and refresh token.

Alternatively, pass a pre-fetched OAuth access token via --access-token. Use this for service-account auth; see Google's docs for how to obtain the token. The two authentication modes are mutually exclusive.

Credentials and IDs can also be supplied via environment variables:

| Flag | Environment variable | | ------------------ | ------------------------------ | | --publisher-id | WEPUB_CHROME_PUBLISHER_ID | | --item-id | WEPUB_CHROME_ITEM_ID | | --client-id | WEPUB_CHROME_CLIENT_ID | | --client-secret | WEPUB_CHROME_CLIENT_SECRET | | --refresh-token | WEPUB_CHROME_REFRESH_TOKEN | | --access-token | WEPUB_CHROME_ACCESS_TOKEN |

Other flags:

| Flag | Description | | --------------------- | ------------------------------------------------------------------------------------------------------ | | --publish-type | Whether to publish on approval (default) or stage for later publishing (staged). | | --deploy-percentage | Initial deploy percentage (0-100). Omit to use the Developer Dashboard default. | | --skip-review | Attempt to skip item review (true or false). |

Firefox Add-ons

Get a JWT credential pair from https://addons.mozilla.org/developers/addon/api/key/.

Credentials can also be supplied via environment variables:

| Flag | Environment variable | | ----------------- | ------------------------------ | | --addon-id | WEPUB_FIREFOX_ADDON_ID | | --api-key | WEPUB_FIREFOX_API_KEY | | --api-secret | WEPUB_FIREFOX_API_SECRET |

Other flags:

| Flag | Description | | ----------------------- | ------------------------------------------------------------------------------------------------- | | --channel | Required. Version channel (listed or unlisted). Determines visibility on the site. | | --compatibility | Compatible applications, comma-separated (firefox, android). | | --approval-notes | Information for Mozilla reviewers. Mutually exclusive with --approval-notes-file. | | --approval-notes-file | Path to a file containing approval notes. Use - for stdin. | | --release-notes | Release notes. Mutually exclusive with --release-notes-file. | | --release-notes-file | Path to a file containing release notes. Use - for stdin. | | --release-notes-lang | Locale code for the release notes (e.g. en-US, ja). Defaults to en-US. | | --source | Path to a source archive to attach to the version. |

Edge Add-ons

Enable the Update REST API at the Partner Center developer dashboard (Microsoft Edge → Publish API → Create API credentials) to obtain a Client ID and an API key.

The product ID is the GUID shown on the Extension overview page in Partner Center.

Credentials and IDs can also be supplied via environment variables:

| Flag | Environment variable | | ----------------- | --------------------------- | | --product-id | WEPUB_EDGE_PRODUCT_ID | | --client-id | WEPUB_EDGE_CLIENT_ID | | --api-key | WEPUB_EDGE_API_KEY |

Other flags:

| Flag | Description | | -------------- | ---------------------------------------------------------------------------- | | --notes | Notes for certification. Mutually exclusive with --notes-file. | | --notes-file | Path to a file containing notes for certification. Use - for stdin. |

.env file

wepub reads a .env file from the current working directory at startup. Any KEY=VALUE lines populate the process environment for subsequent flag resolution, so the WEPUB_* variables documented above can live in .env alongside your project. Existing shell environment values take precedence over .env entries.

Logging

  • Default: INFO level (upload / validation progress visible)
  • -v / --verbose: DEBUG
  • -q / --quiet: WARN+ only
  • RUST_LOG: takes precedence (e.g. RUST_LOG=trace)

Development

This is a Cargo workspace with two crates:

  • crates/wepub-core — async library that talks to store APIs (built on reqwest + tokio)
  • crates/wepub — CLI binary (#[tokio::main], clap)
cargo build
cargo test
cargo clippy --all-targets -- -D warnings

Pre-commit hooks (prek) run cargo fmt --check and cargo clippy on Rust file changes.

License

Licensed under either of MIT or Apache-2.0, at your option.