-
-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
76 lines (76 loc) · 1.95 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
{
"name": "discord-soundbot",
"version": "main",
"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.9.0",
"@discordjs/voice": "^0.15.0",
"discord.js": "^14.8.0",
"fluent-ffmpeg": "^2.1.2",
"i18n": "0.13.2",
"lodash": "4.17.21",
"lowdb": "1.0.0",
"module-alias": "^2.2.3",
"ytdl-core": "^4.11.4"
},
"optionalDependencies": {
"bufferutil": "^4.0.7",
"libsodium-wrappers": "^0.7.11"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/fluent-ffmpeg": "2.1.16",
"@types/glob": "7.1.3",
"@types/i18n": "0.8.8",
"@types/jest": "^29.5.0",
"@types/lowdb": "1.0.8",
"@types/node": "^20.0.0",
"@types/node-fetch": "^2.5.7",
"@types/ws": "7.4.0",
"jest": "^29.5.0",
"node-fetch": "^2.6.1",
"ts-jest": "^29.0.5",
"typescript": "4.9.5"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist",
"format": "npx @biomejs/biome format --write .",
"format:ci": "npx @biomejs/biome format .",
"lint": "npx @biomejs/biome lint --write .",
"lint:ci": "npx @biomejs/biome lint .",
"rebuild": "npm run clean && npm run build",
"release": "npm run rebuild && npm run lint && npm run format",
"serve": "node -r module-alias/register dist/bin/soundbot.js",
"start": "npm run build && npm run serve",
"test": "jest",
"translations:download": "ts-node lib/downloadTranslations.ts",
"typecheck": "tsc --noEmit"
},
"_moduleAliases": {
"~": "./dist/src"
}
}