Huakun a92c266d32
Feature: fine grain kill API for extension (#201)
* upgrade tauri-plugin-shellx

* feat(shell): add killPid method to shell API with new permission

* fix: extension new window

* feat(shell): enhance process management and logging in extensions

- Add debug logging for extension process events
- Implement process tracking in UI worker
- Update shell API to support custom process recording
- Modify extension template to demonstrate process spawning
- Refactor shell command handling with improved error handling

* Add killPid extension API to @kksh/api

* chore(deps): update tauri-plugin-shellx-api to version 2.0.15

* pnpm lock

* chore(deps): update dependencies and lock file

- Upgrade ESLint to version 9.21.0
- Update @types/bun to version 1.2.3
- Bump various development dependencies
- Reorganize package.json dependencies in ui package

* chore(deps): update SvelteKit template dependencies

- Add @eslint/js version 9.21.0
- Update package.json dependency order
- Sync pnpm-lock.yaml with package.json changes

* chore: add eslint to desktop

* chore(deps): remove local tauri-plugin-shellx and use published version 2.0.15

* bump desktop to 0.1.28
2025-02-26 02:06:06 -05:00

154 lines
3.6 KiB
JSON

{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "Capability for the main window",
"windows": ["main*", "splashscreen"],
"permissions": [
{
"identifier": "http:default",
"allow": [
{
"url": "https://*"
},
{
"url": "http://*"
},
{
"url": "http://*:*"
}
]
},
"os:default",
"os:allow-platform",
"core:path:default",
"core:event:default",
"core:window:default",
"core:window:allow-set-size",
"core:window:allow-start-dragging",
"core:window:allow-set-focus",
"core:window:allow-toggle-maximize",
"core:window:allow-internal-toggle-maximize",
"core:window:allow-close",
"core:window:allow-create",
"core:window:allow-set-decorations",
"core:window:allow-show",
"core:window:allow-hide",
"core:window:allow-destroy",
"core:image:default",
"core:webview:default",
"core:webview:allow-create-webview",
"core:webview:allow-create-webview-window",
"core:app:default",
"core:app:allow-app-hide",
"core:resources:default",
"core:menu:default",
"core:tray:default",
"core:tray:allow-new",
"core:tray:allow-set-tooltip",
"core:tray:allow-set-icon",
"core:tray:allow-set-menu",
"core:tray:allow-set-title",
"core:tray:allow-set-visible",
"core:tray:allow-set-show-menu-on-left-click",
"notification:default",
"clipboard:monitor-all",
"clipboard:read-all",
"clipboard:write-all",
"fs:default",
"fs:allow-app-meta",
"fs:allow-home-read-recursive",
"shellx:allow-execute",
"shellx:allow-open",
"shellx:allow-kill",
"shellx:allow-kill-pid",
"shellx:allow-spawn",
"shellx:allow-stdin-write",
"shellx:allow-fix-path-env",
"shellx:allow-where-is-command",
"dialog:default",
"dialog:allow-open",
"dialog:allow-confirm",
"dialog:allow-save",
"dialog:allow-message",
"dialog:allow-ask",
"global-shortcut:default",
"global-shortcut:allow-is-registered",
"global-shortcut:allow-register",
"global-shortcut:allow-unregister",
"jarvis:allow-all",
"store:default",
"store:allow-clear",
"store:allow-delete",
"store:allow-entries",
"store:allow-get",
"store:allow-has",
"store:allow-keys",
"store:allow-length",
"store:allow-load",
"store:allow-reset",
"store:allow-save",
"store:allow-set",
"store:allow-values",
"log:default",
"updater:default",
"log:allow-log",
"fs:allow-exists",
"fs:allow-stat",
"fs:read-all",
"fs:write-all",
"fs:allow-rename",
"fs:scope-temp-recursive",
"fs:scope-temp",
"fs:scope-home-recursive",
"fs:allow-mkdir",
"fs:allow-app-write-recursive",
"fs:allow-app-read-recursive",
"fs:allow-appcache-write",
"fs:allow-appcache-write-recursive",
"fs:allow-appconfig-write",
"fs:allow-home-write-recursive",
"fs:allow-appdata-read-recursive",
"fs:allow-appdata-write-recursive",
{
"identifier": "fs:scope",
"allow": [
{
"path": "**/*"
}
]
},
"notification:allow-is-permission-granted",
"notification:allow-notify",
"notification:allow-request-permission",
"global-shortcut:allow-register-all",
"global-shortcut:allow-unregister-all",
"clipboard:allow-clear",
"cli:default",
"upload:default",
"process:default",
"system-info:allow-all",
"user-input:default",
"shell:default",
"keyring:default",
"stronghold:default",
{
"identifier": "shell:allow-spawn",
"allow": [
{
"name": "deno",
"cmd": "deno",
"args": [
{
"validator": ".+"
}
]
}
]
},
"deep-link:default",
"autostart:allow-enable",
"autostart:allow-disable",
"autostart:allow-is-enabled"
]
}