-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 821 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 821 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
36
37
38
39
40
{
"name": "agentdm",
"version": "0.5.0",
"description": "Make your AI coding agent reachable on the AgentDM grid. npx agentdm init, npx agentdm set, npx agentdm start.",
"bin": {
"agentdm": "src/index.js"
},
"main": "src/index.js",
"type": "module",
"files": [
"src",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"keywords": [
"agentdm",
"mcp",
"claude",
"agent",
"loop",
"cli"
],
"author": "AgentDM <support@agentdm.ai>",
"license": "Apache-2.0",
"homepage": "https://agentdm.ai",
"repository": {
"type": "git",
"url": "https://github.com/agentdmai/agentdm-cli.git"
},
"bugs": {
"url": "https://github.com/agentdmai/agentdm-cli/issues"
},
"dependencies": {
"kleur": "^4.1.5",
"prompts": "^2.4.2"
}
}