1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- "appId": "zskk.dros",
- "productName": "dros",
- "electronVersion": "36.2.1",
- "asar": false,
- "compression": "store",
- "files": [
- "main.js",
- "src/log/**/*"
- ],
- "extraFiles": [
- {
- "from": "dist/h5",
- "to": "h5",
- "filter": [
- "**/*"
- ]
- }
- ],
- "win": {
- "signAndEditExecutable": false,
- "forceCodeSigning": false,
- "target": [
- {
- "target": "portable",
- "arch": [
- "x64"
- ]
- }
- ]
- },
- "mac": {
- "target": [
- {
- "target": "dmg",
- "arch": [
- "x64",
- "arm64"
- ]
- }
- ]
- },
- "linux": {
- "target": [
- {
- "target": "AppImage",
- "arch": [
- "arm64"
- ]
- }
- ]
- },
- "directories": {
- "output": "dist/electron"
- }
- }
|