0
0
mirror of https://github.com/jellyfin/jellyfin-vue.git synced 2025-06-11 13:16:56 +00:00
Files
jellyfin-vue/packages/tauri-runtime/package.json
2025-03-01 22:06:58 +00:00

31 lines
825 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.2.0"
},
"dependencies": {
"@jellyfin-vue/frontend": "*",
"@tauri-apps/api": "2.3.0"
}
}