-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "simple-helix-api",
"version": "4.1.9",
"description": "The Simple Helix API allows developers to easily develop applications for Twitch",
"main": "./dist/index.js",
"types": "./types",
"author": "Maxim <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "1.7.2",
"irc-message": "^3.0.2",
"irc-message-ts": "^3.0.6",
"reconnecting-websocket": "^4.4.0",
"ws": "^8.17.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
},
"resolutions": {
"minimist": "^1.2.6",
"json5": "^2.2.3"
},
"repository": {
"type": "git",
"url": "https://github.com/PurpleHorrorRus/simple-helix-api"
},
"keywords": [
"Twitch",
"Helix",
"Helix API",
"Broadcasts",
"Streams"
],
"scripts": {
"lint": "eslint ./src --ext .ts",
"build": "tsc",
"test": "jest"
}
}