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

@kepoai/cli

v0.0.19

Published

Kepo CLI - A tool for building TypeScript code into platform-specific plugins

Downloads

779

Readme

@kepo/cli

Kepo CLI - A tool for building TypeScript code into platform-specific plugins.

Installation

npm install -g @kepo/cli
# or
yarn global add @kepo/cli

Usage

You can use the CLI in the following ways:

# After global installation
kp [command] [options]

# Or using npx
npx @kepo/cli [command] [options]

System Requirements

  • Node.js >= 14.0.0
  • Supported OS: macOS, Windows, Linux
  • Supported architectures: x86_64 (Intel/AMD), arm64 (Apple Silicon/ARM)

Auto-Download

The CLI binary will be automatically downloaded from our release server during installation or first use, matching your system's architecture.

Publish Flow

npm publish 会自动触发 prepublishOnly

  1. 构建多平台二进制到 ../dist
  2. 同步上传二进制到 R1/R2(使用 Wrangler)

发布前请设置:

  • R1_BUCKET(或 R2_BUCKET
  • CLOUDFLARE_API_TOKEN
  • (可选)R1_PREFIX(默认 kepo-cli

如需仅发布 npm、跳过上传,可临时设置 SKIP_R1_UPLOAD=1

One-Shot Release

仓库根目录提供了一键发布脚本 release.sh,会串行执行:

  1. 可选写入 npm/package.json 版本号
  2. 可选执行 go test ./...
  3. 执行 npm publish(自动触发 prepublish 构建与上传)
  4. 发布后校验 npm 最新版本

常用命令:

# 正式发布(会执行测试)
./release.sh --version 0.0.12

# 正式发布但跳过 R1 上传
./release.sh --version 0.0.12 --skip-upload

# 仅演练,不实际发布
./release.sh --dry-run --skip-upload