forked from alexandrucancescu/subs-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.15 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
{
"name": "subs-cli",
"description": "A full featured, easy to use, CLI app to download subtitles from opensubtitles.org",
"version": "1.0.13",
"private": false,
"main": "dist/Run.js",
"scripts": {
"postuninstall": "node ./dist/Uninstall.js"
},
"author": "Alexandru Cancescu",
"license": "MIT",
"homepage": "https://github.com/alexandrucancescu/subs-cli",
"repository": {
"type": "git",
"url": "https://github.com/alexandrucancescu/subs-cli"
},
"files": [
"dist/*",
"extensions.json",
"langs.json"
],
"types": "dist/Run.d.ts",
"typings": "dist/Run.d.ts",
"keywords": [
"node",
"opensubtitles",
"subtitle",
"subtitle-download",
"subtitles",
"subs",
"srt",
"opensubtitles.org"
],
"bin": {
"subs": "./dist/Run.js"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/inquirer": "^6.5.0",
"@types/node": "^13.11.1"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^5.1.0",
"fs-extra": "^9.0.1",
"inquirer": "^7.1.0",
"keytar": "^5.6.0",
"opensubtitles-api": "^5.1.2",
"ora": "^4.1.1",
"platform-folders": "^0.5.1"
}
}