forked from jucasoliveira/terminalGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 978 Bytes
/
package.json
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
{
"name": "terminalgpt",
"version": "1.0.7",
"main": "index.js",
"description": "Get GPT like chatGPT on your terminal",
"scripts": {
"test": "jest --ci --coverage --verbose",
"chat": "node bin/index.js chat --engine text-davinci-002 --temperature 0.7",
"delete": "node bin/index.js delete"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jucasoliveira/terminalGPT.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jucasoliveira/terminalGPT/issues"
},
"bin": "bin/index.js",
"homepage": "https://github.com/jucasoliveira/terminalGPT#readme",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.4.1",
"crypto": "^1.0.1",
"gradient-string": "^2.0.2",
"lowdb": "^5.0.5",
"openai": "^3.1.0",
"ora": "^5.4.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.31.0",
"jest": "^29.3.1"
}
}