-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 875 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
39
40
41
{
"name": "1llg-terminal-gpt",
"version": "1.2.5",
"description": "chat with chatGPT model like 'turbo' on your terminal",
"main": "./bin/index.js",
"bin": {
"1gpt": "./bin/index.js"
},
"keywords": [
"terminal",
"cli",
"chatGPT",
"GPT",
"GPT model",
"OpenAI",
"turbo",
"davinci"
],
"homepage": "https://github.com/codeacme17/1llg-terminal-GPT#readme",
"author": "leyoonafr",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"lint": "eslint . --ext .js"
},
"dependencies": {
"@fern-api/openai": "^0.0.23",
"boxen": "^5.1.2",
"cfonts": "^3.1.1",
"chalk": "^4.1.2",
"cli-highlight": "^2.1.11",
"commander": "^9.4.1",
"inquirer": "^8.2.5",
"openai": "^3.2.1",
"shelljs": "^0.8.5"
},
"devDependencies": {
"eslint": "^8.35.0",
"husky": "^8.0.0"
}
}