-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.22 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
{
"name": "twitch",
"description": "Twitch server for Streamy.gg, all twitch related events will be handled on this server such as chat events, mod actions and everything else that happens on Twitch. This server will comunicate with the main backend to execute events from the backend as well as relay events to the backend.",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"dev": "nodemon src/index.ts",
"start": "ts-node src/index.ts",
"format": "prettier --write src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StreamyGG/twitch.git"
},
"keywords": [
"streamy.gg"
],
"author": "Bryden Calaway",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.0.0",
"@types/ws": "^8.5.12",
"nodemon": "^3.1.4",
"typescript": "^5.5.4"
},
"dependencies": {
"@streamygg/tmi.js": "^2.0.0",
"@twurple/api": "^7.1.0",
"@twurple/auth": "^7.1.0",
"@twurple/eventsub-ws": "^7.1.0",
"dotenv": "^16.4.5",
"redis": "^4.7.0",
"twitch": "^4.6.7",
"twitch-js": "^2.0.0-beta.45",
"ws": "^8.18.0"
},
"bugs": {
"url": "https://github.com/StreamyGG/twitch/issues"
},
"homepage": "https://github.com/StreamyGG/twitch#readme"
}