-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drop music-player functionality, upstream breaks too often
- Loading branch information
1 parent
905ee49
commit 2088ab1
Showing
11 changed files
with
34 additions
and
543 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,14 @@ | ||
{ | ||
"name": "discord-sm", | ||
"version": "1.0.0", | ||
"description": "Discord bot that fixes social media embeds and enables music playback", | ||
"name": "embeds-buddy", | ||
"version": "1.1.0", | ||
"description": "Discord bot that fixes social media embeds", | ||
"main": "src/index.js", | ||
"scripts": { | ||
"start": "node --no-deprecation --env-file=.env src/index.js" | ||
}, | ||
"author": "philippgitpush", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@discordjs/opus": "^0.9.0", | ||
"discord-player": "^6.6.8", | ||
"discord.js": "^14.14.1", | ||
"fs": "^0.0.1-security", | ||
"play-dl": "^1.9.7" | ||
"discord.js": "^14.14.1" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
require('./discordClient'); // Discord Bot Client | ||
require('./locales'); // Localization / translation | ||
require('./embedFix'); // Soecial media link embed fixes | ||
require('./musicPlayer'); // Music player | ||
require('./commandRefresh'); // Discord commands config | ||
require('./discordClient'); | ||
require('./embedFix'); |
Oops, something went wrong.