-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.56 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
62
63
64
65
66
67
68
69
70
{
"name": "@aisa-one/cli",
"version": "0.6.1",
"description": "CLI for the AIsa unified AI infrastructure platform - one API key for 80+ LLMs and 900+ endpoints across finance, search, social, and video APIs",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE",
"vscode-extension/aisa-vscode.vsix"
],
"bin": {
"aisa": "dist/index.js"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"dev": "tsc -w",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"package:smoke": "node scripts/package-smoke.mjs",
"prepack": "npm run build"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"conf": "^12.0.0",
"ora": "^8.0.1",
"proper-lockfile": "^4.1.2",
"smol-toml": "^1.8.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/proper-lockfile": "^4.1.4",
"typescript": "^5.0.0",
"vitest": "^3.2.4"
},
"keywords": [
"aisa",
"ai",
"llm",
"cli",
"api",
"gateway",
"skills",
"mcp",
"openai-compatible",
"ai-agents"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AIsa-team/cli.git"
},
"bugs": {
"url": "https://github.com/AIsa-team/cli/issues"
},
"homepage": "https://aisa.one",
"author": "AIsa Team <support@aisa.one> (https://aisa.one)"
}