33 lines
891 B
JSON
33 lines
891 B
JSON
{
|
|
"name": "photo-renamer",
|
|
"version": "2.0.0",
|
|
"description": "사진 파일 이름 정리 앱",
|
|
"main": "src/main/index.js",
|
|
"scripts": {
|
|
"start": "NODE_ENV=development electron .",
|
|
"debug": "NODE_ENV=development electron --inspect=9229 --remote-debugging-port=9222 . 2>&1 | tee debug.log",
|
|
"build": "NODE_ENV=production electron-builder --mac --dir",
|
|
"dist": "NODE_ENV=production electron-builder --mac"
|
|
},
|
|
"build": {
|
|
"appId": "com.photorenamer.app",
|
|
"productName": "Photo Renamer",
|
|
"mac": {
|
|
"category": "public.app-category.photography",
|
|
"icon": "assets/icon.icns",
|
|
"target": [
|
|
{ "target": "dmg", "arch": ["arm64", "x64"] }
|
|
]
|
|
},
|
|
"files": [
|
|
"src/**/*",
|
|
"assets/**/*",
|
|
"node_modules/**/*"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"electron": "^28.0.0",
|
|
"electron-builder": "^24.9.1"
|
|
}
|
|
}
|