-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.69 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
{
"name": "music-bot",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "node --experimental-specifier-resolution=node dist/index.js",
"build": "swc src --out-dir dist",
"dev": "nodemon src/index.ts",
"post-command": "ts-node src/deploy-commands.ts",
"lint": "eslint src/**/*.ts",
"type": "tsc --noEmit",
"test": "c8 mocha 'test/**/*.spec.ts'",
"test:w": "c8 mocha -w --parallel 'test/**/*.spec.ts'"
},
"author": "H01001000",
"contributors": [
"TBRO08"
],
"license": "MIT",
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/rest": "^1.3.0",
"@discordjs/voice": "^0.14.0",
"bufferutil": "^4.0.6",
"discord-api-types": "^0.37.12",
"discord.js": "^14.5.0",
"dotenv": "^16.0.3",
"ffmpeg-static": "^5.1.0",
"fluent-ffmpeg": "^2.1.2",
"libsodium-wrappers": "^0.7.9",
"utf-8-validate": "^6.0.0",
"winston": "^3.6.0",
"youtube-sr": "^4.3.4",
"ytdl-core": "^4.10.1",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@swc/cli": "0.1.61",
"@swc/core": "1.3.57",
"@types/chai": "4.3.4",
"@types/fluent-ffmpeg": "2.1.20",
"@types/mocha": "10.0.1",
"@types/node": "18.13.0",
"@types/sinon": "10.0.13",
"@typescript-eslint/eslint-plugin": "5.51.0",
"@typescript-eslint/parser": "5.51.0",
"c8": "7.12.0",
"chai": "4.3.7",
"eslint": "8.43.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.27.5",
"mocha": "10.2.0",
"nodemon": "2.0.20",
"proxyquire": "2.1.3",
"sinon": "15.0.1",
"ts-node": "10.9.1",
"typescript": "4.9.5"
},
"packageManager": "[email protected]"
}