-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.77 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.77 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "ytsearch-cli",
"version": "1.2.0",
"description": "A beautiful command-line interface for YouTube search using ytsearch.js - search videos, channels, playlists with rich terminal formatting",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ytsearch": "dist/cli.js"
},
"files": [
"dist/",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"start:watch": "node dist/cli.js -w",
"prepublishOnly": "npm run build"
},
"keywords": [
"youtube",
"search",
"cli",
"terminal",
"command-line",
"ytsearch",
"video",
"playlist",
"channel",
"beautiful-cli"
],
"author": "RJRYT <robinjratr@gmail.com> (https://rjryt.github.io/)",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/rjryt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RJRYT/ytsearch-cli.git"
},
"bugs": {
"url": "https://github.com/RJRYT/ytsearch-cli/issues"
},
"homepage": "https://github.com/RJRYT/ytsearch-cli#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@types/update-notifier": "^6.0.8",
"boxen": "^7.1.1",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^11.1.0",
"figlet": "^1.9.3",
"inquirer": "^9.3.8",
"open": "^9.1.0",
"ora": "^7.0.1",
"update-notifier": "^7.3.1",
"ytsearch.js": "^2.1.0"
},
"devDependencies": {
"@types/figlet": "^1.7.0",
"@types/inquirer": "^9.0.9",
"@types/jest": "^29.5.14",
"@types/node": "^20.19.17",
"typescript": "^5.9.2"
}
}