mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2025-06-07 18:31:52 +00:00
Vite is now a monorepo-wide package anyway Signed-off-by: Fernando Fernández <ferferga@hotmail.com>
25 lines
514 B
JSON
25 lines
514 B
JSON
{
|
|
"name": "@jellyfin-vue/tauri-packaging",
|
|
"private": true,
|
|
"scripts": {
|
|
"start": "npm run gen-icon && tauri dev",
|
|
"gen-icon": "tauri icon ../../frontend/public/icon.svg",
|
|
"build": "npm run gen-icon && tauri build",
|
|
"clean": "git clean -fxd"
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "2.5.0"
|
|
},
|
|
"dependencies": {
|
|
"@jellyfin-vue/tauri-runtime": "*"
|
|
},
|
|
"peerDependencies": {
|
|
"vite": "*"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"vite": {
|
|
"optional": true
|
|
}
|
|
}
|
|
}
|