forked from jellyfin/jellyfin-chromecast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.43 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
{
"name": "jellyfin-chromecast",
"description": "Cast receiver for Jellyfin",
"version": "3.0.0",
"bugs": {
"url": "https://github.com/jellyfin/jellyfin-chromecast/issues"
},
"dependencies": {
"@jellyfin/sdk": "0.8.2",
"axios": "1.6.2"
},
"devDependencies": {
"@types/chromecast-caf-receiver": "6.0.12",
"@typescript-eslint/eslint-plugin": "6.13.0",
"@typescript-eslint/parser": "6.13.0",
"eslint": "8.54.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsdoc": "46.9.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-promise": "6.1.1",
"prettier": "3.1.0",
"stylelint": "15.11.0",
"stylelint-config-standard": "34.0.0",
"typescript": "5.3.2",
"vite": "5.0.0",
"vitest": "0.34.6"
},
"homepage": "https://jellyfin.org/",
"license": "GPL-2.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/jellyfin/jellyfin-chromecast.git"
},
"scripts": {
"start": "vite",
"build": "vite build",
"test": "vitest",
"lint": "npm run lint:code && npm run lint:css",
"lint:code": "eslint --ext .ts,.js,.json .",
"lint:css": "stylelint src/**/*.css"
}
}