nunmai 0.1.1 → 0.1.2

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 +9 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -14,9 +14,15 @@ directories — your system toolchain is never modified. Then `nunmai` starts th
14
14
  engine; the first run opens the AI-account wizard (Claude, ChatGPT, Kimi,
15
15
  Gemini, OpenRouter).
16
16
 
17
- - macOS, Linux, Windows 10/11 (PowerShell), Android (Termux). `npx nunmai` works too.
18
- - If npm ran with `--ignore-scripts` (or `CI` is set), the install happens on the
19
- first `nunmai` run instead.
17
+ - macOS, Linux, Windows 10/11 (PowerShell), Android (Termux).
18
+ - **Local install** (`npm install nunmai`, no `-g`): run it with `npx nunmai`.
19
+ npm 11.19 blocks dependency install scripts by default, so the engine is
20
+ installed on the first `npx nunmai` run. To get a plain `nunmai` command from
21
+ a local install, allow the script: `npm install nunmai --allow-scripts=nunmai`.
22
+ - If npm skipped the install script (`--ignore-scripts`, `CI` set, or the
23
+ allow-scripts policy above), the install simply happens on the first run.
24
+ - After `nunmai uninstall`, the `nunmai` command falls back to this launcher —
25
+ running `nunmai` again reinstalls the engine.
20
26
  - Lightweight install (no browser/computer-use): `NUNMAI_INSTALL_LITE=1 npm i -g nunmai`.
21
27
  - Extra installer flags: `NUNMAI_INSTALL_ARGS="--branch dev" npm i -g nunmai`.
22
28
  - Updates: `nunmai update`. Remove: `nunmai uninstall`, then `npm uninstall -g nunmai`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nunmai",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Nunmai Engine — `npm i nunmai` (global or local) installs the engine with all features and dependencies; run `nunmai` to start.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://nunmai.in",