Add launcher catalog workflow and smoke tests
Some checks failed
Build / release (macos-latest) (push) Has been cancelled
Build / release (ubuntu-latest) (push) Has been cancelled
Build / release (windows-latest) (push) Has been cancelled
Windows Smoke Test / windows-smoke (push) Has been cancelled

This commit is contained in:
2026-05-04 14:06:05 +09:00
parent eb7ef9bbf2
commit 24a0569fb4
106 changed files with 24095 additions and 6 deletions

57
package.json Normal file
View File

@@ -0,0 +1,57 @@
{
"name": "mrslauncher",
"version": "3.0.9",
"productName": "MRS Launcher",
"description": "Modded Minecraft Launcher",
"author": "Daniel Scalzi (https://github.com/dscalzi/), peunsu (https://github.com/peunsu)",
"license": "UNLICENSED",
"homepage": "https://github.com/peunsu/MRSLauncher",
"bugs": {
"url": "https://github.com/peunsu/MRSLauncher/issues"
},
"private": true,
"main": "index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "npm run build && electron .",
"smoke": "npm run build && node scripts/smoke-runner.js",
"smoke:win": "npm run smoke",
"dist": "npm run build && electron-builder build",
"dist:win": "npm run dist -- -w",
"dist:mac": "npm run dist -- -m",
"dist:linux": "npm run dist -- -l",
"lint": "eslint ."
},
"engines": {
"node": "22.x.x"
},
"dependencies": {
"@electron/remote": "^2.1.3",
"adm-zip": "^0.5.16",
"discord-rpc-patch": "^4.0.1",
"ejs": "^3.1.10",
"ejs-electron": "^3.0.0",
"electron-updater": "^6.7.3",
"fs-extra": "^11.3.3",
"github-syntax-dark": "^0.5.0",
"got": "^11.8.5",
"helios-core": "~2.3.0",
"helios-distribution-types": "^1.3.0",
"jquery": "^3.7.1",
"lodash.merge": "^4.6.2",
"semver": "^7.7.3",
"toml": "^3.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@stylistic/eslint-plugin": "^5.6.1",
"electron": "^39.2.7",
"electron-builder": "^26.4.0",
"eslint": "^9.39.2",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peunsu/MRSLauncher.git"
}
}