Files
excalidraw-desktop/electron-builder.json
Niklas Kiefer 6138f9587f add basic electron test (#46)
* add basic electron unit test for mac and linux

Co-authored-by: Shriram Balaji <shrirambalaji1996@gmail.com>
2020-05-26 08:01:26 +02:00

47 lines
807 B
JSON

{
"appId": "com.excalidraw.Excalidraw",
"productName": "Excalidraw",
"directories": {
"output": "dist"
},
"files": [
"package.json",
"dist/main.js",
"dist/renderer.js",
"dist/preload.js",
"dist/pages/*.html",
"dist/client",
"build/icon.*"
],
"win": {
"target": [
{
"target": "zip",
"arch": ["x64", "ia32"]
}
]
},
"linux": {
"category": "Development",
"target": [
{
"target": "tar.gz",
"arch": ["x64", "ia32"]
}
]
},
"mac": {
"hardenedRuntime": true,
"target": "dmg"
},
"fileAssociations": [
{
"ext": "excalidraw",
"name": "Excalidraw",
"description": "Excalidraw file",
"role": "Editor",
"mimeType": "application/json"
}
]
}