Files
ArrQueueCleaner/package.json
TheLegendTubaGuy 1a0ffd0315 Initia commit
2025-09-02 22:24:41 -05:00

30 lines
634 B
JSON

{
"name": "arr-queue-cleaner",
"version": "1.0.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"
},
"dependencies": {
"axios": "^1.6.0",
"cron": "^3.1.0",
"dotenv": "^16.3.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/jest": "^29.5.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=22"
}
}