-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 943 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
41
42
43
44
{
"name": "devtube",
"version": "1.0.8",
"keywords": [
"youtube",
"youtube-cli",
"player",
"youtube-player",
"terminal",
"music",
"command-line"
],
"description": "Play Youtube music via command line",
"main": "dist/index.js",
"scripts": {
"start": "tsc -w",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/vinhlh/devtube.git"
},
"bugs": {
"url": "https://github.com/vinhlh/devtube/issues"
},
"homepage": "https://github.com/vinhlh/devtube#readme",
"license": "MIT",
"author": "Vinh Le <hung.vjnh@gmail.com>",
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.20.0",
"keypress": "^0.2.1",
"ora": "^3.4.0",
"puppeteer": "^1.17.0"
},
"devDependencies": {
"@types/keypress.js": "^2.0.30",
"@types/node": "^12.0.8",
"@types/puppeteer": "^1.12.4"
},
"bin": {
"devtube": "dist/index.js"
}
}