Files
oa-electron/package.json
gxwebsoft 3525b84c6d chore(app): 更新应用配置和依赖项
- 修改应用名称从"websoft"到"微笑软件"
- 更新版本号从1.0.0到3.0.0
- 更改产品描述为完整的SaaS平台说明
- 将启动脚本从start重命名为dev
- 修复构建命令拼写错误(buider改为build)
- 更新应用ID和产品名称配置
- 修改首页标题从"广西体育中心"到"网宿软件"
- 更新主窗口加载的URL地址
- 在package-lock.json中更新包名称和依赖标记
2026-02-03 19:05:03 +08:00

44 lines
981 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"name": "网宿软件",
"version": "3.0.0",
"description": "构建现代Web应用基于Java SpringBoot构建的SaaS软件平台、支持Vue、React前端框架\n自信地创建高性能和生产级的全栈web应用程序和网站",
"main": "main.js",
"scripts": {
"dev": "electron .",
"pack": "electron-builder --dir",
"build": "electron-builder"
},
"build": {
"appId": "top.websoft",
"productName": "WebSoft",
"win": {
"icon": "logo.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"mac": {
"icon": "icons.icns"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true
}
},
"author": "Websoft Inc.",
"license": "ISC",
"dependencies": {
},
"devDependencies": {
"electron": "^34.1.1",
"electron-builder": "^25.1.8",
"nodemon": "^3.1.9"
}
}