-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.86 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "peel",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Peel — Hedera Agentic Society hackathon. Market + Programme workstreams.",
"scripts": {
"h1:smoke": "tsx market/scripts/h1-smoke.ts",
"h3:one-kitchen": "tsx market/scripts/run-one-kitchen.ts",
"h3:viewer": "tsx market/viewer/server.ts",
"h4:scan": "tsx market/scripts/run-h4-scan.ts",
"h6:three-kitchen": "tsx market/scripts/run-three-agents.ts",
"h7:app": "tsx market/viewer/app-server.ts",
"h5:trade": "tsx market/scripts/run-h5-trade.ts",
"bootstrap:tokens": "tsx market/scripts/bootstrap-tokens.ts",
"market:run": "tsx market/scripts/run-three-agents.ts",
"market:serve": "npx http-server market -p 5173 -c-1",
"programme:run": "tsx programme/scripts/run-period-close.ts",
"typecheck": "tsc --noEmit"
},
"_dep_note": "hedera-agent-kit@3.8.2 pins @langchain/core=1.1.24 exact internally, but that version predates @langchain/core's /utils/standard_schema export which @langchain/groq@1.2.0 imports. Upgrading core to 1.1.39 (latest 1.1.x) gets standard_schema. npm overrides forces that version everywhere INCLUDING nested hedera-agent-kit deps, preventing dual installs and satisfying all runtime imports. @langchain/openai stays pinned to the version hedera-agent-kit expects since nothing else needs a newer one.",
"dependencies": {
"@hashgraph/sdk": "2.80.0",
"@langchain/core": "1.1.39",
"@langchain/groq": "^1.2.0",
"@langchain/langgraph": "^1.2.0",
"@langchain/openai": "1.2.7",
"dotenv": "^16.4.5",
"hedera-agent-kit": "^3.8.2",
"langchain": "1.2.24",
"zod": "3.25.76"
},
"overrides": {
"@langchain/core": "1.1.39",
"@langchain/openai": "1.2.7",
"@hashgraph/sdk": "2.80.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}