yt-direct 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "yt-direct",
3
+ "version": "1.0.0",
4
+ "description": "Hello, I present to you a module to download YouTube videos directly",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "files": ["dist", "README.md", "LICENSE"],
8
+ "scripts": {
9
+ "build": "node build/build.js",
10
+ "prepublishOnly": "npm run build",
11
+ "test": "node test/basic.js",
12
+ "example": "node examples/basic.js"
13
+ },
14
+ "keywords": [
15
+ "youtube",
16
+ "download",
17
+ "video",
18
+ "yt-dlp",
19
+ "innertube",
20
+ "downloader",
21
+ "ytdl",
22
+ "mp4",
23
+ "stream",
24
+ "no-dependencies"
25
+ ],
26
+ "license": "MIT",
27
+ "engines": {
28
+ "node": ">=18.0.0"
29
+ },
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "https://github.com/SoyMaycol/yt-direct.git"
33
+ },
34
+ "bugs": {
35
+ "url": "https://github.com/SoyMaycol/yt-direct/issues"
36
+ },
37
+ "homepage": "https://github.com/SoyMaycol/yt-direct#readme",
38
+ "author": "SoyMaycol"
39
+ }