discord-jellyfin-bot/package.json
dependabot[bot] 593e92dea3
⬆️(deps-dev): Bump ts-loader from 9.4.2 to 9.4.4 (#216)
Bumps [ts-loader](https://github.com/TypeStrong/ts-loader) from 9.4.2 to 9.4.4.
- [Release notes](https://github.com/TypeStrong/ts-loader/releases)
- [Changelog](https://github.com/TypeStrong/ts-loader/blob/main/CHANGELOG.md)
- [Commits](https://github.com/TypeStrong/ts-loader/compare/v9.4.2...v9.4.4)

---
updated-dependencies:
- dependency-name: ts-loader
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-07 20:33:08 +02:00

93 lines
2.8 KiB
JSON

{
"name": "jellyfin-discord-music-bot",
"version": "0.0.9",
"description": "A simple and leightweight Discord Bot, that integrates with your Jellyfin Media server and enables you to listen to your favourite music directly from discord.",
"author": "manuel-rw",
"private": true,
"license": "MIT",
"type": "commonjs",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"dependencies": {
"@discord-nestjs/common": "^5.2.5",
"@discord-nestjs/core": "^5.3.8",
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.0",
"@jellyfin/sdk": "^0.7.0",
"@nestjs/common": "^9.4.0",
"@nestjs/config": "^3.0.0",
"@nestjs/core": "^9.4.0",
"@nestjs/event-emitter": "^1.3.1",
"@nestjs/platform-express": "^9.4.2",
"@nestjs/schedule": "^2.1.0",
"@nestjs/serve-static": "^4.0.0",
"@nestjs/terminus": "^9.2.2",
"date-fns": "^2.30.0",
"discord.js": "^14.11.0",
"joi": "^17.9.2",
"libsodium-wrappers": "^0.7.10",
"opusscript": "^0.1.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.1",
"rxjs": "^7.8.1",
"uuid": "^9.0.0",
"ws": "^8.13.0",
"zod": "^3.21.4",
"zod-validation-error": "^1.3.0"
},
"devDependencies": {
"@nestjs/cli": "^9.4.2",
"@nestjs/schematics": "^9.1.0",
"@nestjs/testing": "^9.4.0",
"@types/cron": "^2.0.1",
"@types/express": "^4.17.13",
"@types/jest": "29.5.1",
"@types/node": "^20.1.4",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "29.5.0",
"prettier": "^2.8.8",
"source-map-support": "^0.5.20",
"supertest": "^6.1.3",
"ts-jest": "29.1.0",
"ts-loader": "^9.4.4",
"ts-node": "^10.0.0",
"tsconfig-paths": "4.2.0",
"typescript": "^5.1.6"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}