discord-player-play-dl/package.json
benny 8d7b841d9a
Merge branch develop (#1287)
* fix(Queue): shuffle all tracks

* Shuffled first track as well

* Fixed queue shuffling to include first element

* fix(AudioFilters): properly get filters

* 5.3.1

Co-authored-by: mjh <61671361+mjh316@users.noreply.github.com>
2022-08-08 20:48:24 +05:45

96 lines
2.6 KiB
JSON

{
"name": "discord-player",
"version": "5.3.1",
"description": "Complete framework to facilitate music commands using discord.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"module": "dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./smoothVolume": "./dist/smoothVolume.js",
"./src/*": "./dist/*",
"./dist/*": "./dist/*"
},
"scripts": {
"dev": "cd examples/test && ts-node index.ts",
"build": "rimraf dist && tsc && npm run build:esm",
"build:check": "tsc --noEmit --incremental false",
"prepublishOnly": "rollup-type-bundler -e stream",
"build:esm": "gen-esm-wrapper ./dist/index.js ./dist/index.mjs",
"format": "prettier --write \"src/**/*.ts\"",
"docs": "typedoc --json docs/typedoc.json src/index.ts",
"postdocs": "node scripts/docgen.js",
"lint": "eslint src --ext .ts",
"prepare": "husky install",
"lint:fix": "eslint src --ext .ts --fix"
},
"funding": "https://github.com/Androz2091/discord-player?sponsor=1",
"contributors": [
"DevAndromeda <devandromeda@snowflakedev.org>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Androz2091/discord-player.git"
},
"keywords": [
"music",
"player",
"bot",
"framework",
"discord",
"volume",
"queue",
"youtube",
"discord.js",
"musicbot",
"discord-music-player",
"discord-music",
"music-player",
"youtube-dl",
"ytdl-core",
"ytdl",
"lavalink",
"api"
],
"author": "Androz2091",
"license": "MIT",
"bugs": {
"url": "https://github.com/Androz2091/discord-player/issues"
},
"homepage": "https://discord-player.js.org",
"dependencies": {
"@discordjs/voice": "^0.11.0",
"libsodium-wrappers": "^0.7.10",
"soundcloud-scraper": "^5.0.3",
"spotify-url-info": "^3.1.2",
"tiny-typed-emitter": "^2.1.0",
"tslib": "^2.4.0",
"youtube-sr": "^4.3.0",
"ytdl-core": "^4.11.0"
},
"devDependencies": {
"@discordjs/ts-docgen": "^0.4.1",
"@favware/rollup-type-bundler": "^1.0.10",
"@types/node": "^18.6.3",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"discord-api-types": "^0.37.0",
"discord.js": "^14.1.2",
"eslint": "^8.21.0",
"gen-esm-wrapper": "^1.1.3",
"husky": "^8.0.1",
"opusscript": "^0.0.8",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typedoc": "^0.23.10",
"typescript": "^4.7.4"
}
}