2023-11-11 11:16:27 +00:00
|
|
|
{
|
2024-01-25 00:08:57 +00:00
|
|
|
"name": "@tunarr/types",
|
2026-01-20 21:44:50 +00:00
|
|
|
"version": "1.2.0-dev.1",
|
2024-03-20 14:49:38 +00:00
|
|
|
"description": "Type definitions and schemas shared between server and web",
|
2024-07-08 17:20:12 +00:00
|
|
|
"private": true,
|
2023-11-11 11:16:27 +00:00
|
|
|
"scripts": {
|
2025-01-05 12:58:58 +00:00
|
|
|
"build": "tsc --declaration ",
|
2024-09-10 14:26:51 +00:00
|
|
|
"clean": "rimraf ./build/",
|
2025-01-05 12:58:58 +00:00
|
|
|
"dev": "tsc --declaration --watch",
|
2025-02-18 18:21:32 +00:00
|
|
|
"build-dev": "tsc --declaration --watch",
|
|
|
|
|
"gen-emby": "typed-openapi https://swagger.emby.media/openapi.json -r zod -o ./build/emby-generated.ts"
|
2023-11-11 11:16:27 +00:00
|
|
|
},
|
2025-08-27 20:48:46 +00:00
|
|
|
"main": "./dist/src/index.js",
|
|
|
|
|
"module": "./dist/src/index.js",
|
|
|
|
|
"types": "./dist/src/index.d.ts",
|
2023-11-11 11:16:27 +00:00
|
|
|
"keywords": [],
|
2024-01-25 00:08:57 +00:00
|
|
|
"author": "chrisbenincasa",
|
2023-11-11 11:16:27 +00:00
|
|
|
"type": "module",
|
2024-01-25 00:08:57 +00:00
|
|
|
"license": "Zlib",
|
2023-11-11 11:16:27 +00:00
|
|
|
"devDependencies": {
|
2024-03-29 11:38:09 +00:00
|
|
|
"@microsoft/api-extractor": "^7.43.0",
|
2026-02-13 20:09:01 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "catalog:",
|
|
|
|
|
"@typescript-eslint/parser": "catalog:",
|
2025-10-01 01:02:20 +00:00
|
|
|
"eslint": "catalog:",
|
2024-03-05 18:13:26 +00:00
|
|
|
"rimraf": "^5.0.5",
|
2024-03-06 17:44:11 +00:00
|
|
|
"tsup": "^8.0.2",
|
2025-02-18 18:21:32 +00:00
|
|
|
"typed-openapi": "^0.10.1",
|
2025-10-01 01:02:20 +00:00
|
|
|
"typescript": "catalog:"
|
2023-11-13 20:55:14 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-10-01 01:02:20 +00:00
|
|
|
"zod": "catalog:"
|
2023-11-13 20:55:14 +00:00
|
|
|
},
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
2025-08-27 20:48:46 +00:00
|
|
|
"types": "./dist/src/index.d.ts",
|
|
|
|
|
"default": "./dist/src/index.js"
|
2023-11-13 20:55:14 +00:00
|
|
|
},
|
2024-03-05 18:13:26 +00:00
|
|
|
"./package.json": "./package.json",
|
2023-11-13 20:55:14 +00:00
|
|
|
"./schemas": {
|
2025-08-27 20:48:46 +00:00
|
|
|
"types": "./dist/src/schemas/index.d.ts",
|
|
|
|
|
"default": "./dist/src/schemas/index.js"
|
2023-11-17 01:14:00 +00:00
|
|
|
},
|
|
|
|
|
"./plex": {
|
2025-08-27 20:48:46 +00:00
|
|
|
"types": "./dist/src/plex/index.d.ts",
|
|
|
|
|
"default": "./dist/src/plex/index.js"
|
2024-01-18 01:53:17 +00:00
|
|
|
},
|
2024-08-22 11:41:33 +00:00
|
|
|
"./jellyfin": {
|
2025-08-27 20:48:46 +00:00
|
|
|
"types": "./dist/src/jellyfin/index.d.ts",
|
|
|
|
|
"default": "./dist/src/jellyfin/index.js"
|
2024-08-22 11:41:33 +00:00
|
|
|
},
|
2025-02-18 18:21:32 +00:00
|
|
|
"./emby": {
|
2025-08-27 20:48:46 +00:00
|
|
|
"types": "./dist/src/emby/index.d.ts",
|
|
|
|
|
"default": "./dist/src/emby/index.js"
|
2025-02-18 18:21:32 +00:00
|
|
|
},
|
2024-01-18 01:53:17 +00:00
|
|
|
"./api": {
|
2025-08-27 20:48:46 +00:00
|
|
|
"types": "./dist/src/api/index.d.ts",
|
|
|
|
|
"default": "./dist/src/api/index.js"
|
2023-11-13 20:55:14 +00:00
|
|
|
}
|
2023-11-11 11:16:27 +00:00
|
|
|
}
|
|
|
|
|
}
|