1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "appId": "zskk.dros",
- "productName": "dros",
- "electronVersion": "36.2.1",
- "asar": true,
- "compression": "store",
- "files": ["main.js", "src/log/**/*", "!node_modules/**/*", "preload.js"],
- "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"
- }
- }
|