default.json 640 B

12345678910111213141516171819202122232425262728
  1. {
  2. "$schema": "../gen/schemas/desktop-schema.json",
  3. "identifier": "default",
  4. "description": "Capability for the main window",
  5. "windows": ["main"],
  6. "permissions": [
  7. "core:default",
  8. "opener:default",
  9. "fs:default",
  10. "fs:allow-resource-read-recursive",
  11. {
  12. "identifier": "fs:allow-read-text-file",
  13. "allow": [{ "path": "**" }]
  14. },
  15. {
  16. "identifier": "fs:allow-write-text-file",
  17. "allow": [{ "path": "**" }]
  18. },
  19. {
  20. "identifier": "fs:allow-rename",
  21. "allow": [{ "path": "**" }]
  22. },
  23. "dialog:default",
  24. "store:default",
  25. "sql:default",
  26. "sql:allow-execute"
  27. ]
  28. }