@austinthesing/magic-shell 0.2.17 → 0.2.18
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 +4 -1
- package/dist/cli.js +11305 -8174
- package/dist/index.js +1027 -240
- package/dist/tui.js +11305 -8174
- package/package.json +11 -10
package/README.md
CHANGED
|
@@ -23,6 +23,9 @@ Magic Shell is an open-source CLI tool that translates plain English (or any nat
|
|
|
23
23
|
|
|
24
24
|
### Via Package Manager (Recommended)
|
|
25
25
|
|
|
26
|
+
**Prerequisite:** Magic Shell runs on the [Bun](https://bun.sh) runtime. Install Bun first,
|
|
27
|
+
even if you install the package with npm, pnpm, or yarn.
|
|
28
|
+
|
|
26
29
|
```bash
|
|
27
30
|
# bun (recommended)
|
|
28
31
|
bun add -g @austinthesing/magic-shell
|
|
@@ -39,7 +42,7 @@ yarn global add @austinthesing/magic-shell
|
|
|
39
42
|
|
|
40
43
|
### From Source
|
|
41
44
|
|
|
42
|
-
**
|
|
45
|
+
**Prerequisite:** [Bun](https://bun.sh) runtime (v1.3.9 or higher)
|
|
43
46
|
|
|
44
47
|
```bash
|
|
45
48
|
# Clone the repository
|