-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.17 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
{
"name": "subcinode",
"version": "2.0.0",
"description": "Automatically download the right subtitles for your local video files, from the console.",
"type": "module",
"keywords": [
"subtitles",
"subcino",
"opensubtitles",
"movies",
"subs"
],
"author": {
"name": "Alessandro Piana",
"email": "alessandro.89@gmail.com",
"url": "https://www.alessandropiana.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/alexis89x/subcinode.git"
},
"bugs": {
"url": "https://github.com/alexis89x/subcinode/issues"
},
"homepage": "https://github.com/alexis89x/subcinode#readme",
"engines": {
"node": ">=20"
},
"main": "src/run.js",
"exports": {
".": "./src/run.js",
"./providers": "./src/providers/index.js",
"./package.json": "./package.json"
},
"bin": {
"subcinode": "bin/subcinode.js"
},
"files": [
"bin",
"src",
"README.md",
"LICENSE.txt"
],
"scripts": {
"test": "node --test",
"start": "node bin/subcinode.js"
},
"preferGlobal": true,
"dependencies": {
"commander": "^12.1.0",
"langs": "^2.0.0",
"subtitle": "^4.2.1"
}
}