-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 872 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 872 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
28
29
{
"name": "gendb",
"version": "1.0.0",
"description": "A multi-agent LLM system that generates customized database execution code for user-provided SQL workloads — no pre-built DBMS required.",
"main": "src/gendb/orchestrator.mjs",
"type": "module",
"scripts": {
"start": "node src/gendb/orchestrator.mjs",
"test": "node src/gendb/orchestrator.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SolidLao/GenDB.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SolidLao/GenDB/issues"
},
"homepage": "https://github.com/SolidLao/GenDB#readme",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.81",
"@anthropic-ai/claude-code": "^2.1.81",
"@anthropic-ai/sdk": "^0.80.0",
"@openai/codex-sdk": "^0.114.0",
"openai": "^6.33.0"
}
}