forked from zaber-dev/free-ai-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.15 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
{
"name": "@free-ai-gateway/cli",
"version": "1.0.0",
"description": "Developer CLI tool for Free-AI Gateway: interactive terminal AI, provider diagnostics, model querying, and gateway management.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"free-ai": "./dist/bin.js",
"freeai": "./dist/bin.js"
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "tsx --test"
},
"keywords": [
"ai",
"cli",
"terminal",
"chat",
"llm",
"free-tier",
"gateway",
"router",
"mcp"
],
"author": "Md. Mahedi Zaman Zaber <https://github.com/zaber-dev>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zaber-dev/free-ai-gateway.git",
"directory": "packages/cli"
},
"homepage": "https://github.com/zaber-dev/free-ai-gateway/tree/main/packages/cli#readme",
"files": [
"dist"
],
"dependencies": {
"@free-ai-gateway/core": "*",
"@free-ai-gateway/skills": "*"
},
"devDependencies": {
"@types/node": "^26.2.0",
"tsx": "^4.23.12",
"typescript": "^7.0.2"
}
}