jellyfin-discord-bot/package.json

47 lines
1.3 KiB
JSON
Raw Normal View History

2023-04-15 22:02:06 +02:00
{
"name": "node-jellyfin-discord-bot",
"version": "0.0.1",
"description": "A discord bot to sync jellyfin accounts with discord roles",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@discordjs/rest": "^1.7.0",
"@tsconfig/recommended": "^1.0.2",
"@types/node": "^18.15.11",
"@types/request": "^2.48.8",
2023-05-04 23:38:11 +02:00
"@types/uuid": "^9.0.1",
2023-04-15 22:02:06 +02:00
"axios": "^1.3.5",
"date-fns": "^2.29.3",
"discord-api-types": "^0.37.38",
"discord.js": "^14.9.0",
"dotenv": "^16.0.3",
"jellyfin-apiclient": "^1.10.0",
2023-05-04 23:38:11 +02:00
"sqlite3": "^5.1.6",
2023-04-15 22:02:06 +02:00
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
2023-05-04 23:38:11 +02:00
"uuid": "^9.0.0",
2023-04-15 22:02:06 +02:00
"winston": "^3.8.2"
},
"scripts": {
"build": "tsc",
"buildwatch": "tsc --watch",
"clean": "rimraf build",
"start": "npm run clean && node build/index.js",
"debuggable": "node build/index.js --inspect-brk",
"monitor": "nodemon build/index.js",
2023-04-18 23:44:50 +02:00
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix"
2023-04-15 22:02:06 +02:00
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"jest": "^29.5.0",
"jest-cli": "^29.5.0",
2023-04-18 23:44:50 +02:00
"nodemon": "^2.0.22",
2023-04-15 22:02:06 +02:00
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0"
}
}