discord-player-play-dl/package.json

83 lines
2.3 KiB
JSON
Raw Normal View History

2021-04-04 21:23:35 +05:00
{
"name": "discord-player",
2021-05-01 12:50:14 +05:00
"version": "5.0.0-dev",
2021-04-04 21:23:35 +05:00
"description": "Complete framework to facilitate music commands using discord.js",
2021-04-25 21:22:35 +05:00
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
2021-04-04 21:23:35 +05:00
"scripts": {
2021-06-19 17:13:39 +05:00
"dev": "cd example/test && ts-node index.ts",
2021-06-13 13:06:19 +05:00
"build": "rimraf lib && tsc",
"format": "prettier --write \"src/**/*.ts\" \"example/**/*.ts\"",
2021-04-21 10:08:33 +05:00
"lint": "tslint -p tsconfig.json",
2021-06-20 19:46:57 +05:00
"docs": "docgen --jsdoc jsdoc.json --source src/*.ts src/**/*.ts --custom docs/index.yml --output docs/docs.json",
"docs:test": "docgen --jsdoc jsdoc.json --source src/*.ts src/**/*.ts --custom docs/index.yml"
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",
2021-04-21 15:47:14 +05:00
"youtube",
"discord.js",
"musicbot",
"discord-music-player",
"discord-music",
"music-player",
"youtube-dl",
"ytdl-core",
"ytdl",
"lavalink",
"api"
2021-04-04 21:23:35 +05:00
],
"author": "Androz2091",
"license": "MIT",
"bugs": {
"url": "https://github.com/Androz2091/discord-player/issues"
},
2021-05-09 18:16:49 +05:00
"homepage": "https://discord-player.js.org",
2021-04-04 21:23:35 +05:00
"dependencies": {
2021-06-17 18:22:03 +05:00
"@discordjs/voice": "^0.5.0",
2021-06-20 00:48:48 +05:00
"discord-ytdl-core": "^5.0.4",
2021-06-19 18:12:58 +05:00
"libsodium-wrappers": "^0.7.9",
2021-06-09 18:41:42 +05:00
"soundcloud-scraper": "^5.0.0",
"spotify-url-info": "^2.2.3",
2021-06-11 14:17:42 +05:00
"tiny-typed-emitter": "^2.0.3",
2021-06-09 18:41:42 +05:00
"youtube-sr": "^4.1.4",
"ytdl-core": "^4.8.2"
2021-04-04 21:23:35 +05:00
},
"devDependencies": {
2021-06-13 23:10:43 +05:00
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
2021-06-14 19:10:45 +05:00
"@discord-player/extractor": "^3.0.2",
2021-06-13 23:10:43 +05:00
"@discordjs/opus": "^0.5.3",
"@types/node": "^15.12.2",
"@types/ws": "^7.4.4",
2021-06-10 00:27:29 +05:00
"discord-api-types": "^0.18.1",
2021-06-21 10:45:54 +05:00
"discord.js": "^13.0.0-dev.c850ae10270076c4b2e10b130dd8f88eed4ed201",
2021-04-21 10:08:33 +05:00
"discord.js-docgen": "discordjs/docgen#ts-patch",
"jsdoc-babel": "^0.5.0",
2021-06-13 23:10:43 +05:00
"prettier": "^2.3.1",
2021-06-13 13:06:19 +05:00
"rimraf": "^3.0.2",
2021-06-10 12:35:49 +05:00
"ts-node": "^10.0.0",
2021-04-04 22:44:45 +05:00
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
2021-06-13 23:10:43 +05:00
"typescript": "^4.3.2"
2021-04-04 21:23:35 +05:00
}
}