@roman-16/proton-cli 1.9.7 → 1.9.8
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/README.md +6 -7
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -111,27 +111,26 @@ environment.systemPackages = [
|
|
|
111
111
|
winget install Roman.ProtonCLI
|
|
112
112
|
```
|
|
113
113
|
|
|
114
|
-
|
|
115
114
|
### Install with Homebrew (macOS)
|
|
116
115
|
|
|
117
116
|
```bash
|
|
118
117
|
brew install --cask roman-16/tap/proton-cli
|
|
119
118
|
```
|
|
120
119
|
|
|
121
|
-
### Install with
|
|
120
|
+
### Install with npm
|
|
122
121
|
|
|
123
122
|
```bash
|
|
124
|
-
|
|
123
|
+
npm install -g @roman-16/proton-cli
|
|
125
124
|
```
|
|
126
125
|
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
### Install with npm
|
|
126
|
+
### Install with Go
|
|
130
127
|
|
|
131
128
|
```bash
|
|
132
|
-
|
|
129
|
+
go install github.com/roman-16/proton-cli@latest
|
|
133
130
|
```
|
|
134
131
|
|
|
132
|
+
> **Note:** `go install` builds do **not** embed the CAPTCHA helper that release binaries include. If Proton demands human verification at login, install a release binary instead. See [Human verification](#human-verification-captcha).
|
|
133
|
+
|
|
135
134
|
### Build from source
|
|
136
135
|
|
|
137
136
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@roman-16/proton-cli",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.8",
|
|
4
4
|
"description": "An unofficial command-line tool for Proton - Mail, Drive, Calendar, Pass, and Contacts from your terminal, with real end-to-end encryption.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/roman-16/proton-cli",
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
"bin"
|
|
16
16
|
],
|
|
17
17
|
"optionalDependencies": {
|
|
18
|
-
"@roman-16/proton-cli-linux-x64": "1.9.
|
|
19
|
-
"@roman-16/proton-cli-linux-arm64": "1.9.
|
|
20
|
-
"@roman-16/proton-cli-darwin-x64": "1.9.
|
|
21
|
-
"@roman-16/proton-cli-darwin-arm64": "1.9.
|
|
22
|
-
"@roman-16/proton-cli-win32-x64": "1.9.
|
|
18
|
+
"@roman-16/proton-cli-linux-x64": "1.9.8",
|
|
19
|
+
"@roman-16/proton-cli-linux-arm64": "1.9.8",
|
|
20
|
+
"@roman-16/proton-cli-darwin-x64": "1.9.8",
|
|
21
|
+
"@roman-16/proton-cli-darwin-arm64": "1.9.8",
|
|
22
|
+
"@roman-16/proton-cli-win32-x64": "1.9.8"
|
|
23
23
|
}
|
|
24
24
|
}
|