jellyfin-chromecast/package.json

85 lines
3.1 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": {
2023-09-22 20:03:34 +00:00
"@jellyfin/sdk": "0.7.0",
"axios": "1.5.0"
2021-05-13 09:31:05 +00:00
},
"devDependencies": {
2023-09-22 20:03:34 +00:00
"@commitlint/cli": "13.1.0",
"@commitlint/config-conventional": "13.1.0",
"@types/chromecast-caf-receiver": "5.0.15",
2023-09-22 19:17:42 +00:00
"@types/jest": "26.0.24",
2023-09-22 20:03:34 +00:00
"@types/node": "16.4.7",
"@types/webpack": "5.28.0",
"@types/webpack-dev-server": "3.11.5",
"@types/webpack-merge": "5.0.0",
2023-09-22 19:51:14 +00:00
"@typescript-eslint/eslint-plugin": "4.28.5",
"@typescript-eslint/parser": "4.28.5",
2023-09-22 19:54:13 +00:00
"clean-webpack-plugin": "3.0.0",
2023-09-22 20:03:34 +00:00
"cross-env": "7.0.3",
2023-09-22 19:54:13 +00:00
"css-loader": "6.2.0",
2023-09-22 20:03:34 +00:00
"cz-conventional-changelog": "3.3.0",
2023-09-22 19:51:14 +00:00
"eslint": "7.31.0",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jsdoc": "36.0.6",
"eslint-plugin-json": "3.0.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "5.1.0",
2023-09-22 19:54:13 +00:00
"html-loader": "2.1.2",
"html-webpack-plugin": "5.3.2",
2023-09-22 20:03:34 +00:00
"husky": "7.0.1",
2023-09-22 19:54:13 +00:00
"image-minimizer-webpack-plugin": "2.2.0",
2023-09-22 20:03:34 +00:00
"imagemin-svgo": "9.0.0",
2023-09-22 19:17:42 +00:00
"jest": "26.6.3",
"prettier": "2.3.2",
2023-09-22 19:54:13 +00:00
"source-map-loader": "3.0.0",
"style-loader": "3.2.1",
2023-09-22 19:51:14 +00:00
"stylelint": "13.13.1",
"stylelint-config-prettier": "8.0.2",
"stylelint-config-standard": "22.0.0",
2023-09-22 19:17:42 +00:00
"ts-jest": "26.5.6",
2023-09-22 19:54:13 +00:00
"ts-loader": "9.2.4",
2023-09-22 20:03:34 +00:00
"ts-node": "10.1.0",
"tsconfig-paths": "3.10.1",
"typescript": "4.3.5",
2023-09-22 19:54:13 +00:00
"url-loader": "4.1.1",
"webpack": "5.76.0",
"webpack-cli": "4.7.2",
"webpack-dev-server": "4.11.1",
"webpack-merge": "5.8.0"
2021-05-13 09:31:05 +00:00
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"yarn": "YARN NO LONGER USED - use npm instead."
},
"homepage": "https://jellyfin.org/",
"license": "GPL-2.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/jellyfin/jellyfin-chromecast.git"
},
"scripts": {
"build:development": "cross-env TS_NODE_PROJECT=\"tsconfig-webpack.json\" webpack --config webpack.config.ts --mode=development",
"build:production": "cross-env TS_NODE_PROJECT=\"tsconfig-webpack.json\" webpack --config webpack.config.ts --mode=production",
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 .",
"lint:css": "stylelint **/*.css",
"prepare": "npm run build:production",
2021-05-13 10:56:50 +00:00
"prettier": "prettier --check .",
"start": "cross-env TS_NODE_PROJECT=\"tsconfig-webpack.json\" webpack serve --config webpack.config.ts",
2021-07-30 12:57:14 +00:00
"test": "jest --silent",
"watch": "cross-env TS_NODE_PROJECT=\"tsconfig-webpack.json\" webpack --config webpack.config.ts --watch"
}
2020-04-12 14:02:50 +00:00
}