-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.21 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.21 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
45
46
47
48
49
50
51
52
{
"name": "agent-chat-cli",
"module": "index.tsx",
"type": "module",
"private": true,
"scripts": {
"lint": "oxlint",
"start": "bun run src/index.tsx",
"start:client": "bun run src/index.tsx --client",
"server": "bun run src/mcp/stdio.ts",
"server:http": "bun run src/mcp/http.ts",
"test": "bun test",
"type-check": "tsc --noEmit",
"prepare": "husky"
},
"devDependencies": {
"@types/bun": "latest",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/react": "^19.1.16",
"husky": "^9.1.7",
"ink-testing-library": "^4.0.0",
"lint-staged": "^16.2.3",
"oxlint": "^1.20.0",
"prettier": "^3.6.2"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.50",
"@modelcontextprotocol/sdk": "^1.18.2",
"cors": "^2.8.5",
"cosmiconfig": "^9.0.0",
"easy-peasy": "^6.1.0",
"express": "^5.1.0",
"ink": "^6.5.1",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"marked": "^16.3.0",
"react": "^19.2.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"oxlint",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}