-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.21 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
{
"private": true,
"name": "voicevox_discord_tts_bot",
"version": "0.2.0",
"description": "this is tts bot which use voicevox",
"main": "index.ts",
"license": "LGPL-3.0",
"author": "y-chan <[email protected]>",
"scripts": {
"start": "ts-node -r tsconfig-paths/register index.ts",
"dev": "ts-node-dev -r tsconfig-paths/register index.ts",
"lint": "eslint ."
},
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.17.0",
"@types/node": "^16.11.0",
"@types/validator": "^13.6.3",
"discord.js": "^14.15.2",
"ffmpeg-static": "^4.4.0",
"node-gyp": "^8.3.0",
"node-voicevox-engine": "^0.2.2",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.7.0",
"sequelize-typescript": "^2.1.1",
"sqlite3": "^5.0.2",
"ts-node": "^10.3.0",
"tsconfig-paths": "^3.11.0",
"tweetnacl": "^1.0.3",
"typescript": "^4.4.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.4.1",
"ts-node-dev": "^1.1.8"
}
}