-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 696 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 696 Bytes
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
{
"name": "self-improving-debug-loop",
"version": "1.0.0",
"description": "A self-improving debugging loop using LangGraph and OpenAI",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"demo": "tsx examples/demo.ts"
},
"keywords": ["langgraph", "openai", "debugging", "self-improving"],
"license": "MIT",
"dependencies": {
"@langchain/core": "^0.3.0",
"@langchain/langgraph": "^0.2.0",
"chalk": "^5.3.0",
"dotenv": "^16.4.5",
"openai": "^4.70.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}