@adbjs/cli 1.0.1 → 1.1.0

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 (3) hide show
  1. package/README.md +25 -4
  2. package/dist/index.js +17048 -436
  3. package/package.json +5 -5
package/README.md CHANGED
@@ -14,15 +14,35 @@ Command-line interface for AllDebrid API v4.1 - manage your torrents, links, and
14
14
 
15
15
  ## 📦 Installation
16
16
 
17
+ ### Via npm (requires Node.js)
18
+
17
19
  ```bash
18
20
  npm install -g @adbjs/cli
21
+ # or
22
+ bun add -g @adbjs/cli
23
+ # or
24
+ pnpm add -g @adbjs/cli
19
25
  ```
20
26
 
21
- Or with other package managers:
27
+ ### Standalone executables (no runtime required)
28
+
29
+ Download the latest binary for your platform from [GitHub Releases](https://github.com/Trisard/alldebrid-ts/releases):
30
+
31
+ | Platform | Download |
32
+ | --------------------------- | --------------------- |
33
+ | Windows x64 | `adb-windows-x64.exe` |
34
+ | Linux x64 | `adb-linux-x64` |
35
+ | Linux ARM64 | `adb-linux-arm64` |
36
+ | macOS x64 | `adb-darwin-x64` |
37
+ | macOS ARM64 (Apple Silicon) | `adb-darwin-arm64` |
22
38
 
23
39
  ```bash
24
- pnpm add -g @adbjs/cli
25
- yarn global add @adbjs/cli
40
+ # Linux/macOS: Make executable and run
41
+ chmod +x adb-linux-x64
42
+ ./adb-linux-x64 --version
43
+
44
+ # Windows: Just run
45
+ adb-windows-x64.exe --version
26
46
  ```
27
47
 
28
48
  ## 🚀 Quick Start
@@ -306,7 +326,8 @@ done
306
326
 
307
327
  ## 📋 Requirements
308
328
 
309
- - Node.js >= 20.0.0
329
+ - Node.js >= 20.0.0 (for npm installation)
330
+ - **OR** download standalone executable (no Node.js required)
310
331
  - AllDebrid account with API access
311
332
 
312
333
  ## 🔗 Related