-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 884 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 884 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
37
38
39
40
{
"name": "cohere-cli",
"version": "1.0.0",
"description": "A beautiful CLI for chatting with Cohere AI models",
"main": "index.js",
"bin": {
"cohere": "index.js"
},
"scripts": {
"start": "node index.js"
},
"keywords": [
"cohere",
"ai",
"cli",
"chat"
],
"author": "Kunal Kongkan Kashyap",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kunalkcube/cohere-cli.git"
},
"homepage": "https://github.com/kunalkcube/cohere-cli#readme",
"dependencies": {
"boxen": "^5.1.2",
"chalk": "^4.1.2",
"cli-highlight": "^2.1.11",
"commander": "^8.3.0",
"dotenv": "^16.0.0",
"figlet": "^1.5.2",
"gradient-string": "^2.0.1",
"he": "^1.2.0",
"inquirer": "^8.2.6",
"markdown-it": "^13.0.1",
"node-fetch": "^2.6.7",
"ora": "^5.4.1",
"table": "^6.8.1"
}
}