641ef8ee85
fixed current track to not add twice to previousTracks fixed bot disconnection on member move Thanks PR's from original repo!
89 lines
2.4 KiB
JSON
89 lines
2.4 KiB
JSON
{
|
|
"name": "discord-player-play-dl",
|
|
"version": "5.3.10",
|
|
"description": "Complete framework to facilitate music commands using discord.js and play-dl",
|
|
"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"
|
|
},
|
|
"contributors": [
|
|
"DevAndromeda <devandromeda@snowflakedev.org>",
|
|
"Jonny_Bro#4226"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/JonnyBro/discord-player-play-dl.git"
|
|
},
|
|
"keywords": [
|
|
"music",
|
|
"player",
|
|
"bot",
|
|
"framework",
|
|
"discord",
|
|
"volume",
|
|
"queue",
|
|
"youtube",
|
|
"discord.js",
|
|
"musicbot",
|
|
"discord-music-player",
|
|
"discord-music",
|
|
"music-player",
|
|
"api"
|
|
],
|
|
"author": "Androz2091 & Jonny_Bro",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/JonnyBro/discord-player-play-dl/issues"
|
|
},
|
|
"dependencies": {
|
|
"@discordjs/voice": "^0.11.0",
|
|
"libsodium-wrappers": "^0.7.10",
|
|
"play-dl": "^1.9.6",
|
|
"spotify-url-info": "^3.1.2",
|
|
"tiny-typed-emitter": "^2.1.0",
|
|
"tslib": "^2.4.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"
|
|
}
|
|
}
|