forked from Inrixia/Floatplane-Downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.55 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
{
"name": "floatplane-plex-downloader",
"version": "5.1.0",
"private": true,
"scripts": {
"prep": "npm install && npm run build",
"prestart": "tsc",
"start": "node ./dist/float.js",
"startHeadless": "tsc && node ./dist/float.js --headless",
"build": "tsc && pkg ./dist/float.js --out-path=./build -t latest-linux,latest-mac,latest-win",
"buildLinux": "tsc && pkg ./dist/float.js --out-path=./build -t latest-linux",
"buildMac": "tsc && pkg ./dist/float.js --out-path=./build -t latest-mac",
"buildWin": "tsc && pkg ./dist/float.js --out-path=./build -t latest-win"
},
"dependencies": {
"@ctrl/plex": "^1.5.3",
"@inrixia/db": "^1.7.3",
"@inrixia/helpers": "^1.20.2",
"ffbinaries": "^1.1.4",
"floatplane": "^3.1.8",
"got": "^11.8.2",
"html-to-text": "^8.0.0",
"multi-progress-bars": "^3.2.4",
"process.argv": "^0.6.0",
"prompts": "^2.4.1",
"sanitize-filename": "^1.6.3",
"semver": "^7.3.5",
"tough-cookie": "^4.0.0",
"tough-cookie-file-store": "^2.0.2"
},
"pkg": {
"scripts": "./float.js",
"targets": [
"node10-linux-x64",
"node10-macos-x64",
"node10-win-x64"
]
},
"devDependencies": {
"@types/html-to-text": "^8.0.0",
"@types/multi-progress": "^2.0.3",
"@types/prompts": "^2.0.13",
"@types/semver": "^7.3.6",
"@types/tough-cookie-file-store": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.29.0",
"eslint-plugin-prettier": "^3.4.0",
"pkg": "^5.2.1",
"typescript": "^4.3.4"
}
}