discord-player-play-dl/package.json

57 lines
1.4 KiB
JSON
Raw Normal View History

2021-04-04 21:23:35 +05:00
{
"name": "discord-player",
2021-04-18 22:08:14 +05:00
"version": "4.0.0",
2021-04-04 21:23:35 +05:00
"description": "Complete framework to facilitate music commands using discord.js",
2021-04-09 19:04:39 +05:00
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
2021-04-18 22:07:56 +05:00
"files": ["lib/"],
2021-04-04 21:23:35 +05:00
"scripts": {
2021-04-06 20:38:17 +05:00
"test": "yarn build && cd test && node index.js",
2021-04-04 22:44:45 +05:00
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
2021-04-18 11:46:51 +05:00
"lint": "tslint -p tsconfig.json"
2021-04-04 21:23:35 +05:00
},
2021-04-04 21:24:33 +05:00
"funding": "https://github.com/Androz2091/discord-player?sponsor=1",
2021-04-04 22:47:40 +05:00
"contributors": [
"Snowflake107"
],
2021-04-04 21:23:35 +05:00
"repository": {
"type": "git",
"url": "git+https://github.com/Androz2091/discord-player.git"
},
"keywords": [
"music",
"player",
"bot",
"framework",
"discord",
"volume",
"queue",
"youtube"
],
"author": "Androz2091",
"license": "MIT",
"bugs": {
"url": "https://github.com/Androz2091/discord-player/issues"
},
"homepage": "https://github.com/Androz2091/discord-player#readme",
"dependencies": {
2021-04-10 11:10:37 +05:00
"@discord-player/extractor": "^2.0.0",
2021-04-04 21:23:35 +05:00
"discord-ytdl-core": "^5.0.2",
2021-04-06 17:55:29 +05:00
"soundcloud-scraper": "^4.0.3",
"spotify-url-info": "^2.2.0",
2021-04-08 19:45:22 +05:00
"youtube-sr": "^4.0.4",
2021-04-04 22:36:40 +05:00
"ytdl-core": "^4.5.0"
2021-04-04 21:23:35 +05:00
},
"devDependencies": {
"@discordjs/opus": "^0.5.0",
2021-04-18 11:46:51 +05:00
"@types/node": "^14.14.41",
"@types/ws": "^7.4.1",
2021-04-06 20:38:17 +05:00
"discord.js": "^12.5.3",
2021-04-04 22:44:45 +05:00
"prettier": "^2.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.3"
2021-04-04 21:23:35 +05:00
}
}