mirror of
https://github.com/chrisbenincasa/tunarr
synced 2026-04-21 13:37:15 +00:00
Allows for better loudness normalization vs straight volume adjustment using the ffmpeg loudnorm filter. The i, lra, and tp values are all configurable in the advanced transcode settings.
60 lines
1.7 KiB
JSON
60 lines
1.7 KiB
JSON
{
|
|
"name": "@tunarr/types",
|
|
"version": "1.2.0-dev.1",
|
|
"description": "Type definitions and schemas shared between server and web",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "tsc --declaration ",
|
|
"clean": "rimraf ./build/",
|
|
"dev": "tsc --declaration --watch",
|
|
"build-dev": "tsc --declaration --watch",
|
|
"gen-emby": "typed-openapi https://swagger.emby.media/openapi.json -r zod -o ./build/emby-generated.ts"
|
|
},
|
|
"main": "./dist/src/index.js",
|
|
"module": "./dist/src/index.js",
|
|
"types": "./dist/src/index.d.ts",
|
|
"keywords": [],
|
|
"author": "chrisbenincasa",
|
|
"type": "module",
|
|
"license": "Zlib",
|
|
"devDependencies": {
|
|
"@microsoft/api-extractor": "^7.43.0",
|
|
"@typescript-eslint/eslint-plugin": "catalog:",
|
|
"@typescript-eslint/parser": "catalog:",
|
|
"eslint": "catalog:",
|
|
"rimraf": "^5.0.5",
|
|
"tsup": "^8.0.2",
|
|
"typed-openapi": "^0.10.1",
|
|
"typescript": "catalog:"
|
|
},
|
|
"dependencies": {
|
|
"zod": "catalog:"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/src/index.d.ts",
|
|
"default": "./dist/src/index.js"
|
|
},
|
|
"./package.json": "./package.json",
|
|
"./schemas": {
|
|
"types": "./dist/src/schemas/index.d.ts",
|
|
"default": "./dist/src/schemas/index.js"
|
|
},
|
|
"./plex": {
|
|
"types": "./dist/src/plex/index.d.ts",
|
|
"default": "./dist/src/plex/index.js"
|
|
},
|
|
"./jellyfin": {
|
|
"types": "./dist/src/jellyfin/index.d.ts",
|
|
"default": "./dist/src/jellyfin/index.js"
|
|
},
|
|
"./emby": {
|
|
"types": "./dist/src/emby/index.d.ts",
|
|
"default": "./dist/src/emby/index.js"
|
|
},
|
|
"./api": {
|
|
"types": "./dist/src/api/index.d.ts",
|
|
"default": "./dist/src/api/index.js"
|
|
}
|
|
}
|
|
}
|