-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.36 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
52
53
54
55
56
57
58
59
60
61
{
"name": "hexonit-agent",
"version": "2.1.0-beta",
"description": "Hexonit — Autonomous AI Agent CLI with bilingual support, memory, self-think & multi-provider [BETA]",
"type": "module",
"bin": {
"hexonit": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsx src/cli/index.ts",
"start": "node dist/index.js",
"reset": "node dist/index.js reset",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@inquirer/prompts": "^8.4.3",
"axios": "^1.16.1",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"express": "^5.2.1",
"ora": "^8.1.0",
"puppeteer-core": "^25.0.4",
"ws": "^8.21.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^20.14.0",
"@types/ws": "^8.18.1",
"tsup": "^8.1.0",
"tsx": "^4.11.0",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"ai",
"agent",
"cli",
"autonomous",
"openrouter",
"openai",
"anthropic",
"groq",
"streaming",
"bilingual",
"memory",
"self-think",
"beta"
],
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/met1yann/hexonit-agent.git"
},
"bugs": {
"url": "https://github.com/met1yann/hexonit-agent/issues"
},
"homepage": "https://github.com/met1yann/hexonit-agent"
}