-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.48 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
53
54
55
56
57
58
{
"name": "openagent",
"version": "0.1.64-20260516",
"description": "Open-source agentic coding CLI — multi-provider, token-efficient, extensible",
"type": "module",
"bin": {
"openagent": "./bin/openagent"
},
"main": "./dist/cli.mjs",
"scripts": {
"dev": "bun run src/entrypoints/cli.tsx",
"build": "bun run scripts/build.ts",
"start": "node dist/cli.mjs"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@google/generative-ai": "^0.24.0",
"@mistralai/mistralai": "^1.5.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"chalk": "^5.4.1",
"cli-highlight": "^2.1.11",
"clipboardy": "^4.0.0",
"commander": "^13.1.0",
"conf": "^13.1.0",
"diff": "^7.0.0",
"fast-glob": "^3.3.3",
"figures": "^6.1.0",
"glob": "^11.0.1",
"groq-sdk": "^0.9.0",
"ink": "^5.2.0",
"ink-select-input": "^6.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"openai": "^4.86.0",
"ora": "^8.2.0",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"snoowrap": "^1.23.0",
"string-width": "^7.2.0",
"strip-ansi": "^7.1.0",
"uuid": "^11.1.0",
"wrap-ansi": "^9.0.0"
},
"devDependencies": {
"@types/diff": "^7.0.2",
"@types/node": "^22.15.3",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.3.12",
"@types/uuid": "^10.0.0",
"bun-types": "^1.2.12",
"typescript": "^5.8.3"
}
}