-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.37 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
44
{
"name": "seekcode-cli",
"version": "1.0.0",
"description": "Orchestration layer for AI coding – project intelligence, multi-step planning, smart tools, powered by DeepSeek Web Gateway",
"main": "src/index.js",
"bin": {
"seekcode": "src/seekcode.js"
},
"scripts": {
"release:patch": "node scripts/publish.js patch",
"release:minor": "node scripts/publish.js minor",
"release:major": "node scripts/publish.js major",
"release": "node scripts/publish.js",
"analyze": "node src/analyze.js",
"semantic-search": "node src/semantic-search.js",
"start": "node src/index.js",
"agent:evaluate": "node src/seekcode.js benchmark run . --agent",
"prepublishOnly": "node src/analyze.js . && echo '✅ Pre-publish checks passed'",
"gui": "node ../seekcode-gui/server.js"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^15.0.0",
"cors": "^2.8.6",
"deepseek-web-gateway": "file:../deepseek-web-gateway",
"enquirer": "^2.4.1",
"express": "^4.22.2",
"fast-glob": "^3.3.2",
"ignore": "^5.3.1",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"node-fetch": "^2.7.0",
"ora": "^5.4.1",
"tree-sitter": "^0.21.1",
"tree-sitter-javascript": "^0.21.1",
"tree-sitter-typescript": "^0.21.1"
},
"keywords": [],
"author": "",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
}
}