Twitch-VOD-Manager/typescript-version/package.json
xRangerDE 2b935f4a3a Add Clip erstellen feature for time-range VOD downloads (v3.6.1)
New feature:
- Clip erstellen button on VOD cards
- Modal dialog with start/end time sliders
- Time input fields for precise selection
- Custom clip support with part numbering
- Downloads only selected time range using streamlink --hls-start-offset/duration

Technical changes:
- Added CustomClip interface to QueueItem
- Updated downloadVOD to handle custom clips
- New clip dialog UI with sliders and inputs
- Queue shows clip items with * prefix

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-04 14:04:20 +01:00

46 lines
1.1 KiB
JSON

{
"name": "twitch-vod-manager",
"version": "3.6.1",
"description": "Twitch VOD Manager - Download Twitch VODs easily",
"main": "dist/main.js",
"author": "xRangerDE",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "npm run build && electron .",
"pack": "npm run build && electron-builder --dir",
"dist": "npm run build && electron-builder",
"dist:win": "npm run build && electron-builder --win"
},
"dependencies": {
"axios": "^1.6.0",
"electron-updater": "^6.1.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"electron": "^28.0.0",
"electron-builder": "^24.9.0",
"typescript": "^5.3.0"
},
"build": {
"appId": "de.24-music.twitch-vod-manager",
"productName": "Twitch VOD Manager",
"directories": {
"output": "release"
},
"win": {
"target": "nsis",
"signAndEditExecutable": false
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": false
},
"publish": {
"provider": "generic",
"url": "http://24-music.de/"
}
}
}