-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 848 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 848 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
32
33
34
35
{
"name": "@amit-paz/agentkit-cli",
"version": "0.1.0",
"description": "Unified CLI for the AgentKit ecosystem — manage all your AI agent services from one tool",
"main": "dist/cli.js",
"files": ["dist", "README.md"],
"bin": {
"agentkit": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"test": "vitest run"
},
"keywords": ["agentkit", "cli", "ai", "agents", "devtools"],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/agentkitai/agentkit-cli"
},
"type": "commonjs",
"dependencies": {
"@inquirer/prompts": "^8.2.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.2.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}