| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- {
- "$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}"
- }
- }
|