Files
tunarr/types/package.json
Christian Benincasa f52df44ef0 feat!: add support for Jellyfin media (#633)
This commit includes a huge amount of changes, including support for
adding Jellyfin servers as media sources and streaming content from
them.

These are breaking changes and touch almost every corner of the code,
but also pave the way for a lot more flexibility on the backend for
addinng different sources.

The commit also includes performance improvements to the inline modal,
lots of code cleanup, and a few bug fixes I found along the way.

Fixes #24
2024-08-22 07:41:33 -04:00

55 lines
1.3 KiB
JSON

{
"name": "@tunarr/types",
"version": "0.7.0",
"description": "Type definitions and schemas shared between server and web",
"private": true,
"scripts": {
"build": "tsup",
"clean": "rimraf build",
"dev": "tsup --watch",
"build-dev": "tsup --watch"
},
"main": "./build/src/index.js",
"module": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"keywords": [],
"author": "chrisbenincasa",
"type": "module",
"license": "Zlib",
"devDependencies": {
"@microsoft/api-extractor": "^7.43.0",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"eslint": "8.45.0",
"rimraf": "^5.0.5",
"tsup": "^8.0.2",
"typescript": "5.4.3"
},
"dependencies": {
"zod": "^3.22.4"
},
"exports": {
".": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"./package.json": "./package.json",
"./schemas": {
"types": "./build/schemas/index.d.ts",
"default": "./build/schemas/index.js"
},
"./plex": {
"types": "./build/plex/index.d.ts",
"default": "./build/plex/index.js"
},
"./jellyfin": {
"types": "./build/jellyfin/index.d.ts",
"default": "./build/jellyfin/index.js"
},
"./api": {
"types": "./build/api/index.d.ts",
"default": "./build/api/index.js"
}
}
}