-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 745 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 745 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
{
"name": "mini-coding-agent",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "迷你 coding agent 玩具:引擎自写(loop/llmRequester/toolExecutor/wire),TUI 照搬 kimi-code 分层",
"bin": {
"mini-agent": "./src/cli/main.ts"
},
"scripts": {
"dev": "tsx src/cli/main.ts",
"agent": "tsx src/cli/main.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"engines": {
"node": ">=22.19.0"
},
"dependencies": {
"chalk": "^5.4.1",
"get-east-asian-width": "1.6.0",
"marked": "18.0.5"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@xterm/headless": "5.5.0",
"tsx": "^4.20.0",
"typescript": "^5.9.0",
"vitest": "^3.2.0"
}
}