-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1014 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1014 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "twitchbot",
"version": "1.0.0",
"description": "",
"main": "./src/app.ts",
"scripts": {
"tsc": "tsc",
"dev": "ts-node-dev --respawn ./src/app.ts",
"prod": "tsc && node ./build/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"twitch",
"bot"
],
"author": "lucalas",
"license": "ISC",
"bugs": {
"url": "https://github.com/lucalas/NodeTwitchBot"
},
"homepage": "https://github.com/lucalas/NodeTwitchBot",
"dependencies": {
"@types/dotenv": "^8.2.0",
"@types/websocket": "^1.0.1",
"@types/ws": "^7.4.0",
"axios": "^0.21.0",
"dotenv": "^8.2.0",
"http": "^0.0.1-security",
"net": "^1.0.2",
"tmi.js": "^1.5.0",
"ts-node-dev": "^1.0.0",
"websocket": "^1.0.33",
"ws": "^6.1.3"
},
"devDependencies": {
"@types/node": "^14.14.20",
"@types/tmi.js": "^1.4.2",
"tslint": "^6.1.3",
"typescript": "^4.1.2"
}
}