Files
client/package.json

70 lines
1.5 KiB
JSON

{
"name": "imgfloat-client",
"version": "1.0.2",
"description": "Electron wrapper for the Imgfloat overlay",
"main": "src/main.js",
"build": {
"appId": "dev.kruhlmann.imgfloat",
"productName": "Imgfloat",
"files": [
"src/**",
"res/**"
],
"publish": {
"provider": "github",
"owner": "imgfloat",
"repo": "client"
},
"asar": false,
"directories": {
"output": "dist"
},
"linux": {
"target": [
"AppImage"
],
"category": "Utility",
"icon": "res/icon/linux"
},
"win": {
"target": [
"nsis",
"portable"
],
"icon": "res/icon/appicon.ico"
},
"portable": { "artifactName": "Imgfloat.exe" },
"nsis": {
"oneClick": true,
"perMachine": true,
"allowElevation": true,
"allowToChangeInstallationDirectory": false,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Imgfloat",
"installerIcon": "res/icon/appicon.ico",
"uninstallerIcon": "res/icon/appicon.ico"
},
"mac": {
"category": "public.app-category.productivity",
"icon": "res/icon/macos.icns",
"target": [
{
"target": "dmg",
"arch": [
"arm64"
]
}
]
}
},
"dependencies": {
"electron-updater": "^6.7.3"
},
"devDependencies": {
"electron": "^39.2.7",
"electron-builder": "^24.13.3",
"prettier": "^3.7.4"
}
}