Files
play-dl-test/package.json

41 lines
853 B
JSON
Raw Normal View History

2021-08-07 15:53:18 +05:30
{
2021-08-13 21:59:47 +05:30
"name": "node-youtube-dl-v2",
2021-08-13 21:57:42 +05:30
"version": "0.0.1",
"description": "YouTube, SoundCloud, Spotify downloader",
"main": "dist/index.js",
2021-08-13 21:57:42 +05:30
"typings": "dist/index.d.ts",
2021-08-07 15:53:18 +05:30
"scripts": {
2021-08-13 21:57:42 +05:30
"build" : "tsc",
"build:check": "tsc --noEmit --incremental false"
2021-08-07 15:53:18 +05:30
},
"repository": {
"type": "git",
"url": "git+https://github.com/killer069/node-youtube-dl.git"
},
2021-08-13 21:57:42 +05:30
"keywords": [
"node-youtube-dl",
"youtube-dl",
"yt-dl",
"ytdl",
"youtube",
"spotify-dl",
"spotify",
"soundcloud"
],
"author": "Killer069",
"license": "MIT",
2021-08-07 15:53:18 +05:30
"bugs": {
"url": "https://github.com/killer069/node-youtube-dl/issues"
},
"homepage": "https://github.com/killer069/node-youtube-dl#readme",
2021-08-13 21:57:42 +05:30
"files": [
"dist/*"
],
2021-08-07 15:53:18 +05:30
"dependencies": {
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/node-fetch": "^2.5.12"
}
}