43 lines
870 B
JSON
43 lines
870 B
JSON
|
|
{
|
||
|
|
"name": "bumble-electron",
|
||
|
|
"version": "1.0.0",
|
||
|
|
"description": "Desktop Electron shell for Bumble Web.",
|
||
|
|
"main": "src/main.js",
|
||
|
|
"scripts": {
|
||
|
|
"start": "electron .",
|
||
|
|
"dev": "electron .",
|
||
|
|
"build": "electron-builder"
|
||
|
|
},
|
||
|
|
"keywords": [
|
||
|
|
"electron",
|
||
|
|
"bumble",
|
||
|
|
"desktop"
|
||
|
|
],
|
||
|
|
"author": "",
|
||
|
|
"license": "ISC",
|
||
|
|
"build": {
|
||
|
|
"appId": "com.victorstools.bumble",
|
||
|
|
"productName": "Bumble Desktop",
|
||
|
|
"mac": {
|
||
|
|
"category": "public.app-category.social-networking",
|
||
|
|
"icon": "bumble_icon_512.png"
|
||
|
|
},
|
||
|
|
"win": {
|
||
|
|
"target": "nsis",
|
||
|
|
"icon": "bumble_icon_512.png"
|
||
|
|
},
|
||
|
|
"linux": {
|
||
|
|
"target": [
|
||
|
|
"AppImage",
|
||
|
|
"deb"
|
||
|
|
],
|
||
|
|
"category": "Network",
|
||
|
|
"icon": "bumble_icon_512.png"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"electron": "^39.1.1",
|
||
|
|
"electron-builder": "^26.0.12"
|
||
|
|
}
|
||
|
|
}
|