mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
29 lines
805 B
JSON
29 lines
805 B
JSON
{
|
|
"name": "receiver-bot",
|
|
"version": "0.0.1",
|
|
"description": "An example receiver 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.8.0",
|
|
"discord-api-types": "^0.33.3",
|
|
"discord.js": "^13.8.0",
|
|
"libsodium-wrappers": "^0.7.9",
|
|
"node-crc": "^1.3.2",
|
|
"prism-media": "^2.0.0-alpha.0"
|
|
},
|
|
"devDependencies": {
|
|
"tsconfig-paths": "^3.10.1",
|
|
"typescript": "^4.7.4"
|
|
}
|
|
}
|