diff --git a/README.md b/README.md index 53f1f37..54910ac 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,32 @@ Agent-first CLI for Fireblocks infrastructure. Execute any Fireblocks API operat ## Installation +### Homebrew (macOS) + +```bash +brew tap fireblocks/fireblocks-cli +brew install fireblocks-cli +``` + +### npm (macOS / Linux / Windows) + ```bash npm install -g @fireblocks/cli ``` +### Standalone installers + +Download the latest release for your platform from the [GitHub Releases](https://github.com/fireblocks/fireblocks-cli/releases) page: + +| Platform | File | +|----------|------| +| macOS ARM64 (Apple Silicon) | `fireblocks-cli-*-darwin-arm64.pkg` | +| macOS x64 (Intel) | `fireblocks-cli-*-darwin-x64.pkg` | +| Windows x64 | `fireblocks-cli-*-x64.exe` | +| Linux (tarball) | `fireblocks-cli-*-linux-x64.tar.gz` | + +No Node.js required for standalone installers. + ## Quick Start ```bash diff --git a/jest.config.cjs b/jest.config.cjs index b195836..2596c67 100644 --- a/jest.config.cjs +++ b/jest.config.cjs @@ -1,6 +1,7 @@ /** @type {import('jest').Config} */ const config = { testEnvironment: 'node', + forceExit: true, testMatch: ['**/src/**/*.test.ts', '**/test/**/*.test.ts'], moduleNameMapper: { '^(\\.{1,2}/.*)\\.js$': '$1',