-
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) · 874 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 874 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-claude-code",
"version": "0.0.1",
"description": "An AI agent that automates coding tasks by running commands and handling files.",
"type": "module",
"bin": {
"mcc": "./src/index.ts"
},
"scripts": {
"dev": "bun run src/index.ts",
"start": "bun run src/index.ts",
"build": "bun build --compile --minify --sourcemap ./src/index.ts --outfile ./dist/mcc",
"link": "sudo ln -sf $(pwd)/dist/mcc /usr/local/bin/mcc"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.34",
"@clack/prompts": "^1.0.0",
"ai": "^6.0.99",
"bash-tool": "^1.3.15",
"just-bash": "^2.11.1",
"marked": "15",
"marked-terminal": "^7.3.0",
"picocolors": "^1.1.0"
},
"devDependencies": {
"@types/json-schema": "^7.0.15",
"@types/marked-terminal": "^6.1.1",
"@types/node": "^25.3.0",
"typescript": "^5.9.3"
}
}