-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
54 lines (54 loc) · 1.29 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
45
46
47
48
49
50
51
52
53
54
{
"name": "assistant-cli",
"version": "1.4.0",
"description": "A command line tool to easily integrate OpenAI Chat GPT service",
"main": "./bin/cli",
"engines": {
"node": ">=16"
},
"bin": {
"assistant": "./bin/cli"
},
"scripts": {
"publish": "tsc && npm publish",
"start": "node .",
"build": "tsc",
"send-message": "tsc && ENV=dev ROUTE=SEND_MESSAGE electron ./dist/browser-commands/execute-browser.js padding",
"get-conversations": "tsc && ENV=dev ROUTE=GET_CONVERSATIONS electron ./dist/browser-commands/execute-browser.js",
"clean": "tsc && ENV=dev ROUTE=CLEAN electron ./dist/browser-commands/execute-browser.js"
},
"author": "Paolo Di Ciaula",
"license": "MIT",
"dependencies": {
"@types/uuid": "^9.0.0",
"axios": "^1.2.1",
"cli-md": "^1.2.0",
"cli-spinner": "^0.2.10",
"electron": "22.0.0",
"expiry-map": "^2.0.0",
"node-html-markdown": "^1.3.0",
"readline": "^1.3.0",
"uuid": "^9.0.0"
},
"keywords": [
"openai",
"chatgpt",
"CLI",
"terminal",
"gpt",
"gpt3",
"gpt4",
"chatbot",
"chat",
"machine learning",
"conversation",
"conversational ai",
"ai",
"ml",
"bot"
],
"devDependencies": {
"@types/node": "^18.11.18",
"typescript": "^4.9.4"
}
}