mirror of
https://github.com/informaticker/discord-jellyfin-bot.git
synced 2024-11-24 18:41:57 +01:00
12febf55ac
Bumps [rimraf](https://github.com/isaacs/rimraf) from 4.4.1 to 5.0.0. - [Release notes](https://github.com/isaacs/rimraf/releases) - [Changelog](https://github.com/isaacs/rimraf/blob/main/CHANGELOG.md) - [Commits](https://github.com/isaacs/rimraf/compare/v4.4.1...v5.0.0) --- updated-dependencies: - dependency-name: rimraf dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
91 lines
2.7 KiB
JSON
91 lines
2.7 KiB
JSON
{
|
|
"name": "jellyfin-discord-music-bot",
|
|
"version": "0.0.7",
|
|
"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",
|
|
"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.3",
|
|
"@discord-nestjs/core": "^5.3.5",
|
|
"@discordjs/opus": "^0.9.0",
|
|
"@discordjs/voice": "^0.16.0",
|
|
"@jellyfin/sdk": "^0.8.1",
|
|
"@nestjs/common": "^9.4.0",
|
|
"@nestjs/config": "^2.2.0",
|
|
"@nestjs/core": "^9.4.0",
|
|
"@nestjs/event-emitter": "^1.3.1",
|
|
"@nestjs/platform-express": "^9.3.12",
|
|
"@nestjs/schedule": "^2.1.0",
|
|
"@nestjs/serve-static": "^3.0.1",
|
|
"@nestjs/terminus": "^9.2.2",
|
|
"date-fns": "^2.29.3",
|
|
"discord.js": "^14.9.0",
|
|
"joi": "^17.9.1",
|
|
"libsodium-wrappers": "^0.7.10",
|
|
"opusscript": "^0.0.8",
|
|
"reflect-metadata": "^0.1.13",
|
|
"rimraf": "^5.0.0",
|
|
"rxjs": "^7.2.0",
|
|
"uuid": "^9.0.0",
|
|
"ws": "^8.13.0",
|
|
"zod": "^3.21.4"
|
|
},
|
|
"devDependencies": {
|
|
"@nestjs/cli": "^9.3.0",
|
|
"@nestjs/schematics": "^9.1.0",
|
|
"@nestjs/testing": "^9.4.0",
|
|
"@types/cron": "^2.0.1",
|
|
"@types/express": "^4.17.13",
|
|
"@types/jest": "28.1.8",
|
|
"@types/node": "^18.15.11",
|
|
"@types/supertest": "^2.0.11",
|
|
"@typescript-eslint/eslint-plugin": "^5.57.0",
|
|
"@typescript-eslint/parser": "^5.57.0",
|
|
"eslint": "^8.38.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"jest": "28.1.3",
|
|
"prettier": "^2.8.7",
|
|
"source-map-support": "^0.5.20",
|
|
"supertest": "^6.1.3",
|
|
"ts-jest": "28.0.8",
|
|
"ts-loader": "^9.2.3",
|
|
"ts-node": "^10.0.0",
|
|
"tsconfig-paths": "4.2.0",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"jest": {
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"json",
|
|
"ts"
|
|
],
|
|
"rootDir": "src",
|
|
"testRegex": ".*\\.spec\\.ts$",
|
|
"transform": {
|
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
},
|
|
"collectCoverageFrom": [
|
|
"**/*.(t|j)s"
|
|
],
|
|
"coverageDirectory": "../coverage",
|
|
"testEnvironment": "node"
|
|
}
|
|
}
|