mirror of
https://github.com/chrisbenincasa/tunarr.git
synced 2026-04-18 09:03:35 -04:00
This commit includes a huge amount of changes, including support for adding Jellyfin servers as media sources and streaming content from them. These are breaking changes and touch almost every corner of the code, but also pave the way for a lot more flexibility on the backend for addinng different sources. The commit also includes performance improvements to the inline modal, lots of code cleanup, and a few bug fixes I found along the way. Fixes #24
80 lines
2.4 KiB
JSON
80 lines
2.4 KiB
JSON
{
|
|
"name": "@tunarr/web",
|
|
"version": "0.7.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.build.json --noEmit",
|
|
"build-dev": "tsc -p tsconfig.build.json --noEmit --watch",
|
|
"bundle": "vite build",
|
|
"dev": "vite",
|
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
"preview": "vite preview",
|
|
"test": "vitest",
|
|
"typecheck": "tsc -p tsconfig.build.json --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@emotion/react": "^11.11.1",
|
|
"@emotion/styled": "^11.11.0",
|
|
"@hookform/error-message": "^2.0.1",
|
|
"@mui/icons-material": "^5.14.16",
|
|
"@mui/material": "^5.15.14",
|
|
"@mui/x-date-pickers": "^6.19.2",
|
|
"@tanstack/react-query": "^5.18.1",
|
|
"@tanstack/react-query-devtools": "^5.18.1",
|
|
"@tanstack/react-router": "^1.35.6",
|
|
"@tunarr/shared": "workspace:*",
|
|
"@tunarr/types": "workspace:*",
|
|
"@uidotdev/usehooks": "^2.4.1",
|
|
"@zodios/core": "^10.9.6",
|
|
"@zodios/plugins": "^10.6.0",
|
|
"axios": "^1.6.0",
|
|
"bowser": "^2.11.0",
|
|
"dayjs": "^1.11.10",
|
|
"hls.js": "^1.4.12",
|
|
"immer": "^10.0.3",
|
|
"localforage": "^1.10.0",
|
|
"lodash-es": "^4.17.21",
|
|
"match-sorter": "^6.3.1",
|
|
"material-react-table": "^2.13.1",
|
|
"notistack": "^3.0.1",
|
|
"pluralize": "^8.0.0",
|
|
"react": "^18.2.0",
|
|
"react-dnd": "^16.0.1",
|
|
"react-dnd-html5-backend": "^16.0.1",
|
|
"react-dom": "^18.2.0",
|
|
"react-hook-form": "^7.48.2",
|
|
"react-window": "^1.8.9",
|
|
"sort-by": "^1.2.0",
|
|
"usehooks-ts": "^2.14.0",
|
|
"uuid": "^9.0.1",
|
|
"zod": "^3.22.4",
|
|
"zustand": "^4.4.6"
|
|
},
|
|
"devDependencies": {
|
|
"@tanstack/react-table": "8.19.3",
|
|
"@tanstack/router-cli": "^1.35.4",
|
|
"@tanstack/router-devtools": "^1.36.0",
|
|
"@tanstack/router-vite-plugin": "^1.35.4",
|
|
"@types/lodash-es": "^4.17.10",
|
|
"@types/pluralize": "^0.0.33",
|
|
"@types/react": "^18.2.15",
|
|
"@types/react-dom": "^18.2.7",
|
|
"@types/react-window": "^1.8.8",
|
|
"@types/uuid": "^9.0.6",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"@vitejs/plugin-react-swc": "^3.3.2",
|
|
"eslint": "^8.45.0",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-react-refresh": "^0.4.3",
|
|
"nodemon": "^3.0.3",
|
|
"openapi-zod-client": "^1.14.0",
|
|
"ts-essentials": "^9.4.1",
|
|
"typescript": "5.4.3",
|
|
"vite": "^5.4.1",
|
|
"vite-plugin-svgr": "^4.2.0",
|
|
"vitest": "^2.0.5"
|
|
}
|
|
}
|