jellyfin-chromecast/package.json

50 lines
1.6 KiB
JSON
Raw Normal View History

2020-04-12 14:02:50 +00:00
{
2021-05-13 09:31:05 +00:00
"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.5.0"
2021-05-13 09:31:05 +00:00
},
"devDependencies": {
"@types/chromecast-caf-receiver": "6.0.10",
"@types/jest": "29.5.5",
2023-10-03 14:07:48 +00:00
"@typescript-eslint/eslint-plugin": "6.7.3",
"@typescript-eslint/parser": "6.7.3",
2023-09-23 08:07:01 +00:00
"eslint": "8.50.0",
2023-09-22 21:20:07 +00:00
"eslint-config-prettier": "9.0.0",
2023-09-23 08:07:01 +00:00
"eslint-import-resolver-typescript": "3.6.1",
2023-09-22 20:10:22 +00:00
"eslint-plugin-import": "2.28.1",
2023-09-23 08:07:01 +00:00
"eslint-plugin-jsdoc": "46.8.2",
2023-09-22 20:10:22 +00:00
"eslint-plugin-json": "3.1.0",
2023-09-22 21:20:07 +00:00
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-promise": "6.1.1",
2023-09-22 20:38:05 +00:00
"jest": "29.7.0",
2023-09-22 20:40:33 +00:00
"jest-environment-jsdom": "29.7.0",
"prettier": "3.0.3",
2023-09-22 21:20:07 +00:00
"stylelint": "15.10.3",
"stylelint-config-standard": "34.0.0",
2023-09-22 20:38:05 +00:00
"ts-jest": "29.1.1",
"typescript": "5.2.2",
2023-10-02 17:44:39 +00:00
"vite": "4.4.9"
2021-05-13 09:31:05 +00:00
},
"homepage": "https://jellyfin.org/",
"license": "GPL-2.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/jellyfin/jellyfin-chromecast.git"
},
"scripts": {
2023-10-02 17:44:39 +00:00
"start": "vite",
"build": "vite build",
"test": "jest --silent",
2021-05-13 09:31:05 +00:00
"lint": "npm run lint:code && npm run lint:css && npm run prettier",
"lint:code": "eslint --ext .ts,.js,.json .",
2023-10-02 17:44:39 +00:00
"lint:css": "stylelint src/**/*.css",
"prettier": "prettier --check ."
}
2020-04-12 14:02:50 +00:00
}