Include recent Magic app work: Tauri native shell, iOS device detection via supervise-magic sidecar, MDM client, local HTTP server, new pages (detect, enroll, supervise, sideload, pair, preflight, configure, done), and updated device section/status UI.
47 lines
1.0 KiB
JSON
47 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "ReBreak Magic",
|
|
"version": "0.1.0",
|
|
"identifier": "org.rebreak.magic",
|
|
"build": {
|
|
"beforeDevCommand": "pnpm dev",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeBuildCommand": "pnpm build",
|
|
"frontendDist": "../.output/public"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "ReBreak Magic",
|
|
"width": 900,
|
|
"height": 700,
|
|
"minWidth": 800,
|
|
"minHeight": 600,
|
|
"center": true,
|
|
"resizable": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null,
|
|
"capabilities": ["default"]
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": ["app", "nsis"],
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.ico",
|
|
"icons/icon.png"
|
|
],
|
|
"externalBin": ["binaries/supervise-magic"],
|
|
"macOS": {
|
|
"entitlements": "./entitlements.plist",
|
|
"frameworks": [],
|
|
"minimumSystemVersion": "10.13"
|
|
}
|
|
}
|
|
}
|