-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.54 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
{
"name": "@matteopolak/jukebox",
"version": "1.2.0",
"description": "",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "prisma generate && tsc --project tsconfig.json && tsc-alias -p tsconfig.json && node build/index.js",
"build": "prisma generate && tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
"check": "tsc --project tsconfig.json --noEmit && eslint --ext .ts src",
"eslint": "eslint --ext .ts src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matteopolak/jukebox.git"
},
"author": "Matthew Polak <matteopolak@hotmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/matteopolak/jukebox/issues"
},
"homepage": "https://github.com/matteopolak/jukebox#readme",
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.11.0",
"@distube/ytdl-core": "^4.13.3",
"@prisma/client": "^4.16.2",
"axios": "^0.27.2",
"discord-ytdl-core": "^5.0.4",
"discord.js": "14.14.1",
"dotenv": "^16.3.1",
"fast-sort": "^3.4.0",
"fluent-ffmpeg": "^2.1.2",
"libsodium-wrappers": "^0.7.13",
"node-html-parser": "^5.4.2",
"prism-media": "^1.3.5",
"soundcloud-downloader": "^1.0.0",
"string-comparison": "^1.2.0",
"ytdl-core": "npm:@distube/ytdl-core@^4.13.3"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.24",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.54.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"prisma": "^4.16.2",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.2"
}
}