MasterDraco 4a7d8336a5 Update to version 2.0.0 with new git-based installation and update system
- Bump version from 1.2.0 to 2.0.0
- Update repository URL
- Update README.md with new features and installation instructions
- Add documentation for web-based update system
- Update file structure documentation

🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
2025-03-04 23:58:56 +00:00

45 lines
1.1 KiB
JSON

{
"name": "transmission-rss-manager",
"version": "2.0.0",
"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",
"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"
}
}