2025-11-22 22:36:37 +08:00
|
|
|
{
|
|
|
|
|
"name": "electron-webshell",
|
|
|
|
|
"version": "0.1.0",
|
2025-11-22 22:58:15 +08:00
|
|
|
"description": "Electron web shell that opens a specified URL in fullscreen.",
|
2025-11-22 22:36:37 +08:00
|
|
|
"main": "main.js",
|
|
|
|
|
"private": true,
|
2025-11-22 22:58:15 +08:00
|
|
|
"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",
|
2025-11-22 22:36:37 +08:00
|
|
|
"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",
|
2025-11-22 22:58:15 +08:00
|
|
|
"artifactName": "${productName}-${version}-${arch}.${ext}",
|
|
|
|
|
"maintainer": "ThbTech <support@thbtech.local>"
|
2025-11-22 22:36:37 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|