This repository has been archived by the owner on Oct 28, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
114 lines (114 loc) · 3.29 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "discord-musicbot",
"version": "1.0.0",
"description": "Typescript Discord Music Bot",
"main": "dist/index.js",
"license": "MIT",
"author": "Bernd Storath <[email protected]>",
"repository": {
"url": "git+https://github.com/kaaaxcreators/Discord-MusicBot.git",
"type": "git"
},
"homepage": "https://github.com/kaaaxcreators/Discord-MusicBot#readme",
"bugs": {
"url": "https://github.com/kaaaxcreators/Discord-MusicBot/issues"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"release": "npx semantic-release",
"deploy": "tsc && node dist/index.js",
"lint": "eslint . --ignore-path ./.gitignore && stylelint **/*.{css,html} --ignore-path ./.gitignore",
"lint:fix": "eslint . --ignore-path ./.gitignore --fix && stylelint **/*.{css,html} --ignore-path ./.gitignore --fix",
"docs": "cross-env DOCS=true npm run deploy",
"dev": "ts-node src/index.ts"
},
"engines": {
"node": ">=16.x"
},
"dependencies": {
"@discordjs/opus": "^0.7.0",
"@oauth-everything/passport-discord": "^1.0.2",
"didyoumean2": "^5.0.0",
"discord-oauth2": "^2.10.0",
"discord-ytdl-core": "^5.0.4",
"discord.js": "^12.5.3",
"dotenv-safe": "^8.2.0",
"express": "^4.18.1",
"express-handlebars": "^6.0.6",
"express-rate-limit": "^6.4.0",
"express-session": "^1.17.3",
"ffmpeg": "0.0.4",
"ffmpeg-static": "^5.0.0",
"i18next": "^22.0.3",
"jsoning": "^0.13.23",
"lyrics-finder": "^21.7.0",
"millify": "^4.0.0",
"moment": "^2.29.3",
"passport": "^0.6.0",
"passport-oauth2-refresh": "^2.1.0",
"pretty-ms": "^8.0.0",
"socket.io": "^4.5.1",
"soundcloud-downloader": "^1.0.0",
"spdl-core": "^2.0.2",
"spotify-url-info": "^2.2.7",
"tslog": "^3.3.3",
"undici": "^5.4.0",
"youtube-sr": "^4.1.17",
"yt-search": "^2.10.3",
"ytdl-core": "^4.11.0",
"ytpl": "^2.3.0"
},
"devDependencies": {
"@kaaaxcreators/config": "^1.1.3",
"@types/connect-livereload": "^0.6.0",
"@types/dotenv-safe": "^8.1.2",
"@types/express": "^4.17.13",
"@types/express-handlebars": "^6.0.0",
"@types/express-rate-limit": "^6.0.0",
"@types/express-session": "^1.17.4",
"@types/i18n": "^0.13.3",
"@types/jquery": "^3.5.14",
"@types/livereload": "^0.9.2",
"@types/node-fetch": "^2.6.1",
"@types/passport": "^1.0.8",
"@types/passport-oauth2-refresh": "^1.1.1",
"@types/yt-search": "^2.3.2",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"connect-livereload": "^0.6.1",
"cross-env": "^7.0.3",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"livereload": "^0.9.3",
"prettier": "^2.6.2",
"stylelint": "^14.9.0",
"stylelint-config-standard": "^25.0.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"funding": {
"type": "individual",
"url": "https://www.buymeacoffee.com/kaaaxcreators"
},
"files": [
"dist"
],
"keywords": [
"heroku",
"music",
"bot",
"docker",
"youtube",
"discord-music-bot",
"soundcloud",
"repl",
"discordjs",
"discord-bot",
"music-bot",
"glitch"
]
}