-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.63 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.63 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
71
72
73
74
75
{
"name": "seron-cli",
"version": "1.1.2",
"description": "Seron CLI - Chat with multiple AI models from your terminal with automatic code execution",
"main": "dist/index.js",
"bin": {
"seron": "dist/cli.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"keywords": [
"seron",
"ai",
"cli",
"openai",
"claude",
"anthropic",
"ollama",
"grok",
"xai",
"huggingface",
"chatbot",
"terminal",
"typescript",
"gpt",
"llama",
"ai-chat",
"ai-assistant",
"command-line"
],
"author": "NexiLoop",
"license": "MIT",
"homepage": "https://github.com/nexiloop/seron-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nexiloop/seron-cli.git"
},
"bugs": {
"url": "https://github.com/nexiloop/seron-cli/issues"
},
"dependencies": {
"axios": "^1.6.2",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"conf": "^12.0.0",
"dotenv": "^16.3.1",
"figlet": "^1.7.0",
"gradient-string": "^2.0.2",
"inquirer": "^9.2.12",
"openai": "^4.24.1",
"ora": "^7.0.1",
"ollama": "^0.5.0",
"@anthropic-ai/sdk": "^0.17.1",
"@huggingface/inference": "^2.6.1"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/gradient-string": "^1.1.6",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.5",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"@types/jest": "^29.5.8"
},
"engines": {
"node": ">=16.0.0"
}
}