- Update version in package.json to 2.0.6 - Add changelog entries for the latest fixes: - Remote configuration settings properly collected and applied - Remote host and credentials now correctly stored in config - Non-interactive mode support for scripted installations - Better handling of piped input for remote configuration - Added debug output to help troubleshoot configuration issues
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "transmission-rss-manager",
|
|
"version": "2.0.6",
|
|
"description": "A comprehensive web-based tool to automate and manage your Transmission torrent downloads with RSS feed integration and intelligent media organization",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"dev": "nodemon server.js",
|
|
"lint": "eslint --fix --ext .js,.jsx .",
|
|
"test": "jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://git.powerdata.dk/masterdraco/transmission-rss-manager.git"
|
|
},
|
|
"keywords": [
|
|
"transmission",
|
|
"rss",
|
|
"torrent",
|
|
"automation",
|
|
"media",
|
|
"manager"
|
|
],
|
|
"author": "Your Name",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"bcrypt": "^5.1.0",
|
|
"body-parser": "^1.20.2",
|
|
"cors": "^2.8.5",
|
|
"express": "^4.18.2",
|
|
"jsonwebtoken": "^9.0.0",
|
|
"morgan": "^1.10.0",
|
|
"node-fetch": "^2.6.11",
|
|
"semver": "^7.5.4",
|
|
"transmission-promise": "^1.1.5",
|
|
"xml2js": "^0.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.42.0",
|
|
"jest": "^29.5.0",
|
|
"nodemon": "^2.0.22"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.0.0"
|
|
}
|
|
} |