45 lines
961 B
JSON
45 lines
961 B
JSON
|
|
{
|
|||
|
|
"name": "nexus-aza-remote",
|
|||
|
|
"version": "1.0.0",
|
|||
|
|
"description": "Remote Desktop – Screen Sharing & Control",
|
|||
|
|
"author": "Nexus",
|
|||
|
|
"main": "main.js",
|
|||
|
|
"scripts": {
|
|||
|
|
"start": "electron .",
|
|||
|
|
"rebuild": "electron-rebuild -f -w koffi",
|
|||
|
|
"dist": "electron-builder --win portable"
|
|||
|
|
},
|
|||
|
|
"dependencies": {
|
|||
|
|
"koffi": "^2.9.0",
|
|||
|
|
"peerjs": "^1.5.2"
|
|||
|
|
},
|
|||
|
|
"devDependencies": {
|
|||
|
|
"electron": "^28.0.0",
|
|||
|
|
"electron-builder": "^25.1.8",
|
|||
|
|
"electron-rebuild": "^3.2.9",
|
|||
|
|
"png-to-ico": "^3.0.1",
|
|||
|
|
"sharp": "^0.34.5"
|
|||
|
|
},
|
|||
|
|
"build": {
|
|||
|
|
"appId": "com.nexus.aza.remote",
|
|||
|
|
"productName": "Nexus AzA Remote",
|
|||
|
|
"files": [
|
|||
|
|
"main.js",
|
|||
|
|
"index.html",
|
|||
|
|
"renderer.js",
|
|||
|
|
"input.js",
|
|||
|
|
"node_modules/**/*"
|
|||
|
|
],
|
|||
|
|
"win": {
|
|||
|
|
"target": "portable",
|
|||
|
|
"icon": "icon.ico",
|
|||
|
|
"signAndEditExecutable": false,
|
|||
|
|
"signDlls": false
|
|||
|
|
},
|
|||
|
|
"mac": {
|
|||
|
|
"target": "zip"
|
|||
|
|
},
|
|||
|
|
"asar": false
|
|||
|
|
}
|
|||
|
|
}
|