@bippass/cli-darwin-arm64
You almost certainly want bippass instead:
npm install -g bippass
This package is not meant to be installed directly. It contains the BipPass CLI binary for darwin arm64 only, and nothing else — no launcher, no entry point.
Why it exists
The CLI is a Go binary, so it cannot be one portable file. Shipping every platform's
binary in a single package would send ~44MB to every user in order to deliver the ~9MB
they can actually run. Instead each target is published separately with os and
cpu constraints and listed as an optional dependency of bippass; npm installs
the one matching your machine and skips the rest.
That is the same structure esbuild, Prisma and swc use, for the same reason.
Installing this package on its own gives you a binary at
node_modules/@bippass/cli-darwin-arm64/bin/bippass and no bippass command on your PATH.