-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 837 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 837 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
{
"name": "Simple-CLI",
"version": "Alpha0.53.a1",
"description": "CLI AI Agent supporting multiple LLM APIs",
"main": "dist/index.js",
"type": "module",
"bin": {
"spc": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "vitest"
},
"author": "HimService/Him-AI",
"license": "LICENSE.txt",
"dependencies": {
"@google/generative-ai": "^0.11.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"conf": "^12.0.0",
"inquirer": "^9.2.16",
"marked-terminal": "^7.3.0",
"openai": "^4.29.0",
"ora": "^8.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.24",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
}
}