-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.19 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": "agentclimenu",
"version": "0.3.0",
"description": "One menu to start new Claude/Codex sessions in a project, or search + resume existing ones",
"type": "module",
"license": "MIT",
"author": "Roy Padina",
"homepage": "https://github.com/roypadina/AgentCliMenu#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/roypadina/AgentCliMenu.git"
},
"bugs": "https://github.com/roypadina/AgentCliMenu/issues",
"bin": {
"agent-cli-menu": "bin/agent-cli-menu",
"acm": "bin/acm"
},
"files": [
"dist",
"bin",
"config.example.toml",
"README.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"ink": "^5.0.1",
"ink-text-input": "^6.0.0",
"react": "^18.3.1",
"smol-toml": "^1.6.1"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@types/react": "^18.3.0",
"ink-testing-library": "^4.0.0",
"tsup": "^8.3.0",
"tsx": "^4.22.3",
"typescript": "^5.5.0",
"vitest": "^2.1.0"
}
}