discord-player-play-dl/package.json

90 lines
2.4 KiB
JSON
Raw Permalink Normal View History

2021-04-04 21:23:35 +05:00
{
2022-09-13 11:58:12 +05:00
"name": "discord-player-play-dl",
2023-03-15 23:39:47 +05:00
"version": "5.3.14",
2022-09-13 11:58:12 +05:00
"description": "Complete framework to facilitate music commands using discord.js and play-dl",
2021-08-05 14:05:42 +05:00
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
2021-08-05 14:05:42 +05:00
"dist/"
],
2021-08-05 14:05:42 +05:00
"module": "dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
2022-01-31 16:44:00 +05:00
"./smoothVolume": "./dist/smoothVolume.js",
"./src/*": "./dist/*",
"./dist/*": "./dist/*"
2021-08-05 14:05:42 +05:00
},
2021-04-04 21:23:35 +05:00
"scripts": {
"dev": "cd examples/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",
2022-06-15 18:10:26 +05:00
"format": "prettier --write \"src/**/*.ts\"",
"docs": "typedoc --json docs/typedoc.json src/index.ts",
"postdocs": "node scripts/docgen.js",
2021-06-22 15:24:05 +05:00
"lint": "eslint src --ext .ts",
2021-09-25 20:14:05 +05:00
"prepare": "husky install",
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 22:47:40 +05:00
"contributors": [
2022-09-13 11:40:21 +05:00
"DevAndromeda <devandromeda@snowflakedev.org>",
"Jonny_Bro#4226"
2021-04-04 22:47:40 +05:00
],
2021-04-04 21:23:35 +05:00
"repository": {
"type": "git",
2022-09-13 12:03:12 +05:00
"url": "git+https://github.com/JonnyBro/discord-player-play-dl.git"
2021-04-04 21:23:35 +05:00
},
"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",
"api"
2021-04-04 21:23:35 +05:00
],
2022-09-13 11:40:21 +05:00
"author": "Androz2091 & Jonny_Bro",
2021-04-04 21:23:35 +05:00
"license": "MIT",
"bugs": {
2022-09-13 12:03:12 +05:00
"url": "https://github.com/JonnyBro/discord-player-play-dl/issues"
2021-04-04 21:23:35 +05:00
},
"dependencies": {
2022-07-19 18:58:01 +05:00
"@discordjs/voice": "^0.11.0",
2022-06-15 18:10:26 +05:00
"libsodium-wrappers": "^0.7.10",
2022-10-31 13:15:32 +05:00
"play-dl": "^1.9.6",
2022-06-15 18:10:26 +05:00
"spotify-url-info": "^3.1.2",
2022-07-19 18:58:01 +05:00
"tiny-typed-emitter": "^2.1.0",
"tslib": "^2.4.0"
2021-04-04 21:23:35 +05:00
},
"devDependencies": {
2022-06-15 18:10:26 +05:00
"@discordjs/ts-docgen": "^0.4.1",
2022-08-04 13:50:59 +05:00
"@favware/rollup-type-bundler": "^1.0.10",
"@types/node": "^18.6.3",
2022-06-15 18:10:26 +05:00
"@types/ws": "^8.5.3",
2022-08-04 13:50:59 +05:00
"@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",
2021-09-23 19:02:32 +05:00
"gen-esm-wrapper": "^1.1.3",
2022-06-15 18:10:26 +05:00
"husky": "^8.0.1",
"opusscript": "^0.0.8",
2022-07-19 18:58:01 +05:00
"prettier": "^2.7.1",
2021-06-13 13:06:19 +05:00
"rimraf": "^3.0.2",
2022-07-19 18:58:01 +05:00
"ts-node": "^10.9.1",
2022-08-04 13:50:59 +05:00
"typedoc": "^0.23.10",
2022-07-19 18:58:01 +05:00
"typescript": "^4.7.4"
2021-04-04 21:23:35 +05:00
}
2021-06-30 09:27:01 +05:00
}