mirror of
https://github.com/imgfloat/server.git
synced 2026-02-05 03:39:26 +00:00
40 lines
1.0 KiB
JSON
40 lines
1.0 KiB
JSON
{
|
|
"name": "imgfloat-electron",
|
|
"version": "0.0.1",
|
|
"description": "Electron wrapper for the Imgfloat overlay",
|
|
"main": "src/main/node/app.js",
|
|
"build": {
|
|
"appId": "dev.kruhlmann.imgfloat",
|
|
"productName": "Imgfloat",
|
|
"files": [ "src/main/node/app.js" ],
|
|
"asar": false,
|
|
"directories": { "output": "dist" },
|
|
"linux": {
|
|
"target": ["AppImage"],
|
|
"category": "Utility",
|
|
"icon": "src/main/resources/assets/icon/raw_icon.png"
|
|
},
|
|
"win": {
|
|
"target": ["nsis"],
|
|
"icon": "src/main/resources/assets/icon/appicon.ico"
|
|
},
|
|
"nsis": {
|
|
"oneClick": true,
|
|
"perMachine": true,
|
|
"allowElevation": true,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"createDesktopShortcut": true,
|
|
"createStartMenuShortcut": true,
|
|
"shortcutName": "Imgfloat"
|
|
},
|
|
"mac": {
|
|
"category": "public.app-category.productivity",
|
|
"icon": "src/main/resources/assets/icon/macos.icns"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"electron": "^35.7.5",
|
|
"electron-builder": "^24.13.3"
|
|
}
|
|
}
|