diff --git a/.gitmodules b/.gitmodules index 123aca7..a894e55 100644 --- a/.gitmodules +++ b/.gitmodules @@ -12,4 +12,4 @@ url = https://github.com/kunkunsh/tauri-plugin-user-input.git [submodule "vendors/tauri-plugin-keyring"] path = vendors/tauri-plugin-keyring - url = https://github.com/HuakunShen/tauri-plugin-keyring.git + url = https://github.com/HuakunShen/tauri-plugin-keyring.git \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 25a1ecd..7d7a9c7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -34,7 +34,7 @@ If you are interested in contributing to the project, please read the following ```bash git clone https://github.com/kunkunsh/kunkun.git --recursive pnpm install -pnpm prepare +pnpm build # build submodules ``` ### Run Desktop App diff --git a/Cargo.lock b/Cargo.lock index 41c3392..edf4c00 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4753,7 +4753,7 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" dependencies = [ - "proc-macro-crate 1.3.1", + "proc-macro-crate 2.0.0", "proc-macro2", "quote", "syn 2.0.87", @@ -7871,9 +7871,9 @@ dependencies = [ [[package]] name = "tauri-plugin-shellx" -version = "2.0.12" +version = "2.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32409a09fd9351a3d3e25f7a2e2ba501b114c6869afb7b46d06a5473055c995f" +checksum = "88a5b6b883070de00f8fd5025aa5b81e3b012a5a3d9f38875cdb45809c71232c" dependencies = [ "encoding_rs", "open", diff --git a/Cargo.toml b/Cargo.toml index c73a54c..4ce418b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,8 @@ 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-clipboard = "2.1.8" +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" diff --git a/apps/cli/CHANGELOG.md b/apps/cli/CHANGELOG.md index 00fedfb..f505834 100644 --- a/apps/cli/CHANGELOG.md +++ b/apps/cli/CHANGELOG.md @@ -1,5 +1,12 @@ # kksh +## 0.1.2 + +### Patch Changes + +- Updated dependencies + - @kksh/api@0.1.4 + ## 0.1.1 ### Patch Changes diff --git a/apps/cli/package.json b/apps/cli/package.json index 63670d1..ec53676 100644 --- a/apps/cli/package.json +++ b/apps/cli/package.json @@ -1,7 +1,7 @@ { "name": "kksh", "module": "dist/cli.js", - "version": "0.1.1", + "version": "0.1.2", "type": "module", "bin": { "kksh": "./dist/cli.js", diff --git a/apps/create-kunkun/CHANGELOG.md b/apps/create-kunkun/CHANGELOG.md index 7a911f2..151ca30 100644 --- a/apps/create-kunkun/CHANGELOG.md +++ b/apps/create-kunkun/CHANGELOG.md @@ -1,5 +1,12 @@ # create-kunkun +## 0.1.48 + +### Patch Changes + +- Updated dependencies + - @kksh/api@0.1.4 + ## 0.1.45 ### Patch Changes diff --git a/apps/create-kunkun/package.json b/apps/create-kunkun/package.json index e5295f3..d58623f 100644 --- a/apps/create-kunkun/package.json +++ b/apps/create-kunkun/package.json @@ -1,7 +1,7 @@ { "name": "create-kunkun", "type": "module", - "version": "0.1.47", + "version": "0.1.48", "bin": { "create-kunkun": "dist/index.mjs" }, diff --git a/apps/desktop/package.json b/apps/desktop/package.json index 682ed43..09813ea 100644 --- a/apps/desktop/package.json +++ b/apps/desktop/package.json @@ -1,6 +1,6 @@ { "name": "@kksh/desktop", - "version": "0.1.27", + "version": "0.1.28", "description": "", "type": "module", "scripts": { @@ -30,6 +30,7 @@ "@tauri-apps/plugin-shell": "^2.2.0", "@tauri-apps/plugin-stronghold": "^2.2.0", "dompurify": "^3.2.3", + "eslint": "^9.21.0", "fuse.js": "^7.1.0", "gsap": "^3.12.5", "kkrpc": "^0.1.1", @@ -39,6 +40,7 @@ "svelte-sonner": "^0.3.28", "sveltekit-superforms": "^2.22.1", "tauri-plugin-clipboard-api": "^2.1.11", + "tauri-plugin-shellx-api": "^2.0.15", "tauri-plugin-user-input-api": "workspace:*", "uuid": "^11.0.3" }, diff --git a/apps/desktop/src-tauri/Cargo.toml b/apps/desktop/src-tauri/Cargo.toml index 5b9443a..15c6a19 100644 --- a/apps/desktop/src-tauri/Cargo.toml +++ b/apps/desktop/src-tauri/Cargo.toml @@ -34,7 +34,7 @@ chrono = { workspace = true } log = { workspace = true } urlencoding = "2.1.3" tauri-plugin-process = "2.2.0" -tauri-plugin-shellx = "2.0.12" +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" diff --git a/apps/desktop/src-tauri/capabilities/default.json b/apps/desktop/src-tauri/capabilities/default.json index 11e7006..3061496 100644 --- a/apps/desktop/src-tauri/capabilities/default.json +++ b/apps/desktop/src-tauri/capabilities/default.json @@ -60,6 +60,7 @@ "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", diff --git a/apps/desktop/src/lib/cmds/ext.ts b/apps/desktop/src/lib/cmds/ext.ts index 8eea4bf..147e648 100644 --- a/apps/desktop/src/lib/cmds/ext.ts +++ b/apps/desktop/src/lib/cmds/ext.ts @@ -20,10 +20,12 @@ import * as v from "valibot" export const KunkunIframeExtParams = v.object({ url: v.string(), + cmdName: v.optional(v.string()), extPath: v.string() }) export type KunkunIframeExtParams = v.InferOutput export const KunkunTemplateExtParams = v.object({ + url: v.optional(v.string()), extPath: v.string(), cmdName: v.string() }) @@ -36,10 +38,10 @@ export async function createExtSupportDir(extPath: string) { } } -function setTemplateExtParams(extPath: string, cmdName: string) { +function setTemplateExtParams(extPath: string, cmdName: string, url?: string) { localStorage.setItem( "kunkun-template-ext-params", - JSON.stringify({ extPath, cmdName } satisfies KunkunTemplateExtParams) + JSON.stringify({ extPath, cmdName, url } satisfies KunkunTemplateExtParams) ) } @@ -50,13 +52,15 @@ export async function onTemplateUiCmdSelect( ) { await createExtSupportDir(ext.extPath) const url = `/app/extension/ui-worker?extPath=${encodeURIComponent(ext.extPath)}&cmdName=${encodeURIComponent(cmd.name)}` - setTemplateExtParams(ext.extPath, cmd.name) + setTemplateExtParams(ext.extPath, cmd.name, url) if (cmd.window) { const winLabel = await winExtMap.registerExtensionWithWindow({ extPath: ext.extPath }) - localStorage.setItem( - "kunkun-template-ext-params", - JSON.stringify({ url, extPath: ext.extPath } satisfies KunkunIframeExtParams) - ) + const paramsStr = JSON.stringify({ + url, + extPath: ext.extPath, + cmdName: cmd.name + } satisfies KunkunIframeExtParams) + localStorage.setItem("kunkun-template-ext-params", paramsStr) const window = launchNewExtWindow(winLabel, url, cmd.window) window.onCloseRequested(async (event) => { await winExtMap.unregisterExtensionFromWindow(winLabel) @@ -89,7 +93,16 @@ export async function onHeadlessCmdSelect( } const serverAPI: IKunkunFullServerAPI = constructJarvisServerAPIWithPermissions( loadedExt.kunkun.permissions, - loadedExt.extPath + loadedExt.extPath, + { + recordSpawnedProcess: async (pid: number) => { + console.log("recordSpawnedProcess pid", pid) + }, + getSpawnedProcesses: async () => { + console.log("getSpawnedProcesses") + return [] + } + } ) const serverAPI2 = { ...serverAPI, diff --git a/apps/desktop/src/lib/stores/winExtMap.ts b/apps/desktop/src/lib/stores/winExtMap.ts index ae48236..052bee9 100644 --- a/apps/desktop/src/lib/stores/winExtMap.ts +++ b/apps/desktop/src/lib/stores/winExtMap.ts @@ -104,6 +104,7 @@ function createWinExtMapStore(): Writable & API { } }, registerProcess: async (windowLabel: string, pid: number) => { + console.log("registerProcess", windowLabel, pid) const winExtMap = get(store) await registerExtensionSpawnedProcess(windowLabel, pid) if (!winExtMap[windowLabel]) { @@ -116,6 +117,7 @@ function createWinExtMapStore(): Writable & API { const winExtMap = get(store) const found = Object.entries(winExtMap).find(([windowLabel, ext]) => ext.pids.includes(pid)) if (!found) { + warn(`Process ${pid} does not have an extension registered, thus will not be killed`) return } const [windowLabel, ext] = found diff --git a/apps/desktop/src/routes/app/+layout.svelte b/apps/desktop/src/routes/app/+layout.svelte index 03adf5b..0c9f71f 100644 --- a/apps/desktop/src/routes/app/+layout.svelte +++ b/apps/desktop/src/routes/app/+layout.svelte @@ -14,7 +14,7 @@ import { Constants, ViewTransition } from "@kksh/ui" import type { UnlistenFn } from "@tauri-apps/api/event" import { getCurrentWebviewWindow } from "@tauri-apps/api/webviewWindow" - import { attachConsole, error, info } from "@tauri-apps/plugin-log" + import { attachConsole, debug, error, info } from "@tauri-apps/plugin-log" import { afterNavigate, beforeNavigate } from "$app/navigation" import { gsap } from "gsap" import { Flip } from "gsap/Flip" @@ -89,13 +89,13 @@ extensions.init() unlisteners.push( await listenToRecordExtensionProcessEvent(async (event) => { - console.log("record extension process event", event) + debug(`record extension process event ${event.payload.pid}`) winExtMap.registerProcess(event.payload.windowLabel, event.payload.pid) }) ) unlisteners.push( await listenToKillProcessEvent((event) => { - console.log("kill process event", event) + debug(`kill process event ${event.payload.pid}`) winExtMap.unregisterProcess(event.payload.pid) }) ) diff --git a/apps/desktop/src/routes/app/+page.svelte b/apps/desktop/src/routes/app/+page.svelte index 862a2cd..afc36b4 100644 --- a/apps/desktop/src/routes/app/+page.svelte +++ b/apps/desktop/src/routes/app/+page.svelte @@ -35,6 +35,7 @@ SystemCmds } from "@kksh/ui/main" import { cn } from "@kksh/ui/utils" + import { Channel, invoke } from "@tauri-apps/api/core" import { getCurrentWebviewWindow } from "@tauri-apps/api/webviewWindow" import { getCurrentWindow, Window } from "@tauri-apps/api/window" import { platform } from "@tauri-apps/plugin-os" @@ -42,6 +43,7 @@ import { goto } from "$app/navigation" import { ArrowBigUpIcon, CircleXIcon, EllipsisVerticalIcon, RefreshCcwIcon } from "lucide-svelte" import { onMount } from "svelte" + import * as shell from "tauri-plugin-shellx-api" const win = getCurrentWindow() let inputEle: HTMLInputElement | null = $state(null) @@ -82,6 +84,43 @@ } }) }) + + async function spawn() { + const cmd = shell.Command.create("deno", ["run", "/Users/hk/Dev/kunkun/deno.ts"]) + cmd.stdout.on("data", (data) => { + console.log("stdout", data) + }) + const child = await cmd.spawn() + console.log("child", child) + setTimeout(() => { + child + .kill() + .then(() => { + console.log("child killed") + }) + .catch((err) => { + console.error("child kill error", err) + }) + }, 5000) + // invoke("plugin:shellx|spawn", { + // program: "deno", + // args: ["run", "/Users/hk/Dev/kunkun/deno.ts"], + // options: {}, + // onEvent: new Channel>() + // }).then((pid) => { + // console.log("spawned process (shell server) pid:", pid) + // setTimeout(() => { + // console.log("killing process (shell server) pid:", pid) + // killPid(pid) + // .then(() => { + // console.log("killed process (shell server) pid:", pid) + // }) + // .catch((err) => { + // console.error("kill process (shell server) pid:", pid, err) + // }) + // }, 3000) + // }) + } {/snippet} + No results found. {#if $appConfig.extensionsInstallDir && $devStoreExtsFiltered.length > 0} diff --git a/apps/desktop/src/routes/app/extension/ui-worker/+page.svelte b/apps/desktop/src/routes/app/extension/ui-worker/+page.svelte index d5bbbaf..582a491 100644 --- a/apps/desktop/src/routes/app/extension/ui-worker/+page.svelte +++ b/apps/desktop/src/routes/app/extension/ui-worker/+page.svelte @@ -27,12 +27,19 @@ type IComponent, type TemplateUiCommand } from "@kksh/api/ui/template" + import { Button } from "@kksh/svelte5" import { LoadingBar } from "@kksh/ui" import { Templates } from "@kksh/ui/extension" import { GlobalCommandPaletteFooter } from "@kksh/ui/main" import type { IKunkunFullServerAPI } from "@kunkunapi/src/api/server" - import type { UnlistenFn } from "@tauri-apps/api/event" + import { + RECORD_EXTENSION_PROCESS_EVENT, + type IRecordExtensionProcessEvent + } from "@kunkunapi/src/events.js" + import { Channel, invoke } from "@tauri-apps/api/core" + import { emitTo, type UnlistenFn } from "@tauri-apps/api/event" import { getCurrentWebviewWindow } from "@tauri-apps/api/webviewWindow" + import { getCurrentWindow } from "@tauri-apps/api/window" import * as fs from "@tauri-apps/plugin-fs" import { readTextFile } from "@tauri-apps/plugin-fs" import { debug } from "@tauri-apps/plugin-log" @@ -40,6 +47,7 @@ import { goto } from "$app/navigation" import { RPCChannel, WorkerParentIO } from "kkrpc/browser" import { onDestroy, onMount, tick } from "svelte" + import { type CommandEvent } from "tauri-plugin-shellx-api" import * as v from "valibot" const { data } = $props() @@ -58,6 +66,7 @@ let loading = $state(false) let searchTerm = $state("") let searchBarPlaceholder = $state("") + let extSpawnedProcesses = $state([]) const appWin = getCurrentWebviewWindow() const loadingBar = $derived($appState.loadingBar || extensionLoadingBar) let loaded = $state(false) @@ -199,7 +208,6 @@ searchTerm = term }, async setSearchBarPlaceholder(placeholder: string) { - console.log("setSearchBarPlaceholder", placeholder) searchBarPlaceholder = placeholder }, async goBack() { @@ -221,7 +229,20 @@ worker = new Worker(blobURL) const serverAPI: IKunkunFullServerAPI = constructJarvisServerAPIWithPermissions( loadedExt.kunkun.permissions, - loadedExt.extPath + loadedExt.extPath, + { + recordSpawnedProcess: async (pid: number) => { + extSpawnedProcesses = [...extSpawnedProcesses, pid] + // winExtMap.registerProcess(appWin.label, pid) + const curWin = await getCurrentWindow() + await emitTo("main", RECORD_EXTENSION_PROCESS_EVENT, { + windowLabel: curWin.label, + pid + } satisfies IRecordExtensionProcessEvent) + // TODO: record process in a store + }, + getSpawnedProcesses: () => Promise.resolve(extSpawnedProcesses) + } ) const serverAPI2 = { ...serverAPI, @@ -234,7 +255,6 @@ language: () => Promise.resolve("en") } satisfies IApp } - const io = new WorkerParentIO(worker) const rpc = new RPCChannel(io, { expose: serverAPI2 @@ -250,20 +270,20 @@ } }) - function onPkgJsonChange(evt: fs.WatchEvent) { - const parsed = v.safeParse(WatchEvent, evt) - if (parsed.success) { - if ( - parsed.output.type.modify.kind === "data" && - parsed.output.type.modify.mode === "content" && - parsed.output.paths.includes(data.pkgJsonPath) - ) { - console.log("pkgJson changed", parsed.output.paths) - // emit event to reload extension commands - emitReloadOneExtension(loadedExt.extPath) - } - } - } + // function onPkgJsonChange(evt: fs.WatchEvent) { + // const parsed = v.safeParse(WatchEvent, evt) + // if (parsed.success) { + // if ( + // parsed.output.type.modify.kind === "data" && + // parsed.output.type.modify.mode === "content" && + // parsed.output.paths.includes(data.pkgJsonPath) + // ) { + // console.log("pkgJson changed", parsed.output.paths) + // // emit event to reload extension commands + // emitReloadOneExtension(loadedExt.extPath) + // } + // } + // } onMount(async () => { setTimeout(() => { @@ -284,10 +304,9 @@ appState.setLoadingBar(false) loaded = true }, 500) - console.log("watching", data.pkgJsonPath) - fs.watch(data.pkgJsonPath, onPkgJsonChange).then((unlisten) => { - unlistenPkgJsonWatch = unlisten - }) + // fs.watch(data.pkgJsonPath, onPkgJsonChange).then((unlisten) => { + // unlistenPkgJsonWatch = unlisten + // }) }) onDestroy(() => { diff --git a/apps/desktop/src/routes/app/extension/ui-worker/+page.ts b/apps/desktop/src/routes/app/extension/ui-worker/+page.ts index a37493e..7bfa7ea 100644 --- a/apps/desktop/src/routes/app/extension/ui-worker/+page.ts +++ b/apps/desktop/src/routes/app/extension/ui-worker/+page.ts @@ -5,6 +5,7 @@ import type { Ext as ExtInfoInDB, ExtPackageJsonExtra } from "@kksh/api/models" import { loadExtensionManifestFromDisk } from "@kksh/extension" import { error as sbError, error as svError } from "@sveltejs/kit" import { join } from "@tauri-apps/api/path" +import { getCurrentWindow } from "@tauri-apps/api/window" import { exists, readTextFile } from "@tauri-apps/plugin-fs" import { error } from "@tauri-apps/plugin-log" import { goto } from "$app/navigation" @@ -14,15 +15,16 @@ import type { PageLoad } from "./$types" export const load: PageLoad = async ({ url }) => { // both query parameter must exist - const rawKunkunTemplateExtParams = localStorage.getItem("kunkun-template-ext-params") if (!rawKunkunTemplateExtParams) { toast.error("Invalid extension path or url") return svError(404, "Invalid extension path or url") } - - const parsed = v.safeParse(KunkunTemplateExtParams, JSON.parse(rawKunkunTemplateExtParams)) + const json = JSON.parse(rawKunkunTemplateExtParams) + const parsed = v.safeParse(KunkunTemplateExtParams, json) if (!parsed.success) { + getCurrentWindow().show() + console.error(v.flatten(parsed.issues)) toast.error("Fail to parse extension params from local storage", { description: `${v.flatten(parsed.issues)}` }) diff --git a/deno.lock b/deno.lock index 5180460..ed46540 100644 --- a/deno.lock +++ b/deno.lock @@ -5,6 +5,7 @@ "npm:@changesets/cli@^2.27.11": "2.27.12", "npm:@eslint/js@^9.18.0": "9.19.0", "npm:@eslint/js@^9.19.0": "9.19.0", + "npm:@eslint/js@^9.21.0": "9.21.0", "npm:@formkit/auto-animate@~0.8.2": "0.8.2", "npm:@grpc/grpc-js@^1.12.2": "1.12.5", "npm:@grpc/proto-loader@~0.7.13": "0.7.13", @@ -117,6 +118,7 @@ "npm:eslint@8": "8.57.1", "npm:eslint@^8.57.0": "8.57.1", "npm:eslint@^9.17.0": "9.19.0", + "npm:eslint@^9.21.0": "9.21.0", "npm:formsnap@2.0.0-next.1": "2.0.0-next.1_svelte@5.19.6__acorn@8.14.0_sveltekit-superforms@2.23.1__@sveltejs+kit@2.16.1___@sveltejs+vite-plugin-svelte@5.0.3____svelte@5.19.6_____acorn@8.14.0____vite@6.0.11_____@types+node@20.17.16_____jiti@2.4.2____@types+node@20.17.16___svelte@5.19.6____acorn@8.14.0___vite@5.4.14____@types+node@20.17.16___vite@6.0.11____@types+node@20.17.16____jiti@2.4.2___@types+node@20.17.16__svelte@5.19.6___acorn@8.14.0__valibot@1.0.0-beta.12___typescript@5.6.3__zod@3.24.1__@sveltejs+vite-plugin-svelte@5.0.3___svelte@5.19.6____acorn@8.14.0___vite@6.0.11____@types+node@20.17.16____jiti@2.4.2___@types+node@20.17.16__vite@5.4.14___@types+node@20.17.16__typescript@5.6.3__vite@6.0.11___@types+node@20.17.16___jiti@2.4.2__@types+node@20.17.16_@sveltejs+kit@2.16.1__@sveltejs+vite-plugin-svelte@5.0.3___svelte@5.19.6____acorn@8.14.0___vite@6.0.11____@types+node@20.17.16____jiti@2.4.2___@types+node@20.17.16__svelte@5.19.6___acorn@8.14.0__vite@5.4.14___@types+node@20.17.16__vite@6.0.11___@types+node@20.17.16___jiti@2.4.2__@types+node@20.17.16_valibot@1.0.0-beta.12__typescript@5.6.3_zod@3.24.1_@sveltejs+vite-plugin-svelte@5.0.3__svelte@5.19.6___acorn@8.14.0__vite@6.0.11___@types+node@20.17.16___jiti@2.4.2__@types+node@20.17.16_vite@5.4.14__@types+node@20.17.16_typescript@5.6.3_vite@6.0.11__@types+node@20.17.16__jiti@2.4.2_@types+node@20.17.16", "npm:fs-extra@^11.2.0": "11.3.0", "npm:get-folder-size@5": "5.0.0", @@ -178,8 +180,9 @@ "npm:tailwindcss@^3.4.6": "3.4.17_postcss@8.5.1", "npm:tailwindcss@^3.4.7": "3.4.17_postcss@8.5.1", "npm:tar@^7.4.3": "7.4.3", - "npm:tauri-api-adapter@~0.3.20": "0.3.20_typescript@5.6.3", + "npm:tauri-api-adapter@~0.3.23": "0.3.23_typescript@5.6.3", "npm:tauri-plugin-clipboard-api@^2.1.11": "2.1.11_typescript@5.6.3", + "npm:tauri-plugin-shellx-api@2.0.15": "2.0.15", "npm:tauri-plugin-shellx-api@^2.0.14": "2.0.14", "npm:tauri-plugin-system-info-api@2.0.8": "2.0.8_typescript@5.6.3", "npm:ts-proto@^2.3.0": "2.6.1", @@ -1442,6 +1445,13 @@ "eslint-visitor-keys@3.4.3" ] }, + "@eslint-community/eslint-utils@4.4.1_eslint@9.21.0": { + "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", + "dependencies": [ + "eslint@9.21.0", + "eslint-visitor-keys@3.4.3" + ] + }, "@eslint-community/regexpp@4.12.1": { "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==" }, @@ -1459,6 +1469,12 @@ "@types/json-schema" ] }, + "@eslint/core@0.12.0": { + "integrity": "sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==", + "dependencies": [ + "@types/json-schema" + ] + }, "@eslint/eslintrc@2.1.4": { "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", "dependencies": [ @@ -1487,19 +1503,43 @@ "strip-json-comments@3.1.1" ] }, + "@eslint/eslintrc@3.3.0": { + "integrity": "sha512-yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ==", + "dependencies": [ + "ajv@6.12.6", + "debug@4.4.0", + "espree@10.3.0_acorn@8.14.0", + "globals@14.0.0", + "ignore@5.3.2", + "import-fresh", + "js-yaml@4.1.0", + "minimatch@3.1.2", + "strip-json-comments@3.1.1" + ] + }, "@eslint/js@8.57.1": { "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==" }, "@eslint/js@9.19.0": { "integrity": "sha512-rbq9/g38qjfqFLOVPvwjIvFFdNziEC5S65jmjPw5r6A//QH+W91akh9irMwjDN8zKUTak6W9EsAv4m/7Wnw0UQ==" }, + "@eslint/js@9.21.0": { + "integrity": "sha512-BqStZ3HX8Yz6LvsF5ByXYrtigrV5AXADWLAGc7PH/1SxOb7/FIYYMszZZWiUou/GB9P2lXWk2SV4d+Z8h0nknw==" + }, "@eslint/object-schema@2.1.6": { "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==" }, "@eslint/plugin-kit@0.2.5": { "integrity": "sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==", "dependencies": [ - "@eslint/core", + "@eslint/core@0.10.0", + "levn" + ] + }, + "@eslint/plugin-kit@0.2.7": { + "integrity": "sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==", + "dependencies": [ + "@eslint/core@0.12.0", "levn" ] }, @@ -1625,6 +1665,9 @@ "@humanwhocodes/retry@0.4.1": { "integrity": "sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==" }, + "@humanwhocodes/retry@0.4.2": { + "integrity": "sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==" + }, "@ianvs/prettier-plugin-sort-imports@4.4.1_prettier@3.4.2": { "integrity": "sha512-F0/Hrcfpy8WuxlQyAWJTEren/uxKhYonOGY4OyWmwRdeTvkh9mMSCxowZLjNkhwi/2ipqCgtXwwOk7tW0mWXkA==", "dependencies": [ @@ -2201,7 +2244,7 @@ "minimatch@10.0.1", "semver@7.7.0", "tauri-api-adapter@0.3.8_typescript@5.6.3_rollup@4.34.0_tslib@2.8.1", - "tauri-plugin-shellx-api", + "tauri-plugin-shellx-api@2.0.14", "valibot@0.40.0_typescript@5.6.3", "vue-sonner" ] @@ -8590,10 +8633,10 @@ "@eslint-community/eslint-utils@4.4.1_eslint@9.19.0", "@eslint-community/regexpp", "@eslint/config-array", - "@eslint/core", + "@eslint/core@0.10.0", "@eslint/eslintrc@3.2.0", "@eslint/js@9.19.0", - "@eslint/plugin-kit", + "@eslint/plugin-kit@0.2.5", "@humanfs/node", "@humanwhocodes/module-importer", "@humanwhocodes/retry@0.4.1", @@ -8623,6 +8666,45 @@ "optionator" ] }, + "eslint@9.21.0": { + "integrity": "sha512-KjeihdFqTPhOMXTt7StsDxriV4n66ueuF/jfPNC3j/lduHwr/ijDwJMsF+wyMJethgiKi5wniIE243vi07d3pg==", + "dependencies": [ + "@eslint-community/eslint-utils@4.4.1_eslint@9.21.0", + "@eslint-community/regexpp", + "@eslint/config-array", + "@eslint/core@0.12.0", + "@eslint/eslintrc@3.3.0", + "@eslint/js@9.21.0", + "@eslint/plugin-kit@0.2.7", + "@humanfs/node", + "@humanwhocodes/module-importer", + "@humanwhocodes/retry@0.4.2", + "@types/estree", + "@types/json-schema", + "ajv@6.12.6", + "chalk@4.1.2", + "cross-spawn", + "debug@4.4.0", + "escape-string-regexp@4.0.0", + "eslint-scope@8.2.0", + "eslint-visitor-keys@4.2.0", + "espree@10.3.0_acorn@8.14.0", + "esquery", + "esutils", + "fast-deep-equal", + "file-entry-cache@8.0.0", + "find-up@5.0.0", + "glob-parent@6.0.2", + "ignore@5.3.2", + "imurmurhash", + "is-glob", + "json-stable-stringify-without-jsonify", + "lodash.merge", + "minimatch@3.1.2", + "natural-compare", + "optionator" + ] + }, "esm-env@1.2.2": { "integrity": "sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==" }, @@ -9155,7 +9237,7 @@ "integrity": "sha512-zrQDm8XPnYEKawJScsnM0QzobJxlT/kHOOlRTio8IH/GrmxRE5fjllkzdaHclIuNjUQTJYH2xHNIGfdpJkDJUw==", "dependencies": [ "foreground-child", - "jackspeak@4.0.2", + "jackspeak@4.1.0", "minimatch@10.0.1", "minipass@7.1.2", "package-json-from-dist", @@ -9906,8 +9988,8 @@ "@pkgjs/parseargs" ] }, - "jackspeak@4.0.2": { - "integrity": "sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==", + "jackspeak@4.1.0": { + "integrity": "sha512-9DDdhb5j6cpeitCbvLO7n7J4IxnbM6hoF6O1g4HQ5TfhvvKN8ywDM7668ZhMHRqVmxqhps/F6syWK2KcPxYlkw==", "dependencies": [ "@isaacs/cliui" ] @@ -13664,8 +13746,8 @@ "yallist@5.0.0" ] }, - "tauri-api-adapter@0.3.20_typescript@5.6.3": { - "integrity": "sha512-tRK25c1d34ZRd5CJAXfrBeTr4eGh0UPshLac1DBm4TBF+EZ1TFCwLpvUj9DQ3VS2gHKA9fNc4J5pNpHh3OD4Og==", + "tauri-api-adapter@0.3.23_typescript@5.6.3": { + "integrity": "sha512-WT/NVCdZZSn63Yu/lhZqeUxMGy/VoBZik7yuY2ot+kCynsI1zJQ9ZB6ORmPL8+VBBRbSpEn1yOUbSTSucRFLOQ==", "dependencies": [ "@tauri-apps/api@2.2.0", "@tauri-apps/plugin-dialog@2.2.0", @@ -13681,7 +13763,7 @@ "shx", "tauri-plugin-clipboard-api", "tauri-plugin-network-api", - "tauri-plugin-shellx-api", + "tauri-plugin-shellx-api@2.0.15", "tauri-plugin-system-info-api", "tsc-alias", "typescript@5.6.3", @@ -13708,7 +13790,7 @@ "shx", "tauri-plugin-clipboard-api", "tauri-plugin-network-api", - "tauri-plugin-shellx-api", + "tauri-plugin-shellx-api@2.0.14", "tauri-plugin-system-info-api", "tsc-alias", "typescript@5.6.3", @@ -13735,6 +13817,12 @@ "@tauri-apps/api@2.2.0" ] }, + "tauri-plugin-shellx-api@2.0.15": { + "integrity": "sha512-MrgArTe90o/zLHbIv/x0kTtLm1tiQiEIPnvUcIwuz1pBCGn45+E0ghOgjjGMlGaA2ln6KRV213e52/Az4MqMPQ==", + "dependencies": [ + "@tauri-apps/api@2.2.0" + ] + }, "tauri-plugin-system-info-api@2.0.8_typescript@5.6.3": { "integrity": "sha512-EFdLXNGp6Zu9SNsZCkU+55A8027OnrVw/TQrd0oJHgfZzs4qvm1iMmSvyid4MLftt33iZDhjCzxYijaaOxeKSg==", "dependencies": [ @@ -15012,7 +15100,6 @@ "npm:supabase@^2.2.1", "npm:svelte-check@^4.1.1", "npm:svelte@^5.16.6", - "npm:tauri-plugin-shellx-api@^2.0.14", "npm:turbo@^2.3.4", "npm:typescript@5.7.2", "npm:valibot@^1.0.0-beta.11", @@ -15089,6 +15176,7 @@ "npm:dompurify@^3.2.3", "npm:eslint-config-prettier@^9.1.0", "npm:eslint-plugin-svelte@^2.46.1", + "npm:eslint@^9.21.0", "npm:globals@^15.14.0", "npm:gsap@^3.12.5", "npm:kkrpc@~0.1.1", @@ -15146,9 +15234,9 @@ "npm:node-fetch@^3.3.2", "npm:semver@^7.6.3", "npm:svelte-sonner@~0.3.28", - "npm:tauri-api-adapter@~0.3.20", + "npm:tauri-api-adapter@~0.3.23", "npm:tauri-plugin-network-api@2.0.5", - "npm:tauri-plugin-shellx-api@^2.0.14", + "npm:tauri-plugin-shellx-api@2.0.15", "npm:tauri-plugin-system-info-api@2.0.8", "npm:typedoc@~0.27.6", "npm:typescript@5", @@ -15380,6 +15468,7 @@ "packages/templates/template-ext-sveltekit": { "packageJson": { "dependencies": [ + "npm:@eslint/js@^9.21.0", "npm:@kksh/svelte5@0.1.15", "npm:@sveltejs/adapter-auto@^3.3.1", "npm:@sveltejs/adapter-static@^3.0.8", @@ -15466,6 +15555,7 @@ "npm:dompurify@^3.2.3", "npm:eslint-config-prettier@^10.0.1", "npm:eslint-plugin-svelte@^2.46.1", + "npm:eslint@^9.21.0", "npm:formsnap@2.0.0-next.1", "npm:globals@^15.14.0", "npm:gsap@^3.12.7", @@ -15484,7 +15574,6 @@ "npm:tailwind-variants@0.3", "npm:tailwindcss-animate@^1.0.7", "npm:tailwindcss@^3.4.17", - "npm:tauri-plugin-shellx-api@^2.0.14", "npm:typescript-eslint@^8.20.0", "npm:valibot@1.0.0-beta.12", "npm:zod@^3.24.1" diff --git a/deno.ts b/deno.ts new file mode 100644 index 0000000..725ca72 --- /dev/null +++ b/deno.ts @@ -0,0 +1,4 @@ +let idx = 0 +setInterval(() => { + console.log(idx++) +}, 500) diff --git a/package.json b/package.json index e8ad08f..a9fdfd0 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "typescript": "5.7.2", "verify-package-export": "^0.0.3" }, - "packageManager": "pnpm@9.15.4", + "packageManager": "pnpm@10.4.1", "engines": { "node": ">=22" }, @@ -47,7 +47,6 @@ "supabase": "^2.2.1", "tauri-plugin-keyring-api": "workspace:*", "tauri-plugin-network-api": "workspace:*", - "tauri-plugin-shellx-api": "^2.0.14", "tauri-plugin-system-info-api": "workspace:*", "valibot": "^1.0.0-beta.11", "zod": "^3.24.1" diff --git a/packages/api/CHANGELOG.md b/packages/api/CHANGELOG.md index 11a72e3..9ee178e 100644 --- a/packages/api/CHANGELOG.md +++ b/packages/api/CHANGELOG.md @@ -1,5 +1,11 @@ # @kksh/api +## 0.1.4 + +### Patch Changes + +- Add killPid extension API + ## 0.1.2 ### Patch Changes diff --git a/packages/api/package.json b/packages/api/package.json index a1f8279..78e9ea9 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@kksh/api", - "version": "0.1.3", + "version": "0.1.4", "type": "module", "repository": { "type": "git", @@ -71,9 +71,9 @@ "node-fetch": "^3.3.2", "semver": "^7.6.3", "svelte-sonner": "^0.3.28", - "tauri-api-adapter": "^0.3.20", + "tauri-api-adapter": "^0.3.23", "tauri-plugin-network-api": "2.0.5", - "tauri-plugin-shellx-api": "^2.0.14", + "tauri-plugin-shellx-api": "^2.0.15", "tauri-plugin-system-info-api": "2.0.8", "valibot": "^1.0.0-beta.10" }, diff --git a/packages/api/src/api/server/index.ts b/packages/api/src/api/server/index.ts index 946353d..fb5a5a3 100644 --- a/packages/api/src/api/server/index.ts +++ b/packages/api/src/api/server/index.ts @@ -126,7 +126,11 @@ export type IKunkunFullServerAPI = { */ export function constructJarvisServerAPIWithPermissions( permissions: AllPermissions[], - extPath: string + extPath: string, + customFunctions: { + recordSpawnedProcess: (pid: number) => Promise + getSpawnedProcesses: () => Promise + } ): IKunkunFullServerAPI { return { clipboard: constructClipboardApi( @@ -193,7 +197,9 @@ export function constructJarvisServerAPIWithPermissions( p.permission.startsWith("shell:") ) ], - extPath + extPath, + customFunctions.recordSpawnedProcess, + customFunctions.getSpawnedProcesses ), iframeUi: constructIframeUiApi(), utils: constructUtilsApi(), diff --git a/packages/api/src/api/server/shell.ts b/packages/api/src/api/server/shell.ts index 676c3e1..ad0594c 100644 --- a/packages/api/src/api/server/shell.ts +++ b/packages/api/src/api/server/shell.ts @@ -2,6 +2,7 @@ import { emitKillProcessEvent } from "@kksh/api/events" import { Channel, invoke } from "@tauri-apps/api/core" import { emitTo } from "@tauri-apps/api/event" import { getCurrentWindow } from "@tauri-apps/api/window" +import { toast } from "svelte-sonner" import { hasCommand, whereIsCommand, @@ -10,6 +11,7 @@ import { type InternalSpawnOptions, type IOPayload } from "tauri-plugin-shellx-api" +import * as shell from "tauri-plugin-shellx-api" import type { DenoRunConfig } from "../../api/client" import type { IShellServer } from "../../api/server-types" import { RECORD_EXTENSION_PROCESS_EVENT, type IRecordExtensionProcessEvent } from "../../events" @@ -73,13 +75,14 @@ async function verifyShellCmdPermission( */ export function constructShellApi( permissions: (ShellPermissionScoped | ShellPermission)[], - extPath: string + extPath: string, + recordSpawnedProcess: (pid: number) => Promise, + getSpawnedProcesses: () => Promise ): IShellServer { const stringPermissiongs = permissions.filter((p) => typeof p === "string") as ShellPermission[] const objectPermissions = permissions.filter( (p) => typeof p !== "string" ) as ShellPermissionScoped[] - async function execute( program: string, args: string[], @@ -99,14 +102,19 @@ export function constructShellApi( options: options }) } - function kill(pid: number) { - if (!stringPermissiongs.some((p) => ShellPermissionMap.kill.includes(p))) + async function kill(pid: number) { + if (!stringPermissiongs.some((p) => ShellPermissionMap.kill.includes(p))) { return Promise.reject( new Error(`Permission denied. Requires one of ${ShellPermissionMap.kill}`) ) + } + const pids = await getSpawnedProcesses() + if (!pids.includes(pid)) { + return Promise.reject(new Error(`Process ${pid} not spawned by this extension`)) + } return invoke("plugin:shellx|kill", { cmd: "killChild", - pid: pid + pid }).then(() => { emitKillProcessEvent(pid) }) @@ -146,13 +154,24 @@ export function constructShellApi( options: InternalSpawnOptions, cb: (evt: CommandEvent) => void ) { - await verifyShellCmdPermission(ShellPermissionMap.rawSpawn, objectPermissions, program, args) + await verifyShellCmdPermission( + ShellPermissionMap.rawSpawn, + objectPermissions, + program, + args + ).catch((err) => { + toast.error("Permission denied", { + description: err.message + }) + console.error("rawSpawn permission denied", err) + throw err + }) const onEvent = new Channel>() onEvent.onmessage = cb return invoke("plugin:shellx|spawn", { - program: program, - args: args, - options: options, + program: "deno", + args: ["run", "/Users/hk/Dev/kunkun/deno.ts"], + options, onEvent }) } @@ -210,6 +229,14 @@ export function constructShellApi( return likelyOnWindows() } + function killPid(pid: number) { + if (!stringPermissiongs.some((p) => ShellPermissionMap.killPid.includes(p))) + return Promise.reject( + new Error(`Permission denied. Requires one of ${ShellPermissionMap.killPid}`) + ) + return shell.killPid(pid) + } + return { whereIsCommand(command: string): Promise { const cleanedCommand = command.trim().split(" ")[0] @@ -218,17 +245,7 @@ export function constructShellApi( } return whereIsCommand(cleanedCommand).then((res) => (res === "" ? null : res)) }, - async recordSpawnedProcess(pid: number): Promise { - // get window label - const curWin = await getCurrentWindow() - console.log("recordSpawnedProcess", pid, curWin.label) - await emitTo("main", RECORD_EXTENSION_PROCESS_EVENT, { - windowLabel: curWin.label, - pid - } satisfies IRecordExtensionProcessEvent) - // TODO: record process in a store - return Promise.resolve() - }, + recordSpawnedProcess, async denoExecute( scriptPath: string, config: DenoRunConfig, @@ -247,7 +264,6 @@ export function constructShellApi( args1, extPath ) - console.log("denoExecute", program, args, options) return invoke>("plugin:shellx|execute", { program, args, @@ -286,6 +302,7 @@ export function constructShellApi( }, execute, kill, + killPid, stdinWrite, open, rawSpawn, diff --git a/packages/api/src/api/shell.ts b/packages/api/src/api/shell.ts index 1fda404..455f3b2 100644 --- a/packages/api/src/api/shell.ts +++ b/packages/api/src/api/shell.ts @@ -59,8 +59,8 @@ export class Child { * * @since 2.0.0 */ - async kill(): Promise { - this.api.kill(this.pid) + kill(): Promise { + return this.api.kill(this.pid) // await invoke("plugin:shellx|kill", { // cmd: "killChild", // pid: this.pid @@ -184,6 +184,7 @@ export class DenoCommand extends BaseShellCommand { } }) .then(async (pid) => { + console.log("spawned deno process", pid) await this.api.recordSpawnedProcess(pid) return new Child(pid, this.api) }) @@ -232,6 +233,7 @@ export type IShell = { }> RPCChannel: typeof RPCChannel whereIsCommand: (command: string) => Promise + killPid: (pid: number) => Promise } export class TauriShellStdio implements IoInterface { @@ -347,6 +349,7 @@ export function constructShellAPI(api: IShellServer): IShell { return { open: api.open, + killPid: api.killPid, makeBashScript, makePowershellScript, makeAppleScript, diff --git a/packages/api/src/permissions/description.ts b/packages/api/src/permissions/description.ts index 064e70b..407ab99 100644 --- a/packages/api/src/permissions/description.ts +++ b/packages/api/src/permissions/description.ts @@ -24,6 +24,7 @@ export const permissionDescriptions: PermissionDescriptions = { "shell:execute": "Allows executing shell commands", "shell:spawn": "Allow spawning a new process and listen to the streaming of its output", "shell:kill": "Allows killing processes by pid. Need this to kill the process you started.", + "shell:kill-any": "Allows killing any process by pid", "shell:all": "Grant all shell related permissions. Path scope and args regex validation is still required.", "shell:stdin-write": "Allows writing to a command created.", diff --git a/packages/api/src/permissions/permission-map.ts b/packages/api/src/permissions/permission-map.ts index 6134ed1..c14619f 100644 --- a/packages/api/src/permissions/permission-map.ts +++ b/packages/api/src/permissions/permission-map.ts @@ -98,6 +98,7 @@ export const EventPermissionMap: Record = { export const ShellPermissionMap: Record = { execute: ["shell:all", "shell:execute"], kill: ["shell:all", "shell:kill"], + killPid: ["shell:all", "shell:kill-any"], stdinWrite: ["shell:all", "shell:stdin-write", "shell:execute"], open: ["shell:all", "shell:open"], rawSpawn: ["shell:all", "shell:spawn"], diff --git a/packages/api/src/permissions/schema.ts b/packages/api/src/permissions/schema.ts index 9614164..cd1bc61 100644 --- a/packages/api/src/permissions/schema.ts +++ b/packages/api/src/permissions/schema.ts @@ -133,6 +133,7 @@ export const ShellPermissionSchema = v.union([ v.literal("shell:deno:spawn"), v.literal("shell:open"), v.literal("shell:kill"), + v.literal("shell:kill-any"), v.literal("shell:all"), v.literal("shell:stdin-write") ]) diff --git a/packages/extensions/demo-worker-template-ext/CHANGELOG.md b/packages/extensions/demo-worker-template-ext/CHANGELOG.md index 675d7a7..74b8a23 100644 --- a/packages/extensions/demo-worker-template-ext/CHANGELOG.md +++ b/packages/extensions/demo-worker-template-ext/CHANGELOG.md @@ -1,5 +1,12 @@ # demo-template-extension +## 0.0.10 + +### Patch Changes + +- Updated dependencies + - @kksh/api@0.1.4 + ## 0.0.9 ### Patch Changes diff --git a/packages/extensions/demo-worker-template-ext/package.json b/packages/extensions/demo-worker-template-ext/package.json index 1acf830..3f76b29 100644 --- a/packages/extensions/demo-worker-template-ext/package.json +++ b/packages/extensions/demo-worker-template-ext/package.json @@ -1,7 +1,7 @@ { "$schema": "../../schema/manifest-json-schema.json", "name": "demo-template-extension", - "version": "0.0.9", + "version": "0.0.10", "type": "module", "license": "MIT", "kunkun": { @@ -11,14 +11,27 @@ "identifier": "demo-worker-template-ext", "permissions": [ "fetch:all", - "shell:kill", "security:mac:all", "clipboard:read-all", + { + "permission": "shell:spawn", + "allow": [ + { + "cmd": { + "program": "deno", + "args": [ + "run", + "/Users/hk/Dev/kunkun/deno.ts" + ] + } + } + ] + }, { "permission": "shell:deno:spawn", "allow": [ { - "path": "$EXTENSION/deno-src/rpc.ts", + "path": "/Users/hk/Dev/kunkun/deno.ts", "env": "*", "ffi": "*", "read": "*", @@ -27,6 +40,8 @@ } ] }, + "shell:stdin-write", + "shell:kill", { "permission": "open:file", "allow": [ @@ -35,7 +50,6 @@ } ] }, - "shell:stdin-write", { "permission": "shell:execute", "allow": [ diff --git a/packages/extensions/demo-worker-template-ext/src/headless.ts b/packages/extensions/demo-worker-template-ext/src/headless.ts index 9665f88..a0247ce 100644 --- a/packages/extensions/demo-worker-template-ext/src/headless.ts +++ b/packages/extensions/demo-worker-template-ext/src/headless.ts @@ -1,9 +1,8 @@ -import { expose, HeadlessCommand, toast } from "@kksh/api/headless" +import { expose, HeadlessCommand, shell, toast } from "@kksh/api/headless" class DemoHeadlessExt extends HeadlessCommand { load(): Promise { - console.log("Demo Headless Extension Loaded") - toast.info("Demo Headless Extension Loaded") + shell.killPid(84812) return Promise.resolve() } } diff --git a/packages/extensions/demo-worker-template-ext/src/index.ts b/packages/extensions/demo-worker-template-ext/src/index.ts index 7e310f3..4f2227c 100644 --- a/packages/extensions/demo-worker-template-ext/src/index.ts +++ b/packages/extensions/demo-worker-template-ext/src/index.ts @@ -57,7 +57,23 @@ class ExtensionTemplate extends TemplateUiCommand { ui.showLoadingBar(false) }, 2000) const extPath = await path.extensionDir() - // console.log("Extension path:", extPath) + const cmd = shell.createCommand("deno", ["run", "/Users/hk/Dev/kunkun/deno.ts"]) + cmd.stdout.on("data", (data) => { + console.log("within ext stdout", data) + }) + const child = await cmd.spawn() + console.log("in ext child", child) + setTimeout(() => { + child + .kill() + .then(() => { + console.log("child killed") + }) + .catch((err) => { + console.error("child kill error", err) + }) + }, 5000) + const tagList = new List.ItemDetailMetadataTagList({ title: "Tag List Title", tags: [ diff --git a/packages/extensions/ext-sveltekit-exp/CHANGELOG.md b/packages/extensions/ext-sveltekit-exp/CHANGELOG.md index 8704f1f..2f7490a 100644 --- a/packages/extensions/ext-sveltekit-exp/CHANGELOG.md +++ b/packages/extensions/ext-sveltekit-exp/CHANGELOG.md @@ -1,5 +1,12 @@ # template-ext-sveltekit +## 0.0.10 + +### Patch Changes + +- Updated dependencies + - @kksh/api@0.1.4 + ## 0.0.9 ### Patch Changes diff --git a/packages/extensions/ext-sveltekit-exp/package.json b/packages/extensions/ext-sveltekit-exp/package.json index a1231fa..5b09101 100644 --- a/packages/extensions/ext-sveltekit-exp/package.json +++ b/packages/extensions/ext-sveltekit-exp/package.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.kunkun.sh", "name": "ext-sveltekit-exp", - "version": "0.0.9", + "version": "0.0.10", "license": "MIT", "kunkun": { "name": "TODO: Change Display Name", diff --git a/packages/templates/template-ext-headless/CHANGELOG.md b/packages/templates/template-ext-headless/CHANGELOG.md index 3686f9c..5d39a3d 100644 --- a/packages/templates/template-ext-headless/CHANGELOG.md +++ b/packages/templates/template-ext-headless/CHANGELOG.md @@ -1,5 +1,12 @@ # template-ext-worker +## 0.0.9 + +### Patch Changes + +- Updated dependencies + - @kksh/api@0.1.4 + ## 0.0.8 ### Patch Changes diff --git a/packages/templates/template-ext-headless/package.json b/packages/templates/template-ext-headless/package.json index ced59bb..6a5977c 100644 --- a/packages/templates/template-ext-headless/package.json +++ b/packages/templates/template-ext-headless/package.json @@ -1,7 +1,7 @@ { "$schema": "./node_modules/@kksh/api/dist/schema.json", "name": "template-ext-headless", - "version": "0.0.8", + "version": "0.0.9", "license": "MIT", "type": "module", "kunkun": { diff --git a/packages/templates/template-ext-next/CHANGELOG.md b/packages/templates/template-ext-next/CHANGELOG.md index ae7a3cf..eccb16d 100644 --- a/packages/templates/template-ext-next/CHANGELOG.md +++ b/packages/templates/template-ext-next/CHANGELOG.md @@ -1,5 +1,12 @@ # template-ext-next +## 0.1.8 + +### Patch Changes + +- Updated dependencies + - @kksh/api@0.1.4 + ## 0.1.7 ### Patch Changes diff --git a/packages/templates/template-ext-next/package.json b/packages/templates/template-ext-next/package.json index 0583142..3369ce3 100644 --- a/packages/templates/template-ext-next/package.json +++ b/packages/templates/template-ext-next/package.json @@ -1,7 +1,7 @@ { "$schema": "./node_modules/@kksh/api/dist/schema.json", "name": "template-ext-next", - "version": "0.1.7", + "version": "0.1.8", "license": "MIT", "kunkun": { "name": "TODO: Change Display Name", diff --git a/packages/templates/template-ext-nuxt/CHANGELOG.md b/packages/templates/template-ext-nuxt/CHANGELOG.md index c39ceb8..67677c8 100644 --- a/packages/templates/template-ext-nuxt/CHANGELOG.md +++ b/packages/templates/template-ext-nuxt/CHANGELOG.md @@ -1,5 +1,12 @@ # template-ext-nuxt +## 0.0.10 + +### Patch Changes + +- Updated dependencies + - @kksh/api@0.1.4 + ## 0.0.9 ### Patch Changes diff --git a/packages/templates/template-ext-nuxt/package.json b/packages/templates/template-ext-nuxt/package.json index b64a4af..956211b 100644 --- a/packages/templates/template-ext-nuxt/package.json +++ b/packages/templates/template-ext-nuxt/package.json @@ -1,7 +1,7 @@ { "$schema": "./node_modules/@kksh/api/dist/schema.json", "name": "template-ext-nuxt", - "version": "0.0.9", + "version": "0.0.10", "type": "module", "license": "MIT", "kunkun": { diff --git a/packages/templates/template-ext-react/CHANGELOG.md b/packages/templates/template-ext-react/CHANGELOG.md index 3c8a855..dfb09c1 100644 --- a/packages/templates/template-ext-react/CHANGELOG.md +++ b/packages/templates/template-ext-react/CHANGELOG.md @@ -1,5 +1,12 @@ # template-ext-react +## 0.0.9 + +### Patch Changes + +- Updated dependencies + - @kksh/api@0.1.4 + ## 0.0.8 ### Patch Changes diff --git a/packages/templates/template-ext-react/package.json b/packages/templates/template-ext-react/package.json index 39a560d..4d1a451 100644 --- a/packages/templates/template-ext-react/package.json +++ b/packages/templates/template-ext-react/package.json @@ -2,7 +2,7 @@ "$schema": "./node_modules/@kksh/api/dist/schema.json", "name": "template-ext-react", "license": "MIT", - "version": "0.0.8", + "version": "0.0.9", "type": "module", "kunkun": { "name": "TODO: Change Display Name", diff --git a/packages/templates/template-ext-svelte/CHANGELOG.md b/packages/templates/template-ext-svelte/CHANGELOG.md index 85225fe..e876965 100644 --- a/packages/templates/template-ext-svelte/CHANGELOG.md +++ b/packages/templates/template-ext-svelte/CHANGELOG.md @@ -1,5 +1,12 @@ # template-ext-svelte +## 0.0.9 + +### Patch Changes + +- Updated dependencies + - @kksh/api@0.1.4 + ## 0.0.8 ### Patch Changes diff --git a/packages/templates/template-ext-svelte/package.json b/packages/templates/template-ext-svelte/package.json index e6597ea..c64b9a7 100644 --- a/packages/templates/template-ext-svelte/package.json +++ b/packages/templates/template-ext-svelte/package.json @@ -2,7 +2,7 @@ "$schema": "./node_modules/@kksh/api/dist/schema.json", "name": "template-ext-svelte", "license": "MIT", - "version": "0.0.8", + "version": "0.0.9", "type": "module", "kunkun": { "name": "TODO: Change Display Name", diff --git a/packages/templates/template-ext-sveltekit/CHANGELOG.md b/packages/templates/template-ext-sveltekit/CHANGELOG.md index 8704f1f..2f7490a 100644 --- a/packages/templates/template-ext-sveltekit/CHANGELOG.md +++ b/packages/templates/template-ext-sveltekit/CHANGELOG.md @@ -1,5 +1,12 @@ # template-ext-sveltekit +## 0.0.10 + +### Patch Changes + +- Updated dependencies + - @kksh/api@0.1.4 + ## 0.0.9 ### Patch Changes diff --git a/packages/templates/template-ext-sveltekit/package.json b/packages/templates/template-ext-sveltekit/package.json index 702105e..7908360 100644 --- a/packages/templates/template-ext-sveltekit/package.json +++ b/packages/templates/template-ext-sveltekit/package.json @@ -1,7 +1,7 @@ { "$schema": "./node_modules/@kksh/api/dist/schema.json", "name": "template-ext-sveltekit", - "version": "0.0.9", + "version": "0.0.10", "license": "MIT", "kunkun": { "name": "TODO: Change Display Name", @@ -54,14 +54,11 @@ "tailwind-variants": "^0.3.0" }, "devDependencies": { + "@eslint/js": "^9.21.0", "@sveltejs/adapter-auto": "^3.3.1", + "@sveltejs/adapter-static": "^3.0.8", "@sveltejs/kit": "^2.15.2", "@sveltejs/vite-plugin-svelte": "^5.0.3", - "svelte": "^5.16.6", - "svelte-check": "^4.1.1", - "typescript": "^5.7.2", - "vite": "^6.0.7", - "@sveltejs/adapter-static": "^3.0.8", "@tailwindcss/typography": "^0.5.16", "@types/eslint": "^9.6.1", "autoprefixer": "^10.4.20", @@ -73,8 +70,12 @@ "prettier": "^3.4.2", "prettier-plugin-svelte": "^3.3.2", "prettier-plugin-tailwindcss": "^0.6.9", + "svelte": "^5.16.6", + "svelte-check": "^4.1.1", "tailwindcss": "^3.4.17", - "typescript-eslint": "^8.19.1" + "typescript": "^5.7.2", + "typescript-eslint": "^8.19.1", + "vite": "^6.0.7" }, "type": "module", "files": [ diff --git a/packages/templates/template-ext-vue/CHANGELOG.md b/packages/templates/template-ext-vue/CHANGELOG.md index 9496618..d18ebff 100644 --- a/packages/templates/template-ext-vue/CHANGELOG.md +++ b/packages/templates/template-ext-vue/CHANGELOG.md @@ -1,5 +1,12 @@ # template-ext-vue +## 0.0.7 + +### Patch Changes + +- Updated dependencies + - @kksh/api@0.1.4 + ## 0.0.6 ### Patch Changes diff --git a/packages/templates/template-ext-vue/package.json b/packages/templates/template-ext-vue/package.json index 00c20cd..132e30e 100644 --- a/packages/templates/template-ext-vue/package.json +++ b/packages/templates/template-ext-vue/package.json @@ -1,7 +1,7 @@ { "name": "template-ext-vue", "license": "MIT", - "version": "0.0.6", + "version": "0.0.7", "type": "module", "scripts": { "dev": "vite", diff --git a/packages/templates/template-ext-worker/CHANGELOG.md b/packages/templates/template-ext-worker/CHANGELOG.md index 3686f9c..5d39a3d 100644 --- a/packages/templates/template-ext-worker/CHANGELOG.md +++ b/packages/templates/template-ext-worker/CHANGELOG.md @@ -1,5 +1,12 @@ # template-ext-worker +## 0.0.9 + +### Patch Changes + +- Updated dependencies + - @kksh/api@0.1.4 + ## 0.0.8 ### Patch Changes diff --git a/packages/templates/template-ext-worker/package.json b/packages/templates/template-ext-worker/package.json index 384772b..a26c20a 100644 --- a/packages/templates/template-ext-worker/package.json +++ b/packages/templates/template-ext-worker/package.json @@ -1,7 +1,7 @@ { "$schema": "./node_modules/@kksh/api/dist/schema.json", "name": "template-ext-worker", - "version": "0.0.8", + "version": "0.0.9", "license": "MIT", "type": "module", "kunkun": { diff --git a/packages/ui/package.json b/packages/ui/package.json index e14c2bb..bcaabbb 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -46,6 +46,7 @@ "@typescript-eslint/parser": "^8.20.0", "bits-ui": "1.0.0-next.77", "clsx": "^2.1.1", + "eslint": "^9.21.0", "eslint-config-prettier": "^10.0.1", "eslint-plugin-svelte": "^2.46.1", "formsnap": "2.0.0-next.1", @@ -61,17 +62,17 @@ "tailwind-variants": "^0.3.0", "tailwindcss": "^3.4.17", "tailwindcss-animate": "^1.0.7", - "tauri-plugin-shellx-api": "^2.0.14", + "tauri-plugin-shellx-api": "^2.0.15", "typescript-eslint": "^8.20.0", "zod": "^3.24.1" }, "dependencies": { "@formkit/auto-animate": "^0.8.2", - "@shikijs/langs": "^2.3.2", - "@shikijs/themes": "^2.3.2", "@inlang/paraglide-sveltekit": "^0.15.5", "@internationalized/date": "^3.7.0", "@kksh/supabase": "workspace:*", + "@shikijs/langs": "^2.3.2", + "@shikijs/themes": "^2.3.2", "@std/semver": "npm:@jsr/std__semver@^1.0.3", "dompurify": "^3.2.3", "gsap": "^3.12.7", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c3df590..0f00511 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -68,9 +68,6 @@ importers: tauri-plugin-network-api: specifier: workspace:* version: link:vendors/tauri-plugin-network - tauri-plugin-shellx-api: - specifier: ^2.0.14 - version: 2.0.14 tauri-plugin-system-info-api: specifier: workspace:* version: link:vendors/tauri-plugin-system-info @@ -248,6 +245,9 @@ importers: dompurify: specifier: ^3.2.3 version: 3.2.3 + eslint: + specifier: ^9.21.0 + version: 9.21.0(jiti@2.4.0) fuse.js: specifier: ^7.1.0 version: 7.1.0 @@ -275,6 +275,9 @@ importers: tauri-plugin-clipboard-api: specifier: ^2.1.11 version: 2.1.11(typescript@5.6.3) + tauri-plugin-shellx-api: + specifier: ^2.0.15 + version: 2.0.15 tauri-plugin-user-input-api: specifier: workspace:* version: link:../../vendors/tauri-plugin-user-input @@ -323,10 +326,10 @@ importers: version: 7.5.8 '@typescript-eslint/eslint-plugin': specifier: ^8.23.0 - version: 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3))(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3) + version: 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3))(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3) '@typescript-eslint/parser': specifier: ^8.23.0 - version: 8.23.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3) + version: 8.23.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3) autoprefixer: specifier: ^10.4.20 version: 10.4.20(postcss@8.4.49) @@ -338,10 +341,10 @@ importers: version: 2.1.1 eslint-config-prettier: specifier: ^9.1.0 - version: 9.1.0(eslint@9.17.0(jiti@2.4.0)) + version: 9.1.0(eslint@9.21.0(jiti@2.4.0)) eslint-plugin-svelte: specifier: ^2.46.1 - version: 2.46.1(eslint@9.17.0(jiti@2.4.0))(svelte@5.16.6) + version: 2.46.1(eslint@9.21.0(jiti@2.4.0))(svelte@5.16.6) globals: specifier: ^15.14.0 version: 15.14.0 @@ -374,7 +377,7 @@ importers: version: 5.6.3 typescript-eslint: specifier: ^8.20.0 - version: 8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3) + version: 8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3) vite: specifier: ^6.0.3 version: 6.0.3(@types/node@22.13.1)(jiti@2.4.0)(terser@5.36.0)(yaml@2.6.1) @@ -451,14 +454,14 @@ importers: specifier: ^0.3.28 version: 0.3.28(svelte@5.16.6) tauri-api-adapter: - specifier: ^0.3.20 - version: 0.3.20(typescript@5.7.2) + specifier: ^0.3.23 + version: 0.3.23(typescript@5.7.2) tauri-plugin-network-api: specifier: 2.0.5 version: 2.0.5(typescript@5.7.2) tauri-plugin-shellx-api: - specifier: ^2.0.14 - version: 2.0.14 + specifier: ^2.0.15 + version: 2.0.15 tauri-plugin-system-info-api: specifier: 2.0.8 version: 2.0.8(typescript@5.7.2) @@ -514,19 +517,19 @@ importers: dependencies: '@typescript-eslint/eslint-plugin': specifier: ^8.20.0 - version: 8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3))(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3) + version: 8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.7.3))(eslint@9.21.0(jiti@2.4.0))(typescript@5.7.3) '@typescript-eslint/parser': specifier: ^8.20.0 - version: 8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3) + version: 8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.7.3) eslint-config-prettier: specifier: ^10.0.1 - version: 10.0.1(eslint@9.17.0(jiti@2.4.0)) + version: 10.0.1(eslint@9.21.0(jiti@2.4.0)) eslint-config-turbo: specifier: ^2.3.3 - version: 2.3.3(eslint@9.17.0(jiti@2.4.0)) + version: 2.3.3(eslint@9.21.0(jiti@2.4.0)) eslint-plugin-svelte: specifier: ^2.46.1 - version: 2.46.1(eslint@9.17.0(jiti@2.4.0))(svelte@5.16.6) + version: 2.46.1(eslint@9.21.0(jiti@2.4.0))(svelte@5.16.6) packages/extension: dependencies: @@ -567,19 +570,19 @@ importers: devDependencies: '@rollup/plugin-commonjs': specifier: ^26.0.1 - version: 26.0.3(rollup@4.30.1) + version: 26.0.3(rollup@4.34.2) '@rollup/plugin-node-resolve': specifier: ^15.2.3 - version: 15.3.0(rollup@4.30.1) + version: 15.3.0(rollup@4.34.2) '@rollup/plugin-typescript': specifier: ^11.1.6 - version: 11.1.6(rollup@4.30.1)(tslib@2.8.1)(typescript@5.7.3) + version: 11.1.6(rollup@4.34.2)(tslib@2.8.1)(typescript@5.7.3) '@types/bun': specifier: latest version: 1.2.3 rollup-plugin-visualizer: specifier: ^5.12.0 - version: 5.12.0(rollup@4.30.1) + version: 5.12.0(rollup@4.34.2) packages/extensions/ext-sveltekit-exp: dependencies: @@ -879,10 +882,10 @@ importers: version: 0.1.3(@popperjs/core@2.11.8)(@vue/devtools-api@7.6.4)(tailwindcss@3.4.15)(vue@3.5.13(typescript@5.6.3)) '@nuxtjs/tailwindcss': specifier: 6.12.1 - version: 6.12.1(magicast@0.3.5)(rollup@4.30.1) + version: 6.12.1(magicast@0.3.5)(rollup@4.34.2) nuxt: specifier: ^3.12.4 - version: 3.14.159(@parcel/watcher@2.5.0)(@types/node@22.13.1)(eslint@9.17.0(jiti@2.4.0))(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.30.1)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.11(@types/node@22.13.1)(terser@5.36.0))(vue-tsc@2.1.10(typescript@5.6.3)) + version: 3.14.159(@parcel/watcher@2.5.0)(@types/node@22.13.1)(eslint@9.21.0(jiti@2.4.0))(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.34.2)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.11(@types/node@22.13.1)(terser@5.36.0))(vue-tsc@2.1.10(typescript@5.6.3)) tailwindcss: specifier: ^3.4.7 version: 3.4.15 @@ -1037,6 +1040,9 @@ importers: specifier: ^0.3.0 version: 0.3.0(tailwindcss@3.4.17) devDependencies: + '@eslint/js': + specifier: ^9.21.0 + version: 9.21.0 '@sveltejs/adapter-auto': specifier: ^3.3.1 version: 3.3.1(@sveltejs/kit@2.15.2(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.16.6)(vite@6.0.7(@types/node@22.13.1)(jiti@2.4.0)(terser@5.36.0)(yaml@2.6.1)))(svelte@5.16.6)(vite@6.0.7(@types/node@22.13.1)(jiti@2.4.0)(terser@5.36.0)(yaml@2.6.1))) @@ -1246,22 +1252,25 @@ importers: version: 1.2.3 '@typescript-eslint/eslint-plugin': specifier: ^8.20.0 - version: 8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3))(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3) + version: 8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.7.3))(eslint@9.21.0(jiti@2.4.0))(typescript@5.7.3) '@typescript-eslint/parser': specifier: ^8.20.0 - version: 8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3) + version: 8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.7.3) bits-ui: specifier: 1.0.0-next.77 version: 1.0.0-next.77(svelte@5.16.6) clsx: specifier: ^2.1.1 version: 2.1.1 + eslint: + specifier: ^9.21.0 + version: 9.21.0(jiti@2.4.0) eslint-config-prettier: specifier: ^10.0.1 - version: 10.0.1(eslint@9.17.0(jiti@2.4.0)) + version: 10.0.1(eslint@9.21.0(jiti@2.4.0)) eslint-plugin-svelte: specifier: ^2.46.1 - version: 2.46.1(eslint@9.17.0(jiti@2.4.0))(svelte@5.16.6) + version: 2.46.1(eslint@9.21.0(jiti@2.4.0))(svelte@5.16.6) formsnap: specifier: 2.0.0-next.1 version: 2.0.0-next.1(svelte@5.16.6)(sveltekit-superforms@2.22.1(@sveltejs/kit@2.17.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.16.6)(vite@6.0.7(@types/node@22.13.1)(jiti@2.4.0)(terser@5.36.0)(yaml@2.6.1)))(svelte@5.16.6)(vite@6.0.7(@types/node@22.13.1)(jiti@2.4.0)(terser@5.36.0)(yaml@2.6.1)))(@types/json-schema@7.0.15)(svelte@5.16.6)(typescript@5.7.3)) @@ -1302,11 +1311,11 @@ importers: specifier: ^1.0.7 version: 1.0.7(tailwindcss@3.4.17) tauri-plugin-shellx-api: - specifier: ^2.0.14 - version: 2.0.14 + specifier: ^2.0.15 + version: 2.0.15 typescript-eslint: specifier: ^8.20.0 - version: 8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3) + version: 8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.7.3) zod: specifier: ^3.24.1 version: 3.24.1 @@ -2329,6 +2338,14 @@ packages: resolution: {integrity: sha512-zdHg2FPIFNKPdcHWtiNT+jEFCHYVplAXRDlQDyqy0zGx/q2parwh7brGJSiTxRk/TSMkbM//zt/f5CHgyTyaSQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/config-array@0.19.2': + resolution: {integrity: sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@0.12.0': + resolution: {integrity: sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/core@0.9.0': resolution: {integrity: sha512-7ATR9F0e4W85D/0w7cU0SNj7qkAexMG+bAHEZOjo9akvGuhHE2m7umzWzfnpa0XAg5Kxc1BWmtPMV67jJ+9VUg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -2341,6 +2358,10 @@ packages: resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/eslintrc@3.3.0': + resolution: {integrity: sha512-yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/js@8.57.1': resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -2357,14 +2378,26 @@ packages: resolution: {integrity: sha512-rbq9/g38qjfqFLOVPvwjIvFFdNziEC5S65jmjPw5r6A//QH+W91akh9irMwjDN8zKUTak6W9EsAv4m/7Wnw0UQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/js@9.21.0': + resolution: {integrity: sha512-BqStZ3HX8Yz6LvsF5ByXYrtigrV5AXADWLAGc7PH/1SxOb7/FIYYMszZZWiUou/GB9P2lXWk2SV4d+Z8h0nknw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/object-schema@2.1.4': resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/object-schema@2.1.6': + resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/plugin-kit@0.2.3': resolution: {integrity: sha512-2b/g5hRmpbb1o4GnTZax9N9m0FXzz9OV42ZzI4rDDMDuHUqigAiQCEWChBWCY4ztAGVRjoWT19v0yMmc5/L5kA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/plugin-kit@0.2.7': + resolution: {integrity: sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@exodus/schemasafe@1.3.0': resolution: {integrity: sha512-5Aap/GaRupgNx/feGBwLLTVv8OQFfv3pq2lPRzPg9R+IOBnDgghTGW7l7EuVXOvg5cc/xSAlRW8rBrjIC3Nvqw==} @@ -2456,6 +2489,10 @@ packages: resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==} engines: {node: '>=18.18'} + '@humanwhocodes/retry@0.4.2': + resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==} + engines: {node: '>=18.18'} + '@ianvs/prettier-plugin-sort-imports@4.4.0': resolution: {integrity: sha512-f4/e+/ANGk3tHuwRW0uh2YuBR50I4h1ZjGQ+5uD8sWfinHTivQsnieR5cz24t8M6Vx4rYvZ5v/IEKZhYpzQm9Q==} peerDependencies: @@ -7398,6 +7435,16 @@ packages: jiti: optional: true + eslint@9.21.0: + resolution: {integrity: sha512-KjeihdFqTPhOMXTt7StsDxriV4n66ueuF/jfPNC3j/lduHwr/ijDwJMsF+wyMJethgiKi5wniIE243vi07d3pg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true + esm-env@1.2.1: resolution: {integrity: sha512-U9JedYYjCnadUlXk7e1Kr+aENQhtUaoaV9+gZm1T8LC/YBAPJx3NSPIAurFOC0U5vrdSevnUJS2/wUVxGwPhng==} @@ -10746,8 +10793,8 @@ packages: resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==} engines: {node: '>=18'} - tauri-api-adapter@0.3.20: - resolution: {integrity: sha512-tRK25c1d34ZRd5CJAXfrBeTr4eGh0UPshLac1DBm4TBF+EZ1TFCwLpvUj9DQ3VS2gHKA9fNc4J5pNpHh3OD4Og==} + tauri-api-adapter@0.3.23: + resolution: {integrity: sha512-WT/NVCdZZSn63Yu/lhZqeUxMGy/VoBZik7yuY2ot+kCynsI1zJQ9ZB6ORmPL8+VBBRbSpEn1yOUbSTSucRFLOQ==} peerDependencies: typescript: ^5.0.0 @@ -10762,11 +10809,8 @@ packages: tauri-plugin-network-api@2.0.5: resolution: {integrity: sha512-u7CTvmgP4Lt3fK0/mVMD/pcWlXsWenC0YYlJUE2VQCThx8VQzxSAXgyPhcg0+CT5iIoPt5mkfixMfamM8e6v/w==} - tauri-plugin-shellx-api@2.0.11: - resolution: {integrity: sha512-+FKIP1FBHdIQ6tASohww3MOf/8CDvYMYpPg9glO59h8TGVxTNP2ofiOEKLYk8M/o2H4tP7mxxca11QpDAT2LXw==} - - tauri-plugin-shellx-api@2.0.14: - resolution: {integrity: sha512-MdSYD2KDw63b7yEIa9Q2GXnbidL5Tk+s92BJX0XvYfHrv2l1fYE2vdRWGnyhvCWmUavyCeiOle5uMxM6QLOb2Q==} + tauri-plugin-shellx-api@2.0.15: + resolution: {integrity: sha512-MrgArTe90o/zLHbIv/x0kTtLm1tiQiEIPnvUcIwuz1pBCGn45+E0ghOgjjGMlGaA2ln6KRV213e52/Az4MqMPQ==} tauri-plugin-system-info-api@2.0.8: resolution: {integrity: sha512-EFdLXNGp6Zu9SNsZCkU+55A8027OnrVw/TQrd0oJHgfZzs4qvm1iMmSvyid4MLftt33iZDhjCzxYijaaOxeKSg==} @@ -13070,6 +13114,11 @@ snapshots: eslint: 9.17.0(jiti@2.4.0) eslint-visitor-keys: 3.4.3 + '@eslint-community/eslint-utils@4.4.1(eslint@9.21.0(jiti@2.4.0))': + dependencies: + eslint: 9.21.0(jiti@2.4.0) + eslint-visitor-keys: 3.4.3 + '@eslint-community/regexpp@4.12.1': {} '@eslint/config-array@0.19.0': @@ -13080,6 +13129,18 @@ snapshots: transitivePeerDependencies: - supports-color + '@eslint/config-array@0.19.2': + dependencies: + '@eslint/object-schema': 2.1.6 + debug: 4.4.0(supports-color@9.4.0) + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + '@eslint/core@0.12.0': + dependencies: + '@types/json-schema': 7.0.15 + '@eslint/core@0.9.0': {} '@eslint/eslintrc@2.1.4': @@ -13110,6 +13171,20 @@ snapshots: transitivePeerDependencies: - supports-color + '@eslint/eslintrc@3.3.0': + dependencies: + ajv: 6.12.6 + debug: 4.4.0(supports-color@9.4.0) + espree: 10.3.0 + globals: 14.0.0 + ignore: 5.3.2 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + '@eslint/js@8.57.1': {} '@eslint/js@9.17.0': {} @@ -13118,12 +13193,21 @@ snapshots: '@eslint/js@9.19.0': {} + '@eslint/js@9.21.0': {} + '@eslint/object-schema@2.1.4': {} + '@eslint/object-schema@2.1.6': {} + '@eslint/plugin-kit@0.2.3': dependencies: levn: 0.4.1 + '@eslint/plugin-kit@0.2.7': + dependencies: + '@eslint/core': 0.12.0 + levn: 0.4.1 + '@exodus/schemasafe@1.3.0': optional: true @@ -13253,6 +13337,8 @@ snapshots: '@humanwhocodes/retry@0.4.1': {} + '@humanwhocodes/retry@0.4.2': {} + '@ianvs/prettier-plugin-sort-imports@4.4.0(@vue/compiler-sfc@3.5.13)(prettier@3.4.2)': dependencies: '@babel/generator': 7.26.2 @@ -13766,7 +13852,7 @@ snapshots: minimatch: 10.0.1 semver: 7.6.3 tauri-api-adapter: 0.3.8(tslib@2.8.1)(typescript@5.7.3) - tauri-plugin-shellx-api: 2.0.11 + tauri-plugin-shellx-api: 2.0.15 valibot: 0.40.0(typescript@5.7.3) vue-sonner: 1.2.5 transitivePeerDependencies: @@ -14099,10 +14185,10 @@ snapshots: '@nuxt/devalue@2.0.2': {} - '@nuxt/devtools-kit@1.6.0(magicast@0.3.5)(rollup@4.30.1)(vite@5.4.11(@types/node@22.13.1)(terser@5.36.0))': + '@nuxt/devtools-kit@1.6.0(magicast@0.3.5)(rollup@4.34.2)(vite@5.4.11(@types/node@22.13.1)(terser@5.36.0))': dependencies: - '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.30.1) - '@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.30.1) + '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.34.2) + '@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.34.2) execa: 7.2.0 vite: 5.4.11(@types/node@22.13.1)(terser@5.36.0) transitivePeerDependencies: @@ -14123,12 +14209,12 @@ snapshots: rc9: 2.1.2 semver: 7.6.3 - '@nuxt/devtools@1.6.0(rollup@4.30.1)(vite@5.4.11(@types/node@22.13.1)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3))': + '@nuxt/devtools@1.6.0(rollup@4.34.2)(vite@5.4.11(@types/node@22.13.1)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3))': dependencies: '@antfu/utils': 0.7.10 - '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.30.1)(vite@5.4.11(@types/node@22.13.1)(terser@5.36.0)) + '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.34.2)(vite@5.4.11(@types/node@22.13.1)(terser@5.36.0)) '@nuxt/devtools-wizard': 1.6.0 - '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.30.1) + '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.34.2) '@vue/devtools-core': 7.4.4(vite@5.4.11(@types/node@22.13.1)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3)) '@vue/devtools-kit': 7.4.4 birpc: 0.2.19 @@ -14157,9 +14243,9 @@ snapshots: simple-git: 3.27.0 sirv: 2.0.4 tinyglobby: 0.2.10 - unimport: 3.13.2(rollup@4.30.1) + unimport: 3.13.2(rollup@4.34.2) vite: 5.4.11(@types/node@22.13.1)(terser@5.36.0) - vite-plugin-inspect: 0.8.7(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.30.1))(rollup@4.30.1)(vite@5.4.11(@types/node@22.13.1)(terser@5.36.0)) + vite-plugin-inspect: 0.8.7(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.34.2))(rollup@4.34.2)(vite@5.4.11(@types/node@22.13.1)(terser@5.36.0)) vite-plugin-vue-inspector: 5.1.3(vite@5.4.11(@types/node@22.13.1)(terser@5.36.0)) which: 3.0.1 ws: 8.18.0 @@ -14170,9 +14256,9 @@ snapshots: - utf-8-validate - vue - '@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.30.1)': + '@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.34.2)': dependencies: - '@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.30.1) + '@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.34.2) c12: 2.0.1(magicast@0.3.5) consola: 3.2.3 defu: 6.1.4 @@ -14190,14 +14276,14 @@ snapshots: semver: 7.6.3 ufo: 1.5.4 unctx: 2.3.1 - unimport: 3.13.2(rollup@4.30.1) + unimport: 3.13.2(rollup@4.34.2) untyped: 1.5.1 transitivePeerDependencies: - magicast - rollup - supports-color - '@nuxt/schema@3.14.159(magicast@0.3.5)(rollup@4.30.1)': + '@nuxt/schema@3.14.159(magicast@0.3.5)(rollup@4.34.2)': dependencies: c12: 2.0.1(magicast@0.3.5) compatx: 0.1.8 @@ -14210,16 +14296,16 @@ snapshots: std-env: 3.8.0 ufo: 1.5.4 uncrypto: 0.1.3 - unimport: 3.13.2(rollup@4.30.1) + unimport: 3.13.2(rollup@4.34.2) untyped: 1.5.1 transitivePeerDependencies: - magicast - rollup - supports-color - '@nuxt/telemetry@2.6.0(magicast@0.3.5)(rollup@4.30.1)': + '@nuxt/telemetry@2.6.0(magicast@0.3.5)(rollup@4.34.2)': dependencies: - '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.30.1) + '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.34.2) ci-info: 4.1.0 consola: 3.2.3 create-require: 1.1.1 @@ -14242,10 +14328,10 @@ snapshots: - rollup - supports-color - '@nuxt/vite-builder@3.14.159(@types/node@22.13.1)(eslint@9.17.0(jiti@2.4.0))(magicast@0.3.5)(optionator@0.9.4)(rollup@4.30.1)(terser@5.36.0)(typescript@5.6.3)(vue-tsc@2.1.10(typescript@5.6.3))(vue@3.5.13(typescript@5.6.3))': + '@nuxt/vite-builder@3.14.159(@types/node@22.13.1)(eslint@9.21.0(jiti@2.4.0))(magicast@0.3.5)(optionator@0.9.4)(rollup@4.34.2)(terser@5.36.0)(typescript@5.6.3)(vue-tsc@2.1.10(typescript@5.6.3))(vue@3.5.13(typescript@5.6.3))': dependencies: - '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.30.1) - '@rollup/plugin-replace': 6.0.1(rollup@4.30.1) + '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.34.2) + '@rollup/plugin-replace': 6.0.1(rollup@4.34.2) '@vitejs/plugin-vue': 5.2.0(vite@5.4.14(@types/node@22.13.1)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3)) '@vitejs/plugin-vue-jsx': 4.1.0(vite@5.4.14(@types/node@22.13.1)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3)) autoprefixer: 10.4.20(postcss@8.4.49) @@ -14268,7 +14354,7 @@ snapshots: perfect-debounce: 1.0.0 pkg-types: 1.2.1 postcss: 8.4.49 - rollup-plugin-visualizer: 5.12.0(rollup@4.30.1) + rollup-plugin-visualizer: 5.12.0(rollup@4.34.2) std-env: 3.8.0 strip-literal: 2.1.0 ufo: 1.5.4 @@ -14276,7 +14362,7 @@ snapshots: unplugin: 1.16.0 vite: 5.4.14(@types/node@22.13.1)(terser@5.36.0) vite-node: 2.1.9(@types/node@22.13.1)(terser@5.36.0) - vite-plugin-checker: 0.8.0(eslint@9.17.0(jiti@2.4.0))(optionator@0.9.4)(typescript@5.6.3)(vite@5.4.14(@types/node@22.13.1)(terser@5.36.0))(vue-tsc@2.1.10(typescript@5.6.3)) + vite-plugin-checker: 0.8.0(eslint@9.21.0(jiti@2.4.0))(optionator@0.9.4)(typescript@5.6.3)(vite@5.4.14(@types/node@22.13.1)(terser@5.36.0))(vue-tsc@2.1.10(typescript@5.6.3)) vue: 3.5.13(typescript@5.6.3) vue-bundle-renderer: 2.1.1 transitivePeerDependencies: @@ -14301,9 +14387,9 @@ snapshots: - vti - vue-tsc - '@nuxtjs/tailwindcss@6.12.1(magicast@0.3.5)(rollup@4.30.1)': + '@nuxtjs/tailwindcss@6.12.1(magicast@0.3.5)(rollup@4.34.2)': dependencies: - '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.30.1) + '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.34.2) autoprefixer: 10.4.20(postcss@8.4.49) consola: 3.2.3 defu: 6.1.4 @@ -15373,24 +15459,24 @@ snapshots: - encoding - supports-color - '@rollup/plugin-alias@5.1.1(rollup@4.30.1)': + '@rollup/plugin-alias@5.1.1(rollup@4.34.2)': optionalDependencies: - rollup: 4.30.1 + rollup: 4.34.2 - '@rollup/plugin-commonjs@26.0.3(rollup@4.30.1)': + '@rollup/plugin-commonjs@26.0.3(rollup@4.34.2)': dependencies: - '@rollup/pluginutils': 5.1.3(rollup@4.30.1) + '@rollup/pluginutils': 5.1.3(rollup@4.34.2) commondir: 1.0.1 estree-walker: 2.0.2 glob: 10.4.5 is-reference: 1.2.1 magic-string: 0.30.12 optionalDependencies: - rollup: 4.30.1 + rollup: 4.34.2 - '@rollup/plugin-commonjs@28.0.1(rollup@4.30.1)': + '@rollup/plugin-commonjs@28.0.1(rollup@4.34.2)': dependencies: - '@rollup/pluginutils': 5.1.3(rollup@4.30.1) + '@rollup/pluginutils': 5.1.3(rollup@4.34.2) commondir: 1.0.1 estree-walker: 2.0.2 fdir: 6.4.2(picomatch@4.0.2) @@ -15398,46 +15484,46 @@ snapshots: magic-string: 0.30.17 picomatch: 4.0.2 optionalDependencies: - rollup: 4.30.1 + rollup: 4.34.2 - '@rollup/plugin-inject@5.0.5(rollup@4.30.1)': + '@rollup/plugin-inject@5.0.5(rollup@4.34.2)': dependencies: - '@rollup/pluginutils': 5.1.3(rollup@4.30.1) + '@rollup/pluginutils': 5.1.3(rollup@4.34.2) estree-walker: 2.0.2 magic-string: 0.30.17 optionalDependencies: - rollup: 4.30.1 + rollup: 4.34.2 - '@rollup/plugin-json@6.1.0(rollup@4.30.1)': + '@rollup/plugin-json@6.1.0(rollup@4.34.2)': dependencies: - '@rollup/pluginutils': 5.1.3(rollup@4.30.1) + '@rollup/pluginutils': 5.1.3(rollup@4.34.2) optionalDependencies: - rollup: 4.30.1 + rollup: 4.34.2 - '@rollup/plugin-node-resolve@15.3.0(rollup@4.30.1)': + '@rollup/plugin-node-resolve@15.3.0(rollup@4.34.2)': dependencies: - '@rollup/pluginutils': 5.1.3(rollup@4.30.1) + '@rollup/pluginutils': 5.1.3(rollup@4.34.2) '@types/resolve': 1.20.2 deepmerge: 4.3.1 is-module: 1.0.0 resolve: 1.22.8 optionalDependencies: - rollup: 4.30.1 + rollup: 4.34.2 - '@rollup/plugin-replace@6.0.1(rollup@4.30.1)': + '@rollup/plugin-replace@6.0.1(rollup@4.34.2)': dependencies: - '@rollup/pluginutils': 5.1.3(rollup@4.30.1) + '@rollup/pluginutils': 5.1.3(rollup@4.34.2) magic-string: 0.30.17 optionalDependencies: - rollup: 4.30.1 + rollup: 4.34.2 - '@rollup/plugin-terser@0.4.4(rollup@4.30.1)': + '@rollup/plugin-terser@0.4.4(rollup@4.34.2)': dependencies: serialize-javascript: 6.0.2 smob: 1.5.0 terser: 5.36.0 optionalDependencies: - rollup: 4.30.1 + rollup: 4.34.2 '@rollup/plugin-typescript@11.1.6(rollup@4.28.1)(tslib@2.8.1)(typescript@5.6.3)': dependencies: @@ -15448,13 +15534,13 @@ snapshots: rollup: 4.28.1 tslib: 2.8.1 - '@rollup/plugin-typescript@11.1.6(rollup@4.30.1)(tslib@2.8.1)(typescript@5.7.3)': + '@rollup/plugin-typescript@11.1.6(rollup@4.34.2)(tslib@2.8.1)(typescript@5.7.3)': dependencies: - '@rollup/pluginutils': 5.1.3(rollup@4.30.1) + '@rollup/pluginutils': 5.1.3(rollup@4.34.2) resolve: 1.22.8 typescript: 5.7.3 optionalDependencies: - rollup: 4.30.1 + rollup: 4.34.2 tslib: 2.8.1 '@rollup/plugin-typescript@12.1.2(rollup@4.28.1)(tslib@2.8.1)(typescript@5.6.3)': @@ -15496,6 +15582,14 @@ snapshots: optionalDependencies: rollup: 4.30.1 + '@rollup/pluginutils@5.1.3(rollup@4.34.2)': + dependencies: + '@types/estree': 1.0.6 + estree-walker: 2.0.2 + picomatch: 4.0.2 + optionalDependencies: + rollup: 4.34.2 + '@rollup/rollup-android-arm-eabi@4.24.3': optional: true @@ -16992,15 +17086,15 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3))(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3)': + '@typescript-eslint/eslint-plugin@8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3))(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3) + '@typescript-eslint/parser': 8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3) '@typescript-eslint/scope-manager': 8.20.0 - '@typescript-eslint/type-utils': 8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3) - '@typescript-eslint/utils': 8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3) + '@typescript-eslint/type-utils': 8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3) + '@typescript-eslint/utils': 8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3) '@typescript-eslint/visitor-keys': 8.20.0 - eslint: 9.17.0(jiti@2.4.0) + eslint: 9.21.0(jiti@2.4.0) graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 @@ -17009,15 +17103,15 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3))(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3)': + '@typescript-eslint/eslint-plugin@8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.7.3))(eslint@9.21.0(jiti@2.4.0))(typescript@5.7.3)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3) + '@typescript-eslint/parser': 8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.7.3) '@typescript-eslint/scope-manager': 8.20.0 - '@typescript-eslint/type-utils': 8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3) - '@typescript-eslint/utils': 8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3) + '@typescript-eslint/type-utils': 8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.7.3) + '@typescript-eslint/utils': 8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.7.3) '@typescript-eslint/visitor-keys': 8.20.0 - eslint: 9.17.0(jiti@2.4.0) + eslint: 9.21.0(jiti@2.4.0) graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 @@ -17043,15 +17137,15 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3))(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3)': + '@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3))(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.23.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3) + '@typescript-eslint/parser': 8.23.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3) '@typescript-eslint/scope-manager': 8.23.0 - '@typescript-eslint/type-utils': 8.23.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3) - '@typescript-eslint/utils': 8.23.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3) + '@typescript-eslint/type-utils': 8.23.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3) + '@typescript-eslint/utils': 8.23.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3) '@typescript-eslint/visitor-keys': 8.23.0 - eslint: 9.17.0(jiti@2.4.0) + eslint: 9.21.0(jiti@2.4.0) graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 @@ -17085,26 +17179,26 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3)': + '@typescript-eslint/parser@8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3)': dependencies: '@typescript-eslint/scope-manager': 8.20.0 '@typescript-eslint/types': 8.20.0 '@typescript-eslint/typescript-estree': 8.20.0(typescript@5.6.3) '@typescript-eslint/visitor-keys': 8.20.0 debug: 4.4.0(supports-color@9.4.0) - eslint: 9.17.0(jiti@2.4.0) + eslint: 9.21.0(jiti@2.4.0) typescript: 5.6.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3)': + '@typescript-eslint/parser@8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.7.3)': dependencies: '@typescript-eslint/scope-manager': 8.20.0 '@typescript-eslint/types': 8.20.0 '@typescript-eslint/typescript-estree': 8.20.0(typescript@5.7.3) '@typescript-eslint/visitor-keys': 8.20.0 debug: 4.4.0(supports-color@9.4.0) - eslint: 9.17.0(jiti@2.4.0) + eslint: 9.21.0(jiti@2.4.0) typescript: 5.7.3 transitivePeerDependencies: - supports-color @@ -17121,14 +17215,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.23.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3)': + '@typescript-eslint/parser@8.23.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3)': dependencies: '@typescript-eslint/scope-manager': 8.23.0 '@typescript-eslint/types': 8.23.0 '@typescript-eslint/typescript-estree': 8.23.0(typescript@5.6.3) '@typescript-eslint/visitor-keys': 8.23.0 debug: 4.4.0(supports-color@9.4.0) - eslint: 9.17.0(jiti@2.4.0) + eslint: 9.21.0(jiti@2.4.0) typescript: 5.6.3 transitivePeerDependencies: - supports-color @@ -17176,23 +17270,23 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3)': + '@typescript-eslint/type-utils@8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3)': dependencies: '@typescript-eslint/typescript-estree': 8.20.0(typescript@5.6.3) - '@typescript-eslint/utils': 8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3) + '@typescript-eslint/utils': 8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3) debug: 4.4.0(supports-color@9.4.0) - eslint: 9.17.0(jiti@2.4.0) + eslint: 9.21.0(jiti@2.4.0) ts-api-utils: 2.0.0(typescript@5.6.3) typescript: 5.6.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3)': + '@typescript-eslint/type-utils@8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.7.3)': dependencies: '@typescript-eslint/typescript-estree': 8.20.0(typescript@5.7.3) - '@typescript-eslint/utils': 8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3) + '@typescript-eslint/utils': 8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.7.3) debug: 4.4.0(supports-color@9.4.0) - eslint: 9.17.0(jiti@2.4.0) + eslint: 9.21.0(jiti@2.4.0) ts-api-utils: 2.0.0(typescript@5.7.3) typescript: 5.7.3 transitivePeerDependencies: @@ -17209,12 +17303,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@8.23.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3)': + '@typescript-eslint/type-utils@8.23.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3)': dependencies: '@typescript-eslint/typescript-estree': 8.23.0(typescript@5.6.3) - '@typescript-eslint/utils': 8.23.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3) + '@typescript-eslint/utils': 8.23.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3) debug: 4.4.0(supports-color@9.4.0) - eslint: 9.17.0(jiti@2.4.0) + eslint: 9.21.0(jiti@2.4.0) ts-api-utils: 2.0.1(typescript@5.6.3) typescript: 5.6.3 transitivePeerDependencies: @@ -17336,24 +17430,24 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3)': + '@typescript-eslint/utils@8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3)': dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.4.1(eslint@9.21.0(jiti@2.4.0)) '@typescript-eslint/scope-manager': 8.20.0 '@typescript-eslint/types': 8.20.0 '@typescript-eslint/typescript-estree': 8.20.0(typescript@5.6.3) - eslint: 9.17.0(jiti@2.4.0) + eslint: 9.21.0(jiti@2.4.0) typescript: 5.6.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3)': + '@typescript-eslint/utils@8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.7.3)': dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.4.1(eslint@9.21.0(jiti@2.4.0)) '@typescript-eslint/scope-manager': 8.20.0 '@typescript-eslint/types': 8.20.0 '@typescript-eslint/typescript-estree': 8.20.0(typescript@5.7.3) - eslint: 9.17.0(jiti@2.4.0) + eslint: 9.21.0(jiti@2.4.0) typescript: 5.7.3 transitivePeerDependencies: - supports-color @@ -17369,13 +17463,13 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.23.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3)': + '@typescript-eslint/utils@8.23.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3)': dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.4.1(eslint@9.21.0(jiti@2.4.0)) '@typescript-eslint/scope-manager': 8.23.0 '@typescript-eslint/types': 8.23.0 '@typescript-eslint/typescript-estree': 8.23.0(typescript@5.6.3) - eslint: 9.17.0(jiti@2.4.0) + eslint: 9.21.0(jiti@2.4.0) typescript: 5.6.3 transitivePeerDependencies: - supports-color @@ -17609,10 +17703,10 @@ snapshots: path-browserify: 1.0.1 vscode-uri: 3.0.8 - '@vue-macros/common@1.15.0(rollup@4.30.1)(vue@3.5.13(typescript@5.6.3))': + '@vue-macros/common@1.15.0(rollup@4.34.2)(vue@3.5.13(typescript@5.6.3))': dependencies: '@babel/types': 7.26.0 - '@rollup/pluginutils': 5.1.3(rollup@4.30.1) + '@rollup/pluginutils': 5.1.3(rollup@4.34.2) '@vue/compiler-sfc': 3.5.13 ast-kit: 1.3.1 local-pkg: 0.5.1 @@ -19341,6 +19435,11 @@ snapshots: eslint: 9.17.0(jiti@2.4.0) semver: 7.6.3 + eslint-compat-utils@0.5.1(eslint@9.21.0(jiti@2.4.0)): + dependencies: + eslint: 9.21.0(jiti@2.4.0) + semver: 7.6.3 + eslint-config-next@15.0.3(eslint@8.57.1)(typescript@5.6.3): dependencies: '@next/eslint-plugin-next': 15.0.3 @@ -19361,18 +19460,22 @@ snapshots: - eslint-plugin-import-x - supports-color - eslint-config-prettier@10.0.1(eslint@9.17.0(jiti@2.4.0)): + eslint-config-prettier@10.0.1(eslint@9.21.0(jiti@2.4.0)): dependencies: - eslint: 9.17.0(jiti@2.4.0) + eslint: 9.21.0(jiti@2.4.0) eslint-config-prettier@9.1.0(eslint@9.17.0(jiti@2.4.0)): dependencies: eslint: 9.17.0(jiti@2.4.0) - eslint-config-turbo@2.3.3(eslint@9.17.0(jiti@2.4.0)): + eslint-config-prettier@9.1.0(eslint@9.21.0(jiti@2.4.0)): dependencies: - eslint: 9.17.0(jiti@2.4.0) - eslint-plugin-turbo: 2.3.3(eslint@9.17.0(jiti@2.4.0)) + eslint: 9.21.0(jiti@2.4.0) + + eslint-config-turbo@2.3.3(eslint@9.21.0(jiti@2.4.0)): + dependencies: + eslint: 9.21.0(jiti@2.4.0) + eslint-plugin-turbo: 2.3.3(eslint@9.21.0(jiti@2.4.0)) eslint-import-resolver-node@0.3.9: dependencies: @@ -19513,10 +19616,29 @@ snapshots: transitivePeerDependencies: - ts-node - eslint-plugin-turbo@2.3.3(eslint@9.17.0(jiti@2.4.0)): + eslint-plugin-svelte@2.46.1(eslint@9.21.0(jiti@2.4.0))(svelte@5.16.6): + dependencies: + '@eslint-community/eslint-utils': 4.4.1(eslint@9.21.0(jiti@2.4.0)) + '@jridgewell/sourcemap-codec': 1.5.0 + eslint: 9.21.0(jiti@2.4.0) + eslint-compat-utils: 0.5.1(eslint@9.21.0(jiti@2.4.0)) + esutils: 2.0.3 + known-css-properties: 0.35.0 + postcss: 8.4.49 + postcss-load-config: 3.1.4(postcss@8.4.49) + postcss-safe-parser: 6.0.0(postcss@8.4.49) + postcss-selector-parser: 6.1.2 + semver: 7.6.3 + svelte-eslint-parser: 0.43.0(svelte@5.16.6) + optionalDependencies: + svelte: 5.16.6 + transitivePeerDependencies: + - ts-node + + eslint-plugin-turbo@2.3.3(eslint@9.21.0(jiti@2.4.0)): dependencies: dotenv: 16.0.3 - eslint: 9.17.0(jiti@2.4.0) + eslint: 9.21.0(jiti@2.4.0) eslint-scope@7.2.2: dependencies: @@ -19616,6 +19738,47 @@ snapshots: transitivePeerDependencies: - supports-color + eslint@9.21.0(jiti@2.4.0): + dependencies: + '@eslint-community/eslint-utils': 4.4.1(eslint@9.21.0(jiti@2.4.0)) + '@eslint-community/regexpp': 4.12.1 + '@eslint/config-array': 0.19.2 + '@eslint/core': 0.12.0 + '@eslint/eslintrc': 3.3.0 + '@eslint/js': 9.21.0 + '@eslint/plugin-kit': 0.2.7 + '@humanfs/node': 0.16.6 + '@humanwhocodes/module-importer': 1.0.1 + '@humanwhocodes/retry': 0.4.2 + '@types/estree': 1.0.6 + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.6 + debug: 4.4.0(supports-color@9.4.0) + escape-string-regexp: 4.0.0 + eslint-scope: 8.2.0 + eslint-visitor-keys: 4.2.0 + espree: 10.3.0 + esquery: 1.6.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 8.0.0 + find-up: 5.0.0 + glob-parent: 6.0.2 + ignore: 5.3.2 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + json-stable-stringify-without-jsonify: 1.0.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.4 + optionalDependencies: + jiti: 2.4.0 + transitivePeerDependencies: + - supports-color + esm-env@1.2.1: {} esm-env@1.2.2: {} @@ -19668,7 +19831,7 @@ snapshots: execa@7.2.0: dependencies: - cross-spawn: 7.0.5 + cross-spawn: 7.0.6 get-stream: 6.0.1 human-signals: 4.3.1 is-stream: 3.0.0 @@ -19680,7 +19843,7 @@ snapshots: execa@8.0.1: dependencies: - cross-spawn: 7.0.5 + cross-spawn: 7.0.6 get-stream: 8.0.1 human-signals: 5.0.0 is-stream: 3.0.0 @@ -19830,7 +19993,7 @@ snapshots: foreground-child@3.3.0: dependencies: - cross-spawn: 7.0.5 + cross-spawn: 7.0.6 signal-exit: 4.1.0 forever-agent@0.6.1: {} @@ -20295,9 +20458,9 @@ snapshots: import-meta-resolve@4.1.0: {} - impound@0.2.0(rollup@4.30.1): + impound@0.2.0(rollup@4.34.2): dependencies: - '@rollup/pluginutils': 5.1.3(rollup@4.30.1) + '@rollup/pluginutils': 5.1.3(rollup@4.34.2) mlly: 1.7.3 pathe: 1.1.2 unenv: 1.10.0 @@ -21229,14 +21392,14 @@ snapshots: dependencies: '@cloudflare/kv-asset-handler': 0.3.4 '@netlify/functions': 2.8.2 - '@rollup/plugin-alias': 5.1.1(rollup@4.30.1) - '@rollup/plugin-commonjs': 28.0.1(rollup@4.30.1) - '@rollup/plugin-inject': 5.0.5(rollup@4.30.1) - '@rollup/plugin-json': 6.1.0(rollup@4.30.1) - '@rollup/plugin-node-resolve': 15.3.0(rollup@4.30.1) - '@rollup/plugin-replace': 6.0.1(rollup@4.30.1) - '@rollup/plugin-terser': 0.4.4(rollup@4.30.1) - '@rollup/pluginutils': 5.1.3(rollup@4.30.1) + '@rollup/plugin-alias': 5.1.1(rollup@4.34.2) + '@rollup/plugin-commonjs': 28.0.1(rollup@4.34.2) + '@rollup/plugin-inject': 5.0.5(rollup@4.34.2) + '@rollup/plugin-json': 6.1.0(rollup@4.34.2) + '@rollup/plugin-node-resolve': 15.3.0(rollup@4.34.2) + '@rollup/plugin-replace': 6.0.1(rollup@4.34.2) + '@rollup/plugin-terser': 0.4.4(rollup@4.34.2) + '@rollup/pluginutils': 5.1.3(rollup@4.34.2) '@types/http-proxy': 1.17.15 '@vercel/nft': 0.27.6 archiver: 7.0.1 @@ -21280,8 +21443,8 @@ snapshots: pkg-types: 1.2.1 pretty-bytes: 6.1.1 radix3: 1.1.2 - rollup: 4.30.1 - rollup-plugin-visualizer: 5.12.0(rollup@4.30.1) + rollup: 4.34.2 + rollup-plugin-visualizer: 5.12.0(rollup@4.34.2) scule: 1.3.0 semver: 7.6.3 serve-placeholder: 2.0.2 @@ -21291,7 +21454,7 @@ snapshots: uncrypto: 0.1.3 unctx: 2.3.1 unenv: 1.10.0 - unimport: 3.13.2(rollup@4.30.1) + unimport: 3.13.2(rollup@4.34.2) unstorage: 1.13.1(ioredis@5.4.1) untyped: 1.5.1 unwasm: 0.3.9 @@ -21386,14 +21549,14 @@ snapshots: nuxi@3.15.0: {} - nuxt@3.14.159(@parcel/watcher@2.5.0)(@types/node@22.13.1)(eslint@9.17.0(jiti@2.4.0))(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.30.1)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.11(@types/node@22.13.1)(terser@5.36.0))(vue-tsc@2.1.10(typescript@5.6.3)): + nuxt@3.14.159(@parcel/watcher@2.5.0)(@types/node@22.13.1)(eslint@9.21.0(jiti@2.4.0))(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.34.2)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.11(@types/node@22.13.1)(terser@5.36.0))(vue-tsc@2.1.10(typescript@5.6.3)): dependencies: '@nuxt/devalue': 2.0.2 - '@nuxt/devtools': 1.6.0(rollup@4.30.1)(vite@5.4.11(@types/node@22.13.1)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3)) - '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.30.1) - '@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.30.1) - '@nuxt/telemetry': 2.6.0(magicast@0.3.5)(rollup@4.30.1) - '@nuxt/vite-builder': 3.14.159(@types/node@22.13.1)(eslint@9.17.0(jiti@2.4.0))(magicast@0.3.5)(optionator@0.9.4)(rollup@4.30.1)(terser@5.36.0)(typescript@5.6.3)(vue-tsc@2.1.10(typescript@5.6.3))(vue@3.5.13(typescript@5.6.3)) + '@nuxt/devtools': 1.6.0(rollup@4.34.2)(vite@5.4.11(@types/node@22.13.1)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3)) + '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.34.2) + '@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.34.2) + '@nuxt/telemetry': 2.6.0(magicast@0.3.5)(rollup@4.34.2) + '@nuxt/vite-builder': 3.14.159(@types/node@22.13.1)(eslint@9.21.0(jiti@2.4.0))(magicast@0.3.5)(optionator@0.9.4)(rollup@4.34.2)(terser@5.36.0)(typescript@5.6.3)(vue-tsc@2.1.10(typescript@5.6.3))(vue@3.5.13(typescript@5.6.3)) '@unhead/dom': 1.11.11 '@unhead/shared': 1.11.11 '@unhead/ssr': 1.11.11 @@ -21416,7 +21579,7 @@ snapshots: h3: 1.13.0 hookable: 5.5.3 ignore: 6.0.2 - impound: 0.2.0(rollup@4.30.1) + impound: 0.2.0(rollup@4.34.2) jiti: 2.4.0 klona: 2.0.6 knitwork: 1.1.0 @@ -21443,9 +21606,9 @@ snapshots: unctx: 2.3.1 unenv: 1.10.0 unhead: 1.11.11 - unimport: 3.13.2(rollup@4.30.1) + unimport: 3.13.2(rollup@4.34.2) unplugin: 1.16.0 - unplugin-vue-router: 0.10.8(rollup@4.30.1)(vue-router@4.4.5(vue@3.5.13(typescript@5.6.3)))(vue@3.5.13(typescript@5.6.3)) + unplugin-vue-router: 0.10.8(rollup@4.34.2)(vue-router@4.4.5(vue@3.5.13(typescript@5.6.3)))(vue@3.5.13(typescript@5.6.3)) unstorage: 1.13.1(ioredis@5.4.1) untyped: 1.5.1 vue: 3.5.13(typescript@5.6.3) @@ -22522,14 +22685,14 @@ snapshots: robust-predicates@3.0.2: {} - rollup-plugin-visualizer@5.12.0(rollup@4.30.1): + rollup-plugin-visualizer@5.12.0(rollup@4.34.2): dependencies: open: 8.4.2 picomatch: 2.3.1 source-map: 0.7.4 yargs: 17.7.2 optionalDependencies: - rollup: 4.30.1 + rollup: 4.34.2 rollup@4.24.3: dependencies: @@ -22893,7 +23056,7 @@ snapshots: spawndamnit@3.0.1: dependencies: - cross-spawn: 7.0.5 + cross-spawn: 7.0.6 signal-exit: 4.1.0 speakingurl@14.0.1: {} @@ -23418,7 +23581,7 @@ snapshots: mkdirp: 3.0.1 yallist: 5.0.0 - tauri-api-adapter@0.3.20(typescript@5.7.2): + tauri-api-adapter@0.3.23(typescript@5.7.2): dependencies: '@tauri-apps/api': 2.2.0 '@tauri-apps/plugin-dialog': 2.2.0 @@ -23434,7 +23597,7 @@ snapshots: shx: 0.3.4 tauri-plugin-clipboard-api: 2.1.11(typescript@5.7.2) tauri-plugin-network-api: 2.0.5(typescript@5.7.2) - tauri-plugin-shellx-api: 2.0.14 + tauri-plugin-shellx-api: 2.0.15 tauri-plugin-system-info-api: 2.0.8(typescript@5.7.2) tsc-alias: 1.8.10 typescript: 5.7.2 @@ -23446,8 +23609,8 @@ snapshots: tauri-api-adapter@0.3.8(tslib@2.8.1)(typescript@5.7.3): dependencies: '@huakunshen/comlink': 4.4.1 - '@rollup/plugin-alias': 5.1.1(rollup@4.30.1) - '@rollup/plugin-typescript': 11.1.6(rollup@4.30.1)(tslib@2.8.1)(typescript@5.7.3) + '@rollup/plugin-alias': 5.1.1(rollup@4.34.2) + '@rollup/plugin-typescript': 11.1.6(rollup@4.34.2)(tslib@2.8.1)(typescript@5.7.3) '@tauri-apps/api': 2.2.0 '@tauri-apps/plugin-dialog': 2.0.1 '@tauri-apps/plugin-fs': 2.0.2 @@ -23458,11 +23621,11 @@ snapshots: '@tauri-apps/plugin-shell': 2.0.1 '@tauri-apps/plugin-upload': 2.0.0 rimraf: 5.0.10 - rollup: 4.30.1 + rollup: 4.34.2 shx: 0.3.4 tauri-plugin-clipboard-api: 2.1.11(typescript@5.7.3) tauri-plugin-network-api: 2.0.5(typescript@5.7.3) - tauri-plugin-shellx-api: 2.0.14 + tauri-plugin-shellx-api: 2.0.15 tauri-plugin-system-info-api: 2.0.8(typescript@5.7.3) tsc-alias: 1.8.10 typescript: 5.7.3 @@ -23505,14 +23668,10 @@ snapshots: transitivePeerDependencies: - typescript - tauri-plugin-shellx-api@2.0.11: + tauri-plugin-shellx-api@2.0.15: dependencies: '@tauri-apps/api': 2.2.0 - tauri-plugin-shellx-api@2.0.14: - dependencies: - '@tauri-apps/api': 2.1.1 - tauri-plugin-system-info-api@2.0.8(typescript@5.7.2): dependencies: '@tauri-apps/api': 2.2.0 @@ -23810,22 +23969,22 @@ snapshots: transitivePeerDependencies: - supports-color - typescript-eslint@8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3): + typescript-eslint@8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3): dependencies: - '@typescript-eslint/eslint-plugin': 8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3))(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3) - '@typescript-eslint/parser': 8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3) - '@typescript-eslint/utils': 8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.6.3) - eslint: 9.17.0(jiti@2.4.0) + '@typescript-eslint/eslint-plugin': 8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3))(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3) + '@typescript-eslint/parser': 8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3) + '@typescript-eslint/utils': 8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3) + eslint: 9.21.0(jiti@2.4.0) typescript: 5.6.3 transitivePeerDependencies: - supports-color - typescript-eslint@8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3): + typescript-eslint@8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.7.3): dependencies: - '@typescript-eslint/eslint-plugin': 8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3))(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3) - '@typescript-eslint/parser': 8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3) - '@typescript-eslint/utils': 8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3) - eslint: 9.17.0(jiti@2.4.0) + '@typescript-eslint/eslint-plugin': 8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.7.3))(eslint@9.21.0(jiti@2.4.0))(typescript@5.7.3) + '@typescript-eslint/parser': 8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.7.3) + '@typescript-eslint/utils': 8.20.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.7.3) + eslint: 9.21.0(jiti@2.4.0) typescript: 5.7.3 transitivePeerDependencies: - supports-color @@ -23888,9 +24047,9 @@ snapshots: unicorn-magic@0.1.0: {} - unimport@3.13.2(rollup@4.30.1): + unimport@3.13.2(rollup@4.34.2): dependencies: - '@rollup/pluginutils': 5.1.3(rollup@4.30.1) + '@rollup/pluginutils': 5.1.3(rollup@4.34.2) acorn: 8.14.0 escape-string-regexp: 5.0.0 estree-walker: 3.0.3 @@ -23942,11 +24101,11 @@ snapshots: universalify@2.0.1: {} - unplugin-vue-router@0.10.8(rollup@4.30.1)(vue-router@4.4.5(vue@3.5.13(typescript@5.6.3)))(vue@3.5.13(typescript@5.6.3)): + unplugin-vue-router@0.10.8(rollup@4.34.2)(vue-router@4.4.5(vue@3.5.13(typescript@5.6.3)))(vue@3.5.13(typescript@5.6.3)): dependencies: '@babel/types': 7.26.0 - '@rollup/pluginutils': 5.1.3(rollup@4.30.1) - '@vue-macros/common': 1.15.0(rollup@4.30.1)(vue@3.5.13(typescript@5.6.3)) + '@rollup/pluginutils': 5.1.3(rollup@4.34.2) + '@vue-macros/common': 1.15.0(rollup@4.34.2)(vue@3.5.13(typescript@5.6.3)) ast-walker-scope: 0.6.2 chokidar: 3.6.0 fast-glob: 3.3.2 @@ -24228,7 +24387,7 @@ snapshots: - supports-color - terser - vite-plugin-checker@0.8.0(eslint@9.17.0(jiti@2.4.0))(optionator@0.9.4)(typescript@5.6.3)(vite@5.4.14(@types/node@22.13.1)(terser@5.36.0))(vue-tsc@2.1.10(typescript@5.6.3)): + vite-plugin-checker@0.8.0(eslint@9.21.0(jiti@2.4.0))(optionator@0.9.4)(typescript@5.6.3)(vite@5.4.14(@types/node@22.13.1)(terser@5.36.0))(vue-tsc@2.1.10(typescript@5.6.3)): dependencies: '@babel/code-frame': 7.26.2 ansi-escapes: 4.3.2 @@ -24246,15 +24405,15 @@ snapshots: vscode-languageserver-textdocument: 1.0.12 vscode-uri: 3.0.8 optionalDependencies: - eslint: 9.17.0(jiti@2.4.0) + eslint: 9.21.0(jiti@2.4.0) optionator: 0.9.4 typescript: 5.6.3 vue-tsc: 2.1.10(typescript@5.6.3) - vite-plugin-inspect@0.8.7(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.30.1))(rollup@4.30.1)(vite@5.4.11(@types/node@22.13.1)(terser@5.36.0)): + vite-plugin-inspect@0.8.7(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.34.2))(rollup@4.34.2)(vite@5.4.11(@types/node@22.13.1)(terser@5.36.0)): dependencies: '@antfu/utils': 0.7.10 - '@rollup/pluginutils': 5.1.3(rollup@4.30.1) + '@rollup/pluginutils': 5.1.3(rollup@4.34.2) debug: 4.4.0(supports-color@9.4.0) error-stack-parser-es: 0.1.5 fs-extra: 11.2.0 @@ -24264,7 +24423,7 @@ snapshots: sirv: 2.0.4 vite: 5.4.11(@types/node@22.13.1)(terser@5.36.0) optionalDependencies: - '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.30.1) + '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.34.2) transitivePeerDependencies: - rollup - supports-color diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index ac61b45..e00b09b 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -5,6 +5,7 @@ packages: - "packages/templates/*" - "packages/tauri-plugins/*" - "vendors/tauri-plugin-network" + - "vendors/tauri-plugin-shellx" - "vendors/tauri-plugin-keyring" - "vendors/tauri-plugin-system-info" - "vendors/tauri-plugin-user-input"