movizone 1.0.2 → 1.0.4
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 +14 -14
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<p align="center">
|
|
2
2
|
<img src="https://img.shields.io/npm/v/movizone?color=magenta&style=flat-square" alt="npm version" />
|
|
3
3
|
<img src="https://img.shields.io/npm/l/movizone?style=flat-square" alt="license" />
|
|
4
|
-
<img src="https://img.shields.io/github/actions/workflow/status/alilibx/
|
|
4
|
+
<img src="https://img.shields.io/github/actions/workflow/status/alilibx/movizone/ci.yml?style=flat-square&label=CI" alt="CI" />
|
|
5
5
|
<img src="https://img.shields.io/badge/runtime-Bun-f472b6?style=flat-square" alt="Bun" />
|
|
6
6
|
<img src="https://img.shields.io/badge/73k%2B-movies-cyan?style=flat-square" alt="Movies" />
|
|
7
7
|
</p>
|
|
@@ -11,17 +11,17 @@
|
|
|
11
11
|
A beautiful terminal UI for browsing, searching, and downloading movies. Fuzzy search handles your typos, and WebTorrent downloads run right in the terminal — no external torrent client needed.
|
|
12
12
|
|
|
13
13
|
```
|
|
14
|
-
|
|
15
|
-
║
|
|
16
|
-
║ ███╗ ███╗ ██████╗ ██╗ ██╗██╗███████╗ ██████╗ ███╗
|
|
17
|
-
║ ████╗ ████║██╔═══██╗██║ ██║██║╚══███╔╝██╔═══██╗████╗
|
|
18
|
-
║ ██╔████╔██║██║ ██║██║ ██║██║ ███╔╝ ██║ ██║██╔██╗
|
|
19
|
-
║ ██║╚██╔╝██║██║ ██║╚██╗ ██╔╝██║ ███╔╝ ██║
|
|
20
|
-
║ ██║ ╚═╝ ██║╚██████╔╝ ╚████╔╝ ██║███████╗╚██████╔╝██║
|
|
21
|
-
║ ╚═╝ ╚═╝ ╚═════╝ ╚═══╝ ╚═╝╚══════╝ ╚═════╝ ╚═╝
|
|
22
|
-
║ Movie Explorer
|
|
23
|
-
║
|
|
24
|
-
|
|
14
|
+
╔═══════════════════════════════════════════════════════════════════════════╗
|
|
15
|
+
║ ║
|
|
16
|
+
║ ███╗ ███╗ ██████╗ ██╗ ██╗██╗███████╗ ██████╗ ███╗ ██╗███████╗ ║
|
|
17
|
+
║ ████╗ ████║██╔═══██╗██║ ██║██║╚══███╔╝██╔═══██╗████╗ ██║██╔════╝ ║
|
|
18
|
+
║ ██╔████╔██║██║ ██║██║ ██║██║ ███╔╝ ██║ ██║██╔██╗ ██║█████╗ ║
|
|
19
|
+
║ ██║╚██╔╝██║██║ ██║╚██╗ ██╔╝██║ ███╔╝ ██║ ██║██║╚██╗██║██╔══╝ ║
|
|
20
|
+
║ ██║ ╚═╝ ██║╚██████╔╝ ╚████╔╝ ██║███████╗╚██████╔╝██║ ╚████║███████╗ ║
|
|
21
|
+
║ ╚═╝ ╚═╝ ╚═════╝ ╚═══╝ ╚═╝╚══════╝ ╚═════╝ ╚═╝ ╚═══╝╚══════╝ ║
|
|
22
|
+
║ Movie Explorer ║
|
|
23
|
+
║ ║
|
|
24
|
+
╚═══════════════════════════════════════════════════════════════════════════╝
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
## Features
|
|
@@ -56,8 +56,8 @@ bun install -g movizone
|
|
|
56
56
|
### From source
|
|
57
57
|
|
|
58
58
|
```bash
|
|
59
|
-
git clone https://github.com/alilibx/
|
|
60
|
-
cd
|
|
59
|
+
git clone https://github.com/alilibx/movizone.git
|
|
60
|
+
cd movizone
|
|
61
61
|
bun install
|
|
62
62
|
bun run index.ts
|
|
63
63
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "movizone",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Movie torrent explorer CLI with fuzzy search and in-terminal downloads",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -38,7 +38,9 @@
|
|
|
38
38
|
"gradient-string": "^3.0.0",
|
|
39
39
|
"inquirer": "12",
|
|
40
40
|
"ora": "8",
|
|
41
|
-
"
|
|
41
|
+
"string-width": "^8.2.0",
|
|
42
|
+
"webtorrent": "^2.8.5",
|
|
43
|
+
"wrap-ansi": "^10.0.0"
|
|
42
44
|
},
|
|
43
45
|
"devDependencies": {
|
|
44
46
|
"@types/bun": "latest",
|