mirror of
https://github.com/excalidraw/excalidraw-desktop.git
synced 2026-05-17 13:30:38 +00:00
6138f9587f
* add basic electron unit test for mac and linux Co-authored-by: Shriram Balaji <shrirambalaji1996@gmail.com>
47 lines
807 B
JSON
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"
|
|
}
|
|
]
|
|
}
|