Files
play-dl-test/package.json

57 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2021-08-07 15:53:18 +05:30
{
2021-08-13 23:17:59 +05:30
"name": "play-dl",
"version": "1.9.7",
2022-03-12 23:24:39 +05:30
"description": "YouTube, SoundCloud, Spotify, Deezer searching and streaming for discord-js bots",
"main": "dist/index.js",
2021-08-13 21:57:42 +05:30
"typings": "dist/index.d.ts",
2021-12-14 15:15:49 +05:30
"module": "dist/index.mjs",
2021-09-05 21:58:00 +05:30
"directories": {
"example": "examples"
},
2021-08-07 15:53:18 +05:30
"scripts": {
2021-12-14 15:15:49 +05:30
"build": "tsup",
2021-09-17 14:36:32 +05:30
"build:check": "tsc --noEmit --incremental false",
2021-10-26 14:13:44 +05:30
"pretty": "prettier --config .prettierrc \"play-dl/*.ts\" \"play-dl/*/*.ts\" \"play-dl/*/*/*.ts\" --write ",
2021-12-14 15:15:49 +05:30
"prepublishOnly": "tsup"
2021-08-07 15:53:18 +05:30
},
"repository": {
"type": "git",
2021-08-21 15:37:35 +05:30
"url": "git+https://github.com/play-dl/play-dl"
2021-08-07 15:53:18 +05:30
},
2021-08-13 21:57:42 +05:30
"keywords": [
2021-08-16 17:37:44 +05:30
"node-youtube-dl",
"youtube-dl",
"yt-dl",
"ytdl",
"youtube",
"spotify-dl",
"spotify",
"soundcloud",
"deezer"
2021-08-16 17:37:44 +05:30
],
2021-08-13 21:57:42 +05:30
"author": "Killer069",
2021-10-12 15:04:16 +05:30
"license": "GPL-3.0",
2021-08-07 15:53:18 +05:30
"bugs": {
2021-08-13 23:20:45 +05:30
"url": "https://github.com/play-dl/play-dl/issues"
2021-08-07 15:53:18 +05:30
},
2021-08-24 15:29:37 +05:30
"engines": {
2021-08-30 14:42:51 +05:30
"node": ">=16.0.0"
},
2021-08-13 23:20:45 +05:30
"homepage": "https://github.com/play-dl/play-dl#readme",
2021-08-13 21:57:42 +05:30
"files": [
2021-08-16 17:37:44 +05:30
"dist/*"
],
2021-09-13 00:31:52 +05:30
"devDependencies": {
"@types/node": "^18.7.23",
2021-10-14 21:51:23 +02:00
"prettier": "^2.3.1",
"tsup": "^6.0.1",
2022-01-26 20:02:52 +01:00
"typedoc": "^0.22.11",
2021-12-14 15:33:18 +05:30
"typedoc-plugin-extras": "^2.2.1",
"typedoc-plugin-missing-exports": "^1.0.0",
"typescript": "^4.7.2"
2021-12-14 15:33:18 +05:30
},
"dependencies": {
"play-audio": "^0.5.2"
2021-08-07 15:53:18 +05:30
}
2021-12-14 15:16:41 +05:30
}