-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 961 Bytes
/
package.json
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
{
"name": "@gabrielmelogm/yt-downloader",
"version": "1.0.3",
"description": "An downloader cli for youtube",
"repository": {
"type": "git",
"url": "https://github.com/gabrielmelogm/yt-downloader.git"
},
"main": "index.js",
"scripts": {
"yt": "tsc && node ./dist/yt.js",
"yt:dev": "ts-node src/yt.ts",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"bin": {
"yt": "./dist/yt.js"
},
"keywords": [
"youtube-downloader"
],
"author": "Gabriel Melo <[email protected]>",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "1.6.1",
"@types/figlet": "^1.5.8",
"@types/node": "^20.11.28",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"dependencies": {
"@inquirer/prompts": "^4.3.0",
"@inquirer/select": "^2.2.0",
"cli-spinners": "^2.9.2",
"commander": "^12.0.0",
"figlet": "^1.7.0",
"ytdl-core": "^4.11.5",
"zod": "^3.22.4"
}
}