17 lines
587 B
JSON
17 lines
587 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2/capability",
|
|
"identifier": "default",
|
|
"description": "Capabilities required by Hermes Setup. Narrowly scoped: we don't write user files outside HERMES_HOME, we don't read arbitrary paths, and the only external network call goes through reqwest (Rust side, not exposed to the webview).",
|
|
"windows": ["main"],
|
|
"permissions": [
|
|
"core:default",
|
|
"core:window:allow-close",
|
|
"core:window:allow-minimize",
|
|
"core:event:default",
|
|
"opener:default",
|
|
"dialog:default",
|
|
"process:default",
|
|
"shell:default"
|
|
]
|
|
}
|