forked from pablostanley/yoinks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "yoinks",
"version": "0.3.1",
"description": "yoink any video from YouTube, X, Instagram, Threads & 1800+ sites — right from your terminal. paste. yoink. done.",
"type": "module",
"bin": {
"yoinks": "dist/cli.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "tsx --test src/**/*.test.ts",
"typecheck": "tsc --noEmit",
"start": "node dist/cli.js",
"prepublishOnly": "npm test && npm run typecheck && npm run build"
},
"author": "Pablo Stanley",
"keywords": [
"video",
"downloader",
"yt-dlp",
"youtube",
"instagram",
"twitter",
"threads",
"cli",
"tui",
"ink"
],
"license": "MIT",
"dependencies": {
"ffmpeg-static": "^5.3.0",
"ink": "^7.1.0",
"ink-select-input": "^6.2.0",
"ink-spinner": "^5.0.0",
"react": "^19.2.7"
},
"devDependencies": {
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"tsup": "^8.5.1",
"tsx": "^4.23.1",
"typescript": "^7.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pablostanley/yoinks.git"
},
"homepage": "https://github.com/pablostanley/yoinks#readme",
"bugs": {
"url": "https://github.com/pablostanley/yoinks/issues"
}
}