12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "appId": "com.your-app-name.app",
- "productName": "Your App Name",
- "directories": {
- "output": "electron-build"
- },
- "files": [
- "dist/**/*",
- "electron/**/*"
- ],
- "win": {
- "target": [
- {
- "target": "nsis",
- "arch": [
- "x64"
- ]
- }
- ]
- },
- "nsis": {
- "oneClick": false,
- "allowToChangeInstallationDirectory": true,
- "createDesktopShortcut": true,
- "createStartMenuShortcut": true,
- "shortcutName": "Your App Name"
- },
- "asar": true,
- "forceCodeSigning": false,
- "npmRebuild": false,
- "buildDependenciesFromSource": true,
- "linux": {
- "target": ["AppImage"],
- "category": "Office"
- },
- "mac": {
- "target": ["dmg"],
- "category": "public.app-category.productivity"
- }
- }
|