2021-04-04 21:23:35 +05:00
|
|
|
{
|
|
|
|
"name": "discord-player",
|
2021-08-25 11:02:17 +05:00
|
|
|
"version": "5.1.0",
|
2021-04-04 21:23:35 +05:00
|
|
|
"description": "Complete framework to facilitate music commands using discord.js",
|
2021-08-05 14:05:42 +05:00
|
|
|
"main": "dist/index.js",
|
|
|
|
"types": "dist/index.d.ts",
|
2021-04-19 13:33:34 +05:00
|
|
|
"files": [
|
2021-08-05 14:05:42 +05:00
|
|
|
"dist/"
|
2021-04-19 13:33:34 +05:00
|
|
|
],
|
2021-08-05 14:05:42 +05:00
|
|
|
"module": "dist/index.mjs",
|
|
|
|
"exports": {
|
|
|
|
"require": "./dist/index.js",
|
|
|
|
"import": "./dist/index.mjs"
|
|
|
|
},
|
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-08-05 14:05:42 +05:00
|
|
|
"build": "rimraf dist && tsc && npm run build:esm",
|
2021-06-22 15:24:05 +05:00
|
|
|
"build:check": "tsc --noEmit --incremental false",
|
2021-08-05 14:05:42 +05:00
|
|
|
"prepublishOnly": "rollup-type-bundler -e stream",
|
|
|
|
"build:esm": "gen-esm-wrapper ./dist/index.js ./dist/index.mjs",
|
2021-06-13 13:06:19 +05:00
|
|
|
"format": "prettier --write \"src/**/*.ts\" \"example/**/*.ts\"",
|
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",
|
2021-06-22 15:24:05 +05:00
|
|
|
"docs:test": "docgen --jsdoc jsdoc.json --source src/*.ts src/**/*.ts --custom docs/index.yml",
|
|
|
|
"lint": "eslint src --ext .ts",
|
2021-06-22 15:25:20 +05:00
|
|
|
"lint:fix": "eslint src --ext .ts --fix"
|
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": [
|
2021-08-08 11:35:49 +05:00
|
|
|
"DevAndromeda <devandromeda@snowflakedev.org>"
|
2021-04-04 22:47:40 +05:00
|
|
|
],
|
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-08-11 09:12:46 +05:00
|
|
|
"@discordjs/voice": "^0.6.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-08-25 10:45:55 +05:00
|
|
|
"soundcloud-scraper": "^5.0.2",
|
2021-06-09 18:41:42 +05:00
|
|
|
"spotify-url-info": "^2.2.3",
|
2021-08-05 13:42:49 +05:00
|
|
|
"tiny-typed-emitter": "^2.1.0",
|
2021-07-04 18:26:34 +05:00
|
|
|
"youtube-sr": "^4.1.7",
|
2021-08-05 13:42:49 +05:00
|
|
|
"ytdl-core": "^4.9.1"
|
2021-04-04 21:23:35 +05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-08-05 13:42:49 +05:00
|
|
|
"@babel/cli": "^7.14.8",
|
|
|
|
"@babel/core": "^7.15.0",
|
|
|
|
"@babel/preset-env": "^7.15.0",
|
|
|
|
"@babel/preset-typescript": "^7.15.0",
|
2021-07-03 13:43:38 +05:00
|
|
|
"@devsnowflake/docgen": "devsnowflake/docgen#ts-patch",
|
2021-06-14 19:10:45 +05:00
|
|
|
"@discord-player/extractor": "^3.0.2",
|
2021-08-07 20:12:15 +05:00
|
|
|
"@discordjs/opus": "github:discordjs/opus",
|
2021-08-05 14:05:42 +05:00
|
|
|
"@favware/rollup-type-bundler": "^1.0.3",
|
2021-08-29 10:56:39 +05:00
|
|
|
"@types/node": "^16.7.5",
|
2021-08-05 13:42:49 +05:00
|
|
|
"@types/ws": "^7.4.7",
|
2021-08-29 10:56:39 +05:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.29.3",
|
|
|
|
"@typescript-eslint/parser": "^4.29.3",
|
2021-09-09 09:15:41 +05:00
|
|
|
"discord-api-types": "^0.23.1",
|
2021-08-19 16:09:39 +05:00
|
|
|
"discord.js": "^13.1.0",
|
2021-08-05 13:42:49 +05:00
|
|
|
"eslint": "^7.32.0",
|
2021-08-05 14:05:42 +05:00
|
|
|
"gen-esm-wrapper": "^1.1.2",
|
2021-08-29 10:56:39 +05:00
|
|
|
"husky": "^7.0.2",
|
2021-04-21 10:08:33 +05:00
|
|
|
"jsdoc-babel": "^0.5.0",
|
2021-07-03 13:43:38 +05:00
|
|
|
"prettier": "^2.3.2",
|
2021-06-13 13:06:19 +05:00
|
|
|
"rimraf": "^3.0.2",
|
2021-08-19 16:09:39 +05:00
|
|
|
"ts-node": "^10.2.1",
|
2021-08-29 10:56:39 +05:00
|
|
|
"typescript": "^4.4.2"
|
2021-04-04 21:23:35 +05:00
|
|
|
}
|
2021-06-30 09:27:01 +05:00
|
|
|
}
|