-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.11 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.11 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
{
"name": "agent-cli",
"version": "1.1.5",
"description": "AI Agent CLI - Beautiful TUI for launching Claude with multiple providers",
"type": "module",
"main": "dist/cli.js",
"bin": {
"agent": "./dist/cli.js",
"ai": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.tsx",
"start": "node dist/cli.js",
"watch": "tsc --watch",
"link": "npm run build && npm link",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"cli",
"ai",
"agent",
"claude",
"tui"
],
"author": "galpratama",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"conf": "^13.0.1",
"ink": "^5.0.1",
"ink-select-input": "^6.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"react": "^18.3.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "^18.3.12",
"@vitest/coverage-v8": "^4.0.16",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^4.0.16"
},
"engines": {
"node": ">=18"
}
}