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.
Files changed (2) hide show
  1. package/README.md +25 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,27 +1,45 @@
1
- # 🍋 Lemonade Launcher
1
+ # 🍋 Lemonade Interactive Loader
2
2
 
3
- [![License: ISC](https://img.shields.io/badge/Lxicense-ISC-blue.svg)](https://opensource.org/licenses/ISC)
4
- [![Node.js](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen.svg)](https://nodejs.org/)
3
+ [![npm version](https://badge.fury.io/js/lemonade-interactive-loader.svg)](https://www.npmjs.com/package/lemonade-interactive-loader)
4
+ [![License: ISC](https://img.shields.io/badge/License-ISC-blue.svg)](https://opensource.org/licenses/ISC)
5
+ [![Node.js](https://img.shields.io/badge/node-%3E%3D14.0.0-brightgreen.svg)](https://nodejs.org/)
5
6
  [![Platform](https://img.shields.io/badge/platform-Windows%20%7C%20Linux%20%7C%20macOS-lightgrey.svg)](#)
6
7
 
7
8
  **The easiest way to manage llama.cpp builds and run Lemonade Server**
8
9
 
9
- Lemonade Launcher is a professional, cross-platform CLI tool that simplifies downloading llama.cpp builds and launching Lemonade Server with an intuitive interactive interface.
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
- git clone https://github.com/yourusername/lemonade-launcher.git
17
- cd lemonade-launcher
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
- # Start the interactive CLI
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.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": {