- Fixed bootstrap-installer to prompt for installation directory with /opt/trans-install as default - Updated main-installer to detect and use existing installation path from service file - Modified config-module to use installation directory from environment or default to /opt/trans-install - Updated README with clear information about the default installation path - Bumped version to 2.0.7 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "transmission-rss-manager",
|
|
"version": "2.0.7",
|
|
"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"
|
|
}
|
|
} |