@stkxp/cli 0.1.2 → 0.1.4
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 +11 -0
- package/package.json +6 -3
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,11 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stkxp/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
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
|
-
"stkxp": "
|
|
8
|
+
"stkxp": "bin/stkxp.mjs"
|
|
9
|
+
},
|
|
10
|
+
"engines": {
|
|
11
|
+
"node": ">=22.12.0"
|
|
9
12
|
},
|
|
10
13
|
"files": [
|
|
11
14
|
"README.md",
|
|
@@ -86,7 +89,7 @@
|
|
|
86
89
|
"stripe": "^22.0.1",
|
|
87
90
|
"swagger-ui-express": "^5.0.1",
|
|
88
91
|
"undici": "^7.21.0",
|
|
89
|
-
"uuid": "^11.1.
|
|
92
|
+
"uuid": "^11.1.1",
|
|
90
93
|
"winston": "^3.19.0",
|
|
91
94
|
"winston-daily-rotate-file": "^5.0.0",
|
|
92
95
|
"ws": "^8.19.0",
|