-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 738 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 738 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
{
"name": "agent51",
"version": "0.0.7",
"description": "A ultra-lightweight AI agent that communicates with the OpenRouter API and executes shell commands.",
"main": "index.js",
"type": "module",
"bin": {
"agent51": "./index.js"
},
"files": [
"index.js",
"README.md"
],
"scripts": {
"start": "node index.js"
},
"keywords": [
"ai",
"agent",
"cli",
"openrouter",
"agent51"
],
"author": "A.Aurelions",
"repository": {
"type": "git",
"url": "https://github.com/aaurelions/agent51.git"
},
"license": "CC0-1.0",
"dependencies": {
"axios": "^1.11.0",
"chalk": "^5.6.0",
"marked": "^13.0.3",
"marked-terminal": "^7.3.0",
"boxen": "^8.0.1"
}
}