-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.89 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"private": true,
"version": "0.0.9",
"name": "twitch_text_to_speech_bot",
"description": "TextToSpeech bot for twitch.tv. and share all comment to discord channel. remember and forget function convert commented keywords to another string before passed to TTS.",
"license": "MIT",
"homepage": "https://github.com/allpaqa-jgk/twitch_text_to_speech_bot",
"bug": "https://github.com/allpaqa-jgk/twitch_text_to_speech_bot/issues",
"repository": "https://github.com/allpaqa-jgk/twitch_text_to_speech_bot",
"author": {
"name": "allpaqa-jgk"
},
"files": [
"LICENSE",
"README.md",
"config/*.sample",
".eslintrc.js",
".gitignore",
".vscode",
"data/.keep",
"data/emoteList.csv",
"tmp/.keep",
"build.js",
"main.js",
"update_emote.js",
"src",
"package.json",
"yarn.lock"
],
"main": "main.js",
"scripts": {
"start": "NODE_ENV=development node --unhandled-rejections=strict ./main.js",
"lint": "eslint src",
"update_emote": "node ./updateEmote.js",
"build": "node ./build.js"
},
"engines": {
"node": "^12.6.0",
"yarn": "~1.22.2"
},
"dependencies": {
"@discordjs/uws": "^10.149.0",
"@google-cloud/text-to-speech": "^3.3.1",
"config": "^3.3.6",
"csv": "^5.1",
"csv-parse": "^4.4",
"discord.js": "^11.6.0",
"forever": "^4.0.1",
"forever-monitor": "^3.0.3",
"lodash.merge": "4.6.2",
"play-sound": "^1.1",
"request": "^2.34",
"request-promise": "^4.2",
"tmi.js": "^1.4"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-cli": "^1.1.1",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"nexe": "^3.3.7",
"prettier": "^1.16.4"
}
}