-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
68 lines (68 loc) · 2.1 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
{
"name": "jellyfin-desktop",
"version": "1.0.0",
"description": "Jellyfin Desktop made with Electron",
"main": "build/main/main.js",
"scripts": {
"start": "run-s build:ts start:electron",
"build:mac": "run-s build:ts package:mac",
"build:win": "run-s build:ts package:win",
"build:linux": "run-s build:ts package:linux",
"build:ts": "tsc -b src/main src/shell",
"lint": "run-p --aggregate-output -c lint:check:*",
"lint:check:eslint": "eslint src/**/*.ts",
"lint:check:prettier": "prettier --check **/*.{json,yaml,yml} .prettierrc",
"lint:fix": "run-p --aggregate-output -c lint:fix:*",
"lint:fix:eslint": "eslint --fix src/**/*.ts",
"lint:fix:prettier": "prettier --write **/*.{json,yaml,yml} .prettierrc",
"start:electron": "electron build/main/main.js",
"package:mac": "electron-builder -m",
"package:win": "electron-builder -w",
"package:linux": "electron-builder -l"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jellyfin/jellyfin-desktop.git"
},
"keywords": [
"Electron",
"Jellyfin",
"Theater",
"Media Client"
],
"author": {
"name": "Jellyfin Team",
"email": "[email protected]"
},
"license": "GPL-2.0-only",
"bugs": {
"url": "https://github.com/jellyfin/jellyfin-desktop/issues"
},
"homepage": "https://github.com/jellyfin/jellyfin-desktop#readme",
"dependencies": {
"detect-rpi": "^1.4.0",
"electron-settings": "^3.2.0",
"is-windows": "^1.0.2",
"long": "^4.0.0",
"node-mpv": "^1.5.0",
"power-off": "^1.1.2",
"sleep-mode": "^1.1.0",
"tslib": "^1.11.1"
},
"devDependencies": {
"@chbrown/bind": "^1.0.0",
"@types/electron-settings": "^3.1.1",
"@types/long": "^4.0.1",
"@types/node": "^12.12.37",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"electron": "^8.5.2",
"electron-builder": "^22.5.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"typescript": "^3.8.3"
}
}