@whalent/agent 0.3.76 → 0.3.82
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 +8 -1
- package/dist/core.cjs +7 -7
- package/dist/index.cjs +1 -1
- package/package.json +5 -3
- package/scripts/preinstall-check.cjs +19 -0
package/README.md
CHANGED
|
@@ -12,7 +12,14 @@ Protocol reference:
|
|
|
12
12
|
npm install -g @whalent/agent
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
-
Requires Node.js
|
|
15
|
+
Requires Node.js 20 LTS. On older Linux hosts, newer Node.js releases can force
|
|
16
|
+
native `node-pty` / `better-sqlite3` builds that need newer C++ compilers:
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
nvm install 20
|
|
20
|
+
nvm use 20
|
|
21
|
+
npm install -g @whalent/agent --prefer-online --registry=https://registry.npmjs.org
|
|
22
|
+
```
|
|
16
23
|
|
|
17
24
|
## Start Daemon
|
|
18
25
|
|