-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.33 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
60
61
62
63
{
"name": "snaffle",
"version": "0.3.0",
"description": "Grab any video and convert anything, right from your terminal. Zero setup, your files stay on your disk.",
"type": "module",
"bin": {
"snaffle": "dist/cli.mjs"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsx src/index.tsx",
"build": "tsup",
"start": "node dist/cli.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"keywords": [
"video-downloader",
"youtube",
"tiktok",
"facebook",
"yt-dlp",
"ffmpeg",
"converter",
"tui",
"terminal",
"cli",
"ink",
"zero-setup"
],
"author": "krimdev",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/krimdev/snaffle.git"
},
"homepage": "https://github.com/krimdev/snaffle#readme",
"bugs": {
"url": "https://github.com/krimdev/snaffle/issues"
},
"dependencies": {
"ffmpeg-static": "^5.2.0",
"ink": "^7.0.5",
"pdf-lib": "^1.17.1",
"react": "^19.2.7",
"youtube-dl-exec": "^3.0.10"
},
"devDependencies": {
"@types/node": "^25.9.2",
"@types/react": "^19.2.17",
"ink-testing-library": "^4.0.0",
"tsup": "^8.5.1",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}