mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
29 lines
818 B
JSON
29 lines
818 B
JSON
{
|
|
"name": "music-bot",
|
|
"version": "0.0.1",
|
|
"description": "An example music bot written using @discordjs/voice",
|
|
"scripts": {
|
|
"start": "npm run build && node -r tsconfig-paths/register dist/bot",
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"lint": "eslint src --ext .ts",
|
|
"lint:fix": "eslint src --ext .ts --fix",
|
|
"prettier": "prettier --write .",
|
|
"build": "tsc",
|
|
"build:check": "tsc --noEmit --incremental false"
|
|
},
|
|
"author": "Amish Shah <contact@shah.gg>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@discordjs/opus": "^0.5.0",
|
|
"discord-api-types": "^0.19.0",
|
|
"discord.js": "^13.0.0-dev.328501b.1626912223",
|
|
"libsodium-wrappers": "^0.7.9",
|
|
"youtube-dl-exec": "^1.2.4",
|
|
"ytdl-core": "^4.8.3"
|
|
},
|
|
"devDependencies": {
|
|
"tsconfig-paths": "^3.9.0",
|
|
"typescript": "~4.2.2"
|
|
}
|
|
}
|