@maxedgar/yeet 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/LICENSE +21 -0
- package/README.md +96 -0
- package/dist/cli.js +1352 -0
- package/package.json +59 -0
package/package.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@maxedgar/yeet",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "yeet any video from YouTube, X, Instagram, Threads & 1800+ sites — right from your terminal. paste. yeet. done.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"yeet": "dist/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"engines": {
|
|
13
|
+
"node": ">=18"
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "tsup",
|
|
17
|
+
"dev": "tsup --watch",
|
|
18
|
+
"test": "tsx --test src/**/*.test.ts",
|
|
19
|
+
"typecheck": "tsc --noEmit",
|
|
20
|
+
"start": "node dist/cli.js",
|
|
21
|
+
"prepublishOnly": "npm test && npm run typecheck && npm run build"
|
|
22
|
+
},
|
|
23
|
+
"author": "Maxmilliano Edgar <maxedgar008@gmail.com>",
|
|
24
|
+
"keywords": [
|
|
25
|
+
"video",
|
|
26
|
+
"downloader",
|
|
27
|
+
"yt-dlp",
|
|
28
|
+
"youtube",
|
|
29
|
+
"instagram",
|
|
30
|
+
"twitter",
|
|
31
|
+
"threads",
|
|
32
|
+
"cli",
|
|
33
|
+
"tui",
|
|
34
|
+
"ink"
|
|
35
|
+
],
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"ffmpeg-static": "^5.3.0",
|
|
39
|
+
"ink": "^7.1.0",
|
|
40
|
+
"ink-select-input": "^6.2.0",
|
|
41
|
+
"ink-spinner": "^5.0.0",
|
|
42
|
+
"react": "^19.2.7"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@types/node": "^26.1.1",
|
|
46
|
+
"@types/react": "^19.2.17",
|
|
47
|
+
"tsup": "^8.5.1",
|
|
48
|
+
"tsx": "^4.23.1",
|
|
49
|
+
"typescript": "^7.0.2"
|
|
50
|
+
},
|
|
51
|
+
"repository": {
|
|
52
|
+
"type": "git",
|
|
53
|
+
"url": "git+https://github.com/MaxEdgar/yeet.git"
|
|
54
|
+
},
|
|
55
|
+
"homepage": "https://github.com/MaxEdgar/yeet#readme",
|
|
56
|
+
"bugs": {
|
|
57
|
+
"url": "https://github.com/MaxEdgar/yeet/issues"
|
|
58
|
+
}
|
|
59
|
+
}
|