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
50 lines
1.7 KiB
TOML
50 lines
1.7 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
|
|
members = [
|
|
"apps/desktop/src-tauri",
|
|
"packages/tauri-plugins/jarvis",
|
|
"packages/db",
|
|
"packages/mac-security-rs",
|
|
"packages/tauri-plugins/jarvis",
|
|
"packages/crypto",
|
|
"packages/grpc",
|
|
]
|
|
|
|
[workspace.dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
anyhow = "1.0.86"
|
|
serde_json = "1"
|
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "signal"] }
|
|
tokio-util = "0.7.12"
|
|
mdns-sd = "0.11.1"
|
|
tauri-plugin-network = { path = "./vendors/tauri-plugin-network" }
|
|
tauri-plugin-keyring = { path = "./vendors/tauri-plugin-keyring" }
|
|
tauri-plugin-shellx = { version = "2.0.15" }
|
|
tauri-plugin-clipboard = "2.1.11"
|
|
mac-security-rs = { path = "./packages/mac-security-rs" }
|
|
log = "0.4.22"
|
|
strum = "0.26"
|
|
strum_macros = "0.26"
|
|
chrono = "0.4.38"
|
|
applications = { path = "./vendors/applications-rs" }
|
|
grpc = { path = "./packages/grpc" }
|
|
tauri-plugin-jarvis = { path = "./packages/tauri-plugins/jarvis" }
|
|
tauri-plugin-system-info = { path = "./vendors/tauri-plugin-system-info" }
|
|
tauri-plugin-user-input = { path = "./vendors/tauri-plugin-user-input" }
|
|
db = { path = "./packages/db" }
|
|
axum = { version = "0.6.20" }
|
|
axum-extra = { version = "0.8.0" }
|
|
axum-server = { version = "0.5", features = ["tls-rustls"] }
|
|
rustls = { version = "0.23", features = ["ring"] }
|
|
reqwest = { version = "0.12", features = ["json", "rustls-tls"] }
|
|
crypto = { path = "./packages/crypto" }
|
|
base64 = "0.22.1"
|
|
obfstr = "0.4.4"
|
|
sysinfo = "0.32.0"
|
|
openssl = "0.10.68"
|
|
tower = { version = "0.4", features = ["util"] }
|
|
tower-http = { version = "0.4.0", features = ["fs", "trace", "cors"] }
|
|
rayon = "1.10.0"
|
|
tauri-plugin-upload = { git = "https://github.com/HuakunShen/tauri-plugins-workspace.git", branch = "kunkun", package = "tauri-plugin-upload" }
|