-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 855 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
42
43
{
"name": "chatgpt-console",
"version": "0.1.4",
"description": "ChatGPT for terminal",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node index.js"
},
"bin": {
"chatgpt": "./index.js"
},
"keywords": [
"chatGPT",
"api",
"console",
"proxy",
"terminal"
],
"author": "longlongago2",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"app-root-path": "^3.1.0",
"axios": "^1.4.0",
"body-parser": "^1.20.2",
"chalk": "^5.2.0",
"dotenv": "^16.2.0",
"express": "^4.18.2",
"open": "^9.1.0",
"openai": "^3.3.0",
"ora": "^6.3.1",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"eslint": "^8.42.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"prettier": "2.8.8"
}
}