lemonade-interactive-loader 1.0.0 → 1.0.1
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 +25 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,27 +1,45 @@
|
|
|
1
|
-
# 🍋 Lemonade
|
|
1
|
+
# 🍋 Lemonade Interactive Loader
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/lemonade-interactive-loader)
|
|
4
|
+
[](https://opensource.org/licenses/ISC)
|
|
5
|
+
[](https://nodejs.org/)
|
|
5
6
|
[](#)
|
|
6
7
|
|
|
7
8
|
**The easiest way to manage llama.cpp builds and run Lemonade Server**
|
|
8
9
|
|
|
9
|
-
Lemonade
|
|
10
|
+
Lemonade Interactive Loader is a professional, cross-platform CLI tool that simplifies downloading llama.cpp builds and launching Lemonade Server with an intuitive interactive interface.
|
|
10
11
|
|
|
11
12
|
## 🚀 Quick Start
|
|
12
13
|
|
|
13
14
|
### Installation
|
|
14
15
|
|
|
16
|
+
**Option 1: Install globally via npm**
|
|
15
17
|
```bash
|
|
16
|
-
|
|
17
|
-
|
|
18
|
+
npm install -g lemonade-interactive-loader
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
**Option 2: Run without installing (via npx)**
|
|
22
|
+
```bash
|
|
23
|
+
npx lemonade-interactive-loader
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
**Option 3: Install from source**
|
|
27
|
+
```bash
|
|
28
|
+
git clone https://github.com/yourusername/lemonade-interactive-loader.git
|
|
29
|
+
cd lemonade-interactive-loader
|
|
18
30
|
npm install
|
|
19
31
|
```
|
|
20
32
|
|
|
21
33
|
### Running the Tool
|
|
22
34
|
|
|
23
35
|
```bash
|
|
24
|
-
#
|
|
36
|
+
# If installed globally
|
|
37
|
+
lemonade-loader
|
|
38
|
+
|
|
39
|
+
# Or via npx (no installation needed)
|
|
40
|
+
npx lemonade-interactive-loader
|
|
41
|
+
|
|
42
|
+
# From source
|
|
25
43
|
npm start
|
|
26
44
|
# or
|
|
27
45
|
node index.js
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lemonade-interactive-loader",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Interactive CLI tool to launch Lemonade Server with custom arguments and download llama.cpp releases - Cross-platform (Windows/Linux)",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|