forked from ScottMellors/twocket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 718 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 718 Bytes
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
{
"name": "twocket",
"version": "1.0.1",
"description": "A handy wrapper for the Twitch EventSub Websocket API.",
"main": "lib/Twocket.js",
"types": "lib/Twocket.d.ts",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ScottMellors/twocket.git"
},
"bugs": {
"url": "https://github.com/ScottMellors/twocket/issues"
},
"author": "GhostlyTuna <me@ghostlytuna.co.uk>",
"license": "MIT",
"dependencies": {
"node-fetch": "^2.6.1",
"ws": "^8.11.0"
},
"devDependencies": {
"@types/node-fetch": "^2.6.2",
"@types/ws": "^8.5.3",
"typescript": "^4.9.3"
}
}