-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 KB
/
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
44
{
"name": "@yonashailug/chatgpt-cli",
"version": "0.2.2",
"description": "Interactive Chatgpt cli made with nodejs",
"main": "bin/index.js",
"type": "module",
"preferGlobal": true,
"bin": {
"chatgpt-cli": "bin/index.js"
},
"scripts": {
"release": "npx bumpp --commit --push --tag && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yonashailug/chatgpt-cli.git"
},
"keywords": [
"chatgpt",
"cli"
],
"author": "Yonas G. <yonashailug@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yonashailug/chatgpt-cli/issues"
},
"homepage": "https://github.com/yonashailug/chatgpt-cli#readme",
"dependencies": {
"chalk": "^5.2.0",
"configstore": "^6.0.0",
"hyperlinker": "^1.0.0",
"inquirer": "^9.1.4",
"openai": "^3.1.0",
"rxjs": "^7.8.0",
"yargs": "^17.6.2"
},
"devDependencies": {
"eslint": "^8.31.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1"
}
}