Files
play-dl-test/package.json

48 lines
1.0 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-09-13 12:44:26 +05:30
"version": "0.9.9",
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",
"pretty": "prettier --config .prettierrc \"play-dl/*.ts\" \"play-dl/*/*.ts\" \"play-dl/*/*/*.ts\" --write ",
"lint": "eslint . --ext .ts"
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",
"license": "MIT",
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-17 14:36:32 +05:30
"@types/node": "^16.9.1",
"prettier": "^2.3.1"
2021-08-07 15:53:18 +05:30
}
}