-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 918 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 918 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
30
31
32
33
34
35
36
37
38
{
"name": "deep-code-research",
"version": "0.1.0",
"description": "LLM-native code research agent that explores ecosystems via hierarchical multi-agent architecture",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"deep-code-research": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src tests",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.32.0",
"dotenv": "^17.2.3"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/WindChimeRan/deep_code_research.git"
}
}