mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2026-09-03 05:10:26 +03:00
The current strict peer dependency graph confused npm. This way, peer deps should be resolved in a much better way
24 lines
524 B
JSON
24 lines
524 B
JSON
{
|
|
"name": "@jellyfin-vue/shared",
|
|
"type": "module",
|
|
"description": "Shared code between Jellyfin Vue packages",
|
|
"exports": {
|
|
"./*": "./src/universal/*.ts",
|
|
"./node/*": "./src/node/*.ts"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"lint:inspect": "eslint-config-inspector",
|
|
"check:types": "vue-tsc",
|
|
"test": "vitest run"
|
|
},
|
|
"devDependencies": {
|
|
"@jellyfin-vue/configs": "*"
|
|
},
|
|
"dependencies": {
|
|
"dompurify": "3.2.6",
|
|
"marked": "15.0.12"
|
|
}
|
|
}
|