gitextract_y7ozec1y/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ └── bug_report.md │ └── workflows/ │ ├── lint.yaml │ ├── publish.yaml │ └── test.yaml ├── .gitignore ├── .npmrc ├── .prettierrc.yaml ├── .stylelintrc.json ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── eslint.config.mjs ├── package.json ├── renovate.json ├── src/ │ ├── app.ts │ ├── components/ │ │ ├── __tests__/ │ │ │ └── jellyfinApi.test.ts │ │ ├── codecSupportHelper.ts │ │ ├── commandHandler.ts │ │ ├── deviceprofileBuilder.ts │ │ ├── documentManager.ts │ │ ├── jellyfinActions.ts │ │ ├── jellyfinApi.ts │ │ ├── maincontroller.ts │ │ └── playbackManager.ts │ ├── css/ │ │ └── jellyfin.css │ ├── helpers.ts │ ├── index.html │ └── types/ │ ├── appStatus.ts │ └── global.d.ts ├── stylelint.config.js ├── tsconfig.json └── vite.config.ts