-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 1.73 KB
/
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
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
77
78
{
"name": "@liinkiing/ytomp3",
"description": "A simple tool to export a YouTube video to a mp3",
"version": "1.5.4",
"author": "Omar Jbara <omar.jbara2@gmail.com>",
"bin": {
"ytomp3": "./bin/run"
},
"bugs": {
"url": "https://github.com/Liinkiing/ytomp3/issues"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.0.20",
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3",
"adm-zip": "^0.5.1",
"chalk": "^4.1.0",
"fluent-ffmpeg": "^2.1.2",
"node-fetch": "^2.6.1",
"node-id3": "^0.2.2",
"sharp": "^0.27.0",
"tslib": "^2",
"ytdl": "^1.4.1",
"ytdl-core": "^4.9.1",
"ytpl": "^2.2.3"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@types/adm-zip": "^0.4.33",
"@types/chalk": "^2.2.0",
"@types/fluent-ffmpeg": "^2.1.16",
"@types/node-fetch": "^2.5.8",
"@types/sharp": "^0.27.1",
"eslint": "^7.17",
"eslint-config-oclif": "^3.1",
"eslint-config-oclif-typescript": "^0.2",
"np": "^7.6.0",
"rimraf": "^3.0.2",
"ts-node": "^9",
"typescript": "^4.1"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/Liinkiing/ytomp3",
"keywords": [
"oclif",
"cli",
"typescript",
"youtube",
"youtube-to-mp3",
"ytdl"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "ytomp3"
},
"repository": {
"type": "git",
"url": "git://github.com/Liinkiing/ytomp3.git"
},
"scripts": {
"release": "np",
"lint": "eslint . --ext .ts --config .eslintrc",
"build": "rimraf lib && tsc -b",
"prepublishOnly": "yarn build"
},
"types": "lib/index.d.ts",
"directories": {
"lib": "lib"
}
}