mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2025-02-23 10:26:19 +00:00
Implements full window's fullscreen functionality inside @jellyfin-vue/tauri-runtime package Signed-off-by: Fernando Fernández <ferferga@hotmail.com> Co-authored-by: sean <sean.mcbroom@outlook.com>
31 lines
826 B
JSON
31 lines
826 B
JSON
{
|
|
"name": "@jellyfin-vue/tauri-runtime",
|
|
"type": "module",
|
|
"description": "The frontend including tauri-specific runtime code",
|
|
"imports": {
|
|
"#/*": "./src/*"
|
|
},
|
|
"scripts": {
|
|
"analyze:bundle": "vite build --mode analyze:bundle",
|
|
"analyze:cycles": "vite build --mode analyze:cycles",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"lint:inspect": "eslint-config-inspector",
|
|
"build": "vite build",
|
|
"check": "npm run lint && npm run check:types",
|
|
"check:types": "vue-tsc",
|
|
"start": "vite",
|
|
"serve": "vite preview",
|
|
"prod": "npm run build && npm run serve",
|
|
"clean": "git clean -fxd"
|
|
},
|
|
"devDependencies": {
|
|
"@jellyfin-vue/configs": "*",
|
|
"vite": "6.0.11"
|
|
},
|
|
"dependencies": {
|
|
"@jellyfin-vue/frontend": "*",
|
|
"@tauri-apps/api": "2.2.0"
|
|
}
|
|
}
|