package.json (1089B)
1 { 2 "name": "ls_vertretungsplan_desktop", 3 "version": "0.1.1", 4 "description": "Eine Anwendung die den Vertretungsplan auf dem Desktop anzeigt", 5 "author": "Marcel Radzio", 6 "license": "", 7 "devDependencies": { 8 "electron": "^1.3.4", 9 "electron-builder": "^6.4.0" 10 }, 11 "scripts": { 12 "pack": "build --dir", 13 "dist": "build", 14 "release": "build" 15 }, 16 "build": { 17 "asar": true, 18 "appId": "de.nordgedanken.ls_vertretungsplan_desktop", 19 "category": "public.app-category.education", 20 "dmg": { 21 "contents": [ 22 { 23 "x": 410, 24 "y": 150, 25 "type": "link", 26 "path": "/Applications" 27 }, 28 { 29 "x": 130, 30 "y": 150, 31 "type": "file" 32 } 33 ] 34 }, 35 "win": { 36 "iconUrl": "https://github.com/MTRNord/ls-vertretungsplan-desktop/tree/master/app/LS.ico?raw=true", 37 "remoteReleases": "http://ls-desktop.herokuapp.com/download/0.1.0/", 38 "icon": "app/LS.ico" 39 }, 40 "linux": { 41 "target": [ 42 "deb", 43 "zip", 44 "rpm" 45 ] 46 } 47 } 48 }