Skip to content

Commit

Permalink
[feat/#123] exe파일 생성을 위한 package.json 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
lkhoony committed Nov 17, 2024
1 parent ba49066 commit 4f9a859
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"forge": {
"packagerConfig": {
"name": "AlignLab",
"outDir": "out/"
"outDir": "out/",
"executableName": "alignlab"
},
"rebuildConfig": {},
"makers": [
Expand All @@ -21,17 +22,15 @@
"name": "AlignLab",
"authors": "AlignLab Inc.",
"exe": "AlignLab.exe",
"setupExe": "AlignLabInstaller.exe",
"productDescription": "AlignLab의 Windows 설치 파일입니다."
"setupExe": "AlignLabInstaller.exe"
}
},
{
"name": "@electron-forge/maker-dmg",
"config": {
"name": "AlignLab",
"overwrite": true,
"format": "ULFO",
"productDescription": "AlignLab의 Mac 설치 파일입니다."
"format": "ULFO"
}
},
{
Expand All @@ -40,11 +39,16 @@
},
{
"name": "@electron-forge/maker-deb",
"config": {}
"config": {
"name": "alignlab",
"productDescription": "AlignLab의 데스크톱 애플리케이션"
}
},
{
"name": "@electron-forge/maker-rpm",
"config": {}
"config": {
"name": "alignlab"
}
}
]
}
Expand Down

0 comments on commit 4f9a859

Please sign in to comment.