@stkxp/cli 0.1.2 → 0.1.3

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 +11 -0
  2. package/package.json +4 -1
package/README.md CHANGED
@@ -9,6 +9,17 @@ control, with its inbound webhook served locally.
9
9
  npm install -g @stkxp/cli
10
10
  ```
11
11
 
12
+ Requires **Node >=22.12.0** (several LangChain/OpenAI-SDK dependencies now
13
+ require it; on Node <22 you'll see a wall of `EBADENGINE` warnings).
14
+
15
+ During install you'll also see `npm warn ERESOLVE overriding peer dependency`
16
+ noise around `@langchain/core`/`langchain`/`@langchain/google-genai` — this is
17
+ expected: `langfuse-langchain` still declares a peer range capped at
18
+ `langchain <0.4.0`, one release behind LangChain's v1 line that the rest of
19
+ this package's dependency tree is on. npm resolves it by hoisting a single
20
+ `@langchain/core` for everyone (verify with `npm ls @langchain/core` — there's
21
+ only one copy), so it's safe to ignore.
22
+
12
23
  Four commands, two machines:
13
24
 
14
25
  | Command | Runs where | Talks to |
package/package.json CHANGED
@@ -1,12 +1,15 @@
1
1
  {
2
2
  "name": "@stkxp/cli",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Export a Stack Expert Team as an encrypted, standalone-deployable bundle, and redeploy it on any Elasticsearch cluster.",
7
7
  "bin": {
8
8
  "stkxp": "./bin/stkxp.mjs"
9
9
  },
10
+ "engines": {
11
+ "node": ">=22.12.0"
12
+ },
10
13
  "files": [
11
14
  "README.md",
12
15
  "bin",