forked from markokajzer/discord-soundbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.15 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
70
71
72
73
74
75
76
77
78
{
"name": "discord-soundbot",
"version": "2.1.0-dev",
"description": "A Soundboard for Discord",
"main": "dist/src/index.js",
"bin": {
"soundbot": "dist/bin/soundbot.js"
},
"repository": {
"type": "git",
"url": "https://github.com/markokajzer/discord-soundbot"
},
"keywords": [
"discord",
"bot",
"soundboard",
"voice",
"sounds",
"mp3",
"nodejs",
"typescript"
],
"author": "Marko Kajzer <[email protected]>",
"license": "MIT",
"dependencies": {
"@discordjs/opus": "0.1.0",
"discord.js": "12.2.0",
"fluent-ffmpeg": "2.1.2",
"i18n": "0.8.4",
"lodash": "4.17.15",
"lowdb": "1.0.0",
"replace-in-file": "4.2.0",
"ytdl-core": "1.0.7"
},
"optionalDependencies": {
"bufferutil": "4.0.1",
"erlpack": "discordapp/erlpack",
"libsodium-wrappers": "0.7.6"
},
"devDependencies": {
"@types/fluent-ffmpeg": "2.1.11",
"@types/glob": "7.1.1",
"@types/i18n": "0.8.6",
"@types/jest": "24.0.21",
"@types/lowdb": "1.0.8",
"@types/node": "12.12.30",
"@types/ws": "6.0.4",
"@typescript-eslint/eslint-plugin": "2.6.1",
"@typescript-eslint/parser": "2.6.1",
"eslint": "6.6.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.5.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "23.0.2",
"eslint-plugin-prettier": "3.1.1",
"jest": "24.9.0",
"prettier": "2.0.4",
"ts-jest": "24.1.0",
"ts-node": "8.6.2",
"typescript": "3.7.2"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"clean": "rm -rf dist",
"build": "tsc -p tsconfig.json",
"format:check": "prettier --config .prettierrc.yml --list-different '**/**.ts'",
"format": "prettier --config .prettierrc.yml --write '**/**.ts'",
"lint": "eslint --rulesdir ./vendor/rules/ -c .eslintrc.yml --ext ts .",
"postbuild": "ts-node lib/postbuild.ts",
"serve": "node dist/bin/soundbot.js",
"start": "npm run build && npm run serve",
"translate": "ts-node lib/checkTranslations.ts",
"rebuild": "npm run clean && npm run build",
"release": "npm run rebuild && npm run lint && npm run format"
}
}