-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
47 lines (47 loc) · 1.45 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
{
"name": "jellyfin-chromecast",
"description": "Cast receiver for Jellyfin",
"version": "3.0.0",
"type": "module",
"bugs": {
"url": "https://github.com/jellyfin/jellyfin-chromecast/issues"
},
"dependencies": {
"@jellyfin/sdk": "0.10.0",
"axios": "1.7.8"
},
"devDependencies": {
"@types/chromecast-caf-receiver": "6.0.20",
"@types/node": "22.10.1",
"eslint": "9.16.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "50.6.0",
"eslint-plugin-json": "4.0.1",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "7.2.1",
"prettier": "3.4.1",
"stylelint": "16.11.0",
"stylelint-config-standard": "36.0.1",
"typescript": "5.7.2",
"typescript-eslint": "8.16.0",
"vite": "6.0.1",
"vitest": "2.1.8"
},
"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:ts && npm run lint:css",
"lint:code": "eslint",
"lint:ts": "tsc --noEmit",
"lint:css": "stylelint src/**/*.css"
}
}