Introduce a longer smoke-test-full workflow for validating queue, media tools, localization, and reliability flows in one pass, and document both quick and full test commands for contributors.
54 lines
1.5 KiB
JSON
54 lines
1.5 KiB
JSON
{
|
|
"name": "twitch-vod-manager",
|
|
"version": "4.0.2",
|
|
"description": "Twitch VOD Manager - Download Twitch VODs easily",
|
|
"main": "dist/main.js",
|
|
"author": "xRangerDE",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "npm run build && electron .",
|
|
"test:e2e": "npm exec --yes --package=playwright -- node scripts/smoke-test.js",
|
|
"test:e2e:full": "npm exec --yes --package=playwright -- node scripts/smoke-test-full.js",
|
|
"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,
|
|
"artifactName": "Twitch-VOD-Manager-Setup-${version}.${ext}"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"deleteAppDataOnUninstall": false,
|
|
"createDesktopShortcut": true,
|
|
"createStartMenuShortcut": true,
|
|
"shortcutName": "Twitch VOD Manager v${version}",
|
|
"include": "build/installer.nsh"
|
|
},
|
|
"publish": {
|
|
"provider": "github",
|
|
"owner": "Sucukdeluxe",
|
|
"repo": "Twitch-VOD-Manager"
|
|
}
|
|
}
|
|
}
|