mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-28 13:32:23 +00:00
61 lines
1.2 KiB
JSON
61 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "AlphaHuman",
|
|
"version": "0.46.0",
|
|
"identifier": "com.alphahuman.app",
|
|
"build": {
|
|
"beforeDevCommand": "npm run dev",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeBuildCommand": "npm run build:app",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"label": "main",
|
|
"title": "AlphaHuman",
|
|
"width": 800,
|
|
"height": 720,
|
|
"visible": false,
|
|
"decorations": true,
|
|
"resizable": true,
|
|
"center": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
},
|
|
"macOSPrivateApi": true
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"resources": [
|
|
"../skills/skills",
|
|
"../ai"
|
|
],
|
|
"macOS": {
|
|
"minimumSystemVersion": "10.15",
|
|
"dmg": {
|
|
"background": "./images/background-dmg.png"
|
|
}
|
|
}
|
|
},
|
|
"plugins": {
|
|
"deep-link": {
|
|
"desktop": {
|
|
"schemes": [
|
|
"openhuman"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|