Files
minecraft_launcher/package.json
claude-bot db5a1e0eac Scaffold resource pack installer entry
Add a second Electron entry under src/installer-rp/ + installer-rp/
launched by `npm run installer:rp`. It is structurally separate from
the music quiz installer (own tsconfig, own preload, own renderer),
shares the existing styles via a relative link, and exposes a
three-step UI: pick a 음악퀴즈, run the install, then a 완료 page that
can open the resourcepacks folder or quit.

The install IPC handler currently scaffolds the flow per docs/add.md
(yt-dlp prep → music download → image normalize → zip build → place
at %appdata%/.minecraft/resourcepacks/) but the actual work is still
TODO. Cancel/cleanup of %appdata%/.mc_custom/.temp/ is wired up so
that future iterations can plug each step in without rewiring.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-12 15:11:41 +09:00

33 lines
1.1 KiB
JSON

{
"name": "minecraft-music-quiz-installer",
"version": "0.1.0",
"description": "마인크래프트 음악퀴즈 간편설치기 + 관리 사이트",
"main": "dist/installer/main.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "tsc -p tsconfig.server.json && node dist/server/app.js",
"dev:server": "tsc -p tsconfig.server.json && node dist/server/app.js",
"installer": "tsc -p tsconfig.installer.json && electron .",
"installer:rp": "tsc -p tsconfig.installer-rp.json && electron dist/installer-rp/main.js",
"dist:win": "tsc -p tsconfig.installer.json && electron-builder --win"
},
"dependencies": {
"express": "^4.19.2",
"express-session": "^1.18.0",
"ejs": "^3.1.10",
"multer": "^1.4.5-lts.1",
"nat-upnp": "^1.1.1",
"extract-zip": "^2.0.1"
},
"devDependencies": {
"typescript": "^5.5.4",
"@types/node": "^22.5.0",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/ejs": "^3.1.5",
"@types/multer": "^1.4.11",
"electron": "^31.4.0",
"electron-builder": "^24.13.3"
}
}