@roman-16/proton-cli 1.9.7 → 1.9.9

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.
Files changed (2) hide show
  1. package/README.md +24 -25
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -39,28 +39,6 @@ proton-cli implements the same authentication and encryption as the [Proton web
39
39
 
40
40
  ## Install
41
41
 
42
- ### Download a binary (recommended)
43
-
44
- Grab the latest binary for your platform from [**GitHub Releases**](https://github.com/roman-16/proton-cli/releases/latest).
45
-
46
- | Platform | Binary |
47
- |---|---|
48
- | Linux (x86_64) | `proton-cli_linux_amd64` |
49
- | Linux (ARM64) | `proton-cli_linux_arm64` |
50
- | macOS (Apple Silicon) | `proton-cli_darwin_arm64` |
51
- | macOS (Intel) | `proton-cli_darwin_amd64` |
52
- | Windows (x86_64) | `proton-cli_windows_amd64.exe` |
53
-
54
- **Linux / macOS:**
55
-
56
- ```bash
57
- curl -LO https://github.com/roman-16/proton-cli/releases/latest/download/proton-cli_linux_amd64
58
- chmod +x proton-cli_linux_amd64
59
- sudo mv proton-cli_linux_amd64 /usr/local/bin/proton-cli
60
- ```
61
-
62
- **Windows:** download the `.exe` from the [releases page](https://github.com/roman-16/proton-cli/releases/latest) and add it to your PATH.
63
-
64
42
  ### Install on Arch Linux (AUR)
65
43
 
66
44
  ```bash
@@ -111,13 +89,18 @@ environment.systemPackages = [
111
89
  winget install Roman.ProtonCLI
112
90
  ```
113
91
 
114
-
115
92
  ### Install with Homebrew (macOS)
116
93
 
117
94
  ```bash
118
95
  brew install --cask roman-16/tap/proton-cli
119
96
  ```
120
97
 
98
+ ### Install with npm
99
+
100
+ ```bash
101
+ npm install -g @roman-16/proton-cli
102
+ ```
103
+
121
104
  ### Install with Go
122
105
 
123
106
  ```bash
@@ -126,12 +109,28 @@ go install github.com/roman-16/proton-cli@latest
126
109
 
127
110
  > **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).
128
111
 
129
- ### Install with npm
112
+ ### Download a binary
113
+
114
+ Grab the latest binary for your platform from [**GitHub Releases**](https://github.com/roman-16/proton-cli/releases/latest).
115
+
116
+ | Platform | Binary |
117
+ |---|---|
118
+ | Linux (x86_64) | `proton-cli_linux_amd64` |
119
+ | Linux (ARM64) | `proton-cli_linux_arm64` |
120
+ | macOS (Apple Silicon) | `proton-cli_darwin_arm64` |
121
+ | macOS (Intel) | `proton-cli_darwin_amd64` |
122
+ | Windows (x86_64) | `proton-cli_windows_amd64.exe` |
123
+
124
+ **Linux / macOS:**
130
125
 
131
126
  ```bash
132
- npm install -g @roman-16/proton-cli
127
+ curl -LO https://github.com/roman-16/proton-cli/releases/latest/download/proton-cli_linux_amd64
128
+ chmod +x proton-cli_linux_amd64
129
+ sudo mv proton-cli_linux_amd64 /usr/local/bin/proton-cli
133
130
  ```
134
131
 
132
+ **Windows:** download the `.exe` from the [releases page](https://github.com/roman-16/proton-cli/releases/latest) and add it to your PATH.
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.7",
3
+ "version": "1.9.9",
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.7",
19
- "@roman-16/proton-cli-linux-arm64": "1.9.7",
20
- "@roman-16/proton-cli-darwin-x64": "1.9.7",
21
- "@roman-16/proton-cli-darwin-arm64": "1.9.7",
22
- "@roman-16/proton-cli-win32-x64": "1.9.7"
18
+ "@roman-16/proton-cli-linux-x64": "1.9.9",
19
+ "@roman-16/proton-cli-linux-arm64": "1.9.9",
20
+ "@roman-16/proton-cli-darwin-x64": "1.9.9",
21
+ "@roman-16/proton-cli-darwin-arm64": "1.9.9",
22
+ "@roman-16/proton-cli-win32-x64": "1.9.9"
23
23
  }
24
24
  }