mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 02:48:19 -07:00
b1d1cee634
The fork contains an asm.js compatibility patch that we need for older client. This commit switched to using our forked version while we wait for an upstream merge.
67 lines
1.9 KiB
JSON
67 lines
1.9 KiB
JSON
{
|
|
"name": "jellyfin-web",
|
|
"version": "0.0.0",
|
|
"description": "Web interface for Jellyfin",
|
|
"repository": "https://github.com/jellyfin/jellyfin-web",
|
|
"license": "GPL-2.0-or-later",
|
|
"devDependencies": {
|
|
"clean-webpack-plugin": "^3.0.0",
|
|
"copy-webpack-plugin": "^5.1.1",
|
|
"css-loader": "^3.4.2",
|
|
"eslint": "^6.8.0",
|
|
"file-loader": "^5.0.2",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"style-loader": "^1.1.3",
|
|
"stylelint": "^13.1.0",
|
|
"stylelint-config-rational-order": "^0.1.2",
|
|
"stylelint-no-browser-hacks": "^1.2.1",
|
|
"stylelint-order": "^4.0.0",
|
|
"webpack": "^4.41.5",
|
|
"webpack-cli": "^3.3.10",
|
|
"webpack-concat-plugin": "^3.0.0",
|
|
"webpack-dev-server": "^3.10.3",
|
|
"webpack-merge": "^4.2.2"
|
|
},
|
|
"dependencies": {
|
|
"alameda": "^1.4.0",
|
|
"document-register-element": "^1.14.3",
|
|
"flv.js": "^1.5.0",
|
|
"hls.js": "^0.13.1",
|
|
"howler": "^2.1.3",
|
|
"jellyfin-noto": "https://github.com/jellyfin/jellyfin-noto",
|
|
"jquery": "^3.4.1",
|
|
"jstree": "^3.3.7",
|
|
"libass-wasm": "https://github.com/jellyfin/JavascriptSubtitlesOctopus",
|
|
"libjass": "^0.11.0",
|
|
"material-design-icons-iconfont": "^5.0.1",
|
|
"native-promise-only": "^0.8.0-a",
|
|
"resize-observer-polyfill": "^1.5.1",
|
|
"shaka-player": "^2.5.9",
|
|
"sortablejs": "^1.10.2",
|
|
"swiper": "^5.3.1",
|
|
"webcomponents.js": "^0.7.24",
|
|
"whatwg-fetch": "^3.0.0"
|
|
},
|
|
"browserslist": [
|
|
"last 2 Firefox versions",
|
|
"last 2 Chrome versions",
|
|
"last 2 ChromeAndroid versions",
|
|
"last 2 Safari versions",
|
|
"last 2 iOS versions",
|
|
"last 2 Edge versions",
|
|
"Chrome 38",
|
|
"Chrome 47",
|
|
"Chrome 53",
|
|
"Chrome 56",
|
|
"Chrome 63",
|
|
"Firefox ESR"
|
|
],
|
|
"scripts": {
|
|
"serve": "webpack-dev-server --config webpack.dev.js --open",
|
|
"build": "webpack --config webpack.prod.js",
|
|
"lint": "eslint \"src\"",
|
|
"stylelint": "stylelint \"src/**/*.css\"",
|
|
"prepare": "webpack --config webpack.prod.js"
|
|
}
|
|
}
|