-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 1.68 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
{
"name": "plex-dvr",
"description": "A postprocessing script for the Plex DVR. Removes commercials, adds chapter markers, extracts captions as subtitles, and converts to mkv. Requires comskip, comcut, ccextractor, ffmpeg, and HandbrakeCLI.",
"version": "2.0.0",
"author": "Aki Rose @gesa <hi@akiro.se>",
"bin": {
"plex-dvr": "./bin/run"
},
"bugs": "https://github.com/gesa/plex-dvr/issues",
"dependencies": {
"@oclif/core": "^1.9.0",
"@oclif/plugin-help": "^5.1.12",
"@oclif/plugin-version": "^1.0.4",
"tslib": "^2.4.0",
"winston": "^3.7.2"
},
"devDependencies": {
"@oclif/test": "^2.1.0",
"@types/node": "^17.0.36",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.16.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-unicorn": "^42.0.0",
"oclif": "^3.0.1",
"prettier": "^2.6.2",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/gesa/plex-dvr",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-version"
],
"additionalHelpFlags": [
"-h"
],
"helpClass": "./lib/help",
"bin": "plex-dvr",
"commands": "./lib/commands",
"default": "plex-dvr"
},
"repository": "gesa/plex-dvr",
"scripts": {
"prepack": "rm -rf lib && tsc -b && oclif readme",
"version": "oclif readme && git add README.md"
},
"types": "lib/index.d.ts"
}