-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
package.json
31 lines (31 loc) · 947 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
{
"name": "Twitch Chat GPT",
"version": "1.1.0",
"description": "The Twitch Chat GPT is a bot that uses OpenAI's GPT-3.5 to generate messages based on the chat of a Twitch channel. It can be used to generate messages for a chatbot, or to generate, for example, a chatbot for a game.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pedrojlazevedo/twitch-chatgpt.git"
},
"author": "Pedro Azevedo",
"license": "ISC",
"bugs": {
"url": "https://github.com/pedrojlazevedo/twitch-chatgpt/issues"
},
"homepage": "https://github.com/pedrojlazevedo/twitch-chatgpt#readme",
"dependencies": {
"cron": "^3.1.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-ws": "^5.0.2",
"openai": "^4.20.1",
"promisify": "^0.0.3",
"request": "^2.88.2",
"tmi.js": "^1.8.5",
"ws": "^8.14.2"
}
}