Files
play-dl-test/package.json

51 lines
1.2 KiB
JSON
Raw Normal View History

2021-08-07 15:53:18 +05:30
{
2021-08-13 23:17:59 +05:30
"name": "play-dl",
2021-11-14 19:15:38 +05:30
"version": "1.3.0",
2021-08-24 18:56:46 +05:30
"description": "YouTube, SoundCloud, Spotify streaming for discord.js bots",
"main": "dist/index.js",
2021-08-13 21:57:42 +05:30
"typings": "dist/index.d.ts",
2021-09-05 21:58:00 +05:30
"directories": {
"doc": "docs",
"example": "examples"
},
2021-08-07 15:53:18 +05:30
"scripts": {
2021-08-16 17:37:44 +05:30
"build": "tsc",
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-10-26 14:57:19 +05:30
"prepublishOnly": "tsc --build --clean && tsc --build --verbose"
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"
],
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": {
2021-09-21 15:14:54 +05:30
"@types/node": "^16.9.4",
2021-10-14 21:51:23 +02:00
"prettier": "^2.3.1",
2021-11-17 12:38:48 +05:30
"typedoc": "^0.22.9",
"typedoc-plugin-missing-exports": "^0.22.4",
2021-10-14 21:51:23 +02:00
"typescript": "^4.4.4"
2021-08-07 15:53:18 +05:30
}
}