| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- {
- "$schema": "https://raw.githubusercontent.com/electron-userland/electron-builder/master/packages/app-builder-lib/scheme.json",
- "appId": "com.mediamanager.app",
- "productName": "智媒通",
- "directories": {
- "output": "release"
- },
- "files": [
- "dist/**/*",
- "dist-electron/**/*"
- ],
- "extraResources": [
- {
- "from": "public/icons",
- "to": "icons"
- }
- ],
- "win": {
- "target": [
- {
- "target": "nsis",
- "arch": [
- "x64"
- ]
- }
- ],
- "icon": "build/icon.png",
- "artifactName": "${productName}-${version}-${arch}.${ext}"
- },
- "nsis": {
- "oneClick": false,
- "allowToChangeInstallationDirectory": true,
- "createDesktopShortcut": true,
- "createStartMenuShortcut": true,
- "shortcutName": "智媒通"
- },
- "mac": {
- "target": [
- "dmg"
- ],
- "icon": "build/icon.png",
- "artifactName": "${productName}-${version}.${ext}"
- },
- "linux": {
- "target": [
- "AppImage"
- ],
- "icon": "build/icon.png",
- "artifactName": "${productName}-${version}.${ext}"
- }
- }
|