-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
69 lines (69 loc) · 2.64 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
{
"name": "floatplane-plex-downloader",
"version": "5.15.0",
"private": true,
"type": "module",
"scripts": {
"tsc": "tsc --incremental",
"start": "pnpm run tsc && node ./dist/float.js",
"startHeadless": "pnpm run tsc && node ./dist/float.js --headless",
"checkLint": "eslint ./src",
"sanity": "pnpm run checkLint && pnpm run test-esm && pnpm run build-windows-latest && pnpm run test-windows-latest",
"test-esm": "pnpm run tsc && node ./dist/float.js --sanityCheck",
"test-ubuntu-latest": "./build/float-linux --sanityCheck",
"test-windows-latest": "cd build && float-win.exe --sanityCheck",
"makeBlob": "node --experimental-sea-config ./sea-config.json",
"bundle": "pnpm run tsc && npx esbuild ./src/float.ts --bundle --platform=node --outfile=./dist/float.cjs",
"build-windows-latest": "node make.js ./build/float-win.exe && pnpm run bundle && pnpm run makeBlob && pnpm run injectWin",
"build-ubuntu-latest": "node make.js ./build/float-linux && pnpm run bundle && pnpm run makeBlob && pnpm run injectLinux",
"injectWin": "npx postject ./build/float-win.exe NODE_SEA_BLOB ./dist/float.blob --sentinel-fuse NODE_SEA_FUSE_fce680ab2cc467b6e072b8b5df1996b2",
"injectLinux": "npx postject ./build/float-linux NODE_SEA_BLOB ./dist/float.blob --sentinel-fuse NODE_SEA_FUSE_fce680ab2cc467b6e072b8b5df1996b2"
},
"dependencies": {
"@ctrl/plex": "^3.4.0",
"@inrixia/db": "2.0.2",
"@inrixia/helpers": "^2.0.11",
"@npmcli/package-json": "^6.0.1",
"@types/tough-cookie": "^4.0.5",
"chalk-template": "^1.1.0",
"default-import": "^2.0.1",
"dotenv": "^16.4.5",
"ffbinaries": "^1.1.6",
"floatplane": "^4.5.2",
"floatplane-plex-downloader": "file:",
"html-to-text": "^9.0.5",
"json5": "^2.2.3",
"mime-types": "^3.0.0",
"multi-progress-bars": "^5.0.3",
"process.argv": "^0.6.1",
"prom-client": "^15.1.3",
"prompts": "^2.4.2",
"sanitize-filename": "^1.6.3",
"semver": "^7.6.3",
"stream-throttle": "^0.1.3",
"tough-cookie": "4.1.4",
"tough-cookie-file-store": "^2.0.3",
"ws": "^8.18.0",
"xmlbuilder2": "^3.1.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@types/html-to-text": "^9.0.4",
"@types/mime-types": "^2.1.4",
"@types/multi-progress": "^2.0.6",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.8",
"@types/stream-throttle": "^0.1.4",
"@types/tough-cookie-file-store": "^2.0.4",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"esbuild": "^0.24.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"got": "^14.4.3",
"typescript": "^5.7.0-beta"
}
}