@tradejs/node 2.0.5 → 2.0.6

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/dist/cli.js CHANGED
@@ -7278,7 +7278,7 @@ var screenDashboard = async (signal, projectRoot, userName = "root") => {
7278
7278
  "screenshot page error: %s %sm (%s)",
7279
7279
  symbol,
7280
7280
  interval,
7281
- error.message || String(error)
7281
+ error instanceof Error ? error.message : String(error)
7282
7282
  );
7283
7283
  });
7284
7284
  page.on("error", (error) => {
package/dist/cli.mjs CHANGED
@@ -277,7 +277,7 @@ var screenDashboard = async (signal, projectRoot, userName = "root") => {
277
277
  "screenshot page error: %s %sm (%s)",
278
278
  symbol,
279
279
  interval,
280
- error.message || String(error)
280
+ error instanceof Error ? error.message : String(error)
281
281
  );
282
282
  });
283
283
  page.on("error", (error) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tradejs/node",
3
- "version": "2.0.5",
3
+ "version": "2.0.6",
4
4
  "description": "Node-only runtime for the TradeJS TypeScript framework: strategies, backtests, Pine strategy loading, and plugin registries.",
5
5
  "keywords": [
6
6
  "tradejs",
@@ -65,23 +65,23 @@
65
65
  }
66
66
  },
67
67
  "dependencies": {
68
- "@langchain/core": "^1.1.42",
69
- "@langchain/openai": "^1.4.5",
70
- "@tradejs/core": "^2.0.5",
71
- "@tradejs/infra": "^2.0.5",
72
- "@tradejs/types": "^2.0.5",
68
+ "@langchain/core": "^1.2.3",
69
+ "@langchain/openai": "^1.5.5",
70
+ "@tradejs/core": "^2.0.6",
71
+ "@tradejs/infra": "^2.0.6",
72
+ "@tradejs/types": "^2.0.6",
73
73
  "chalk": "4.1.2",
74
- "ioredis": "5.8.0",
74
+ "ioredis": "5.11.1",
75
75
  "pinets": "0.8.12",
76
76
  "progress": "^2.0.3",
77
- "puppeteer": "24.15.0",
77
+ "puppeteer": "24.43.1",
78
78
  "ts-node": "^10.9.2",
79
79
  "tsconfig-paths": "^4.2.0"
80
80
  },
81
81
  "devDependencies": {
82
82
  "@types/node": "^24",
83
83
  "tsup": "^8.5.1",
84
- "typescript": "^5.1"
84
+ "typescript": "^5.9"
85
85
  },
86
86
  "scripts": {
87
87
  "build": "tsup",