mirror of
https://github.com/thelegendtubaguy/ArrQueueCleaner.git
synced 2026-01-12 17:30:55 -06:00
* Close #57 Adds support for multiple sonarr hosts * Address potential logging of sensitive info
38 lines
1017 B
JSON
38 lines
1017 B
JSON
{
|
|
"name": "arr-queue-cleaner",
|
|
"version": "1.3.0",
|
|
"description": "Automated queue cleaner for Sonarr and Radarr",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"dev": "tsx --watch src/index.ts",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.13.0",
|
|
"cron": "^4.3.3",
|
|
"dotenv": "^17.2.3",
|
|
"yaml": "^2.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.38.0",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^24.9.1",
|
|
"@typescript-eslint/eslint-plugin": "^8.46.2",
|
|
"@typescript-eslint/parser": "^8.46.2",
|
|
"eslint": "^9.38.0",
|
|
"jest": "^30.2.0",
|
|
"ts-jest": "^29.4.5",
|
|
"tsx": "^4.20.6",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.46.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=22"
|
|
}
|
|
}
|