electron-test/package.json

52 lines
1.2 KiB
JSON

{
"name": "electron-webshell",
"version": "0.1.0",
"description": "Electron web shell that opens a specified URL in fullscreen.",
"main": "main.js",
"private": true,
"author": {
"name": "ThbTech",
"email": "support@thbtech.local"
},
"homepage": "http://121.37.111.42:3000/ThbTech/electron-test",
"repository": {
"type": "git",
"url": "http://121.37.111.42:3000/ThbTech/electron-test.git"
},
"license": "MIT",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build:win": "electron-builder --win",
"build:linux": "electron-builder --linux"
},
"devDependencies": {
"electron": "^31.7.7",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "com.example.webshell",
"productName": "WebShell",
"electronDist": "./node_modules/electron/dist",
"files": [
"main.js",
"package.json"
],
"win": {
"target": [
"nsis"
],
"artifactName": "${productName}-Setup-${version}-${arch}.exe"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Utility",
"artifactName": "${productName}-${version}-${arch}.${ext}",
"maintainer": "ThbTech <support@thbtech.local>"
}
}
}