@bitwarden/cli 2026.4.1 → 2026.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitwarden/cli",
3
3
  "description": "A secure and free password manager for all of your devices.",
4
- "version": "2026.4.1",
4
+ "version": "2026.4.2",
5
5
  "keywords": [
6
6
  "bitwarden",
7
7
  "password",
@@ -64,7 +64,7 @@
64
64
  },
65
65
  "dependencies": {
66
66
  "@koa/multer": "4.0.0",
67
- "@koa/router": "15.3.0",
67
+ "@koa/router": "15.4.0",
68
68
  "big-integer": "1.6.52",
69
69
  "browser-hrtime": "1.1.8",
70
70
  "chalk": "4.1.2",
@@ -75,12 +75,12 @@
75
75
  "inquirer": "8.2.6",
76
76
  "jsdom": "26.1.0",
77
77
  "jszip": "3.10.1",
78
- "koa": "3.1.1",
78
+ "koa": "3.1.2",
79
79
  "koa-bodyparser": "4.4.1",
80
80
  "koa-json": "2.0.2",
81
81
  "lowdb": "1.0.0",
82
82
  "lunr": "2.3.9",
83
- "multer": "2.0.2",
83
+ "multer": "2.1.1",
84
84
  "node-fetch": "2.7.0",
85
85
  "node-forge": "1.3.2",
86
86
  "open": "8.4.2",
package/README.md DELETED
@@ -1,68 +0,0 @@
1
- [![Github Workflow build on main](https://github.com/bitwarden/clients/actions/workflows/build-cli.yml/badge.svg?branch=main)](https://github.com/bitwarden/clients/actions/workflows/build-cli.yml?query=branch:main)
2
-
3
- # Bitwarden Command-line Interface
4
-
5
- [![Platforms](https://imgur.com/AnTLX0S.png "Platforms")](https://help.bitwarden.com/article/cli/#download--install)
6
-
7
- The Bitwarden CLI is a powerful, full-featured command-line interface (CLI) tool to access and manage a Bitwarden vault. The CLI is written with TypeScript and Node.js and can be run on Windows, macOS, and Linux distributions.
8
-
9
- ## Developer Documentation
10
-
11
- Please refer to the [CLI section](https://contributing.bitwarden.com/getting-started/clients/cli/) of the [Contributing Documentation](https://contributing.bitwarden.com/) for build instructions, recommended tooling, code style tips, and lots of other great information to get you started.
12
-
13
- ## User Documentation
14
-
15
- ### Download/Install
16
-
17
- You can install the Bitwarden CLI multiple different ways:
18
-
19
- **NPM**
20
-
21
- If you already have the Node.js runtime installed on your system, you can install the CLI using NPM. NPM makes it easy to keep your installation updated and should be the preferred installation method if you are already using Node.js.
22
-
23
- ```bash
24
- npm install -g @bitwarden/cli
25
- ```
26
-
27
- **Native Executable**
28
-
29
- We provide natively packaged versions of the CLI for each platform which have no requirements on installing the Node.js runtime. You can obtain these from the [downloads section](https://help.bitwarden.com/article/cli/#download--install) in the documentation.
30
-
31
- **Other Package Managers**
32
-
33
- - [Chocolatey](https://chocolatey.org/packages/bitwarden-cli)
34
- ```powershell
35
- choco install bitwarden-cli
36
- ```
37
- - [Homebrew](https://formulae.brew.sh/formula/bitwarden-cli)
38
- ```bash
39
- brew install bitwarden-cli
40
- ```
41
- > ⚠️ The homebrew version is not recommended for all users.
42
- >
43
- > Homebrew pulls the CLI's GPL build and does not include device approval commands for Enterprise SSO customers.
44
- - [Snap](https://snapcraft.io/bw)
45
- ```bash
46
- sudo snap install bw
47
- ```
48
-
49
- ### Help Command
50
-
51
- The Bitwarden CLI is self-documented with `--help` content and examples for every command. You should start exploring the CLI by using the global `--help` option:
52
-
53
- ```bash
54
- bw --help
55
- ```
56
-
57
- This option will list all available commands that you can use with the CLI.
58
-
59
- Additionally, you can run the `--help` option on a specific command to learn more about it:
60
-
61
- ```bash
62
- bw list --help
63
- bw create --help
64
- ```
65
-
66
- ### Help Center
67
-
68
- We provide detailed documentation and examples for using the CLI in our help center at https://help.bitwarden.com/article/cli/.