mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-03 22:26:43 +00:00

* 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
75 lines
2.3 KiB
TOML
75 lines
2.3 KiB
TOML
[package]
|
|
name = "kunkun"
|
|
version = "0.0.0"
|
|
description = "Kunkun Desktop App"
|
|
authors = ["Huakun"]
|
|
edition = "2021"
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
# The `_lib` suffix may seem redundant but it is necessary
|
|
# to make the lib name unique and wouldn't conflict with the bin name.
|
|
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
|
|
name = "kunkun_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.0.5", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2.2.5", features = [
|
|
"macos-private-api",
|
|
"image-png",
|
|
"image-ico",
|
|
"tray-icon",
|
|
"devtools",
|
|
] }
|
|
tauri-plugin-shell = "2.2.0"
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tokio = { workspace = true }
|
|
mdns-sd = { workspace = true }
|
|
chrono = { workspace = true }
|
|
log = { workspace = true }
|
|
urlencoding = "2.1.3"
|
|
tauri-plugin-process = "2.2.0"
|
|
tauri-plugin-shellx = { workspace = true }
|
|
tauri-plugin-fs = { version = "2.2.0", features = ["watch"] }
|
|
tauri-plugin-dialog = "2.2.0"
|
|
tauri-plugin-notification = "2.2.1"
|
|
tauri-plugin-os = "2.2.0"
|
|
tauri-plugin-http = "2.3.0"
|
|
tauri-plugin-upload = { workspace = true }
|
|
# tauri-plugin-upload = "2.2.1"
|
|
tauri-plugin-jarvis = { workspace = true }
|
|
tauri-plugin-keyring = { workspace = true }
|
|
tauri-plugin-network = { workspace = true }
|
|
tauri-plugin-system-info = { workspace = true }
|
|
tauri-plugin-user-input = { workspace = true }
|
|
tauri-plugin-clipboard = { workspace = true }
|
|
tauri-plugin-store = "2.2.0"
|
|
tauri-plugin-deep-link = "2.2.0"
|
|
tauri-plugin-log = { version = "2.2.1", features = ["colored"] }
|
|
crypto = { workspace = true }
|
|
zip = "2.2.2"
|
|
uuid = "1.14.0"
|
|
# tauri-plugin-devtools = "2.0.0"
|
|
obfstr = { workspace = true }
|
|
base64 = { workspace = true }
|
|
tauri-plugin-stronghold = "2.2.0"
|
|
|
|
|
|
[target."cfg(target_os = \"macos\")".dependencies]
|
|
cocoa = "0.24.1"
|
|
mac-security-rs = { workspace = true }
|
|
objc = "0.2.7"
|
|
|
|
|
|
[target."cfg(not(any(target_os = \"android\", target_os = \"ios\")))".dependencies]
|
|
tauri-plugin-autostart = "2"
|
|
tauri-plugin-cli = "2"
|
|
tauri-plugin-global-shortcut = "2.0.1"
|
|
tauri-plugin-single-instance = { version = "2", features = ["deep-link"] }
|
|
tauri-plugin-updater = "2.0.2"
|