Files
tunarr/server/package.json
2025-02-28 15:48:09 -05:00

116 lines
3.8 KiB
JSON

{
"name": "@tunarr/server",
"version": "0.18.12",
"description": "Create LiveTV channels from your Plex media",
"license": "Zlib",
"private": true,
"author": "chrisbenincasa",
"type": "module",
"main": "src/index.ts",
"bin": "dist/bundle.cjs",
"scripts": {
"build": "cross-env NODE_OPTIONS=--max-old-space-size=8192 tsc -p tsconfig.build.json",
"build-dev": "cross-env NODE_ENV=development tsc -p tsconfig.build.json --noEmit --watch",
"typecheck": "tsc -p tsconfig.build.json --noEmit",
"bundle": "dotenv -- tsx scripts/bundle-old.ts",
"make-bin": "dotenv -- tsx scripts/make-bin.ts",
"clean": "rimraf --glob ./build/ ./dist/ ./src/generated/web-imports.ts ./src/generated/web-imports.js",
"debug": "dotenv -e .env.development -- tsx watch --trace-warnings --tsconfig ./tsconfig.build.json --ignore 'src/streams' --inspect-wait ./src",
"dev": "dotenv -e .env.development -- tsx watch --trace-warnings --tsconfig ./tsconfig.build.json --ignore 'build' --ignore 'src/streams' --ignore 'src/**/*.test.ts' ./src/index.ts",
"kysely": "dotenv -e .env.development -- kysely",
"preinstall": "npx only-allow pnpm",
"run-fixer": "dotenv -e .env.development -- tsx src/index.ts fixer",
"tunarr": "dotenv -e .env.development -- tsx src/index.ts",
"test": "vitest",
"test:watch": "vitest --watch"
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"@fastify/multipart": "^9.0.1",
"@fastify/static": "^8.0.1",
"@fastify/swagger": "^9.0.1",
"@iptv/xmltv": "^1.0.1",
"@scalar/fastify-api-reference": "^1.25.106",
"@tunarr/playlist": "^1.1.0",
"@tunarr/shared": "workspace:*",
"@tunarr/types": "workspace:*",
"@types/better-sqlite3": "^7.6.12",
"archiver": "^7.0.1",
"async-mutex": "^0.5.0",
"async-retry": "^1.3.3",
"axios": "^1.6.0",
"better-sqlite3": "11.8.1",
"chalk": "^5.3.0",
"cron-parser": "^4.9.0",
"dayjs": "^1.11.10",
"drizzle-orm": "^0.39.3",
"fast-xml-parser": "^4.3.5",
"fastify": "^5.0.0",
"fastify-graceful-shutdown": "^4.0.1",
"fastify-plugin": "^5.0.1",
"fastify-print-routes": "^3.2.0",
"fastify-type-provider-zod": "^4.0.1",
"file-type": "^19.6.0",
"inversify": "^6.2.1",
"kysely": "^0.27.4",
"lodash-es": "^4.17.21",
"lowdb": "^7.0.0",
"node-cache": "^5.1.2",
"node-schedule": "^2.1.1",
"node-ssdp": "^4.0.0",
"p-queue": "^8.0.1",
"pino": "^9.0.0",
"pino-pretty": "^11.2.2",
"pino-roll": "^1.1.0",
"random-js": "2.1.0",
"reflect-metadata": "^0.2.2",
"retry": "^0.13.1",
"ts-pattern": "^5.4.0",
"tslib": "^2.6.2",
"uuid": "^9.0.1",
"yargs": "^17.7.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@rollup/plugin-swc": "^0.4.0",
"@types/archiver": "^6.0.2",
"@types/async-retry": "^1.4.8",
"@types/lodash-es": "4.17.9",
"@types/node": "22.10.7",
"@types/node-abi": "^3.0.3",
"@types/node-schedule": "^2.1.3",
"@types/retry": "^0.12.5",
"@types/tmp": "^0.2.6",
"@types/unzip-stream": "^0.3.4",
"@types/uuid": "^9.0.6",
"@types/yargs": "^17.0.29",
"@yao-pkg/pkg": "^6.3.0",
"copyfiles": "^2.2.0",
"cross-env": "^7.0.3",
"del-cli": "^3.0.0",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.1",
"drizzle-kit": "^0.30.4",
"esbuild-plugin-pino": "^2.2.1",
"fast-glob": "^3.3.2",
"globals": "^15.0.0",
"kysely-ctl": "^0.9.0",
"make-vfs": "^1.0.15",
"node-abi": "^3.74.0",
"prettier": "^3.5.1",
"rimraf": "^5.0.5",
"tar": "^7.4.3",
"thread-stream": "^3.1.0",
"tmp": "^0.2.1",
"tmp-promise": "^3.0.3",
"ts-essentials": "^10.0.0",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.2",
"typed-emitter": "^2.1.0",
"typescript": "5.7.3",
"typescript-eslint": "^8.19.0",
"unzip-stream": "^0.3.4",
"vitest": "^2.1.8"
}
}