This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.55 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
48
49
50
51
52
53
54
55
56
{
"name": "twitch-core",
"version": "1.0.0-rc30",
"description": "Twitch bot command client",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "nodemon",
"build": "rimraf dist/ && tsc",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"keywords": [
"twitch",
"bot",
"chatbot"
],
"author": {
"url": "https://crashmax.ru",
"email": "sys@crashmax.ru",
"name": "Vitalij Ryndin"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/crashmax-dev/twitch-core.git"
},
"bugs": {
"url": "https://github.com/crashmax-dev/twitch-core/issues"
},
"homepage": "https://github.com/crashmax-dev/twitch-core",
"devDependencies": {
"@types/express": "^4.17.12",
"@types/morgan": "^1.9.2",
"@types/node": "^15.12.4",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"dotenv": "^10.0.0",
"eslint": "^7.28.0",
"nodemon": "^2.0.7",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"dependencies": {
"@types/lowdb": "^1.0.11",
"@types/tmi.js": "^1.7.2",
"express": "^4.17.1",
"lowdb": "^1.0.0",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"recursive-readdir-sync": "^1.0.6",
"tmi.js": "^1.8.3",
"winston": "^3.3.3"
}
}