hejaz-ai-cli 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +88 -0
- package/dist/cli.js +270 -0
- package/package.json +58 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "hejaz-ai-cli",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Hejaz AI CLI — Claude Code-like terminal AI assistant with OS Agent, MCP, and knowledge base integration",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"hejaz": "dist/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "node esbuild.config.js",
|
|
11
|
+
"dev": "node esbuild.config.js --watch",
|
|
12
|
+
"start": "node dist/cli.js",
|
|
13
|
+
"typecheck": "tsc --noEmit",
|
|
14
|
+
"test": "vitest run",
|
|
15
|
+
"prepublishOnly": "npm run build"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"ai",
|
|
19
|
+
"cli",
|
|
20
|
+
"assistant",
|
|
21
|
+
"agent",
|
|
22
|
+
"mcp",
|
|
23
|
+
"os-agent",
|
|
24
|
+
"terminal",
|
|
25
|
+
"hejaz"
|
|
26
|
+
],
|
|
27
|
+
"author": "Hejaz AI Gateway Team",
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "git+https://github.com/hejaz/ai-gateway.git",
|
|
32
|
+
"directory": "sdk/cli"
|
|
33
|
+
},
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=18"
|
|
36
|
+
},
|
|
37
|
+
"files": [
|
|
38
|
+
"dist/"
|
|
39
|
+
],
|
|
40
|
+
"dependencies": {},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"ink": "^5.1.0",
|
|
43
|
+
"ink-text-input": "^6.0.0",
|
|
44
|
+
"ink-spinner": "^5.0.0",
|
|
45
|
+
"react": "^18.3.1",
|
|
46
|
+
"@types/react": "^18.3.12",
|
|
47
|
+
"@types/node": "^22.10.0",
|
|
48
|
+
"meow": "^13.2.0",
|
|
49
|
+
"fast-glob": "^3.3.3",
|
|
50
|
+
"marked": "^15.0.0",
|
|
51
|
+
"marked-terminal": "^7.3.0",
|
|
52
|
+
"cli-highlight": "^2.1.11",
|
|
53
|
+
"chalk": "^5.4.1",
|
|
54
|
+
"typescript": "^5.7.0",
|
|
55
|
+
"esbuild": "^0.24.0",
|
|
56
|
+
"vitest": "^2.1.0"
|
|
57
|
+
}
|
|
58
|
+
}
|