commit 54d6e3519cebb03afa5a0a4d18117d60b0e5571d Author: Huakun Shen Date: Sat Jan 18 04:03:05 2025 -0500 init diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml new file mode 100644 index 0000000..ad75a42 --- /dev/null +++ b/.github/workflows/npm-publish.yml @@ -0,0 +1,48 @@ +# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created +# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages + +name: NPM Package Publish + +on: + push: + branches: [main] + release: + types: [created] + workflow_dispatch: + +jobs: + publish-npm: + runs-on: ubuntu-latest + permissions: + contents: read + id-token: write + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 22 + registry-url: https://registry.npmjs.org/ + + - uses: pnpm/action-setup@v2 + with: + version: latest + - uses: oven-sh/setup-bun@v2 + - run: pnpm install + - run: pnpm build + - run: | + PACKAGE_NAME=$(jq -r '.name' package.json) + PACKAGE_VERSION=$(jq -r '.version' package.json) + + # Get the version from npm registry + REGISTRY_VERSION=$(npm show "$PACKAGE_NAME" version) + + # Compare versions + if [ "$PACKAGE_VERSION" == "$REGISTRY_VERSION" ]; then + echo "Version $PACKAGE_VERSION already exists in the npm registry." + exit 0 + else + echo "Version $PACKAGE_VERSION does not exist in the npm registry. Proceeding..." + npm publish --provenance --access public + fi + env: + NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5c4561f --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +node_modules + +# Output +.output +.vercel +/.svelte-kit +/build + +# OS +.DS_Store +Thumbs.db + +# Env +.env +.env.* +!.env.example +!.env.test + +# Vite +vite.config.js.timestamp-* +vite.config.ts.timestamp-* +extensions_support/ + +.pnpm-store \ No newline at end of file diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..3f0f34a --- /dev/null +++ b/.npmrc @@ -0,0 +1,2 @@ +engine-strict=true +@jsr:registry=https://npm.jsr.io diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..ab78a95 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,4 @@ +# Package Managers +package-lock.json +pnpm-lock.yaml +yarn.lock diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..7ebb855 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,15 @@ +{ + "useTabs": true, + "singleQuote": true, + "trailingComma": "none", + "printWidth": 100, + "plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"], + "overrides": [ + { + "files": "*.svelte", + "options": { + "parser": "svelte" + } + } + ] +} diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..4f20216 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +# template-ext-sveltekit + +## 0.0.3 + +### Patch Changes + +- Updated dependencies + - @kksh/api@0.0.4 + +## 0.0.2 + +### Patch Changes + +- Updated dependencies [fba6a49] + - @kksh/svelte@0.0.2 diff --git a/README.md b/README.md new file mode 100644 index 0000000..02ae192 --- /dev/null +++ b/README.md @@ -0,0 +1,40 @@ +# Kunkun Custom UI Extension Template (SvelteKit) + +```ts +export type ProcessVideoOptions = { + resizePercentage?: number; + size?: string; + aspectRatio?: string; + videoCodec?: string; + audioCodec?: string; + format?: string; + outputOptions?: string[]; + audioFilters?: string[]; + noAudio?: boolean; + takeFrames?: number; + noVideo?: boolean; + autopad?: { + pad?: boolean; + color?: string; + }; + audioQuality?: number; + fps?: number; + preset?: + | 'ultrafast' + | 'superfast' + | 'veryfast' + | 'faster' + | 'fast' + | 'medium' + | 'slow' + | 'slower' + | 'veryslow'; + startTime?: string | number; + duration?: string | number; + audioBitrate?: number; + videoBitrate?: number; + audioChannels?: number; + ffprobePath?: string; + ffmpegPath?: string; +}; +``` diff --git a/components.json b/components.json new file mode 100644 index 0000000..260ea62 --- /dev/null +++ b/components.json @@ -0,0 +1,17 @@ +{ + "$schema": "https://next.shadcn-svelte.com/schema.json", + "style": "new-york", + "tailwind": { + "config": "tailwind.config.ts", + "css": "src/app.css", + "baseColor": "neutral" + }, + "aliases": { + "components": "$lib/components", + "utils": "$lib/utils", + "ui": "$lib/components/ui", + "hooks": "$lib/hooks" + }, + "typescript": true, + "registry": "https://next.shadcn-svelte.com/registry" +} diff --git a/deno-src/deno.json b/deno-src/deno.json new file mode 100644 index 0000000..ab99706 --- /dev/null +++ b/deno-src/deno.json @@ -0,0 +1,14 @@ +{ + "tasks": { + "dev": "deno run --watch main.ts" + }, + "imports": { + "@hk/photographer-toolbox": "jsr:@hk/photographer-toolbox@^0.1.8", + "@kunkun/api": "jsr:@kunkun/api@^0.0.40", + "@std/assert": "jsr:@std/assert@1", + "@std/path": "jsr:@std/path@^1.0.7", + "valibot": "jsr:@valibot/valibot@^0.42.1", + "sharp": "npm:sharp@0.33.5", + "fluent-ffmpeg": "npm:fluent-ffmpeg@2.1.3" + } +} diff --git a/deno-src/deno.lock b/deno-src/deno.lock new file mode 100644 index 0000000..a71a4b3 --- /dev/null +++ b/deno-src/deno.lock @@ -0,0 +1,313 @@ +{ + "version": "4", + "specifiers": { + "jsr:@hk/photographer-toolbox@~0.1.8": "0.1.8", + "jsr:@kunkun/api@^0.0.40": "0.0.40", + "jsr:@std/assert@1": "1.0.6", + "jsr:@std/internal@^1.0.4": "1.0.4", + "jsr:@std/path@^1.0.7": "1.0.7", + "jsr:@valibot/valibot@~0.42.1": "0.42.1", + "npm:@types/fluent-ffmpeg@2.1.27": "2.1.27", + "npm:@types/node@*": "22.5.4", + "npm:@types/sharp@*": "0.32.0", + "npm:exiftool-vendored@28.5.0": "28.5.0", + "npm:fluent-ffmpeg@2.1.3": "2.1.3", + "npm:kkrpc@^0.0.12": "0.0.12_typescript@5.6.3", + "npm:semver@^7.6.3": "7.6.3", + "npm:sharp@*": "0.33.5", + "npm:sharp@0.33.5": "0.33.5" + }, + "jsr": { + "@hk/comlink-stdio@0.1.6": { + "integrity": "77e0ec03157e61baba895142107b871bb1fc2f9ffbd4244413e12dab62478bab" + }, + "@hk/photographer-toolbox@0.1.8": { + "integrity": "6cf1162f1eef019164ec158d9114fe705c22cc11a4866113a3237b77d515050b", + "dependencies": [ + "jsr:@valibot/valibot", + "npm:@types/fluent-ffmpeg", + "npm:exiftool-vendored", + "npm:fluent-ffmpeg", + "npm:sharp@0.33.5" + ] + }, + "@kunkun/api@0.0.40": { + "integrity": "eab67c01e1cc87f3e5e7f7613a302cba7fccb18a1745f1a5508cf48df1e3649e", + "dependencies": [ + "npm:kkrpc" + ] + }, + "@std/assert@1.0.6": { + "integrity": "1904c05806a25d94fe791d6d883b685c9e2dcd60e4f9fc30f4fc5cf010c72207", + "dependencies": [ + "jsr:@std/internal" + ] + }, + "@std/internal@1.0.4": { + "integrity": "62e8e4911527e5e4f307741a795c0b0a9e6958d0b3790716ae71ce085f755422" + }, + "@std/path@1.0.7": { + "integrity": "76a689e07f0e15dcc6002ec39d0866797e7156629212b28f27179b8a5c3b33a1" + }, + "@valibot/valibot@0.42.1": { + "integrity": "ba0f6f7964aaeec0e4b1f793d575061f325ae6254cbb9d7ff01fb65068a0a23b" + } + }, + "npm": { + "@emnapi/runtime@1.3.1": { + "integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==", + "dependencies": [ + "tslib" + ] + }, + "@img/sharp-darwin-arm64@0.33.5": { + "integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==", + "dependencies": [ + "@img/sharp-libvips-darwin-arm64" + ] + }, + "@img/sharp-darwin-x64@0.33.5": { + "integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==", + "dependencies": [ + "@img/sharp-libvips-darwin-x64" + ] + }, + "@img/sharp-libvips-darwin-arm64@1.0.4": { + "integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==" + }, + "@img/sharp-libvips-darwin-x64@1.0.4": { + "integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==" + }, + "@img/sharp-libvips-linux-arm64@1.0.4": { + "integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==" + }, + "@img/sharp-libvips-linux-arm@1.0.5": { + "integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==" + }, + "@img/sharp-libvips-linux-s390x@1.0.4": { + "integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==" + }, + "@img/sharp-libvips-linux-x64@1.0.4": { + "integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==" + }, + "@img/sharp-libvips-linuxmusl-arm64@1.0.4": { + "integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==" + }, + "@img/sharp-libvips-linuxmusl-x64@1.0.4": { + "integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==" + }, + "@img/sharp-linux-arm64@0.33.5": { + "integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==", + "dependencies": [ + "@img/sharp-libvips-linux-arm64" + ] + }, + "@img/sharp-linux-arm@0.33.5": { + "integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==", + "dependencies": [ + "@img/sharp-libvips-linux-arm" + ] + }, + "@img/sharp-linux-s390x@0.33.5": { + "integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==", + "dependencies": [ + "@img/sharp-libvips-linux-s390x" + ] + }, + "@img/sharp-linux-x64@0.33.5": { + "integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==", + "dependencies": [ + "@img/sharp-libvips-linux-x64" + ] + }, + "@img/sharp-linuxmusl-arm64@0.33.5": { + "integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==", + "dependencies": [ + "@img/sharp-libvips-linuxmusl-arm64" + ] + }, + "@img/sharp-linuxmusl-x64@0.33.5": { + "integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==", + "dependencies": [ + "@img/sharp-libvips-linuxmusl-x64" + ] + }, + "@img/sharp-wasm32@0.33.5": { + "integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==", + "dependencies": [ + "@emnapi/runtime" + ] + }, + "@img/sharp-win32-ia32@0.33.5": { + "integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==" + }, + "@img/sharp-win32-x64@0.33.5": { + "integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==" + }, + "@photostructure/tz-lookup@11.0.0": { + "integrity": "sha512-QMV5/dWtY/MdVPXZs/EApqzyhnqDq1keYEqpS+Xj2uidyaqw2Nk/fWcsszdruIXjdqp1VoWNzsgrO6bUHU1mFw==" + }, + "@types/fluent-ffmpeg@2.1.27": { + "integrity": "sha512-QiDWjihpUhriISNoBi2hJBRUUmoj/BMTYcfz+F+ZM9hHWBYABFAE6hjP/TbCZC0GWwlpa3FzvHH9RzFeRusZ7A==", + "dependencies": [ + "@types/node" + ] + }, + "@types/luxon@3.4.2": { + "integrity": "sha512-TifLZlFudklWlMBfhubvgqTXRzLDI5pCbGa4P8a3wPyUQSW+1xQ5eDsreP9DWHX3tjq1ke96uYG/nwundroWcA==" + }, + "@types/node@22.5.4": { + "integrity": "sha512-FDuKUJQm/ju9fT/SeX/6+gBzoPzlVCzfzmGkwKvRHQVxi4BntVbyIwf6a4Xn62mrvndLiml6z/UBXIdEVjQLXg==", + "dependencies": [ + "undici-types" + ] + }, + "@types/sharp@0.32.0": { + "integrity": "sha512-OOi3kL+FZDnPhVzsfD37J88FNeZh6gQsGcLc95NbeURRGvmSjeXiDcyWzF2o3yh/gQAUn2uhh/e+CPCa5nwAxw==", + "dependencies": [ + "sharp" + ] + }, + "async@0.2.10": { + "integrity": "sha512-eAkdoKxU6/LkKDBzLpT+t6Ff5EtfSF4wx1WfJiPEEV7WNLnDaRXk0oVysiEPm262roaachGexwUv94WhSgN5TQ==" + }, + "batch-cluster@13.0.0": { + "integrity": "sha512-EreW0Vi8TwovhYUHBXXRA5tthuU2ynGsZFlboyMJHCCUXYa2AjgwnE3ubBOJs2xJLcuXFJbi6c/8pH5+FVj8Og==" + }, + "color-convert@2.0.1": { + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": [ + "color-name" + ] + }, + "color-name@1.1.4": { + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "color-string@1.9.1": { + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "dependencies": [ + "color-name", + "simple-swizzle" + ] + }, + "color@4.2.3": { + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "dependencies": [ + "color-convert", + "color-string" + ] + }, + "detect-libc@2.0.3": { + "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==" + }, + "exiftool-vendored.exe@12.96.0": { + "integrity": "sha512-pKPN9F/Evw2yyO5/+ml3spbXIqejzOxyF7jEnj8tLU2JPSmIlziPUZ75XIhcPbilX86jVKmuiso7FUDicOg8pQ==" + }, + "exiftool-vendored.pl@12.96.0": { + "integrity": "sha512-v4nGnovAMBsTfOWhwAcOiRiq/8kuJOo3GUMHNpug7Mr4jLz3tmWEo7DdNyOYmpcvWbA6smOTG0SmwsrY8fsW+A==" + }, + "exiftool-vendored@28.5.0": { + "integrity": "sha512-/XbVpZGP5P/tifRbO2BIBuDxLkHrUoxhJGOKAeASHnIBNNgBzp3UWtp0wLPhEd24ETe/ohuEUPmpUaKcNSDYsg==", + "dependencies": [ + "@photostructure/tz-lookup", + "@types/luxon", + "batch-cluster", + "exiftool-vendored.exe", + "exiftool-vendored.pl", + "he", + "luxon" + ] + }, + "fluent-ffmpeg@2.1.3": { + "integrity": "sha512-Be3narBNt2s6bsaqP6Jzq91heDgOEaDCJAXcE3qcma/EJBSy5FB4cvO31XBInuAuKBx8Kptf8dkhjK0IOru39Q==", + "dependencies": [ + "async", + "which" + ] + }, + "he@1.2.0": { + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + }, + "is-arrayish@0.3.2": { + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + }, + "isexe@2.0.0": { + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "kkrpc@0.0.12_typescript@5.6.3": { + "integrity": "sha512-PBk4AhGfkesIdAwmIoj7dHHIp7qN97XT4yr5Rl7h2WL79gxWQVgZRJYLt7Gb17GoLDh991rnL85mhCoPG5VC/Q==", + "dependencies": [ + "typescript", + "ws" + ] + }, + "luxon@3.5.0": { + "integrity": "sha512-rh+Zjr6DNfUYR3bPwJEnuwDdqMbxZW7LOQfUN4B54+Cl+0o5zaU9RJ6bcidfDtC1cWCZXQ+nvX8bf6bAji37QQ==" + }, + "semver@7.6.3": { + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==" + }, + "sharp@0.33.5": { + "integrity": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==", + "dependencies": [ + "@img/sharp-darwin-arm64", + "@img/sharp-darwin-x64", + "@img/sharp-libvips-darwin-arm64", + "@img/sharp-libvips-darwin-x64", + "@img/sharp-libvips-linux-arm", + "@img/sharp-libvips-linux-arm64", + "@img/sharp-libvips-linux-s390x", + "@img/sharp-libvips-linux-x64", + "@img/sharp-libvips-linuxmusl-arm64", + "@img/sharp-libvips-linuxmusl-x64", + "@img/sharp-linux-arm", + "@img/sharp-linux-arm64", + "@img/sharp-linux-s390x", + "@img/sharp-linux-x64", + "@img/sharp-linuxmusl-arm64", + "@img/sharp-linuxmusl-x64", + "@img/sharp-wasm32", + "@img/sharp-win32-ia32", + "@img/sharp-win32-x64", + "color", + "detect-libc", + "semver" + ] + }, + "simple-swizzle@0.2.2": { + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "dependencies": [ + "is-arrayish" + ] + }, + "tslib@2.8.0": { + "integrity": "sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA==" + }, + "typescript@5.6.3": { + "integrity": "sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==" + }, + "undici-types@6.19.8": { + "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==" + }, + "which@1.3.1": { + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": [ + "isexe" + ] + }, + "ws@8.18.0": { + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==" + } + }, + "workspace": { + "dependencies": [ + "jsr:@hk/photographer-toolbox@~0.1.8", + "jsr:@kunkun/api@^0.0.40", + "jsr:@std/assert@1", + "jsr:@std/path@^1.0.7", + "jsr:@valibot/valibot@~0.42.1", + "npm:fluent-ffmpeg@2.1.3", + "npm:sharp@0.33.5" + ] + } +} diff --git a/deno-src/dev.ts b/deno-src/dev.ts new file mode 100644 index 0000000..3f92368 --- /dev/null +++ b/deno-src/dev.ts @@ -0,0 +1,39 @@ +import { video } from '@hk/photographer-toolbox'; + +// @ts-types="npm:@types/fluent-ffmpeg@2.1.27" +import ffmpeg from 'fluent-ffmpeg'; + +// video +// .readMainVideoMetadata('/Users/hacker/Dev/workspace/DJI_20240319171825_0014_D.MP4') +// .then(console.log); + +// video +// .readVideoMetadata('/Users/hacker/Dev/workspace/DJI_20240319171825_0014_D.MP4') +// .then((data) => { +// console.log(data); + +// // Deno.writeFileSync( +// // './video-metadata.json', +// // new TextEncoder().encode(JSON.stringify(data, null, 2)) +// // ); +// }); +// video.convertVideo( +// '/Users/hacker/Library/Mobile Documents/iCloud~me~damir~dropover-mac/Documents/Uploads/2022-07-01_08.08.02/crosscopy-cli-demo-sync.mp4', +// '/Users/hacker/Desktop/crosscopy-cli-demo-sync.mp4', +// { +// aspectRatio: '1:1', +// videoCodec: 'h264_videotoolbox', +// videoBitrate: 1000 +// }, +// () => {}, +// (progress) => { +// console.log(progress.percent); +// } +// ); + +ffmpeg('/Users/hacker/Desktop/crosscopy-cli-demo-sync.mp4') + .withAspectRatio('1:1') + .save('/Users/hacker/Desktop/output.mp4') + .on('progress', function (progress) { + console.log('Processing: ' + progress.percent + '% done'); + }); diff --git a/deno-src/index.ts b/deno-src/index.ts new file mode 100644 index 0000000..552efd8 --- /dev/null +++ b/deno-src/index.ts @@ -0,0 +1,34 @@ +// @ts-types="npm:@types/fluent-ffmpeg@2.1.27" +import ffmpeg from 'fluent-ffmpeg'; +import type { API } from '../src/types.ts'; +import type { ProcessVideoOptions, Progress } from '@hk/photographer-toolbox/types'; +import { convertVideo } from 'https://jsr.io/@hk/photographer-toolbox/0.1.8/src/video/convert.ts'; +// ffmpeg.setFfprobePath('/opt/homebrew/bin/ffprobe'); + +import { video } from '@hk/photographer-toolbox'; +import { expose } from '@kunkun/api/runtime/deno'; + +expose({ + convertVideo: ( + inputPath: string, + outputPath: string, + options: ProcessVideoOptions, + startCallback?: () => void, + progressCallback?: (progress: Progress) => void, + endCallback?: () => void + ) => { + return Promise.resolve( + video.convertVideo( + inputPath, + outputPath, + options, + startCallback, + progressCallback, + endCallback + ) + ); + }, +}); + + + diff --git a/deno-src/lib.ts b/deno-src/lib.ts new file mode 100644 index 0000000..e69de29 diff --git a/dist/video-info.js b/dist/video-info.js new file mode 100644 index 0000000..db96c7e --- /dev/null +++ b/dist/video-info.js @@ -0,0 +1,3043 @@ +var __defProp = Object.defineProperty; +var __export = (target, all) => { + for (var name in all) + __defProp(target, name, { + get: all[name], + enumerable: true, + configurable: true, + set: (newValue) => all[name] = () => newValue + }); +}; + +// node_modules/.pnpm/kkrpc@0.0.13_typescript@5.6.3/node_modules/kkrpc/dist/chunk-XU7DWWSJ.js +var DESTROY_SIGNAL = "__DESTROY__"; +var WorkerChildIO = class { + name = "worker-child-io"; + messageQueue = []; + resolveRead = null; + constructor() { + self.onmessage = this.handleMessage; + } + handleMessage = (event) => { + const message = event.data; + if (message === DESTROY_SIGNAL) { + this.destroy(); + return; + } + if (this.resolveRead) { + this.resolveRead(message); + this.resolveRead = null; + } else { + this.messageQueue.push(message); + } + }; + async read() { + if (this.messageQueue.length > 0) { + return this.messageQueue.shift() ?? null; + } + return new Promise((resolve) => { + this.resolveRead = resolve; + }); + } + async write(data) { + self.postMessage(data); + } + destroy() { + self.postMessage(DESTROY_SIGNAL); + self.close(); + } + signalDestroy() { + self.postMessage(DESTROY_SIGNAL); + } +}; + +// node_modules/.pnpm/kkrpc@0.0.13_typescript@5.6.3/node_modules/kkrpc/dist/chunk-KUE6DDOO.js +function serializeMessage(message) { + return JSON.stringify(message) + ` +`; +} +function deserializeMessage(message) { + return new Promise((resolve, reject) => { + try { + const parsed = JSON.parse(message); + resolve(parsed); + } catch (error) { + console.error("failed to parse message", typeof message, message, error); + reject(error); + } + }); +} +function generateUUID() { + return new Array(4).fill(0).map(() => Math.floor(Math.random() * Number.MAX_SAFE_INTEGER).toString(16)).join("-"); +} +var RPCChannel = class { + constructor(io, options) { + this.io = io; + this.apiImplementation = options?.expose; + this.listen(); + } + pendingRequests = {}; + callbacks = {}; + callbackCache = /* @__PURE__ */ new Map; + count = 0; + messageStr = ""; + apiImplementation; + expose(api) { + this.apiImplementation = api; + } + getIO() { + return this.io; + } + async listen() { + while (true) { + const buffer = await this.io.read(); + if (!buffer) { + continue; + } + const bufferStr = buffer.toString("utf-8"); + if (bufferStr.trim().length === 0) { + continue; + } + this.messageStr += bufferStr; + const lastChar = this.messageStr[this.messageStr.length - 1]; + const msgsSplit = this.messageStr.split(` +`); + const msgs = lastChar === ` +` ? msgsSplit : msgsSplit.slice(0, -1); + this.messageStr = lastChar === ` +` ? "" : msgsSplit.at(-1) ?? ""; + for (const msgStr of msgs.map((msg) => msg.trim()).filter(Boolean)) { + this.handleMessageStr(msgStr); + } + } + } + async handleMessageStr(messageStr) { + this.count++; + const parsedMessage = await deserializeMessage(messageStr); + if (parsedMessage.type === "response") { + this.handleResponse(parsedMessage); + } else if (parsedMessage.type === "request") { + this.handleRequest(parsedMessage); + } else if (parsedMessage.type === "callback") { + this.handleCallback(parsedMessage); + } else { + console.error("received unknown message type", parsedMessage, typeof parsedMessage); + } + } + callMethod(method, args) { + return new Promise((resolve, reject) => { + const messageId = generateUUID(); + this.pendingRequests[messageId] = { resolve, reject }; + const callbackIds = []; + const processedArgs = args.map((arg) => { + if (typeof arg === "function") { + let callbackId = this.callbackCache.get(arg); + if (!callbackId) { + callbackId = generateUUID(); + this.callbacks[callbackId] = arg; + this.callbackCache.set(arg, callbackId); + } else { + } + callbackIds.push(callbackId); + return `__callback__${callbackId}`; + } + return arg; + }); + const message = { + id: messageId, + method, + args: processedArgs, + type: "request", + callbackIds: callbackIds.length > 0 ? callbackIds : undefined + }; + this.io.write(serializeMessage(message)); + }); + } + handleResponse(response) { + const { id } = response; + const { result, error } = response.args; + if (this.pendingRequests[id]) { + if (error) { + this.pendingRequests[id].reject(new Error(error)); + } else { + this.pendingRequests[id].resolve(result); + } + delete this.pendingRequests[id]; + } + } + handleRequest(request) { + const { id, method, args } = request; + const methodPath = method.split("."); + if (!this.apiImplementation) + return; + let target = this.apiImplementation; + for (let i = 0;i < methodPath.length - 1; i++) { + target = target[methodPath[i]]; + if (!target) { + this.sendError(id, `Method path ${method} not found at ${methodPath[i]}`); + return; + } + } + const finalMethod = methodPath[methodPath.length - 1]; + const targetMethod = target[finalMethod]; + if (typeof targetMethod !== "function") { + this.sendError(id, `Method ${method} is not a function`); + return; + } + const processedArgs = args.map((arg) => { + if (typeof arg === "string" && arg.startsWith("__callback__")) { + const callbackId = arg.slice(12); + return (...callbackArgs) => { + this.invokeCallback(callbackId, callbackArgs); + }; + } + return arg; + }); + try { + const result = targetMethod.apply(target, processedArgs); + Promise.resolve(result).then((res) => { + return this.sendResponse(id, res); + }).catch((err) => this.sendError(id, err.message)); + } catch (error) { + this.sendError(id, error.message ?? error.toString()); + } + } + invokeCallback(callbackId, args) { + const message = { + id: generateUUID(), + method: callbackId, + args, + type: "callback" + }; + this.io.write(serializeMessage(message)); + } + handleCallback(message) { + const { method: callbackId, args } = message; + const callback = this.callbacks[callbackId]; + if (callback) { + callback(...args); + } else { + console.error(`Callback with id ${callbackId} not found`); + } + } + sendResponse(id, result) { + const response = { + id, + method: "", + args: { result }, + type: "response" + }; + this.io.write(serializeMessage(response)); + } + sendError(id, error) { + const response = { + id, + method: "", + args: { error }, + type: "response" + }; + this.io.write(serializeMessage(response)); + } + createNestedProxy(chain = []) { + return new Proxy(() => { + }, { + get: (_target, prop) => { + if (typeof prop === "string" && prop !== "then") { + return this.createNestedProxy([...chain, prop]); + } + return; + }, + apply: (_target, _thisArg, args) => { + const method = chain.join("."); + return this.callMethod(method, args); + } + }); + } + getAPI() { + return this.createNestedProxy(); + } + freeCallbacks() { + this.callbacks = {}; + this.callbackCache.clear(); + } +}; + +// node_modules/.pnpm/@tauri-apps+api@2.1.1/node_modules/@tauri-apps/api/external/tslib/tslib.es6.js +function __classPrivateFieldGet(receiver, state, kind, f) { + if (kind === "a" && !f) + throw new TypeError("Private accessor was defined without a getter"); + if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) + throw new TypeError("Cannot read private member from an object whose class did not declare it"); + return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver); +} +function __classPrivateFieldSet(receiver, state, value, kind, f) { + if (kind === "m") + throw new TypeError("Private method is not writable"); + if (kind === "a" && !f) + throw new TypeError("Private accessor was defined without a setter"); + if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) + throw new TypeError("Cannot write private member to an object whose class did not declare it"); + return kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value), value; +} + +// node_modules/.pnpm/@tauri-apps+api@2.1.1/node_modules/@tauri-apps/api/core.js +var _Channel_onmessage; +var _Channel_nextMessageId; +var _Channel_pendingMessages; +var _Resource_rid; +var SERIALIZE_TO_IPC_FN = "__TAURI_TO_IPC_KEY__"; +function transformCallback(callback, once = false) { + return window.__TAURI_INTERNALS__.transformCallback(callback, once); +} + +class Channel { + constructor() { + this.__TAURI_CHANNEL_MARKER__ = true; + _Channel_onmessage.set(this, () => { + }); + _Channel_nextMessageId.set(this, 0); + _Channel_pendingMessages.set(this, {}); + this.id = transformCallback(({ message, id }) => { + if (id === __classPrivateFieldGet(this, _Channel_nextMessageId, "f")) { + __classPrivateFieldSet(this, _Channel_nextMessageId, id + 1, "f"); + __classPrivateFieldGet(this, _Channel_onmessage, "f").call(this, message); + const pendingMessageIds = Object.keys(__classPrivateFieldGet(this, _Channel_pendingMessages, "f")); + if (pendingMessageIds.length > 0) { + let nextId = id + 1; + for (const pendingId of pendingMessageIds.sort()) { + if (parseInt(pendingId) === nextId) { + const message2 = __classPrivateFieldGet(this, _Channel_pendingMessages, "f")[pendingId]; + delete __classPrivateFieldGet(this, _Channel_pendingMessages, "f")[pendingId]; + __classPrivateFieldGet(this, _Channel_onmessage, "f").call(this, message2); + nextId += 1; + } else { + break; + } + } + __classPrivateFieldSet(this, _Channel_nextMessageId, nextId, "f"); + } + } else { + __classPrivateFieldGet(this, _Channel_pendingMessages, "f")[id.toString()] = message; + } + }); + } + set onmessage(handler) { + __classPrivateFieldSet(this, _Channel_onmessage, handler, "f"); + } + get onmessage() { + return __classPrivateFieldGet(this, _Channel_onmessage, "f"); + } + [(_Channel_onmessage = new WeakMap, _Channel_nextMessageId = new WeakMap, _Channel_pendingMessages = new WeakMap, SERIALIZE_TO_IPC_FN)]() { + return `__CHANNEL__:${this.id}`; + } + toJSON() { + return this[SERIALIZE_TO_IPC_FN](); + } +} +_Resource_rid = new WeakMap; + +// node_modules/.pnpm/@tauri-apps+api@2.1.1/node_modules/@tauri-apps/api/event.js +var TauriEvent; +(function(TauriEvent2) { + TauriEvent2["WINDOW_RESIZED"] = "tauri://resize"; + TauriEvent2["WINDOW_MOVED"] = "tauri://move"; + TauriEvent2["WINDOW_CLOSE_REQUESTED"] = "tauri://close-requested"; + TauriEvent2["WINDOW_DESTROYED"] = "tauri://destroyed"; + TauriEvent2["WINDOW_FOCUS"] = "tauri://focus"; + TauriEvent2["WINDOW_BLUR"] = "tauri://blur"; + TauriEvent2["WINDOW_SCALE_FACTOR_CHANGED"] = "tauri://scale-change"; + TauriEvent2["WINDOW_THEME_CHANGED"] = "tauri://theme-changed"; + TauriEvent2["WINDOW_CREATED"] = "tauri://window-created"; + TauriEvent2["WEBVIEW_CREATED"] = "tauri://webview-created"; + TauriEvent2["DRAG_ENTER"] = "tauri://drag-enter"; + TauriEvent2["DRAG_OVER"] = "tauri://drag-over"; + TauriEvent2["DRAG_DROP"] = "tauri://drag-drop"; + TauriEvent2["DRAG_LEAVE"] = "tauri://drag-leave"; +})(TauriEvent || (TauriEvent = {})); +// node_modules/.pnpm/@tauri-apps+api@2.1.1/node_modules/@tauri-apps/api/path.js +var BaseDirectory; +(function(BaseDirectory2) { + BaseDirectory2[BaseDirectory2["Audio"] = 1] = "Audio"; + BaseDirectory2[BaseDirectory2["Cache"] = 2] = "Cache"; + BaseDirectory2[BaseDirectory2["Config"] = 3] = "Config"; + BaseDirectory2[BaseDirectory2["Data"] = 4] = "Data"; + BaseDirectory2[BaseDirectory2["LocalData"] = 5] = "LocalData"; + BaseDirectory2[BaseDirectory2["Document"] = 6] = "Document"; + BaseDirectory2[BaseDirectory2["Download"] = 7] = "Download"; + BaseDirectory2[BaseDirectory2["Picture"] = 8] = "Picture"; + BaseDirectory2[BaseDirectory2["Public"] = 9] = "Public"; + BaseDirectory2[BaseDirectory2["Video"] = 10] = "Video"; + BaseDirectory2[BaseDirectory2["Resource"] = 11] = "Resource"; + BaseDirectory2[BaseDirectory2["Temp"] = 12] = "Temp"; + BaseDirectory2[BaseDirectory2["AppConfig"] = 13] = "AppConfig"; + BaseDirectory2[BaseDirectory2["AppData"] = 14] = "AppData"; + BaseDirectory2[BaseDirectory2["AppLocalData"] = 15] = "AppLocalData"; + BaseDirectory2[BaseDirectory2["AppCache"] = 16] = "AppCache"; + BaseDirectory2[BaseDirectory2["AppLog"] = 17] = "AppLog"; + BaseDirectory2[BaseDirectory2["Desktop"] = 18] = "Desktop"; + BaseDirectory2[BaseDirectory2["Executable"] = 19] = "Executable"; + BaseDirectory2[BaseDirectory2["Font"] = 20] = "Font"; + BaseDirectory2[BaseDirectory2["Home"] = 21] = "Home"; + BaseDirectory2[BaseDirectory2["Runtime"] = 22] = "Runtime"; + BaseDirectory2[BaseDirectory2["Template"] = 23] = "Template"; +})(BaseDirectory || (BaseDirectory = {})); + +// node_modules/.pnpm/@tauri-apps+plugin-log@2.2.0/node_modules/@tauri-apps/plugin-log/dist-js/index.js +var LogLevel; +(function(LogLevel2) { + LogLevel2[LogLevel2["Trace"] = 1] = "Trace"; + LogLevel2[LogLevel2["Debug"] = 2] = "Debug"; + LogLevel2[LogLevel2["Info"] = 3] = "Info"; + LogLevel2[LogLevel2["Warn"] = 4] = "Warn"; + LogLevel2[LogLevel2["Error"] = 5] = "Error"; +})(LogLevel || (LogLevel = {})); + +// node_modules/.pnpm/tauri-api-adapter@0.3.16_typescript@5.6.3/node_modules/tauri-api-adapter/dist/api/client/fetch/request.js +function constructFetchAPI(api) { + return async function fetch(input, init) { + console.log("fetch", input, init); + const maxRedirections = init?.maxRedirections; + const connectTimeout = init?.connectTimeout; + const proxy = init?.proxy; + if (init != null) { + delete init.maxRedirections; + delete init.connectTimeout; + delete init.proxy; + } + const signal = init?.signal; + const headers = init?.headers == null ? [] : init.headers instanceof Headers ? Array.from(init.headers.entries()) : Array.isArray(init.headers) ? init.headers : Object.entries(init.headers); + const mappedHeaders = headers.map(([name, val]) => [ + name, + typeof val === "string" ? val : val.toString() + ]); + const req = new Request(input, init); + const buffer = await req.arrayBuffer(); + const reqData = buffer.byteLength !== 0 ? Array.from(new Uint8Array(buffer)) : null; + const rid = await api.rawFetch({ + clientConfig: { + method: req.method, + url: req.url, + headers: mappedHeaders, + data: reqData, + maxRedirections, + connectTimeout, + proxy + } + }); + signal?.addEventListener("abort", () => { + api.fetchCancel(rid); + }); + const { status, statusText, url, headers: responseHeaders, rid: responseRid } = await api.fetchSend(rid); + const body = await api.fetchReadBody(responseRid); + const res = new Response(body instanceof ArrayBuffer && body.byteLength !== 0 ? body : body instanceof Array && body.length > 0 ? new Uint8Array(body) : null, { + headers: responseHeaders, + status, + statusText + }); + Object.defineProperty(res, "url", { value: url }); + return res; + }; +} +// node_modules/.pnpm/tauri-plugin-shellx-api@2.0.14/node_modules/tauri-plugin-shellx-api/dist-js/index.js +class EventEmitter { + constructor() { + this.eventListeners = Object.create(null); + } + addListener(eventName, listener) { + return this.on(eventName, listener); + } + removeListener(eventName, listener) { + return this.off(eventName, listener); + } + on(eventName, listener) { + if (eventName in this.eventListeners) { + this.eventListeners[eventName].push(listener); + } else { + this.eventListeners[eventName] = [listener]; + } + return this; + } + once(eventName, listener) { + const wrapper = (arg) => { + this.removeListener(eventName, wrapper); + listener(arg); + }; + return this.addListener(eventName, wrapper); + } + off(eventName, listener) { + if (eventName in this.eventListeners) { + this.eventListeners[eventName] = this.eventListeners[eventName].filter((l) => l !== listener); + } + return this; + } + removeAllListeners(event) { + if (event) { + delete this.eventListeners[event]; + } else { + this.eventListeners = Object.create(null); + } + return this; + } + emit(eventName, arg) { + if (eventName in this.eventListeners) { + const listeners = this.eventListeners[eventName]; + for (const listener of listeners) + listener(arg); + return true; + } + return false; + } + listenerCount(eventName) { + if (eventName in this.eventListeners) + return this.eventListeners[eventName].length; + return 0; + } + prependListener(eventName, listener) { + if (eventName in this.eventListeners) { + this.eventListeners[eventName].unshift(listener); + } else { + this.eventListeners[eventName] = [listener]; + } + return this; + } + prependOnceListener(eventName, listener) { + const wrapper = (arg) => { + this.removeListener(eventName, wrapper); + listener(arg); + }; + return this.prependListener(eventName, wrapper); + } +} +// node_modules/.pnpm/tauri-api-adapter@0.3.16_typescript@5.6.3/node_modules/tauri-api-adapter/dist/api/client/updownload.js +function constructUpdownloadAPI(api) { + return { + upload: (url, filePath, progressHandler, headers) => api.upload(url, filePath, progressHandler ? progressHandler : undefined, headers), + download: (url, filePath, progressHandler, headers) => api.download(url, filePath, progressHandler ? progressHandler : undefined, headers) + }; +} +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/api/event.ts +function constructEventAPI2(api) { + return { + onDragDrop: (callback) => api.onDragDrop(callback), + onDragEnter: (callback) => api.onDragEnter(callback), + onDragLeave: (callback) => api.onDragLeave(callback), + onDragOver: (callback) => api.onDragOver(callback), + onWindowBlur: (callback) => api.onWindowBlur(callback), + onWindowCloseRequested: (callback) => api.onWindowCloseRequested(callback), + onWindowFocus: (callback) => api.onWindowFocus(callback) + }; +} + +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/api/path.ts +function constructPathAPI2(api) { + return { + BaseDirectory, + appCacheDir: api.appCacheDir, + appConfigDir: api.appConfigDir, + appDataDir: api.appDataDir, + appLocalDataDir: api.appLocalDataDir, + appLogDir: api.appLogDir, + audioDir: api.audioDir, + basename: api.basename, + cacheDir: api.cacheDir, + configDir: api.configDir, + dataDir: api.dataDir, + delimiter: api.delimiter, + desktopDir: api.desktopDir, + dirname: api.dirname, + documentDir: api.documentDir, + downloadDir: api.downloadDir, + executableDir: api.executableDir, + extname: api.extname, + fontDir: api.fontDir, + homeDir: api.homeDir, + isAbsolute: api.isAbsolute, + join: api.join, + localDataDir: api.localDataDir, + normalize: api.normalize, + pictureDir: api.pictureDir, + publicDir: api.publicDir, + resolve: api.resolve, + resolveResource: api.resolveResource, + resourceDir: api.resourceDir, + runtimeDir: api.runtimeDir, + sep: api.sep, + tempDir: api.tempDir, + templateDir: api.templateDir, + videoDir: api.videoDir, + extensionDir: api.extensionDir, + extensionSupportDir: api.extensionSupportDir + }; +} + +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/api/shell.ts +class Child2 { + pid; + api; + constructor(pid, api) { + this.pid = pid; + this.api = api; + } + async write(data) { + this.api.stdinWrite(data.toString(), this.pid); + } + async kill() { + this.api.kill(this.pid); + } +} + +class BaseShellCommand extends EventEmitter { + program; + args; + options; + stdout = new EventEmitter; + stderr = new EventEmitter; + constructor(program, args = [], options) { + super(); + this.program = program; + this.args = typeof args === "string" ? [args] : args; + this.options = options ?? {}; + } +} + +class Command2 extends BaseShellCommand { + api; + constructor(program, args = [], api, options) { + super(program, args, options); + this.api = api; + } + async spawn() { + const args = this.args; + if (typeof args === "object") { + Object.freeze(args); + } + return this.api.rawSpawn(this.program, args, this.options, (evt) => { + switch (evt.event) { + case "Error": + this.emit("error", evt.payload); + break; + case "Terminated": + this.emit("close", evt.payload); + break; + case "Stdout": + this.stdout.emit("data", evt.payload); + break; + case "Stderr": + this.stderr.emit("data", evt.payload); + break; + } + }).then(async (pid) => { + await this.api.recordSpawnedProcess(pid); + return new Child2(pid, this.api); + }); + } + async execute() { + const args = this.args; + if (typeof args === "object") { + Object.freeze(args); + } + return this.api.execute(this.program, this.args, this.options); + } +} + +class DenoCommand extends BaseShellCommand { + config; + scriptPath; + api; + constructor(scriptPath, args, config, api) { + super("deno", args); + this.config = config; + this.scriptPath = scriptPath; + this.api = api; + } + execute() { + return this.api.denoExecute(this.scriptPath, this.config, this.args); + } + spawn() { + return this.api.denoRawSpawn(this.scriptPath, this.config, this.args, (evt) => { + switch (evt.event) { + case "Error": + this.emit("error", evt.payload); + break; + case "Terminated": + this.emit("close", evt.payload); + break; + case "Stdout": + this.stdout.emit("data", evt.payload); + break; + case "Stderr": + this.stderr.emit("data", evt.payload); + break; + } + }).then(async (pid) => { + await this.api.recordSpawnedProcess(pid); + return new Child2(pid, this.api); + }); + } +} + +class TauriShellStdio { + readStream; + childProcess; + name = "tauri-shell-stdio"; + constructor(readStream, childProcess) { + this.readStream = readStream; + this.childProcess = childProcess; + } + read() { + return new Promise((resolve, reject) => { + this.readStream.on("data", (chunk) => { + resolve(chunk); + }); + }); + } + async write(data) { + return this.childProcess.write(data + ` +`); + } +} +function constructShellAPI2(api) { + function createCommand(program, args = [], options) { + return new Command2(program, args, api, options); + } + function createDenoCommand(scriptPath, args, config) { + return new DenoCommand(scriptPath, args, config, api); + } + async function createDenoRpcChannel(scriptPath, args, config, localAPIImplementation) { + const denoCmd = createDenoCommand(scriptPath, args, config); + const denoProcess = await denoCmd.spawn(); + const stdio = new TauriShellStdio(denoCmd.stdout, denoProcess); + const stdioRPC = new RPCChannel(stdio, { expose: localAPIImplementation }); + return { + rpcChannel: stdioRPC, + process: denoProcess, + command: denoCmd + }; + } + function makeBashScript(script) { + return createCommand("bash", ["-c", script]); + } + function makePowershellScript(script) { + return createCommand("powershell", ["-Command", script]); + } + function makeAppleScript(script) { + return createCommand("osascript", ["-e", script]); + } + function makePythonScript(script) { + return createCommand("python", ["-c", script]); + } + function makeZshScript(script) { + return createCommand("zsh", ["-c", script]); + } + function makeNodeScript(script) { + return createCommand("node", ["-e", script]); + } + async function executeBashScript(script) { + return makeBashScript(script).execute(); + } + async function executePowershellScript(script) { + return makePowershellScript(script).execute(); + } + async function executeAppleScript(script) { + return makeAppleScript(script).execute(); + } + async function executePythonScript(script) { + return makePythonScript(script).execute(); + } + async function executeZshScript(script) { + return makeZshScript(script).execute(); + } + async function executeNodeScript(script) { + return makeNodeScript(script).execute(); + } + function likelyOnWindows2() { + return api.likelyOnWindows(); + } + return { + open: api.open, + makeBashScript, + makePowershellScript, + makeAppleScript, + makePythonScript, + makeZshScript, + makeNodeScript, + executeBashScript, + executePowershellScript, + executeAppleScript, + executePythonScript, + executeZshScript, + executeNodeScript, + hasCommand: api.hasCommand, + likelyOnWindows: likelyOnWindows2, + createCommand, + createDenoCommand, + Child: Child2, + TauriShellStdio, + createDenoRpcChannel, + RPCChannel, + whereIsCommand: api.whereIsCommand + }; +} + +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/api/toast.ts +function constructToastAPI(api) { + return { + message: (message, options, action) => api.message(message, options, action ? action : undefined), + info: (message, options, action) => api.info(message, options, action ? action : undefined), + success: (message, options, action) => api.success(message, options, action ? action : undefined), + warning: (message, options, action) => api.warning(message, options, action ? action : undefined), + error: (message, options, action) => api.error(message, options, action ? action : undefined) + }; +} + +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/ui/worker/ext.ts +class WorkerExtension { + searchTerm = ""; + highlightedListItemValue; + onSearchTermChange(term) { + this.searchTerm = term; + return Promise.resolve(); + } + onActionSelected(value) { + return Promise.resolve(); + } + onEnterPressedOnSearchBar() { + return Promise.resolve(); + } + onFilesDropped(paths) { + return Promise.resolve(); + } + onBeforeGoBack() { + return Promise.resolve(); + } + onListItemSelected(value) { + return Promise.resolve(); + } + onListScrolledToBottom() { + return Promise.resolve(); + } + onHighlightedListItemChanged(value) { + this.highlightedListItemValue = value; + return Promise.resolve(); + } + onFormSubmit(value) { + return Promise.resolve(); + } +} +// node_modules/.pnpm/valibot@1.0.0-beta.11_typescript@5.6.3/node_modules/valibot/dist/index.js +var store; +function getGlobalConfig(config2) { + return { + lang: config2?.lang ?? store?.lang, + message: config2?.message, + abortEarly: config2?.abortEarly ?? store?.abortEarly, + abortPipeEarly: config2?.abortPipeEarly ?? store?.abortPipeEarly + }; +} +var store2; +function getGlobalMessage(lang) { + return store2?.get(lang); +} +var store3; +function getSchemaMessage(lang) { + return store3?.get(lang); +} +var store4; +function getSpecificMessage(reference, lang) { + return store4?.get(reference)?.get(lang); +} +function _stringify(input) { + const type = typeof input; + if (type === "string") { + return `"${input}"`; + } + if (type === "number" || type === "bigint" || type === "boolean") { + return `${input}`; + } + if (type === "object" || type === "function") { + return (input && Object.getPrototypeOf(input)?.constructor?.name) ?? "null"; + } + return type; +} +function _addIssue(context, label, dataset, config2, other) { + const input = other && "input" in other ? other.input : dataset.value; + const expected = other?.expected ?? context.expects ?? null; + const received = other?.received ?? _stringify(input); + const issue = { + kind: context.kind, + type: context.type, + input, + expected, + received, + message: `Invalid ${label}: ${expected ? `Expected ${expected} but r` : "R"}eceived ${received}`, + requirement: context.requirement, + path: other?.path, + issues: other?.issues, + lang: config2.lang, + abortEarly: config2.abortEarly, + abortPipeEarly: config2.abortPipeEarly + }; + const isSchema = context.kind === "schema"; + const message = other?.message ?? context.message ?? getSpecificMessage(context.reference, issue.lang) ?? (isSchema ? getSchemaMessage(issue.lang) : null) ?? config2.message ?? getGlobalMessage(issue.lang); + if (message) { + issue.message = typeof message === "function" ? message(issue) : message; + } + if (isSchema) { + dataset.typed = false; + } + if (dataset.issues) { + dataset.issues.push(issue); + } else { + dataset.issues = [issue]; + } +} +function _getStandardProps(context) { + return { + version: 1, + vendor: "valibot", + validate(value2) { + return context["~run"]({ value: value2 }, getGlobalConfig()); + } + }; +} +function _isValidObjectKey(object2, key) { + return Object.hasOwn(object2, key) && key !== "__proto__" && key !== "prototype" && key !== "constructor"; +} +function _joinExpects(values, separator) { + const list = [...new Set(values)]; + if (list.length > 1) { + return `(${list.join(` ${separator} `)})`; + } + return list[0] ?? "never"; +} +var HEX_COLOR_REGEX = /^#(?:[\da-f]{3,4}|[\da-f]{6}|[\da-f]{8})$/iu; +function hexColor(message) { + return { + kind: "validation", + type: "hex_color", + reference: hexColor, + async: false, + expects: null, + requirement: HEX_COLOR_REGEX, + message, + "~run"(dataset, config2) { + if (dataset.typed && !this.requirement.test(dataset.value)) { + _addIssue(this, "hex color", dataset, config2); + } + return dataset; + } + }; +} +function maxValue(requirement, message) { + return { + kind: "validation", + type: "max_value", + reference: maxValue, + async: false, + expects: `<=${requirement instanceof Date ? requirement.toJSON() : _stringify(requirement)}`, + requirement, + message, + "~run"(dataset, config2) { + if (dataset.typed && !(dataset.value <= this.requirement)) { + _addIssue(this, "value", dataset, config2, { + received: dataset.value instanceof Date ? dataset.value.toJSON() : _stringify(dataset.value) + }); + } + return dataset; + } + }; +} +function minValue(requirement, message) { + return { + kind: "validation", + type: "min_value", + reference: minValue, + async: false, + expects: `>=${requirement instanceof Date ? requirement.toJSON() : _stringify(requirement)}`, + requirement, + message, + "~run"(dataset, config2) { + if (dataset.typed && !(dataset.value >= this.requirement)) { + _addIssue(this, "value", dataset, config2, { + received: dataset.value instanceof Date ? dataset.value.toJSON() : _stringify(dataset.value) + }); + } + return dataset; + } + }; +} +function getDefault(schema, dataset, config2) { + return typeof schema.default === "function" ? schema.default(dataset, config2) : schema.default; +} +function any() { + return { + kind: "schema", + type: "any", + reference: any, + expects: "any", + async: false, + get "~standard"() { + return _getStandardProps(this); + }, + "~run"(dataset) { + dataset.typed = true; + return dataset; + } + }; +} +function array(item, message) { + return { + kind: "schema", + type: "array", + reference: array, + expects: "Array", + async: false, + item, + message, + get "~standard"() { + return _getStandardProps(this); + }, + "~run"(dataset, config2) { + const input = dataset.value; + if (Array.isArray(input)) { + dataset.typed = true; + dataset.value = []; + for (let key = 0;key < input.length; key++) { + const value2 = input[key]; + const itemDataset = this.item["~run"]({ value: value2 }, config2); + if (itemDataset.issues) { + const pathItem = { + type: "array", + origin: "value", + input, + key, + value: value2 + }; + for (const issue of itemDataset.issues) { + if (issue.path) { + issue.path.unshift(pathItem); + } else { + issue.path = [pathItem]; + } + dataset.issues?.push(issue); + } + if (!dataset.issues) { + dataset.issues = itemDataset.issues; + } + if (config2.abortEarly) { + dataset.typed = false; + break; + } + } + if (!itemDataset.typed) { + dataset.typed = false; + } + dataset.value.push(itemDataset.value); + } + } else { + _addIssue(this, "type", dataset, config2); + } + return dataset; + } + }; +} +function boolean(message) { + return { + kind: "schema", + type: "boolean", + reference: boolean, + expects: "boolean", + async: false, + message, + get "~standard"() { + return _getStandardProps(this); + }, + "~run"(dataset, config2) { + if (typeof dataset.value === "boolean") { + dataset.typed = true; + } else { + _addIssue(this, "type", dataset, config2); + } + return dataset; + } + }; +} +function date(message) { + return { + kind: "schema", + type: "date", + reference: date, + expects: "Date", + async: false, + message, + get "~standard"() { + return _getStandardProps(this); + }, + "~run"(dataset, config2) { + if (dataset.value instanceof Date) { + if (!isNaN(dataset.value)) { + dataset.typed = true; + } else { + _addIssue(this, "type", dataset, config2, { + received: '"Invalid Date"' + }); + } + } else { + _addIssue(this, "type", dataset, config2); + } + return dataset; + } + }; +} +function enum_(enum__, message) { + const options = []; + for (const key in enum__) { + if (`${+key}` !== key || typeof enum__[key] !== "string" || !Object.is(enum__[enum__[key]], +key)) { + options.push(enum__[key]); + } + } + return { + kind: "schema", + type: "enum", + reference: enum_, + expects: _joinExpects(options.map(_stringify), "|"), + async: false, + enum: enum__, + options, + message, + get "~standard"() { + return _getStandardProps(this); + }, + "~run"(dataset, config2) { + if (this.options.includes(dataset.value)) { + dataset.typed = true; + } else { + _addIssue(this, "type", dataset, config2); + } + return dataset; + } + }; +} +function function_(message) { + return { + kind: "schema", + type: "function", + reference: function_, + expects: "Function", + async: false, + message, + get "~standard"() { + return _getStandardProps(this); + }, + "~run"(dataset, config2) { + if (typeof dataset.value === "function") { + dataset.typed = true; + } else { + _addIssue(this, "type", dataset, config2); + } + return dataset; + } + }; +} +function lazy(getter) { + return { + kind: "schema", + type: "lazy", + reference: lazy, + expects: "unknown", + async: false, + getter, + get "~standard"() { + return _getStandardProps(this); + }, + "~run"(dataset, config2) { + return this.getter(dataset.value)["~run"](dataset, config2); + } + }; +} +function literal(literal_, message) { + return { + kind: "schema", + type: "literal", + reference: literal, + expects: _stringify(literal_), + async: false, + literal: literal_, + message, + get "~standard"() { + return _getStandardProps(this); + }, + "~run"(dataset, config2) { + if (dataset.value === this.literal) { + dataset.typed = true; + } else { + _addIssue(this, "type", dataset, config2); + } + return dataset; + } + }; +} +function nullable(wrapped, default_) { + return { + kind: "schema", + type: "nullable", + reference: nullable, + expects: `(${wrapped.expects} | null)`, + async: false, + wrapped, + default: default_, + get "~standard"() { + return _getStandardProps(this); + }, + "~run"(dataset, config2) { + if (dataset.value === null) { + if (this.default !== undefined) { + dataset.value = getDefault(this, dataset, config2); + } + if (dataset.value === null) { + dataset.typed = true; + return dataset; + } + } + return this.wrapped["~run"](dataset, config2); + } + }; +} +function number(message) { + return { + kind: "schema", + type: "number", + reference: number, + expects: "number", + async: false, + message, + get "~standard"() { + return _getStandardProps(this); + }, + "~run"(dataset, config2) { + if (typeof dataset.value === "number" && !isNaN(dataset.value)) { + dataset.typed = true; + } else { + _addIssue(this, "type", dataset, config2); + } + return dataset; + } + }; +} +function object(entries, message) { + return { + kind: "schema", + type: "object", + reference: object, + expects: "Object", + async: false, + entries, + message, + get "~standard"() { + return _getStandardProps(this); + }, + "~run"(dataset, config2) { + const input = dataset.value; + if (input && typeof input === "object") { + dataset.typed = true; + dataset.value = {}; + for (const key in this.entries) { + const value2 = input[key]; + const valueDataset = this.entries[key]["~run"]({ value: value2 }, config2); + if (valueDataset.issues) { + const pathItem = { + type: "object", + origin: "value", + input, + key, + value: value2 + }; + for (const issue of valueDataset.issues) { + if (issue.path) { + issue.path.unshift(pathItem); + } else { + issue.path = [pathItem]; + } + dataset.issues?.push(issue); + } + if (!dataset.issues) { + dataset.issues = valueDataset.issues; + } + if (config2.abortEarly) { + dataset.typed = false; + break; + } + } + if (!valueDataset.typed) { + dataset.typed = false; + } + if (valueDataset.value !== undefined || key in input) { + dataset.value[key] = valueDataset.value; + } + } + } else { + _addIssue(this, "type", dataset, config2); + } + return dataset; + } + }; +} +function optional(wrapped, default_) { + return { + kind: "schema", + type: "optional", + reference: optional, + expects: `(${wrapped.expects} | undefined)`, + async: false, + wrapped, + default: default_, + get "~standard"() { + return _getStandardProps(this); + }, + "~run"(dataset, config2) { + if (dataset.value === undefined) { + if (this.default !== undefined) { + dataset.value = getDefault(this, dataset, config2); + } + if (dataset.value === undefined) { + dataset.typed = true; + return dataset; + } + } + return this.wrapped["~run"](dataset, config2); + } + }; +} +function record(key, value2, message) { + return { + kind: "schema", + type: "record", + reference: record, + expects: "Object", + async: false, + key, + value: value2, + message, + get "~standard"() { + return _getStandardProps(this); + }, + "~run"(dataset, config2) { + const input = dataset.value; + if (input && typeof input === "object") { + dataset.typed = true; + dataset.value = {}; + for (const entryKey in input) { + if (_isValidObjectKey(input, entryKey)) { + const entryValue = input[entryKey]; + const keyDataset = this.key["~run"]({ value: entryKey }, config2); + if (keyDataset.issues) { + const pathItem = { + type: "object", + origin: "key", + input, + key: entryKey, + value: entryValue + }; + for (const issue of keyDataset.issues) { + issue.path = [pathItem]; + dataset.issues?.push(issue); + } + if (!dataset.issues) { + dataset.issues = keyDataset.issues; + } + if (config2.abortEarly) { + dataset.typed = false; + break; + } + } + const valueDataset = this.value["~run"]({ value: entryValue }, config2); + if (valueDataset.issues) { + const pathItem = { + type: "object", + origin: "value", + input, + key: entryKey, + value: entryValue + }; + for (const issue of valueDataset.issues) { + if (issue.path) { + issue.path.unshift(pathItem); + } else { + issue.path = [pathItem]; + } + dataset.issues?.push(issue); + } + if (!dataset.issues) { + dataset.issues = valueDataset.issues; + } + if (config2.abortEarly) { + dataset.typed = false; + break; + } + } + if (!keyDataset.typed || !valueDataset.typed) { + dataset.typed = false; + } + if (keyDataset.typed) { + dataset.value[keyDataset.value] = valueDataset.value; + } + } + } + } else { + _addIssue(this, "type", dataset, config2); + } + return dataset; + } + }; +} +function string(message) { + return { + kind: "schema", + type: "string", + reference: string, + expects: "string", + async: false, + message, + get "~standard"() { + return _getStandardProps(this); + }, + "~run"(dataset, config2) { + if (typeof dataset.value === "string") { + dataset.typed = true; + } else { + _addIssue(this, "type", dataset, config2); + } + return dataset; + } + }; +} +function _subIssues(datasets) { + let issues; + if (datasets) { + for (const dataset of datasets) { + if (issues) { + issues.push(...dataset.issues); + } else { + issues = dataset.issues; + } + } + } + return issues; +} +function union(options, message) { + return { + kind: "schema", + type: "union", + reference: union, + expects: _joinExpects(options.map((option) => option.expects), "|"), + async: false, + options, + message, + get "~standard"() { + return _getStandardProps(this); + }, + "~run"(dataset, config2) { + let validDataset; + let typedDatasets; + let untypedDatasets; + for (const schema of this.options) { + const optionDataset = schema["~run"]({ value: dataset.value }, config2); + if (optionDataset.typed) { + if (optionDataset.issues) { + if (typedDatasets) { + typedDatasets.push(optionDataset); + } else { + typedDatasets = [optionDataset]; + } + } else { + validDataset = optionDataset; + break; + } + } else { + if (untypedDatasets) { + untypedDatasets.push(optionDataset); + } else { + untypedDatasets = [optionDataset]; + } + } + } + if (validDataset) { + return validDataset; + } + if (typedDatasets) { + if (typedDatasets.length === 1) { + return typedDatasets[0]; + } + _addIssue(this, "type", dataset, config2, { + issues: _subIssues(typedDatasets) + }); + dataset.typed = true; + } else if (untypedDatasets?.length === 1) { + return untypedDatasets[0]; + } else { + _addIssue(this, "type", dataset, config2, { + issues: _subIssues(untypedDatasets) + }); + } + return dataset; + } + }; +} +function pipe(...pipe2) { + return { + ...pipe2[0], + pipe: pipe2, + get "~standard"() { + return _getStandardProps(this); + }, + "~run"(dataset, config2) { + for (const item of pipe2) { + if (item.kind !== "metadata") { + if (dataset.issues && (item.kind === "schema" || item.kind === "transformation")) { + dataset.typed = false; + break; + } + if (!dataset.issues || !config2.abortEarly && !config2.abortPipeEarly) { + dataset = item["~run"](dataset, config2); + } + } + } + return dataset; + } + }; +} + +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/models/constants.ts +var NodeNameEnum; +((NodeNameEnum2) => { + NodeNameEnum2["List"] = "List"; + NodeNameEnum2["ListItem"] = "ListItem"; + NodeNameEnum2["ListItemDetail"] = "ListItemDetail"; + NodeNameEnum2["ListItemAccessory"] = "ListItemAccessory"; + NodeNameEnum2["ListSection"] = "ListSection"; + NodeNameEnum2["ListItemDetailMetadata"] = "ListItemDetailMetadata"; + NodeNameEnum2["ListItemDetailMetadataLabel"] = "ListItemDetailMetadataLabel"; + NodeNameEnum2["ListItemDetailMetadataLink"] = "ListItemDetailMetadataLink"; + NodeNameEnum2["ListItemDetailMetadataTagList"] = "ListItemDetailMetadataTagList"; + NodeNameEnum2["ListItemDetailMetadataTagListItem"] = "ListItemDetailMetadataTagListItem"; + NodeNameEnum2["ListItemDetailMetadataSeparator"] = "ListItemDetailMetadataSeparator"; + NodeNameEnum2["Icon"] = "Icon"; + NodeNameEnum2["EmptyView"] = "EmptyView"; + NodeNameEnum2["Dropdown"] = "Dropdown"; + NodeNameEnum2["DropdownSection"] = "DropdownSection"; + NodeNameEnum2["DropdownItem"] = "DropdownItem"; + NodeNameEnum2["ActionPanel"] = "ActionPanel"; + NodeNameEnum2["Action"] = "Action"; + NodeNameEnum2["ActionPanelSection"] = "ActionPanelSection"; + NodeNameEnum2["ActionPanelSubmenu"] = "ActionPanelSubmenu"; + NodeNameEnum2["Markdown"] = "Markdown"; +})(NodeNameEnum ||= {}); +var NodeName = enum_(NodeNameEnum); +var FormNodeNameEnum; +((FormNodeNameEnum2) => { + FormNodeNameEnum2["Base"] = "Base"; + FormNodeNameEnum2["Number"] = "Number"; + FormNodeNameEnum2["Select"] = "Select"; + FormNodeNameEnum2["Boolean"] = "Boolean"; + FormNodeNameEnum2["Input"] = "Input"; + FormNodeNameEnum2["Date"] = "Date"; + FormNodeNameEnum2["Array"] = "Array"; + FormNodeNameEnum2["Form"] = "Form"; +})(FormNodeNameEnum ||= {}); +var FormNodeName = enum_(FormNodeNameEnum); + +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/models/icon.ts +var IconEnum; +((IconEnum2) => { + IconEnum2["Iconify"] = "iconify"; + IconEnum2["RemoteUrl"] = "remote-url"; + IconEnum2["Svg"] = "svg"; + IconEnum2["Base64PNG"] = "base64-png"; + IconEnum2["Text"] = "text"; +})(IconEnum ||= {}); +var IconType = enum_(IconEnum); +var BaseIcon = object({ + type: IconType, + value: string(), + invert: optional(boolean()), + darkInvert: optional(boolean()), + hexColor: optional(string()), + bgColor: optional(string()) +}); +var Icon = object({ + ...BaseIcon.entries, + fallback: optional(lazy(() => Icon)) +}); +var IconNode = object({ + ...BaseIcon.entries, + nodeName: NodeName, + fallback: optional(lazy(() => Icon)) +}); + +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/models/styles.ts +var Color = pipe(string(), hexColor()); +var CustomPosition = object({ + top: optional(number()), + right: optional(number()), + bottom: optional(number()), + left: optional(number()) +}); +var LightMode = union([literal("light"), literal("dark"), literal("auto")]); +var ThemeColor = union([ + literal("zinc"), + literal("slate"), + literal("stone"), + literal("gray"), + literal("neutral"), + literal("red"), + literal("rose"), + literal("orange"), + literal("green"), + literal("blue"), + literal("yellow"), + literal("violet") +]); +var Radius = pipe(number(), minValue(0), maxValue(1)); + +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/ui/worker/schema/action.ts +var Action = object({ + nodeName: NodeName, + icon: optional(Icon), + title: string(), + value: string() +}); +var ActionPanel = object({ + nodeName: NodeName, + title: optional(string()), + items: array(union([ + Action + ])) +}); + +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/ui/worker/schema/markdown.ts +var Markdown = object({ + nodeName: NodeName, + content: string() +}); + +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/ui/worker/schema/list.ts +var EmptyView = object({ + nodeName: NodeName, + title: optional(string()), + description: optional(string()), + icon: optional(Icon) +}); +var DropdownItem = object({ + nodeName: NodeName, + title: string(), + value: string(), + icon: optional(Icon), + keywords: optional(array(string())) +}); +var DropdownSection = object({ + nodeName: NodeName, + title: string(), + items: array(DropdownItem) +}); +var Dropdown = object({ + nodeName: NodeName, + tooltip: string(), + sections: array(DropdownSection), + defaultValue: string() +}); +var ItemAccessory = object({ + nodeName: NodeName, + tag: optional(union([ + string(), + object({ + color: Color, + text: string() + }) + ])), + text: optional(union([string(), object({ color: Color, text: string() })])), + date: optional(union([date(), object({ color: Color, text: date() })])), + icon: optional(Icon), + tooltip: optional(string()) +}); +var ItemDetailMetadataLabel = object({ + nodeName: literal("ListItemDetailMetadataLabel" /* ListItemDetailMetadataLabel */), + title: string(), + icon: optional(Icon), + text: optional(union([ + string(), + object({ + color: Color, + text: string() + }) + ])) +}); +var ItemDetailMetadataLink = object({ + nodeName: literal("ListItemDetailMetadataLink" /* ListItemDetailMetadataLink */), + title: string(), + text: string(), + url: string() +}); +var ItemDetailMetadataTagListItem = object({ + nodeName: literal("ListItemDetailMetadataTagListItem" /* ListItemDetailMetadataTagListItem */), + text: optional(string()), + color: optional(Color) +}); +var ItemDetailMetadataTagList = object({ + nodeName: literal("ListItemDetailMetadataTagList" /* ListItemDetailMetadataTagList */), + title: string(), + tags: array(ItemDetailMetadataTagListItem) +}); +var ItemDetailMetadataSeparator = object({ + nodeName: literal("ListItemDetailMetadataSeparator" /* ListItemDetailMetadataSeparator */) +}); +var ItemDetailMetadataItem = union([ + ItemDetailMetadataLabel, + ItemDetailMetadataLink, + ItemDetailMetadataTagList, + ItemDetailMetadataSeparator +]); +var ItemDetailMetadata = object({ + nodeName: literal("ListItemDetailMetadata" /* ListItemDetailMetadata */), + items: array(ItemDetailMetadataItem) +}); +var ItemDetail = object({ + nodeName: literal("ListItemDetail" /* ListItemDetail */), + children: array(union([Markdown, ItemDetailMetadata])), + width: optional(number()) +}); +var Item = object({ + nodeName: literal("ListItem" /* ListItem */), + title: string(), + subTitle: optional(string()), + accessories: optional(array(ItemAccessory)), + value: string(), + defaultAction: optional(string()), + actions: optional(ActionPanel), + icon: optional(Icon), + keywords: optional(array(string())) +}); +var Section = object({ + nodeName: literal("ListSection" /* ListSection */), + title: optional(string()), + subtitle: optional(string()), + items: array(Item) +}); +var ListInheritOptions = union([ + literal("items"), + literal("detail"), + literal("filter"), + literal("sections"), + literal("actions"), + literal("defaultAction") +]); +var List = object({ + nodeName: literal("List" /* List */), + sections: optional(array(Section)), + items: optional(array(Item)), + filter: union([literal("none"), literal("default")]), + detail: optional(ItemDetail), + actions: optional(ActionPanel), + defaultAction: optional(string()), + inherits: optional(array(ListInheritOptions)) +}); +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/ui/worker/schema/form.ts +var InputTypes = union([ + literal("color"), + literal("date"), + literal("datetime-local"), + literal("month"), + literal("number"), + literal("password"), + literal("text"), + literal("url"), + literal("week"), + literal("time"), + literal("search") +]); +var BaseField = object({ + nodeName: FormNodeName, + key: string(), + label: optional(string()), + hideLabel: optional(boolean()), + placeholder: optional(string()), + optional: optional(boolean()), + description: optional(string()), + default: optional(any()) +}); +var InputField = object({ + ...BaseField.entries, + type: optional(InputTypes), + component: optional(union([literal("textarea"), literal("default")])), + default: optional(string()) +}); +var NumberField = object({ + ...BaseField.entries, + nodeName: FormNodeName, + default: optional(number()) +}); +var SelectField = object({ + ...BaseField.entries, + options: array(string()), + default: optional(string()) +}); +var BooleanField = object({ + ...BaseField.entries, + component: optional(union([literal("checkbox"), literal("switch")])) +}); +var DateField = object({ + ...BaseField.entries, + default: optional(string()) +}); +var AllFormFields = union([InputField, NumberField, SelectField, BooleanField, DateField]); +var ArrayField = object({ + ...BaseField.entries, + content: AllFormFields +}); +var FormField = union([ + ArrayField, + SelectField, + InputField, + NumberField, + BooleanField, + DateField +]); +var Form = object({ + nodeName: FormNodeName, + key: string(), + fields: array(union([lazy(() => Form), FormField])), + title: optional(string()), + description: optional(string()), + submitBtnText: optional(string()) +}); +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/ui/worker/components/icon.ts +class Icon2 { + nodeName = "Icon" /* Icon */; + type; + value; + invert; + darkInvert; + hexColor; + bgColor; + constructor(model) { + this.type = model.type; + this.value = model.value; + this.invert = model.invert; + this.darkInvert = model.darkInvert; + this.hexColor = model.hexColor; + this.bgColor = model.bgColor; + } + toModel() { + return { + nodeName: this.nodeName, + type: this.type, + value: this.value, + invert: this.invert, + darkInvert: this.darkInvert, + hexColor: this.hexColor, + bgColor: this.bgColor + }; + } +} +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/ui/worker/components/list-view.ts +var exports_list_view = {}; +__export(exports_list_view, { + Section: () => Section2, + List: () => List2, + ItemDetailMetadataTagListItem: () => ItemDetailMetadataTagListItem2, + ItemDetailMetadataTagList: () => ItemDetailMetadataTagList2, + ItemDetailMetadataSeparator: () => ItemDetailMetadataSeparator2, + ItemDetailMetadataLink: () => ItemDetailMetadataLink2, + ItemDetailMetadataLabel: () => ItemDetailMetadataLabel2, + ItemDetailMetadata: () => ItemDetailMetadata2, + ItemDetail: () => ItemDetail2, + ItemAccessory: () => ItemAccessory2, + Item: () => Item2, + EmptyView: () => EmptyView2, + DropdownSection: () => DropdownSection2, + DropdownItem: () => DropdownItem2, + Dropdown: () => Dropdown2 +}); +class EmptyView2 { + nodeName = "EmptyView" /* EmptyView */; + title; + description; + icon; + constructor(model) { + this.title = model.title; + this.description = model.description; + this.icon = model.icon; + } + toModel() { + return { + nodeName: this.nodeName, + title: this.title, + description: this.description, + icon: this.icon?.toModel() + }; + } +} + +class DropdownItem2 { + nodeName = "DropdownItem" /* DropdownItem */; + title; + value; + icon; + keywords; + constructor(model) { + this.title = model.title; + this.value = model.value; + this.icon = model.icon; + this.keywords = model.keywords; + } + toModel() { + return { + nodeName: this.nodeName, + title: this.title, + value: this.value, + icon: this.icon?.toModel(), + keywords: this.keywords + }; + } +} + +class DropdownSection2 { + nodeName = "DropdownSection" /* DropdownSection */; + title; + items; + constructor(model) { + this.title = model.title; + this.items = model.items; + } + toModel() { + return { + nodeName: this.nodeName, + title: this.title, + items: this.items.map((item) => item.toModel()) + }; + } +} + +class Dropdown2 { + nodeName = "Dropdown" /* Dropdown */; + tooltip; + sections; + defaultValue; + constructor(model) { + this.tooltip = model.tooltip; + this.sections = model.sections; + this.defaultValue = model.defaultValue; + } + toModel() { + return { + nodeName: this.nodeName, + tooltip: this.tooltip, + sections: this.sections.map((section) => section.toModel()), + defaultValue: this.defaultValue + }; + } +} + +class ItemAccessory2 { + nodeName = "ListItemAccessory" /* ListItemAccessory */; + tag; + text; + date; + icon; + tooltip; + constructor(model) { + this.tag = model.tag; + this.text = model.text; + this.date = model.date; + this.icon = model.icon; + this.tooltip = model.tooltip; + } + toModel() { + return { + nodeName: this.nodeName, + tag: this.tag, + text: this.text, + date: this.date, + icon: this.icon?.toModel(), + tooltip: this.tooltip + }; + } +} + +class ItemDetailMetadataLabel2 { + nodeName = "ListItemDetailMetadataLabel" /* ListItemDetailMetadataLabel */; + title; + icon; + text; + constructor(model) { + this.title = model.title; + this.icon = model.icon; + this.text = model.text; + } + toModel() { + return { + nodeName: this.nodeName, + title: this.title, + icon: this.icon?.toModel(), + text: this.text + }; + } +} + +class ItemDetailMetadataLink2 { + nodeName = "ListItemDetailMetadataLink" /* ListItemDetailMetadataLink */; + title; + text; + url; + constructor(model) { + this.title = model.title; + this.text = model.text; + this.url = model.url; + } + toModel() { + return { + nodeName: this.nodeName, + title: this.title, + text: this.text, + url: this.url + }; + } +} + +class ItemDetailMetadataTagListItem2 { + nodeName = "ListItemDetailMetadataTagListItem" /* ListItemDetailMetadataTagListItem */; + text; + color; + icon; + constructor(model) { + this.text = model.text; + this.color = model.color; + this.icon = model.icon; + } + toModel() { + return { + nodeName: this.nodeName, + text: this.text, + color: this.color + }; + } +} + +class ItemDetailMetadataTagList2 { + nodeName = "ListItemDetailMetadataTagList" /* ListItemDetailMetadataTagList */; + title; + tags; + constructor(model) { + this.title = model.title; + this.tags = model.tags; + } + toModel() { + return { + nodeName: this.nodeName, + title: this.title, + tags: this.tags.map((tag) => tag.toModel()) + }; + } +} + +class ItemDetailMetadataSeparator2 { + nodeName = "ListItemDetailMetadataSeparator" /* ListItemDetailMetadataSeparator */; + toModel() { + return { + nodeName: this.nodeName + }; + } +} + +class ItemDetailMetadata2 { + nodeName = "ListItemDetailMetadata" /* ListItemDetailMetadata */; + items; + constructor(items) { + this.items = items; + } + toModel() { + return { + nodeName: this.nodeName, + items: this.items.map((item) => item.toModel()) + }; + } +} + +class ItemDetail2 { + nodeName = "ListItemDetail" /* ListItemDetail */; + children; + width; + constructor(model) { + this.children = model.children; + this.width = model.width; + } + toModel() { + return { + nodeName: this.nodeName, + children: this.children.map((child) => child.toModel()), + width: this.width + }; + } +} + +class Item2 { + nodeName = "ListItem" /* ListItem */; + title; + value; + subTitle; + accessories; + icon; + keywords; + defaultAction; + actions; + constructor(model) { + this.title = model.title; + this.value = model.value; + this.actions = model.actions; + this.defaultAction = model.defaultAction; + this.subTitle = model.subTitle; + this.accessories = model.accessories; + this.icon = model.icon; + this.keywords = model.keywords; + } + toModel() { + return { + nodeName: this.nodeName, + title: this.title, + value: this.value, + defaultAction: this.defaultAction, + actions: this.actions?.toModel(), + subTitle: this.subTitle, + accessories: this.accessories?.map((accessory) => accessory.toModel()), + icon: this.icon?.toModel(), + keywords: this.keywords + }; + } +} + +class Section2 { + nodeName = "ListSection" /* ListSection */; + title; + items; + constructor(model) { + this.title = model.title; + this.items = model.items; + } + toModel() { + return { + nodeName: this.nodeName, + title: this.title, + items: this.items.map((item) => item.toModel()) + }; + } +} + +class List2 { + nodeName = "List" /* List */; + sections; + items; + detail; + filter; + inherits; + actions; + defaultAction; + constructor(model) { + this.sections = model.sections; + this.items = model.items; + this.detail = model.detail; + this.filter = model.filter ?? "default"; + this.inherits = model.inherits ?? []; + this.actions = model.actions; + this.defaultAction = model.defaultAction; + } + toModel() { + return { + nodeName: this.nodeName, + sections: this.sections?.map((section) => section.toModel()), + items: this.items?.map((item) => item.toModel()), + filter: this.filter, + detail: this.detail?.toModel(), + inherits: this.inherits, + actions: this.actions?.toModel(), + defaultAction: this.defaultAction + }; + } +} +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/ui/worker/components/action.ts +class Action2 { + nodeName = "Action" /* Action */; + icon; + title; + value; + constructor(model) { + this.icon = model.icon; + this.title = model.title; + this.value = model.value; + } + toModel() { + return { + nodeName: this.nodeName, + title: this.title, + value: this.value, + icon: this.icon + }; + } +} + +class ActionPanel2 { + nodeName = "ActionPanel" /* ActionPanel */; + title; + items; + constructor(model) { + this.title = model.title; + this.items = model.items; + } + toModel() { + return { + nodeName: this.nodeName, + title: this.title, + items: this.items.map((item) => item.toModel()) + }; + } +} +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/models/apps.ts +var AppInfo = object({ + name: string(), + icon_path: nullable(string()), + app_path_exe: nullable(string()), + app_desktop_path: string() +}); +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/models/extension.ts +var ExtensionLabelMap = record(string("Window label"), object({ + path: string("Path to the extension"), + processes: array(number()), + dist: optional(nullable(string())) +})); +var Ext = object({ + extId: number(), + identifier: string(), + version: string(), + enabled: boolean(), + installed_at: string(), + path: nullable(string()), + data: nullable(any()) +}); +var CmdTypeEnum; +((CmdTypeEnum2) => { + CmdTypeEnum2["HeadlessWorker"] = "headless_worker"; + CmdTypeEnum2["Builtin"] = "builtin"; + CmdTypeEnum2["System"] = "system"; + CmdTypeEnum2["UiWorker"] = "ui_worker"; + CmdTypeEnum2["UiIframe"] = "ui_iframe"; + CmdTypeEnum2["QuickLink"] = "quick_link"; + CmdTypeEnum2["Remote"] = "remote"; +})(CmdTypeEnum ||= {}); +var CmdType = enum_(CmdTypeEnum); +var ExtCmd = object({ + cmdId: number(), + extId: number(), + name: string(), + type: CmdType, + data: string(), + alias: nullable(optional(string())), + hotkey: nullable(optional(string())), + enabled: boolean() +}); +var QuickLinkCmd = object({ + ...ExtCmd.entries, + data: object({ link: string(), icon: Icon }) +}); +var ExtData = object({ + dataId: number(), + extId: number(), + dataType: string(), + data: optional(string()), + searchText: optional(string()), + createdAt: date(), + updatedAt: date() +}); +var SysCommand = object({ + name: string(), + value: string(), + icon: nullable(Icon), + keywords: nullable(array(string())), + function: function_(), + confirmRequired: boolean() +}); +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/models/sql.ts +var SQLSortOrderEnum; +((SQLSortOrderEnum2) => { + SQLSortOrderEnum2["Asc"] = "ASC"; + SQLSortOrderEnum2["Desc"] = "DESC"; +})(SQLSortOrderEnum ||= {}); +var SQLSortOrder = enum_(SQLSortOrderEnum); +var SearchModeEnum; +((SearchModeEnum2) => { + SearchModeEnum2["ExactMatch"] = "exact_match"; + SearchModeEnum2["Like"] = "like"; + SearchModeEnum2["FTS"] = "fts"; +})(SearchModeEnum ||= {}); +var SearchMode = enum_(SearchModeEnum); +// node_modules/.pnpm/tauri-api-adapter@0.3.16_typescript@5.6.3/node_modules/tauri-api-adapter/dist/permissions/schema.js +var ClipboardPermissionSchema = union([ + literal("clipboard:read-all"), + literal("clipboard:write-all"), + literal("clipboard:read-text"), + literal("clipboard:write-text"), + literal("clipboard:read-image"), + literal("clipboard:write-image"), + literal("clipboard:read-files"), + literal("clipboard:write-files") +]); +var DialogPermissionSchema = union([literal("dialog:all")]); +var NotificationPermissionSchema = union([literal("notification:all")]); +var FsPermissionSchema = union([literal("fs:read"), literal("fs:write"), literal("fs:exists")]); +var OsPermissionSchema = literal("os:all"); +var ShellPermissionSchema = union([literal("shell:open"), literal("shell:execute")]); +var FetchPermissionSchema = literal("fetch:all"); +var SystemInfoPermissionSchema = union([ + literal("system-info:all"), + literal("system-info:memory"), + literal("system-info:cpu"), + literal("system-info:os"), + literal("system-info:disk"), + literal("system-info:network"), + literal("system-info:battery"), + literal("system-info:process"), + literal("system-info:components") +]); +var NetworkPermissionSchema = union([literal("network:interface"), literal("network:port")]); +var UpdownloadPermissionSchema = union([literal("updownload:download"), literal("updownload:upload")]); +var AllPermissionSchema = union([ + ClipboardPermissionSchema, + DialogPermissionSchema, + NotificationPermissionSchema, + FsPermissionSchema, + OsPermissionSchema, + ShellPermissionSchema, + FetchPermissionSchema, + SystemInfoPermissionSchema, + NetworkPermissionSchema, + UpdownloadPermissionSchema +]); +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/permissions/schema.ts +var SystemPermissionSchema = union([ + literal("system:volumn"), + literal("system:boot"), + literal("system:disk"), + literal("system:apps"), + literal("system:fs"), + literal("system:ui") +]); +var KunkunFsPermissionSchema = union([ + FsPermissionSchema, + literal("fs:read-dir"), + literal("fs:stat"), + literal("fs:search") +]); +var EventPermissionSchema = union([ + literal("event:drag-drop"), + literal("event:drag-enter"), + literal("event:drag-leave"), + literal("event:drag-over"), + literal("event:window-blur"), + literal("event:window-close-requested"), + literal("event:window-focus") +]); +var SecurityPermissionSchema = union([ + literal("security:mac:reveal-security-pane"), + literal("security:mac:verify-fingerprint"), + literal("security:mac:reset-screencapture-permission"), + literal("security:mac:request-permission"), + literal("security:mac:check-permission"), + literal("security:mac:all") +]); +var DenoSysOptions = union([ + literal("hostname"), + literal("osRelease"), + literal("osUptime"), + literal("loadavg"), + literal("networkInterfaces"), + literal("systemMemoryInfo"), + literal("uid"), + literal("gid"), + literal("cpus"), + string() +]); +var DenoPermissionScopeSchema = object({ + net: optional(union([literal("*"), array(string())])), + env: optional(union([literal("*"), array(string())])), + read: optional(union([literal("*"), array(string())])), + write: optional(union([literal("*"), array(string())])), + run: optional(union([literal("*"), array(string())])), + ffi: optional(union([literal("*"), array(string())])), + sys: optional(union([literal("*"), array(DenoSysOptions)])) +}); +var PermissionScopeSchema = object({ + path: optional(string()), + url: optional(string()), + cmd: optional(object({ + program: string(), + args: array(string()) + })), + ...DenoPermissionScopeSchema.entries +}); +var FsPermissionScopedSchema = object({ + permission: KunkunFsPermissionSchema, + allow: optional(array(PermissionScopeSchema)), + deny: optional(array(PermissionScopeSchema)) +}); +var OpenPermissionSchema = union([ + literal("open:url"), + literal("open:file"), + literal("open:folder") +]); +var OpenPermissionScopedSchema = object({ + permission: OpenPermissionSchema, + allow: optional(array(PermissionScopeSchema)), + deny: optional(array(PermissionScopeSchema)) +}); +var ShellPermissionSchema2 = union([ + literal("shell:execute"), + literal("shell:deno:execute"), + literal("shell:spawn"), + literal("shell:deno:spawn"), + literal("shell:open"), + literal("shell:kill"), + literal("shell:all"), + literal("shell:stdin-write") +]); +var ShellPermissionScopedSchema = object({ + permission: ShellPermissionSchema2, + allow: optional(array(PermissionScopeSchema)), + deny: optional(array(PermissionScopeSchema)) +}); +var KunkunManifestPermission = union([ + ClipboardPermissionSchema, + EventPermissionSchema, + DialogPermissionSchema, + NotificationPermissionSchema, + OsPermissionSchema, + ShellPermissionSchema2, + FetchPermissionSchema, + SystemInfoPermissionSchema, + NetworkPermissionSchema, + UpdownloadPermissionSchema, + SystemPermissionSchema, + SecurityPermissionSchema +]); +var AllKunkunPermission = union([ + KunkunManifestPermission, + KunkunFsPermissionSchema, + OpenPermissionSchema +]); +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/models/manifest.ts +var OSPlatformEnum; +((OSPlatformEnum2) => { + OSPlatformEnum2["linux"] = "linux"; + OSPlatformEnum2["macos"] = "macos"; + OSPlatformEnum2["windows"] = "windows"; +})(OSPlatformEnum ||= {}); +var OSPlatform = enum_(OSPlatformEnum); +var allPlatforms = Object.values(OSPlatformEnum); +var TriggerCmd = object({ + type: union([literal("text"), literal("regex")]), + value: string() +}); +var TitleBarStyleEnum; +((TitleBarStyleEnum2) => { + TitleBarStyleEnum2["visible"] = "visible"; + TitleBarStyleEnum2["transparent"] = "transparent"; + TitleBarStyleEnum2["overlay"] = "overlay"; +})(TitleBarStyleEnum ||= {}); +var TitleBarStyle = enum_(TitleBarStyleEnum); +var WindowConfig = object({ + center: optional(nullable(boolean())), + x: optional(nullable(number())), + y: optional(nullable(number())), + width: optional(nullable(number())), + height: optional(nullable(number())), + minWidth: optional(nullable(number())), + minHeight: optional(nullable(number())), + maxWidth: optional(nullable(number())), + maxHeight: optional(nullable(number())), + resizable: optional(nullable(boolean())), + title: optional(nullable(string())), + fullscreen: optional(nullable(boolean())), + focus: optional(nullable(boolean())), + transparent: optional(nullable(boolean())), + maximized: optional(nullable(boolean())), + visible: optional(nullable(boolean())), + decorations: optional(nullable(boolean())), + alwaysOnTop: optional(nullable(boolean())), + alwaysOnBottom: optional(nullable(boolean())), + contentProtected: optional(nullable(boolean())), + skipTaskbar: optional(nullable(boolean())), + shadow: optional(nullable(boolean())), + titleBarStyle: optional(nullable(TitleBarStyle)), + hiddenTitle: optional(nullable(boolean())), + tabbingIdentifier: optional(nullable(string())), + maximizable: optional(nullable(boolean())), + minimizable: optional(nullable(boolean())), + closable: optional(nullable(boolean())), + parent: optional(nullable(string())), + visibleOnAllWorkspaces: optional(nullable(boolean())) +}); +var BaseCmd = object({ + main: string("HTML file to load, e.g. dist/index.html"), + description: optional(nullable(string("Description of the Command"), ""), ""), + name: string("Name of the command"), + cmds: array(TriggerCmd, "Commands to trigger the UI"), + icon: optional(Icon), + platforms: optional(nullable(array(OSPlatform, "Platforms available on. Leave empty for all platforms."), allPlatforms), allPlatforms) +}); +var CustomUiCmd = object({ + ...BaseCmd.entries, + type: optional(CmdType, CmdType.enum.UiIframe), + dist: string("Dist folder to load, e.g. dist, build, out"), + devMain: string("URL to load in development to support live reload, e.g. http://localhost:5173/"), + window: optional(nullable(WindowConfig)) +}); +var TemplateUiCmd = object({ + ...BaseCmd.entries, + type: optional(CmdType, CmdType.enum.UiWorker), + window: optional(nullable(WindowConfig)) +}); +var HeadlessCmd = object({ + ...BaseCmd.entries, + type: optional(CmdType, CmdType.enum.HeadlessWorker) +}); +var PermissionUnion = union([ + KunkunManifestPermission, + FsPermissionScopedSchema, + OpenPermissionScopedSchema, + ShellPermissionScopedSchema +]); +var KunkunExtManifest = object({ + name: string("Name of the extension (Human Readable)"), + shortDescription: string("Description of the extension (Will be displayed in store)"), + longDescription: string("Long description of the extension (Will be displayed in store)"), + identifier: string("Unique identifier for the extension, must be the same as extension folder name"), + icon: Icon, + permissions: array(PermissionUnion, "Permissions Declared by the extension. e.g. clipboard-all. Not declared APIs will be blocked."), + demoImages: array(string("Demo images for the extension")), + customUiCmds: optional(array(CustomUiCmd, "Custom UI Commands")), + templateUiCmds: optional(array(TemplateUiCmd, "Template UI Commands")), + headlessCmds: optional(array(HeadlessCmd, "Headless Commands")) +}); +var Person = union([ + object({ + name: string("GitHub Username"), + email: string("Email of the person"), + url: optional(nullable(string("URL of the person"))) + }), + string("GitHub Username") +]); +var ExtPackageJson = object({ + name: string("Package name for the extension (just a regular npm package name)"), + version: string("Version of the extension"), + author: optional(Person), + draft: optional(boolean("Whether the extension is a draft, draft will not be published")), + contributors: optional(array(Person, "Contributors of the extension")), + repository: optional(union([ + string("URL of the repository"), + object({ + type: string("Type of the repository"), + url: string("URL of the repository"), + directory: string("Directory of the repository") + }) + ])), + kunkun: KunkunExtManifest, + files: array(string("Files to include in the extension. e.g. ['dist']")) +}); +var ExtPackageJsonExtra = object({ + ...ExtPackageJson.entries, + ...{ + extPath: string(), + extFolderName: string() + } +}); +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/models/mdns.ts +var MdnsServiceInfo = object({ + addresses: array(string()), + fullname: string(), + hostname: string(), + port: number(), + service_type: string(), + subType: optional(string()), + properties: optional(record(string(), string())), + publicKey: string(), + sslCert: string() +}); +var MdnsPeers = record(string(), MdnsServiceInfo); +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/models/file-transfer.ts +var FileNode = object({ + filename: string(), + fileSize: number(), + id: string(), + type: number(), + children: array(lazy(() => FileNode)) +}); +var FileTransferPayload = object({ + port: string(), + code: string(), + totalBytes: number(), + totalFiles: number(), + sslCert: string(), + root: lazy(() => FileNode), + ip: string() +}); +var FilesBucket = object({ + code: string(), + idPathMap: record(string(), string()) +}); +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/ui/worker/components/form-view.ts +class BaseField2 { + nodeName = "Base" /* Base */; + key; + label; + hideLabel; + placeholder; + optional; + description; + default; + constructor(model) { + this.key = model.key; + this.key = model.key; + this.label = model.label; + this.hideLabel = model.hideLabel; + this.placeholder = model.placeholder; + this.optional = model.optional; + this.description = model.description; + this.default = model.default; + } + toModel() { + return { + nodeName: this.nodeName, + key: this.key, + label: this.label, + hideLabel: this.hideLabel, + placeholder: this.placeholder, + optional: this.optional, + description: this.description, + default: this.default + }; + } +} + +class InputField2 extends BaseField2 { + nodeName = "Input" /* Input */; + component; + constructor(model) { + super(model); + this.component = model.component; + } + toModel() { + return { + ...super.toModel(), + component: this.component + }; + } +} + +class NumberField2 extends BaseField2 { + nodeName = "Number" /* Number */; +} + +class SelectField2 extends BaseField2 { + nodeName = "Select" /* Select */; + options; + constructor(model) { + super(model); + this.options = model.options; + } + toModel() { + return { + ...super.toModel(), + options: this.options + }; + } +} + +class BooleanField2 extends BaseField2 { + nodeName = "Boolean" /* Boolean */; + component; + constructor(model) { + super(model); + this.component = model.component ?? "checkbox"; + } + toModel() { + return { + ...super.toModel(), + component: this.component + }; + } +} + +class DateField2 extends BaseField2 { + nodeName = "Date" /* Date */; +} + +class ArrayField2 extends BaseField2 { + nodeName = "Array" /* Array */; + content; + constructor(model) { + super(model); + this.content = model.content; + } + toModel() { + return { + ...super.toModel(), + content: this.content.toModel() + }; + } +} + +class Form2 { + nodeName = "Form" /* Form */; + fields; + key; + title; + description; + submitBtnText; + constructor(model) { + this.fields = model.fields; + this.key = model.key; + this.title = model.title; + this.description = model.description; + this.submitBtnText = model.submitBtnText; + } + toModel() { + return { + nodeName: this.nodeName, + key: this.key, + title: this.title, + description: this.description, + submitBtnText: this.submitBtnText, + fields: this.fields.map((field) => field.toModel()) + }; + } +} +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/ui/worker/components/markdown.ts +class Markdown2 { + nodeName = "Markdown" /* Markdown */; + content; + constructor(content) { + this.content = content; + } + toModel() { + return { + nodeName: this.nodeName, + content: this.content + }; + } +} +// node_modules/.pnpm/@kksh+api@0.0.48_svelte@5.1.16_typescript@5.6.3/node_modules/@kksh/api/src/ui/worker/index.ts +var io = new WorkerChildIO; +var rpc = new RPCChannel(io, {}); +var api = rpc.getAPI(); +function expose(api2) { + rpc.expose(api2); +} +var event = constructEventAPI2(api.event); +var fetch = constructFetchAPI(api.fetch); +var path = constructPathAPI2(api.path); +var shell = constructShellAPI2(api.shell); +var toast = constructToastAPI(api.toast); +var updownload = constructUpdownloadAPI(api.updownload); +var { + db, + kv, + os, + clipboard, + dialog, + fs, + log, + notification, + sysInfo, + network, + system, + open, + utils, + app, + security, + workerUi: ui +} = api; + +// node_modules/.pnpm/filesize@10.1.6/node_modules/filesize/dist/filesize.esm.js +var ARRAY = "array"; +var BIT = "bit"; +var BITS = "bits"; +var BYTE = "byte"; +var BYTES = "bytes"; +var EMPTY = ""; +var EXPONENT = "exponent"; +var FUNCTION = "function"; +var IEC = "iec"; +var INVALID_NUMBER = "Invalid number"; +var INVALID_ROUND = "Invalid rounding method"; +var JEDEC = "jedec"; +var OBJECT = "object"; +var PERIOD = "."; +var ROUND = "round"; +var S = "s"; +var SI = "si"; +var SI_KBIT = "kbit"; +var SI_KBYTE = "kB"; +var SPACE = " "; +var STRING = "string"; +var ZERO = "0"; +var STRINGS = { + symbol: { + iec: { + bits: ["bit", "Kibit", "Mibit", "Gibit", "Tibit", "Pibit", "Eibit", "Zibit", "Yibit"], + bytes: ["B", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB", "ZiB", "YiB"] + }, + jedec: { + bits: ["bit", "Kbit", "Mbit", "Gbit", "Tbit", "Pbit", "Ebit", "Zbit", "Ybit"], + bytes: ["B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"] + } + }, + fullform: { + iec: ["", "kibi", "mebi", "gibi", "tebi", "pebi", "exbi", "zebi", "yobi"], + jedec: ["", "kilo", "mega", "giga", "tera", "peta", "exa", "zetta", "yotta"] + } +}; +function filesize(arg, { + bits = false, + pad = false, + base = -1, + round = 2, + locale = EMPTY, + localeOptions = {}, + separator = EMPTY, + spacer = SPACE, + symbols = {}, + standard = EMPTY, + output = STRING, + fullform = false, + fullforms = [], + exponent = -1, + roundingMethod = ROUND, + precision = 0 +} = {}) { + let e = exponent, num = Number(arg), result = [], val = 0, u = EMPTY; + if (standard === SI) { + base = 10; + standard = JEDEC; + } else if (standard === IEC || standard === JEDEC) { + base = 2; + } else if (base === 2) { + standard = IEC; + } else { + base = 10; + standard = JEDEC; + } + const ceil = base === 10 ? 1000 : 1024, full = fullform === true, neg = num < 0, roundingFunc = Math[roundingMethod]; + if (typeof arg !== "bigint" && isNaN(arg)) { + throw new TypeError(INVALID_NUMBER); + } + if (typeof roundingFunc !== FUNCTION) { + throw new TypeError(INVALID_ROUND); + } + if (neg) { + num = -num; + } + if (e === -1 || isNaN(e)) { + e = Math.floor(Math.log(num) / Math.log(ceil)); + if (e < 0) { + e = 0; + } + } + if (e > 8) { + if (precision > 0) { + precision += 8 - e; + } + e = 8; + } + if (output === EXPONENT) { + return e; + } + if (num === 0) { + result[0] = 0; + u = result[1] = STRINGS.symbol[standard][bits ? BITS : BYTES][e]; + } else { + val = num / (base === 2 ? Math.pow(2, e * 10) : Math.pow(1000, e)); + if (bits) { + val = val * 8; + if (val >= ceil && e < 8) { + val = val / ceil; + e++; + } + } + const p = Math.pow(10, e > 0 ? round : 0); + result[0] = roundingFunc(val * p) / p; + if (result[0] === ceil && e < 8 && exponent === -1) { + result[0] = 1; + e++; + } + u = result[1] = base === 10 && e === 1 ? bits ? SI_KBIT : SI_KBYTE : STRINGS.symbol[standard][bits ? BITS : BYTES][e]; + } + if (neg) { + result[0] = -result[0]; + } + if (precision > 0) { + result[0] = result[0].toPrecision(precision); + } + result[1] = symbols[result[1]] || result[1]; + if (locale === true) { + result[0] = result[0].toLocaleString(); + } else if (locale.length > 0) { + result[0] = result[0].toLocaleString(locale, localeOptions); + } else if (separator.length > 0) { + result[0] = result[0].toString().replace(PERIOD, separator); + } + if (pad && round > 0) { + const i = result[0].toString(), x = separator || ((i.match(/(\D)/g) || []).pop() || PERIOD), tmp = i.toString().split(x), s = tmp[1] || EMPTY, l = s.length, n = round - l; + result[0] = `${tmp[0]}${x}${s.padEnd(l + n, ZERO)}`; + } + if (full) { + result[1] = fullforms[e] ? fullforms[e] : STRINGS.fullform[standard][e] + (bits ? BIT : BYTE) + (result[0] === 1 ? EMPTY : S); + } + return output === ARRAY ? result : output === OBJECT ? { + value: result[0], + symbol: result[1], + exponent: e, + unit: u + } : result.join(spacer); +} + +// template-ext-src/video-info.ts +class VideoInfo extends WorkerExtension { + api; + apiProcess; + videoMetadata = {}; + async fillApi() { + if (this.api) + return; + const { rpcChannel, process, command } = await shell.createDenoRpcChannel("$EXTENSION/deno-src/index.ts", [], { + allowAllEnv: true, + allowAllFfi: true, + allowAllRead: true, + allowAllSys: true, + allowAllRun: true, + env: { + FFMPEG_PATH: "/opt/homebrew/bin/ffmpeg", + FFPROBE_PATH: "/opt/homebrew/bin/ffprobe" + } + }, {}); + command.stderr.on("data", (stderr) => { + console.warn("stderr", stderr); + }); + this.api = rpcChannel.getAPI(); + this.apiProcess = process; + } + async refreshList(paths) { + ui.render(new exports_list_view.List({ items: [] })); + if (!this.api) + await this.fillApi(); + ui.showLoadingBar(true); + return Promise.all(paths.map((p) => this.api?.readDefaultVideoMetadata(p))).then((metadatas) => metadatas.filter((m) => !!m)).then((metadatas) => { + this.videoMetadata = Object.fromEntries(paths.map((file, index) => [file, metadatas[index]])); + }).then(async () => { + return ui.render(new exports_list_view.List({ + detail: new exports_list_view.ItemDetail({ + width: 60, + children: [] + }), + items: await Promise.all(paths.map(async (file) => { + const baseName = await path.basename(file); + return new exports_list_view.Item({ + title: baseName, + value: file + }); + })) + })); + }).finally(() => { + ui.showLoadingBar(false); + console.log("finally, kill api process", this.apiProcess?.pid); + this.apiProcess?.kill(); + this.apiProcess = undefined; + this.api = undefined; + }); + } + async load() { + ui.render(new exports_list_view.List({ items: [] })); + await this.fillApi(); + ui.showLoadingBar(true); + const ffprobePath = await shell.whereIsCommand("ffprobe"); + console.log("ffprobePath", ffprobePath); + if (!ffprobePath) { + return toast.error("ffprobe not found in path"); + } + let videoPaths = (await Promise.all([ + system.getSelectedFilesInFileExplorer().catch(() => { + return []; + }), + clipboard.hasFiles().then((has) => has ? clipboard.readFiles() : Promise.resolve([])) + ])).flat(); + console.log("videoPaths", videoPaths); + videoPaths = Array.from(new Set(videoPaths)); + this.refreshList(videoPaths); + } + async onFilesDropped(paths) { + return this.refreshList(paths); + } + async onHighlightedListItemChanged(filePath) { + const metadata = this.videoMetadata[filePath]; + const metadataLabels = [ + new exports_list_view.ItemDetailMetadataLabel({ + title: "Resolution", + text: `${metadata.width}x${metadata.height}` + }), + new exports_list_view.ItemDetailMetadataLabel({ + title: "Size", + text: metadata.size ? filesize(metadata.size) : "N/A" + }), + genMetadataLabel(metadata, "Average Frame Rate", "avgFrameRate"), + new exports_list_view.ItemDetailMetadataLabel({ + title: "Bit Rate", + text: metadata.bitRate ? `${filesize(metadata.bitRate / 8, { bits: true })}/s` : "N/A" + }), + genMetadataLabel(metadata, "Bits Per Raw Sample", "bitsPerRawSample"), + genMetadataLabel(metadata, "Codec", "codec"), + genMetadataLabel(metadata, "Codec Long Name", "codecLongName"), + genMetadataLabel(metadata, "Codec Tag", "codecTag"), + genMetadataLabel(metadata, "Codec Tag String", "codecTagString"), + genMetadataLabel(metadata, "Codec Type", "codecType"), + genMetadataLabel(metadata, "Duration", "duration"), + genMetadataLabel(metadata, "File Path", "filePath"), + genMetadataLabel(metadata, "Format Long Name", "formatLongName"), + genMetadataLabel(metadata, "Format Name", "formatName"), + genMetadataLabel(metadata, "Number Of Frames", "numberOfFrames"), + genMetadataLabel(metadata, "Number Of Streams", "numberOfStreams"), + genMetadataLabel(metadata, "Numeric Average Frame Rate", "numericAvgFrameRate"), + genMetadataLabel(metadata, "Profile", "profile"), + genMetadataLabel(metadata, "Raw Frame Rate", "rFrameRate"), + genMetadataLabel(metadata, "Start Time", "startTime"), + genMetadataLabel(metadata, "Time Base", "timeBase") + ].filter((label) => label !== null); + return ui.render(new exports_list_view.List({ + inherits: ["items"], + detail: new exports_list_view.ItemDetail({ + width: 55, + children: [new exports_list_view.ItemDetailMetadata(metadataLabels)] + }) + })); + } + async onBeforeGoBack() { + console.log("onBeforeGoBack, kill api process", this.apiProcess?.pid); + await this.apiProcess?.kill(); + } + async onListItemSelected(value) { + return Promise.resolve(); + } +} +function genMetadataLabel(metadata, title, key) { + if (!metadata[key]) + return null; + return new exports_list_view.ItemDetailMetadataLabel({ + title, + text: typeof metadata[key] === "number" ? Number.isInteger(metadata[key]) ? metadata[key].toString() : metadata[key].toFixed(3).toString() : metadata[key].toString() + }); +} +expose(new VideoInfo); diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 0000000..ff41261 --- /dev/null +++ b/eslint.config.js @@ -0,0 +1,38 @@ +import js from '@eslint/js'; +import ts from 'typescript-eslint'; +import svelte from 'eslint-plugin-svelte'; +import prettier from 'eslint-config-prettier'; +import globals from 'globals'; + +/** @type {import('eslint').Linter.Config[]} */ +export default [ + js.configs.recommended, + ...ts.configs.recommended, + ...svelte.configs['flat/recommended'], + prettier, + ...svelte.configs['flat/prettier'], + { + languageOptions: { + globals: { + ...globals.browser, + ...globals.node + } + } + }, + { + files: ['**/*.svelte'], + languageOptions: { + parserOptions: { + parser: ts.parser + } + } + }, + { + ignores: ['build/', '.svelte-kit/', 'dist/'] + }, + { + rules: { + '@typescript-eslint/no-unused-vars': 'off' + } + } +]; diff --git a/package.json b/package.json new file mode 100644 index 0000000..0a8866d --- /dev/null +++ b/package.json @@ -0,0 +1,134 @@ +{ + "$schema": "https://schema.kunkun.sh", + "name": "kunkun-ext-video-processing", + "version": "0.0.7", + "repository": "https://github.com/kunkunsh/kunkun-ext-video-processing", + "kunkun": { + "name": "Video Processing", + "shortDescription": "Video Info, Conversion and more", + "longDescription": "Video conversion, compression, and more", + "identifier": "video-processing", + "icon": { + "type": "iconify", + "value": "mingcute:video-fill" + }, + "demoImages": [], + "permissions": [ + "clipboard:read-files", + "system:fs", + "notification:all", + "dialog:all", + "event:drag-drop", + { + "permission": "shell:deno:spawn", + "allow": [ + { + "path": "$EXTENSION/deno-src/index.ts", + "env": "*", + "ffi": "*", + "read": "*", + "sys": "*", + "run": "*" + } + ] + }, + "shell:stdin-write", + "shell:kill", + { + "permission": "shell:execute", + "allow": [ + { + "cmd": { + "program": "ffprobe", + "args": [ + "--help" + ] + } + } + ] + } + ], + "customUiCmds": [ + { + "main": "/", + "dist": "build", + "devMain": "http://localhost:5173", + "name": "Video Conversion", + "cmds": [] + } + ], + "templateUiCmds": [ + { + "name": "Video Info", + "main": "dist/video-info.js", + "cmds": [] + } + ] + }, + "scripts": { + "dev": "vite dev", + "dev:template": "bun scripts/build-template-ext.ts dev", + "build:template": "bun scripts/build-template-ext.ts", + "build:custom": "vite build", + "build": "bun scripts/build.ts", + "preview": "vite preview", + "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", + "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", + "lint": "prettier --check . && eslint .", + "format": "prettier --write ." + }, + "dependencies": { + "@hk/photographer-toolbox": "npm:@jsr/hk__photographer-toolbox@^0.1.8", + "@iconify/svelte": "^4.0.2", + "@kksh/api": "^0.0.48", + "@kksh/svelte5": "^0.1.9", + "@tanstack/table-core": "^8.20.5", + "clsx": "^2.1.1", + "embla-carousel-svelte": "^8.3.1", + "filesize": "^10.1.6", + "lucide-svelte": "^0.416.0", + "mode-watcher": "^0.4.0", + "paneforge": "^0.0.6", + "svelte-radix": "^2.0.1", + "svelte-sonner": "^0.3.28", + "tailwind-merge": "^2.4.0", + "tailwind-variants": "^0.2.1", + "valibot": "^0.42.1", + "vaul-svelte": "^0.3.2" + }, + "devDependencies": { + "@sveltejs/adapter-auto": "^3.3.1", + "@sveltejs/adapter-static": "^3.0.6", + "@sveltejs/kit": "^2.0.0", + "@sveltejs/vite-plugin-svelte": "^4.0.0", + "@tailwindcss/typography": "^0.5.13", + "@types/eslint": "^9.6.0", + "autoprefixer": "^10.4.19", + "bits-ui": "1.0.0-next.54", + "eslint": "^9.0.0", + "eslint-config-prettier": "^9.1.0", + "eslint-plugin-svelte": "^2.36.0", + "formsnap": "2.0.0-next.1", + "globals": "^15.0.0", + "postcss": "^8.4.38", + "prettier": "^3.1.1", + "prettier-plugin-svelte": "^3.1.2", + "prettier-plugin-tailwindcss": "^0.6.4", + "svelte": "^5.0.0", + "svelte-check": "^4.0.0", + "sveltekit-superforms": "^2.20.0", + "tailwindcss": "^3.4.4", + "typescript": "^5.0.0", + "typescript-eslint": "^8.0.0-alpha.20", + "vite": "^5.0.3", + "zod": "^3.23.8" + }, + "type": "module", + "files": [ + "build", + "dist", + "deno-src", + ".gitignore" + ], + "packageManager": "pnpm@9.15.3" +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 0000000..3fa5eec --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,4619 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + '@hk/photographer-toolbox': + specifier: npm:@jsr/hk__photographer-toolbox@^0.1.8 + version: '@jsr/hk__photographer-toolbox@0.1.8' + '@iconify/svelte': + specifier: ^4.0.2 + version: 4.0.2(svelte@5.1.16) + '@kksh/api': + specifier: ^0.0.48 + version: 0.0.48(svelte@5.1.16)(typescript@5.6.3) + '@kksh/svelte5': + specifier: ^0.1.9 + version: 0.1.9(lucide-svelte@0.416.0(svelte@5.1.16))(svelte-sonner@0.3.28(svelte@5.1.16))(svelte@5.1.16) + '@tanstack/table-core': + specifier: ^8.20.5 + version: 8.20.5 + clsx: + specifier: ^2.1.1 + version: 2.1.1 + embla-carousel-svelte: + specifier: ^8.3.1 + version: 8.3.1(svelte@5.1.16) + filesize: + specifier: ^10.1.6 + version: 10.1.6 + lucide-svelte: + specifier: ^0.416.0 + version: 0.416.0(svelte@5.1.16) + mode-watcher: + specifier: ^0.4.0 + version: 0.4.1(svelte@5.1.16) + paneforge: + specifier: ^0.0.6 + version: 0.0.6(svelte@5.1.16) + svelte-radix: + specifier: ^2.0.1 + version: 2.0.1(svelte@5.1.16) + svelte-sonner: + specifier: ^0.3.28 + version: 0.3.28(svelte@5.1.16) + tailwind-merge: + specifier: ^2.4.0 + version: 2.5.4 + tailwind-variants: + specifier: ^0.2.1 + version: 0.2.1(tailwindcss@3.4.14) + valibot: + specifier: ^0.42.1 + version: 0.42.1(typescript@5.6.3) + vaul-svelte: + specifier: ^0.3.2 + version: 0.3.2(svelte@5.1.16) + devDependencies: + '@sveltejs/adapter-auto': + specifier: ^3.3.1 + version: 3.3.1(@sveltejs/kit@2.8.1(@sveltejs/vite-plugin-svelte@4.0.0(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)))(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14))) + '@sveltejs/adapter-static': + specifier: ^3.0.6 + version: 3.0.6(@sveltejs/kit@2.8.1(@sveltejs/vite-plugin-svelte@4.0.0(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)))(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14))) + '@sveltejs/kit': + specifier: ^2.0.0 + version: 2.8.1(@sveltejs/vite-plugin-svelte@4.0.0(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)))(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)) + '@sveltejs/vite-plugin-svelte': + specifier: ^4.0.0 + version: 4.0.0(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)) + '@tailwindcss/typography': + specifier: ^0.5.13 + version: 0.5.15(tailwindcss@3.4.14) + '@types/eslint': + specifier: ^9.6.0 + version: 9.6.1 + autoprefixer: + specifier: ^10.4.19 + version: 10.4.20(postcss@8.4.49) + bits-ui: + specifier: 1.0.0-next.54 + version: 1.0.0-next.54(svelte@5.1.16) + eslint: + specifier: ^9.0.0 + version: 9.14.0(jiti@1.21.6) + eslint-config-prettier: + specifier: ^9.1.0 + version: 9.1.0(eslint@9.14.0(jiti@1.21.6)) + eslint-plugin-svelte: + specifier: ^2.36.0 + version: 2.46.0(eslint@9.14.0(jiti@1.21.6))(svelte@5.1.16) + formsnap: + specifier: 2.0.0-next.1 + version: 2.0.0-next.1(svelte@5.1.16)(sveltekit-superforms@2.20.0(@sveltejs/kit@2.8.1(@sveltejs/vite-plugin-svelte@4.0.0(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)))(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)))(@types/json-schema@7.0.15)(svelte@5.1.16)(typescript@5.6.3)) + globals: + specifier: ^15.0.0 + version: 15.12.0 + postcss: + specifier: ^8.4.38 + version: 8.4.49 + prettier: + specifier: ^3.1.1 + version: 3.3.3 + prettier-plugin-svelte: + specifier: ^3.1.2 + version: 3.2.8(prettier@3.3.3)(svelte@5.1.16) + prettier-plugin-tailwindcss: + specifier: ^0.6.4 + version: 0.6.8(prettier-plugin-svelte@3.2.8(prettier@3.3.3)(svelte@5.1.16))(prettier@3.3.3) + svelte: + specifier: ^5.0.0 + version: 5.1.16 + svelte-check: + specifier: ^4.0.0 + version: 4.0.7(picomatch@4.0.2)(svelte@5.1.16)(typescript@5.6.3) + sveltekit-superforms: + specifier: ^2.20.0 + version: 2.20.0(@sveltejs/kit@2.8.1(@sveltejs/vite-plugin-svelte@4.0.0(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)))(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)))(@types/json-schema@7.0.15)(svelte@5.1.16)(typescript@5.6.3) + tailwindcss: + specifier: ^3.4.4 + version: 3.4.14 + typescript: + specifier: ^5.0.0 + version: 5.6.3 + typescript-eslint: + specifier: ^8.0.0-alpha.20 + version: 8.14.0(eslint@9.14.0(jiti@1.21.6))(typescript@5.6.3) + vite: + specifier: ^5.0.3 + version: 5.4.11(@types/node@20.12.14) + zod: + specifier: ^3.23.8 + version: 3.23.8 + +packages: + + '@alloc/quick-lru@5.2.0': + resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} + engines: {node: '>=10'} + + '@ampproject/remapping@2.3.0': + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} + engines: {node: '>=6.0.0'} + + '@ark/schema@0.10.0': + resolution: {integrity: sha512-zpfXwWLOzj9aUK+dXQ6aleJAOgle4/WrHDop5CMX2M88dFQ85NdH8O0v0pvMAQnfFcaQAZ/nVDYLlBJsFc09XA==} + + '@ark/util@0.10.0': + resolution: {integrity: sha512-uK+9VU5doGMYOoOZVE+XaSs1vYACoaEJdrDkuBx26S4X7y3ChyKsPnIg/9pIw2vUySph1GkAXbvBnfVE2GmXgQ==} + + '@babel/runtime@7.26.0': + resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==} + engines: {node: '>=6.9.0'} + + '@effect/schema@0.75.5': + resolution: {integrity: sha512-TQInulTVCuF+9EIbJpyLP6dvxbQJMphrnRqgexm/Ze39rSjfhJuufF7XvU3SxTgg3HnL7B/kpORTJbHhlE6thw==} + peerDependencies: + effect: ^3.9.2 + + '@emnapi/runtime@1.3.1': + resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==} + + '@esbuild/aix-ppc64@0.21.5': + resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.21.5': + resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.21.5': + resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.21.5': + resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.21.5': + resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.21.5': + resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.21.5': + resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.21.5': + resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.21.5': + resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.21.5': + resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.21.5': + resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.21.5': + resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.21.5': + resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.21.5': + resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.21.5': + resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.21.5': + resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.21.5': + resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-x64@0.21.5': + resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-x64@0.21.5': + resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + + '@esbuild/sunos-x64@0.21.5': + resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.21.5': + resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.21.5': + resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.21.5': + resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + + '@eslint-community/eslint-utils@4.4.1': + resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + + '@eslint-community/regexpp@4.12.1': + resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + '@eslint/config-array@0.18.0': + resolution: {integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@0.7.0': + resolution: {integrity: sha512-xp5Jirz5DyPYlPiKat8jaq0EmYvDXKKpzTbxXMpT9eqlRJkRKIz9AGMdlvYjih+im+QlhWrpvVjl8IPC/lHlUw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/eslintrc@3.1.0': + resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/js@9.14.0': + resolution: {integrity: sha512-pFoEtFWCPyDOl+C6Ift+wC7Ro89otjigCf5vcuWqWgqNSQbRrpjSvdeE6ofLz4dHmyxD5f7gIdGT4+p36L6Twg==} + 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/plugin-kit@0.2.2': + resolution: {integrity: sha512-CXtq5nR4Su+2I47WPOlWud98Y5Lv8Kyxp2ukhgFx/eW6Blm18VXJO5WuQylPugRo8nbluoi6GvvxBLqHcvqUUw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@exodus/schemasafe@1.3.0': + resolution: {integrity: sha512-5Aap/GaRupgNx/feGBwLLTVv8OQFfv3pq2lPRzPg9R+IOBnDgghTGW7l7EuVXOvg5cc/xSAlRW8rBrjIC3Nvqw==} + + '@floating-ui/core@1.6.8': + resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==} + + '@floating-ui/dom@1.6.12': + resolution: {integrity: sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==} + + '@floating-ui/utils@0.2.8': + resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==} + + '@gcornut/valibot-json-schema@0.31.0': + resolution: {integrity: sha512-3xGptCurm23e7nuPQkdrE5rEs1FeTPHhAUsBuwwqG4/YeZLwJOoYZv+fmsppUEfo5y9lzUwNQrNqLS/q7HMc7g==} + hasBin: true + + '@hapi/hoek@9.3.0': + resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} + + '@hapi/topo@5.1.0': + resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} + + '@humanfs/core@0.19.1': + resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} + engines: {node: '>=18.18.0'} + + '@humanfs/node@0.16.6': + resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} + engines: {node: '>=18.18.0'} + + '@humanwhocodes/module-importer@1.0.1': + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + + '@humanwhocodes/retry@0.3.1': + resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} + engines: {node: '>=18.18'} + + '@humanwhocodes/retry@0.4.1': + resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==} + engines: {node: '>=18.18'} + + '@iconify/svelte@4.0.2': + resolution: {integrity: sha512-6BSrU85FzGfhQD3bTXpnkCCvBAglEt8T9QednVnXAYm4C+d3464y+pYMzhQNJm5mPId2cuiw+2wXlDflXllHDw==} + peerDependencies: + svelte: '>4.0.0' + + '@iconify/types@2.0.0': + resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==} + + '@img/sharp-darwin-arm64@0.33.5': + resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [darwin] + + '@img/sharp-darwin-x64@0.33.5': + resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-darwin-arm64@1.0.4': + resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==} + cpu: [arm64] + os: [darwin] + + '@img/sharp-libvips-darwin-x64@1.0.4': + resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==} + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-linux-arm64@1.0.4': + resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==} + cpu: [arm64] + os: [linux] + + '@img/sharp-libvips-linux-arm@1.0.5': + resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==} + cpu: [arm] + os: [linux] + + '@img/sharp-libvips-linux-s390x@1.0.4': + resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==} + cpu: [s390x] + os: [linux] + + '@img/sharp-libvips-linux-x64@1.0.4': + resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==} + cpu: [x64] + os: [linux] + + '@img/sharp-libvips-linuxmusl-arm64@1.0.4': + resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==} + cpu: [arm64] + os: [linux] + + '@img/sharp-libvips-linuxmusl-x64@1.0.4': + resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==} + cpu: [x64] + os: [linux] + + '@img/sharp-linux-arm64@0.33.5': + resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [linux] + + '@img/sharp-linux-arm@0.33.5': + resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm] + os: [linux] + + '@img/sharp-linux-s390x@0.33.5': + resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [s390x] + os: [linux] + + '@img/sharp-linux-x64@0.33.5': + resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [linux] + + '@img/sharp-linuxmusl-arm64@0.33.5': + resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [linux] + + '@img/sharp-linuxmusl-x64@0.33.5': + resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [linux] + + '@img/sharp-wasm32@0.33.5': + resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [wasm32] + + '@img/sharp-win32-ia32@0.33.5': + resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [ia32] + os: [win32] + + '@img/sharp-win32-x64@0.33.5': + resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [win32] + + '@internationalized/date@3.5.6': + resolution: {integrity: sha512-jLxQjefH9VI5P9UQuqB6qNKnvFt1Ky1TPIzHGsIlCi7sZZoMR8SdYbBGRvM0y+Jtb+ez4ieBzmiAUcpmPYpyOw==} + + '@isaacs/cliui@8.0.2': + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + + '@jridgewell/gen-mapping@0.3.5': + resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} + engines: {node: '>=6.0.0'} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/set-array@1.2.1': + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} + + '@jridgewell/sourcemap-codec@1.5.0': + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + + '@jridgewell/trace-mapping@0.3.25': + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + + '@jsr/hk__photographer-toolbox@0.1.8': + resolution: {integrity: sha512-rDlozMI+ASbXVp0ft365EJRFDoEnLKbEE49Gw24A7sqNMc+CpZpRy5/G8whwk2jlUeg5OiFvu8PCi9pwWwQTaQ==, tarball: https://npm.jsr.io/~/11/@jsr/hk__photographer-toolbox/0.1.8.tgz} + + '@jsr/valibot__valibot@0.42.1': + resolution: {integrity: sha512-JjIzyXUQTkmTbiDXUJoFHDigviK12MUd69lGA28fGuhfivzvFv8TgPxkfH3I0wL0skCc5Rl5+g1IFnwYwVZWRw==, tarball: https://npm.jsr.io/~/11/@jsr/valibot__valibot/0.42.1.tgz} + + '@kksh/api@0.0.48': + resolution: {integrity: sha512-gdH9TqMA/dI37vke0Jk629h3iKLEWk3RPGZK5ArK0p0QkfMTxd4CqjvWwDmL8yO6CKy7noC1rptDdHYWjIq2pQ==} + + '@kksh/svelte5@0.1.9': + resolution: {integrity: sha512-k6NNyLHCfoC1XQ09dWBtZJDYOLJiXZ9KxmSwtZbu4rdepoY0tMYql+odj92w2tjhzM6Q/LHdtq6DNz67Fxf20Q==} + peerDependencies: + lucide-svelte: ^0.454.0 + svelte: ^5.1.10 + svelte-sonner: ^0.3.28 + + '@melt-ui/svelte@0.76.2': + resolution: {integrity: sha512-7SbOa11tXUS95T3fReL+dwDs5FyJtCEqrqG3inRziDws346SYLsxOQ6HmX+4BkIsQh1R8U3XNa+EMmdMt38lMA==} + peerDependencies: + svelte: '>=3 <5' + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@photostructure/tz-lookup@11.0.0': + resolution: {integrity: sha512-QMV5/dWtY/MdVPXZs/EApqzyhnqDq1keYEqpS+Xj2uidyaqw2Nk/fWcsszdruIXjdqp1VoWNzsgrO6bUHU1mFw==} + + '@pkgjs/parseargs@0.11.0': + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + + '@polka/url@1.0.0-next.28': + resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==} + + '@poppinss/macroable@1.0.3': + resolution: {integrity: sha512-B4iV6QxW//Fn17+qF1EMZRmoThIUJlCtcO85yoRDJnMyHeAthjz4ig9OTkfGGXKtQhcdPX0me75gU5K9J897+w==} + engines: {node: '>=18.16.0'} + + '@rollup/rollup-android-arm-eabi@4.26.0': + resolution: {integrity: sha512-gJNwtPDGEaOEgejbaseY6xMFu+CPltsc8/T+diUTTbOQLqD+bnrJq9ulH6WD69TqwqWmrfRAtUv30cCFZlbGTQ==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.26.0': + resolution: {integrity: sha512-YJa5Gy8mEZgz5JquFruhJODMq3lTHWLm1fOy+HIANquLzfIOzE9RA5ie3JjCdVb9r46qfAQY/l947V0zfGJ0OQ==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.26.0': + resolution: {integrity: sha512-ErTASs8YKbqTBoPLp/kA1B1Um5YSom8QAc4rKhg7b9tyyVqDBlQxy7Bf2wW7yIlPGPg2UODDQcbkTlruPzDosw==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.26.0': + resolution: {integrity: sha512-wbgkYDHcdWW+NqP2mnf2NOuEbOLzDblalrOWcPyY6+BRbVhliavon15UploG7PpBRQ2bZJnbmh8o3yLoBvDIHA==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-freebsd-arm64@4.26.0': + resolution: {integrity: sha512-Y9vpjfp9CDkAG4q/uwuhZk96LP11fBz/bYdyg9oaHYhtGZp7NrbkQrj/66DYMMP2Yo/QPAsVHkV891KyO52fhg==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.26.0': + resolution: {integrity: sha512-A/jvfCZ55EYPsqeaAt/yDAG4q5tt1ZboWMHEvKAH9Zl92DWvMIbnZe/f/eOXze65aJaaKbL+YeM0Hz4kLQvdwg==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.26.0': + resolution: {integrity: sha512-paHF1bMXKDuizaMODm2bBTjRiHxESWiIyIdMugKeLnjuS1TCS54MF5+Y5Dx8Ui/1RBPVRE09i5OUlaLnv8OGnA==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.26.0': + resolution: {integrity: sha512-cwxiHZU1GAs+TMxvgPfUDtVZjdBdTsQwVnNlzRXC5QzIJ6nhfB4I1ahKoe9yPmoaA/Vhf7m9dB1chGPpDRdGXg==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.26.0': + resolution: {integrity: sha512-4daeEUQutGRCW/9zEo8JtdAgtJ1q2g5oHaoQaZbMSKaIWKDQwQ3Yx0/3jJNmpzrsScIPtx/V+1AfibLisb3AMQ==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.26.0': + resolution: {integrity: sha512-eGkX7zzkNxvvS05ROzJ/cO/AKqNvR/7t1jA3VZDi2vRniLKwAWxUr85fH3NsvtxU5vnUUKFHKh8flIBdlo2b3Q==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-powerpc64le-gnu@4.26.0': + resolution: {integrity: sha512-Odp/lgHbW/mAqw/pU21goo5ruWsytP7/HCC/liOt0zcGG0llYWKrd10k9Fj0pdj3prQ63N5yQLCLiE7HTX+MYw==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.26.0': + resolution: {integrity: sha512-MBR2ZhCTzUgVD0OJdTzNeF4+zsVogIR1U/FsyuFerwcqjZGvg2nYe24SAHp8O5sN8ZkRVbHwlYeHqcSQ8tcYew==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.26.0': + resolution: {integrity: sha512-YYcg8MkbN17fMbRMZuxwmxWqsmQufh3ZJFxFGoHjrE7bv0X+T6l3glcdzd7IKLiwhT+PZOJCblpnNlz1/C3kGQ==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.26.0': + resolution: {integrity: sha512-ZuwpfjCwjPkAOxpjAEjabg6LRSfL7cAJb6gSQGZYjGhadlzKKywDkCUnJ+KEfrNY1jH5EEoSIKLCb572jSiglA==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.26.0': + resolution: {integrity: sha512-+HJD2lFS86qkeF8kNu0kALtifMpPCZU80HvwztIKnYwym3KnA1os6nsX4BGSTLtS2QVAGG1P3guRgsYyMA0Yhg==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-win32-arm64-msvc@4.26.0': + resolution: {integrity: sha512-WUQzVFWPSw2uJzX4j6YEbMAiLbs0BUysgysh8s817doAYhR5ybqTI1wtKARQKo6cGop3pHnrUJPFCsXdoFaimQ==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.26.0': + resolution: {integrity: sha512-D4CxkazFKBfN1akAIY6ieyOqzoOoBV1OICxgUblWxff/pSjCA2khXlASUx7mK6W1oP4McqhgcCsu6QaLj3WMWg==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.26.0': + resolution: {integrity: sha512-2x8MO1rm4PGEP0xWbubJW5RtbNLk3puzAMaLQd3B3JHVw4KcHlmXcO+Wewx9zCoo7EUFiMlu/aZbCJ7VjMzAag==} + cpu: [x64] + os: [win32] + + '@sideway/address@4.1.5': + resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==} + + '@sideway/formula@3.0.1': + resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} + + '@sideway/pinpoint@2.0.0': + resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} + + '@sinclair/typebox@0.32.35': + resolution: {integrity: sha512-Ul3YyOTU++to8cgNkttakC0dWvpERr6RYoHO2W47DLbFvrwBDJUY31B1sImH6JZSYc4Kt4PyHtoPNu+vL2r2dA==} + + '@sveltejs/adapter-auto@3.3.1': + resolution: {integrity: sha512-5Sc7WAxYdL6q9j/+D0jJKjGREGlfIevDyHSQ2eNETHcB1TKlQWHcAo8AS8H1QdjNvSXpvOwNjykDUHPEAyGgdQ==} + peerDependencies: + '@sveltejs/kit': ^2.0.0 + + '@sveltejs/adapter-static@3.0.6': + resolution: {integrity: sha512-MGJcesnJWj7FxDcB/GbrdYD3q24Uk0PIL4QIX149ku+hlJuj//nxUbb0HxUTpjkecWfHjVveSUnUaQWnPRXlpg==} + peerDependencies: + '@sveltejs/kit': ^2.0.0 + + '@sveltejs/kit@2.8.1': + resolution: {integrity: sha512-uuOfFwZ4xvnfPsiTB6a4H1ljjTUksGhWnYq5X/Y9z4x5+3uM2Md8q/YVeHL+7w+mygAwoEFdgKZ8YkUuk+VKww==} + engines: {node: '>=18.13'} + hasBin: true + peerDependencies: + '@sveltejs/vite-plugin-svelte': ^3.0.0 || ^4.0.0-next.1 + svelte: ^4.0.0 || ^5.0.0-next.0 + vite: ^5.0.3 + + '@sveltejs/vite-plugin-svelte-inspector@3.0.1': + resolution: {integrity: sha512-2CKypmj1sM4GE7HjllT7UKmo4Q6L5xFRd7VMGEWhYnZ+wc6AUVU01IBd7yUi6WnFndEwWoMNOd6e8UjoN0nbvQ==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22} + peerDependencies: + '@sveltejs/vite-plugin-svelte': ^4.0.0-next.0||^4.0.0 + svelte: ^5.0.0-next.96 || ^5.0.0 + vite: ^5.0.0 + + '@sveltejs/vite-plugin-svelte@4.0.0': + resolution: {integrity: sha512-kpVJwF+gNiMEsoHaw+FJL76IYiwBikkxYU83+BpqQLdVMff19KeRKLd2wisS8niNBMJ2omv5gG+iGDDwd8jzag==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22} + peerDependencies: + svelte: ^5.0.0-next.96 || ^5.0.0 + vite: ^5.0.0 + + '@swc/helpers@0.5.15': + resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==} + + '@tailwindcss/typography@0.5.15': + resolution: {integrity: sha512-AqhlCXl+8grUz8uqExv5OTtgpjuVIwFTSXTrh8y9/pw6q2ek7fJ+Y8ZEVw7EB2DCcuCOtEjf9w3+J3rzts01uA==} + peerDependencies: + tailwindcss: '>=3.0.0 || insiders || >=4.0.0-alpha.20' + + '@tanstack/table-core@8.20.5': + resolution: {integrity: sha512-P9dF7XbibHph2PFRz8gfBKEXEY/HJPOhym8CHmjF8y3q5mWpKx9xtZapXQUWCgkqvsK0R46Azuz+VaxD4Xl+Tg==} + engines: {node: '>=12'} + + '@tauri-apps/api@2.0.1': + resolution: {integrity: sha512-eoQWT+Tq1qSwQpHV+nw1eNYe5B/nm1PoRjQCRiEOS12I1b+X4PUcREfXVX8dPcBT6GrzWGDtaecY0+1p0Rfqlw==} + + '@tauri-apps/api@2.1.1': + resolution: {integrity: sha512-fzUfFFKo4lknXGJq8qrCidkUcKcH2UHhfaaCNt4GzgzGaW2iS26uFOg4tS3H4P8D6ZEeUxtiD5z0nwFF0UN30A==} + + '@tauri-apps/cli-darwin-arm64@2.1.0': + resolution: {integrity: sha512-ESc6J6CE8hl1yKH2vJ+ALF+thq4Be+DM1mvmTyUCQObvezNCNhzfS6abIUd3ou4x5RGH51ouiANeT3wekU6dCw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@tauri-apps/cli-darwin-x64@2.1.0': + resolution: {integrity: sha512-TasHS442DFs8cSH2eUQzuDBXUST4ECjCd0yyP+zZzvAruiB0Bg+c8A+I/EnqCvBQ2G2yvWLYG8q/LI7c87A5UA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@tauri-apps/cli-linux-arm-gnueabihf@2.1.0': + resolution: {integrity: sha512-aP7ZBGNL4ny07Cbb6kKpUOSrmhcIK2KhjviTzYlh+pPhAptxnC78xQGD3zKQkTi2WliJLPmBYbOHWWQa57lQ9w==} + engines: {node: '>= 10'} + cpu: [arm] + os: [linux] + + '@tauri-apps/cli-linux-arm64-gnu@2.1.0': + resolution: {integrity: sha512-ZTdgD5gLeMCzndMT2f358EkoYkZ5T+Qy6zPzU+l5vv5M7dHVN9ZmblNAYYXmoOuw7y+BY4X/rZvHV9pcGrcanQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@tauri-apps/cli-linux-arm64-musl@2.1.0': + resolution: {integrity: sha512-NzwqjUCilhnhJzusz3d/0i0F1GFrwCQbkwR6yAHUxItESbsGYkZRJk0yMEWkg3PzFnyK4cWTlQJMEU52TjhEzA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@tauri-apps/cli-linux-x64-gnu@2.1.0': + resolution: {integrity: sha512-TyiIpMEtZxNOQmuFyfJwaaYbg3movSthpBJLIdPlKxSAB2BW0VWLY3/ZfIxm/G2YGHyREkjJvimzYE0i37PnMA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@tauri-apps/cli-linux-x64-musl@2.1.0': + resolution: {integrity: sha512-/dQd0TlaxBdJACrR72DhynWftzHDaX32eBtS5WBrNJ+nnNb+znM3gON6nJ9tSE9jgDa6n1v2BkI/oIDtypfUXw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@tauri-apps/cli-win32-arm64-msvc@2.1.0': + resolution: {integrity: sha512-NdQJO7SmdYqOcE+JPU7bwg7+odfZMWO6g8xF9SXYCMdUzvM2Gv/AQfikNXz5yS7ralRhNFuW32i5dcHlxh4pDg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@tauri-apps/cli-win32-ia32-msvc@2.1.0': + resolution: {integrity: sha512-f5h8gKT/cB8s1ticFRUpNmHqkmaLutT62oFDB7N//2YTXnxst7EpMIn1w+QimxTvTk2gcx6EcW6bEk/y2hZGzg==} + engines: {node: '>= 10'} + cpu: [ia32] + os: [win32] + + '@tauri-apps/cli-win32-x64-msvc@2.1.0': + resolution: {integrity: sha512-P/+LrdSSb5Xbho1LRP4haBjFHdyPdjWvGgeopL96OVtrFpYnfC+RctB45z2V2XxqFk3HweDDxk266btjttfjGw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@tauri-apps/cli@2.1.0': + resolution: {integrity: sha512-K2VhcKqBhAeS5pNOVdnR/xQRU6jwpgmkSL2ejHXcl0m+kaTggT0WRDQnFtPq6NljA7aE03cvwsbCAoFG7vtkJw==} + engines: {node: '>= 10'} + hasBin: true + + '@tauri-apps/plugin-deep-link@2.2.0': + resolution: {integrity: sha512-H6mkxr2KZ3XJcKL44tiq6cOjCw9DL8OgU1xjn3j26Qsn+H/roPFiyhR7CHuB8Ar+sQFj4YVlfmJwtBajK2FETQ==} + + '@tauri-apps/plugin-dialog@2.2.0': + resolution: {integrity: sha512-6bLkYK68zyK31418AK5fNccCdVuRnNpbxquCl8IqgFByOgWFivbiIlvb79wpSXi0O+8k8RCSsIpOquebusRVSg==} + + '@tauri-apps/plugin-fs@2.2.0': + resolution: {integrity: sha512-+08mApuONKI8/sCNEZ6AR8vf5vI9DXD4YfrQ9NQmhRxYKMLVhRW164vdW5BSLmMpuevftpQ2FVoL9EFkfG9Z+g==} + + '@tauri-apps/plugin-global-shortcut@2.2.0': + resolution: {integrity: sha512-clI9Bg/BcxWXNDK+ij601o1qC2WxMEy8ovhGgEW5Ai17oPy0KK8uwzmc59KiVnOYKpBWHCUPqBxG+KBNUFXgzw==} + + '@tauri-apps/plugin-http@2.2.0': + resolution: {integrity: sha512-ZY6sIHhgu8hcu6BkkegoiOEbvOsQFSVcK8J7l+g9RNHrkhl5uzpNIytR4R/H50fj7gyG80DJvrXDx/LBo7Easw==} + + '@tauri-apps/plugin-log@2.2.0': + resolution: {integrity: sha512-g6CsQAR1lsm5ABSZZxpM/iCn86GrMDTTlhj7GPkZkYBRSm3+WczfOAl7SV7HDn77tOKCzhZffwI5uHfRoHutrw==} + + '@tauri-apps/plugin-notification@2.2.0': + resolution: {integrity: sha512-uhE3a2gFlqwiWhY/JbhXOF13K4iILEYxUk0D2Y+q69HP6tnfPqKCuNTHxDM0H+oFAakXESNmJVnYw0Vi4IrMMQ==} + + '@tauri-apps/plugin-os@2.2.0': + resolution: {integrity: sha512-HszbCdbisMlu5QhCNAN8YIWyz2v33abAWha6+uvV2CKX8P5VSct/y+kEe22JeyqrxCnWlQ3DRx7s49Byg7/0EA==} + + '@tauri-apps/plugin-process@2.2.0': + resolution: {integrity: sha512-uypN2Crmyop9z+KRJr3zl71OyVFgTuvHFjsJ0UxxQ/J5212jVa5w4nPEYjIewcn8bUEXacRebwE6F7owgrbhSw==} + + '@tauri-apps/plugin-shell@2.2.0': + resolution: {integrity: sha512-iC3Ic1hLmasoboG7BO+7p+AriSoqAwKrIk+Hpk+S/bjTQdXqbl2GbdclghI4gM32X0bls7xHzIFqhRdrlvJeaA==} + + '@tauri-apps/plugin-store@2.2.0': + resolution: {integrity: sha512-hJTRtuJis4w5fW1dkcgftsYxKXK0+DbAqurZ3CURHG5WkAyyZgbxpeYctw12bbzF9ZbZREXZklPq8mocCC3Sgg==} + + '@tauri-apps/plugin-updater@2.3.1': + resolution: {integrity: sha512-D1MOWDO1Pqy33gloq0iifny+vwHxMyTshzF0q0bJRwibjL5SXd1xSQwBX24TRug7K0QIu8yOnveQHzI3GcdmfA==} + + '@tauri-apps/plugin-upload@2.2.1': + resolution: {integrity: sha512-2EyVhJYLAp2mJH0UzO3QGU0vPk/YWvAfdI2wXbczyzEZY/AZVa9wConyB1TV/NGhyJRim4LwWgkmnEvcKLkECw==} + + '@tauri-apps/plugin-upload@https://gitpkg.vercel.app/HuakunShen/tauri-plugins-workspace/plugins/upload?69b198b0ccba269fe7622a95ec6a33ae392bff03': + resolution: {tarball: https://gitpkg.vercel.app/HuakunShen/tauri-plugins-workspace/plugins/upload?69b198b0ccba269fe7622a95ec6a33ae392bff03} + version: 2.2.1 + + '@types/cookie@0.6.0': + resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} + + '@types/eslint@9.6.1': + resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==} + + '@types/estree@1.0.6': + resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} + + '@types/fluent-ffmpeg@2.1.27': + resolution: {integrity: sha512-QiDWjihpUhriISNoBi2hJBRUUmoj/BMTYcfz+F+ZM9hHWBYABFAE6hjP/TbCZC0GWwlpa3FzvHH9RzFeRusZ7A==} + + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + + '@types/luxon@3.4.2': + resolution: {integrity: sha512-TifLZlFudklWlMBfhubvgqTXRzLDI5pCbGa4P8a3wPyUQSW+1xQ5eDsreP9DWHX3tjq1ke96uYG/nwundroWcA==} + + '@types/node@20.12.14': + resolution: {integrity: sha512-scnD59RpYD91xngrQQLGkE+6UrHUPzeKZWhhjBSa3HSkwjbQc38+q3RoIVEwxQGRw3M+j5hpNAM+lgV3cVormg==} + + '@types/validator@13.12.2': + resolution: {integrity: sha512-6SlHBzUW8Jhf3liqrGGXyTJSIFe4nqlJ5A5KaMZ2l/vbM3Wh3KSybots/wfWVzNLK4D1NZluDlSQIbIEPx6oyA==} + + '@typeschema/class-validator@0.3.0': + resolution: {integrity: sha512-OJSFeZDIQ8EK1HTljKLT5CItM2wsbgczLN8tMEfz3I1Lmhc5TBfkZ0eikFzUC16tI3d1Nag7um6TfCgp2I2Bww==} + peerDependencies: + class-validator: ^0.14.1 + peerDependenciesMeta: + class-validator: + optional: true + + '@typeschema/core@0.14.0': + resolution: {integrity: sha512-Ia6PtZHcL3KqsAWXjMi5xIyZ7XMH4aSnOQes8mfMLx+wGFGtGRNlwe6Y7cYvX+WfNK67OL0/HSe9t8QDygV0/w==} + peerDependencies: + '@types/json-schema': ^7.0.15 + peerDependenciesMeta: + '@types/json-schema': + optional: true + + '@typescript-eslint/eslint-plugin@8.14.0': + resolution: {integrity: sha512-tqp8H7UWFaZj0yNO6bycd5YjMwxa6wIHOLZvWPkidwbgLCsBMetQoGj7DPuAlWa2yGO3H48xmPwjhsSPPCGU5w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 + eslint: ^8.57.0 || ^9.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/parser@8.14.0': + resolution: {integrity: sha512-2p82Yn9juUJq0XynBXtFCyrBDb6/dJombnz6vbo6mgQEtWHfvHbQuEa9kAOVIt1c9YFwi7H6WxtPj1kg+80+RA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/scope-manager@8.14.0': + resolution: {integrity: sha512-aBbBrnW9ARIDn92Zbo7rguLnqQ/pOrUguVpbUwzOhkFg2npFDwTgPGqFqE0H5feXcOoJOfX3SxlJaKEVtq54dw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/type-utils@8.14.0': + resolution: {integrity: sha512-Xcz9qOtZuGusVOH5Uk07NGs39wrKkf3AxlkK79RBK6aJC1l03CobXjJbwBPSidetAOV+5rEVuiT1VSBUOAsanQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/types@8.14.0': + resolution: {integrity: sha512-yjeB9fnO/opvLJFAsPNYlKPnEM8+z4og09Pk504dkqonT02AyL5Z9SSqlE0XqezS93v6CXn49VHvB2G7XSsl0g==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/typescript-estree@8.14.0': + resolution: {integrity: sha512-OPXPLYKGZi9XS/49rdaCbR5j/S14HazviBlUQFvSKz3npr3NikF+mrgK7CFVur6XEt95DZp/cmke9d5i3vtVnQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/utils@8.14.0': + resolution: {integrity: sha512-OGqj6uB8THhrHj0Fk27DcHPojW7zKwKkPmHXHvQ58pLYp4hy8CSUdTKykKeh+5vFqTTVmjz0zCOOPKRovdsgHA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + + '@typescript-eslint/visitor-keys@8.14.0': + resolution: {integrity: sha512-vG0XZo8AdTH9OE6VFRwAZldNc7qtJ/6NLGWak+BtENuEUXGZgFpihILPiBvKXvJ2nFu27XNGC6rKiwuaoMbYzQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@vinejs/compiler@2.5.0': + resolution: {integrity: sha512-hg4ekaB5Y2zh+IWzBiC/WCDWrIfpVnKu/ubUvelKlidc/VbulsexoFRw5kJGHZenPVI5YzNnDeTdYSALkTV7jQ==} + engines: {node: '>=18.0.0'} + + '@vinejs/vine@1.8.0': + resolution: {integrity: sha512-Qq3XxbA26jzqS9ICifkqzT399lMQZ2fWtqeV3luI2as+UIK7qDifJFU2Q4W3q3IB5VXoWxgwAZSZEO0em9I/qQ==} + engines: {node: '>=18.16.0'} + + acorn-jsx@5.3.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + acorn-typescript@1.4.13: + resolution: {integrity: sha512-xsc9Xv0xlVfwp2o7sQ+GCQ1PgbkdcpWdTzrwXxO3xDMTAywVS3oXVOcOHuRjAPkS4P9b+yc/qNF15460v+jp4Q==} + peerDependencies: + acorn: '>=8.9.0' + + acorn@8.14.0: + resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} + engines: {node: '>=0.4.0'} + hasBin: true + + ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-regex@6.1.0: + resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} + engines: {node: '>=12'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + + any-promise@1.3.0: + resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} + + anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + + arg@5.0.2: + resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + aria-query@5.3.2: + resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} + engines: {node: '>= 0.4'} + + arktype@2.0.0-rc.8: + resolution: {integrity: sha512-ByrqjptsavUCUL9ptts6BUL2LCNkVZyniOdaBw76dlBQ6gYIhYSeycuuj4gRFwcAafszOnAPD2fAqHK7bbo/Zw==} + + array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + + async@0.2.10: + resolution: {integrity: sha512-eAkdoKxU6/LkKDBzLpT+t6Ff5EtfSF4wx1WfJiPEEV7WNLnDaRXk0oVysiEPm262roaachGexwUv94WhSgN5TQ==} + + autoprefixer@10.4.20: + resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + + axobject-query@4.1.0: + resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} + engines: {node: '>= 0.4'} + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + batch-cluster@13.0.0: + resolution: {integrity: sha512-EreW0Vi8TwovhYUHBXXRA5tthuU2ynGsZFlboyMJHCCUXYa2AjgwnE3ubBOJs2xJLcuXFJbi6c/8pH5+FVj8Og==} + engines: {node: '>=14'} + + binary-extensions@2.3.0: + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + engines: {node: '>=8'} + + bits-ui@0.21.16: + resolution: {integrity: sha512-XFZ7/bK7j/K+5iktxX/ZpmoFHjYjpPzP5EOO/4bWiaFg5TG1iMcfjDhlBTQnJxD6BoVoHuqeZPHZvaTgF4Iv3Q==} + peerDependencies: + svelte: ^4.0.0 || ^5.0.0-next.118 + + bits-ui@1.0.0-next.54: + resolution: {integrity: sha512-Oazky8A9MBfqPHQEk1+c8G4Hjgqva4oUlTnBpo7Qg7h/azpmUFPRCiADUMKv2v6An1MMOuLx9dDvJ4AcwS+Elg==} + engines: {node: '>=18', pnpm: '>=8.7.0'} + peerDependencies: + svelte: ^5.0.0-next.1 + + brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + + brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + browserslist@4.24.2: + resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + + callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + + camelcase-css@2.0.1: + resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} + engines: {node: '>= 6'} + + camelcase@8.0.0: + resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==} + engines: {node: '>=16'} + + caniuse-lite@1.0.30001680: + resolution: {integrity: sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA==} + + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + + chokidar@3.6.0: + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} + engines: {node: '>= 8.10.0'} + + chokidar@4.0.1: + resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==} + engines: {node: '>= 14.16.0'} + + class-validator@0.14.1: + resolution: {integrity: sha512-2VEG9JICxIqTpoK1eMzZqaV+u/EiwEJkMGzTrZf6sU/fwsnOITVgYJ8yojSy6CaXtO9V0Cc6ZQZ8h8m4UBuLwQ==} + + clsx@2.1.1: + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} + engines: {node: '>=6'} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + color-string@1.9.1: + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} + + color@4.2.3: + resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} + engines: {node: '>=12.5.0'} + + commander@4.1.1: + resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} + engines: {node: '>= 6'} + + commander@9.5.0: + resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} + engines: {node: ^12.20.0 || >=14} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + cookie@0.6.0: + resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} + engines: {node: '>= 0.6'} + + cross-spawn@7.0.5: + resolution: {integrity: sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug==} + engines: {node: '>= 8'} + + cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + + data-uri-to-buffer@4.0.1: + resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==} + engines: {node: '>= 12'} + + dayjs@1.11.13: + resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==} + + debug@4.3.7: + resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + + deepmerge@4.3.1: + resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} + engines: {node: '>=0.10.0'} + + dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + + detect-libc@2.0.3: + resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==} + engines: {node: '>=8'} + + devalue@5.1.1: + resolution: {integrity: sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==} + + didyoumean@1.2.2: + resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} + + dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + + dlv@1.1.3: + resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} + + eastasianwidth@0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + + effect@3.10.14: + resolution: {integrity: sha512-NtEeDltifeP6SX1JptGL+k1k6CDjB++Yc7enAKEj3Pd7/4Llb4CDgZybqyiyqBkGK805ZLOIkyAyELdoJpmcqg==} + + electron-to-chromium@1.5.57: + resolution: {integrity: sha512-xS65H/tqgOwUBa5UmOuNSLuslDo7zho0y/lgQw35pnrqiZh7UOWHCeL/Bt6noJATbA6tpQJGCifsFsIRZj1Fqg==} + + embla-carousel-reactive-utils@8.3.1: + resolution: {integrity: sha512-Js6rTTINNGnUGPu7l5kTcheoSbEnP5Ak2iX0G9uOoI8okTNLMzuWlEIpYFd1WP0Sq82FFcLkKM2oiO6jcElZ/Q==} + peerDependencies: + embla-carousel: 8.3.1 + + embla-carousel-svelte@8.3.1: + resolution: {integrity: sha512-dD+NpbJJEkyGL2NtXKCIkBN51Lj4V6pRh85lpXfjh690UTvJsO5Zdp6xZ6nBTOjSsQ5IczdEXvv3DrvXfyg1SA==} + peerDependencies: + svelte: ^3.49.0 || ^4.0.0 || ^5.0.0 + + embla-carousel@8.3.1: + resolution: {integrity: sha512-DutFjtEO586XptDn4cwvBJwsR/8fMa4jUk5Jk2g+/elKgu8mdn0Z2sx33g4JskvbLc1/6P8Xg4QlfELGJFcP5A==} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + + esbuild-runner@2.2.2: + resolution: {integrity: sha512-fRFVXcmYVmSmtYm2mL8RlUASt2TDkGh3uRcvHFOKNr/T58VrfVeKD9uT9nlgxk96u0LS0ehS/GY7Da/bXWKkhw==} + hasBin: true + peerDependencies: + esbuild: '*' + + esbuild@0.21.5: + resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} + engines: {node: '>=12'} + hasBin: true + + escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + + escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + + eslint-compat-utils@0.5.1: + resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} + engines: {node: '>=12'} + peerDependencies: + eslint: '>=6.0.0' + + eslint-config-prettier@9.1.0: + resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + + eslint-plugin-svelte@2.46.0: + resolution: {integrity: sha512-1A7iEMkzmCZ9/Iz+EAfOGYL8IoIG6zeKEq1SmpxGeM5SXmoQq+ZNnCpXFVJpsxPWYx8jIVGMerQMzX20cqUl0g==} + engines: {node: ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0-0 || ^9.0.0-0 + svelte: ^3.37.0 || ^4.0.0 || ^5.0.0 + peerDependenciesMeta: + svelte: + optional: true + + eslint-scope@7.2.2: + resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint-scope@8.2.0: + resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint-visitor-keys@4.2.0: + resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint@9.14.0: + resolution: {integrity: sha512-c2FHsVBr87lnUtjP4Yhvk4yEhKrQavGafRA/Se1ouse8PfbfC/Qh9Mxa00yWsZRlqeUB9raXip0aiiUZkgnr9g==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true + + esm-env@1.1.4: + resolution: {integrity: sha512-oO82nKPHKkzIj/hbtuDYy/JHqBHFlMIW36SDiPCVsj87ntDLcWN+sJ1erdVryd4NxODacFTsdrIE3b7IamqbOg==} + + espree@10.3.0: + resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + espree@9.6.1: + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + esquery@1.6.0: + resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} + engines: {node: '>=0.10'} + + esrap@1.2.2: + resolution: {integrity: sha512-F2pSJklxx1BlQIQgooczXCPHmcWpn6EsP5oo73LQfonG9fIlIENQ8vMmfGXeojP9MrkzUNAfyU5vdFlR9shHAw==} + + esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + + estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + + esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + + exiftool-vendored.exe@12.96.0: + resolution: {integrity: sha512-pKPN9F/Evw2yyO5/+ml3spbXIqejzOxyF7jEnj8tLU2JPSmIlziPUZ75XIhcPbilX86jVKmuiso7FUDicOg8pQ==} + os: [win32] + + exiftool-vendored.pl@12.96.0: + resolution: {integrity: sha512-v4nGnovAMBsTfOWhwAcOiRiq/8kuJOo3GUMHNpug7Mr4jLz3tmWEo7DdNyOYmpcvWbA6smOTG0SmwsrY8fsW+A==} + os: ['!win32'] + + exiftool-vendored@28.5.0: + resolution: {integrity: sha512-/XbVpZGP5P/tifRbO2BIBuDxLkHrUoxhJGOKAeASHnIBNNgBzp3UWtp0wLPhEd24ETe/ohuEUPmpUaKcNSDYsg==} + + fast-check@3.23.1: + resolution: {integrity: sha512-u/MudsoQEgBUZgR5N1v87vEgybeVYus9VnDVaIkxkkGP2jt54naghQ3PCQHJiogS8U/GavZCUPFfx3Xkp+NaHw==} + engines: {node: '>=8.0.0'} + + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} + + fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + + fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + + fastq@1.17.1: + resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} + + fdir@6.4.2: + resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + + fetch-blob@3.2.0: + resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==} + engines: {node: ^12.20 || >= 14.13} + + file-entry-cache@8.0.0: + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} + + filesize@10.1.6: + resolution: {integrity: sha512-sJslQKU2uM33qH5nqewAwVB2QgR6w1aMNsYUp3aN5rMRyXEwJGmZvaWzeJFNTOXWlHQyBFCWrdj3fV/fsTOX8w==} + engines: {node: '>= 10.4.0'} + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + + flat-cache@4.0.1: + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + engines: {node: '>=16'} + + flatted@3.3.1: + resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} + + fluent-ffmpeg@2.1.3: + resolution: {integrity: sha512-Be3narBNt2s6bsaqP6Jzq91heDgOEaDCJAXcE3qcma/EJBSy5FB4cvO31XBInuAuKBx8Kptf8dkhjK0IOru39Q==} + engines: {node: '>=18'} + + focus-trap@7.6.1: + resolution: {integrity: sha512-nB8y4nQl8PshahLpGKZOq1sb0xrMVFSn6at7u/qOsBZTlZRzaapISGENcB6mOkoezbClZyiMwEF/dGY8AZ00rA==} + + foreground-child@3.3.0: + resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} + engines: {node: '>=14'} + + formdata-polyfill@4.0.10: + resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} + engines: {node: '>=12.20.0'} + + formsnap@2.0.0-next.1: + resolution: {integrity: sha512-ha8r9eMmsGEGMY+ljV3FEyTtB72E7dt95y9HHUbCcaDnjbz3Q6n00BHLz7dfBZ9rqyaMeIO200EmP1IcYMExeg==} + engines: {node: '>=18', pnpm: '>=8.7.0'} + peerDependencies: + svelte: ^5.0.0 + sveltekit-superforms: ^2.19.0 + + fraction.js@4.3.7: + resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} + + fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + + glob@10.4.5: + resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} + hasBin: true + + glob@11.0.0: + resolution: {integrity: sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==} + engines: {node: 20 || >=22} + hasBin: true + + glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + deprecated: Glob versions prior to v9 are no longer supported + + globals@14.0.0: + resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} + engines: {node: '>=18'} + + globals@15.12.0: + resolution: {integrity: sha512-1+gLErljJFhbOVyaetcwJiJ4+eLe45S2E7P5UiZ9xGfeq3ATQf5DOv9G7MH3gGbKQLkzmNh2DxfZwLdw+j6oTQ==} + engines: {node: '>=18'} + + globalyzer@0.1.0: + resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} + + globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + + globrex@0.1.2: + resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} + + graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + + he@1.2.0: + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + hasBin: true + + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} + + import-fresh@3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + + import-meta-resolve@4.1.0: + resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + + inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + inline-style-parser@0.2.4: + resolution: {integrity: sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==} + + interpret@1.4.0: + resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} + engines: {node: '>= 0.10'} + + is-arrayish@0.3.2: + resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} + + is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + + is-core-module@2.15.1: + resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==} + engines: {node: '>= 0.4'} + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-reference@3.0.3: + resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + jackspeak@3.4.3: + resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} + + jackspeak@4.0.2: + resolution: {integrity: sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==} + engines: {node: 20 || >=22} + + jiti@1.21.6: + resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==} + hasBin: true + + joi@17.13.3: + resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==} + + js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-schema-to-ts@3.1.1: + resolution: {integrity: sha512-+DWg8jCJG2TEnpy7kOm/7/AxaYoaRbjVB4LFZLySZlWn8exGs3A4OLJR966cVvU26N7X9TWxl+Jsw7dzAqKT6g==} + engines: {node: '>=16'} + + json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + + json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + + just-clone@6.2.0: + resolution: {integrity: sha512-1IynUYEc/HAwxhi3WDpIpxJbZpMCvvrrmZVqvj9EhpvbH8lls7HhdhiByjL7DkAaWlLIzpC0Xc/VPvy/UxLNjA==} + + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + kkrpc@0.0.12: + resolution: {integrity: sha512-PBk4AhGfkesIdAwmIoj7dHHIp7qN97XT4yr5Rl7h2WL79gxWQVgZRJYLt7Gb17GoLDh991rnL85mhCoPG5VC/Q==} + peerDependencies: + typescript: ^5.6.3 + + kkrpc@0.0.13: + resolution: {integrity: sha512-66ohRjbw2fLO45L1PMkGTP6KHk/Wa7nKJL6r4U/VCBsY+HoIncEdscSQcUgIdv2Da66/UyIC6UMWMvwIqXCZCg==} + peerDependencies: + typescript: ^5.6.3 + + kleur@4.1.5: + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} + engines: {node: '>=6'} + + known-css-properties@0.35.0: + resolution: {integrity: sha512-a/RAk2BfKk+WFGhhOCAYqSiFLc34k8Mt/6NWRI4joER0EYUzXIcFivjjnoD3+XU1DggLn/tZc3DOAgke7l8a4A==} + + levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + + libphonenumber-js@1.11.14: + resolution: {integrity: sha512-sexvAfwcW1Lqws4zFp8heAtAEXbEDnvkYCEGzvOoMgZR7JhXo/IkE9MkkGACgBed5fWqh3ShBGnJBdDnU9N8EQ==} + + lilconfig@2.1.0: + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} + + lilconfig@3.1.2: + resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} + engines: {node: '>=14'} + + lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + + locate-character@3.0.0: + resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==} + + locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + + lodash.castarray@4.4.0: + resolution: {integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==} + + lodash.isplainobject@4.0.6: + resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + + lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + + lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + lru-cache@10.4.3: + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + + lru-cache@11.0.2: + resolution: {integrity: sha512-123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA==} + engines: {node: 20 || >=22} + + lucide-svelte@0.416.0: + resolution: {integrity: sha512-1tEN4VZhUXGmV0UCSDPdUjHgdRVZocZFYB2ufoIFie1ux6kQEiwc64gx8WBUGQY9AoN9CPMlTbGMNb6NzaSMmg==} + peerDependencies: + svelte: ^3 || ^4 || ^5.0.0-next.42 + + luxon@3.5.0: + resolution: {integrity: sha512-rh+Zjr6DNfUYR3bPwJEnuwDdqMbxZW7LOQfUN4B54+Cl+0o5zaU9RJ6bcidfDtC1cWCZXQ+nvX8bf6bAji37QQ==} + engines: {node: '>=12'} + + magic-string@0.30.12: + resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==} + + memoize-weak@1.0.2: + resolution: {integrity: sha512-gj39xkrjEw7nCn4nJ1M5ms6+MyMlyiGmttzsqAUsAKn6bYKwuTHh/AO3cKPF8IBrTIYTxb0wWXFs3E//Y8VoWQ==} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + + minimatch@10.0.1: + resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==} + engines: {node: 20 || >=22} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + minipass@7.1.2: + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} + engines: {node: '>=16 || 14 >=14.17'} + + mode-watcher@0.4.1: + resolution: {integrity: sha512-bNC+1NXmwEFZtziCdZSgP7HFQTpqJPcQn9GwwJQGSf6SBF3neEPYV1uRwkYuAQwbsvsXIYtzaqgedDzJ7D1mhg==} + peerDependencies: + svelte: ^4.0.0 || ^5.0.0-next.1 + + mri@1.2.0: + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} + + mrmime@2.0.0: + resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} + engines: {node: '>=10'} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + mylas@2.1.13: + resolution: {integrity: sha512-+MrqnJRtxdF+xngFfUUkIMQrUUL0KsxbADUkn23Z/4ibGg192Q+z+CQyiYwvWTsYjJygmMR8+w3ZDa98Zh6ESg==} + engines: {node: '>=12.0.0'} + + mz@2.7.0: + resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} + + nanoid@3.3.7: + resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + nanoid@5.0.8: + resolution: {integrity: sha512-TcJPw+9RV9dibz1hHUzlLVy8N4X9TnwirAjrU08Juo6BNKggzVfP2ZJ/3ZUSq15Xl5i85i+Z89XBO90pB2PghQ==} + engines: {node: ^18 || >=20} + hasBin: true + + natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + + node-domexception@1.0.0: + resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} + engines: {node: '>=10.5.0'} + + node-fetch@3.3.2: + resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + node-releases@2.0.18: + resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} + + normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + normalize-range@0.1.2: + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} + engines: {node: '>=0.10.0'} + + normalize-url@8.0.1: + resolution: {integrity: sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==} + engines: {node: '>=14.16'} + + object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + object-hash@3.0.0: + resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} + engines: {node: '>= 6'} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} + + p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + + p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + + package-json-from-dist@1.0.1: + resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} + + paneforge@0.0.6: + resolution: {integrity: sha512-jYeN/wdREihja5c6nK3S5jritDQ+EbCqC5NrDo97qCZzZ9GkmEcN5C0ZCjF4nmhBwkDKr6tLIgz4QUKWxLXjAw==} + peerDependencies: + svelte: ^4.0.0 || ^5.0.0-next.1 + + parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + + path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + + path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} + + path-scurry@2.0.0: + resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==} + engines: {node: 20 || >=22} + + path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + picomatch@4.0.2: + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} + engines: {node: '>=12'} + + pify@2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} + + pirates@4.0.6: + resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} + engines: {node: '>= 6'} + + plimit-lit@1.6.1: + resolution: {integrity: sha512-B7+VDyb8Tl6oMJT9oSO2CW8XC/T4UcJGrwOVoNGwOQsQYhlpfajmrMj5xeejqaASq3V/EqThyOeATEOMuSEXiA==} + engines: {node: '>=12'} + + postcss-import@15.1.0: + resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} + engines: {node: '>=14.0.0'} + peerDependencies: + postcss: ^8.0.0 + + postcss-js@4.0.1: + resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} + engines: {node: ^12 || ^14 || >= 16} + peerDependencies: + postcss: ^8.4.21 + + postcss-load-config@3.1.4: + resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} + engines: {node: '>= 10'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + + postcss-load-config@4.0.2: + resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} + engines: {node: '>= 14'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + + postcss-nested@6.2.0: + resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==} + engines: {node: '>=12.0'} + peerDependencies: + postcss: ^8.2.14 + + postcss-safe-parser@6.0.0: + resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==} + engines: {node: '>=12.0'} + peerDependencies: + postcss: ^8.3.3 + + postcss-scss@4.0.9: + resolution: {integrity: sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==} + engines: {node: '>=12.0'} + peerDependencies: + postcss: ^8.4.29 + + postcss-selector-parser@6.0.10: + resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==} + engines: {node: '>=4'} + + postcss-selector-parser@6.1.2: + resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} + engines: {node: '>=4'} + + postcss-value-parser@4.2.0: + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + + postcss@8.4.49: + resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} + engines: {node: ^10 || ^12 || >=14} + + prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + + prettier-plugin-svelte@3.2.8: + resolution: {integrity: sha512-PAHmmU5cGZdnhW4mWhmvxuG2PVbbHIxUuPOdUKvfE+d4Qt2d29iU5VWrPdsaW5YqVEE0nqhlvN4eoKmVMpIF3Q==} + peerDependencies: + prettier: ^3.0.0 + svelte: ^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0 + + prettier-plugin-tailwindcss@0.6.8: + resolution: {integrity: sha512-dGu3kdm7SXPkiW4nzeWKCl3uoImdd5CTZEJGxyypEPL37Wj0HT2pLqjrvSei1nTeuQfO4PUfjeW5cTUNRLZ4sA==} + engines: {node: '>=14.21.3'} + peerDependencies: + '@ianvs/prettier-plugin-sort-imports': '*' + '@prettier/plugin-pug': '*' + '@shopify/prettier-plugin-liquid': '*' + '@trivago/prettier-plugin-sort-imports': '*' + '@zackad/prettier-plugin-twig-melody': '*' + prettier: ^3.0 + prettier-plugin-astro: '*' + prettier-plugin-css-order: '*' + prettier-plugin-import-sort: '*' + prettier-plugin-jsdoc: '*' + prettier-plugin-marko: '*' + prettier-plugin-multiline-arrays: '*' + prettier-plugin-organize-attributes: '*' + prettier-plugin-organize-imports: '*' + prettier-plugin-sort-imports: '*' + prettier-plugin-style-order: '*' + prettier-plugin-svelte: '*' + peerDependenciesMeta: + '@ianvs/prettier-plugin-sort-imports': + optional: true + '@prettier/plugin-pug': + optional: true + '@shopify/prettier-plugin-liquid': + optional: true + '@trivago/prettier-plugin-sort-imports': + optional: true + '@zackad/prettier-plugin-twig-melody': + optional: true + prettier-plugin-astro: + optional: true + prettier-plugin-css-order: + optional: true + prettier-plugin-import-sort: + optional: true + prettier-plugin-jsdoc: + optional: true + prettier-plugin-marko: + optional: true + prettier-plugin-multiline-arrays: + optional: true + prettier-plugin-organize-attributes: + optional: true + prettier-plugin-organize-imports: + optional: true + prettier-plugin-sort-imports: + optional: true + prettier-plugin-style-order: + optional: true + prettier-plugin-svelte: + optional: true + + prettier@3.3.3: + resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==} + engines: {node: '>=14'} + hasBin: true + + property-expr@2.0.6: + resolution: {integrity: sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==} + + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + pure-rand@6.1.0: + resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} + + queue-lit@1.5.2: + resolution: {integrity: sha512-tLc36IOPeMAubu8BkW8YDBV+WyIgKlYU7zUNs0J5Vk9skSZ4JfGlPOqplP0aHdfv7HL0B2Pg6nwiq60Qc6M2Hw==} + engines: {node: '>=12'} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + read-cache@1.0.0: + resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + + readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + + readdirp@4.0.2: + resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==} + engines: {node: '>= 14.16.0'} + + rechoir@0.6.2: + resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} + engines: {node: '>= 0.10'} + + regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + + resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + + resolve@1.22.8: + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} + hasBin: true + + reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rimraf@6.0.1: + resolution: {integrity: sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==} + engines: {node: 20 || >=22} + hasBin: true + + rollup@4.26.0: + resolution: {integrity: sha512-ilcl12hnWonG8f+NxU6BlgysVA0gvY2l8N0R84S1HcINbW20bvwuCngJkkInV6LXhwRpucsW5k1ovDwEdBVrNg==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + runed@0.15.3: + resolution: {integrity: sha512-HtayB+loDcGdqJDHW8JFdsZzGQMyVzim6+s3052MkjZnwmwDstmF+cusMeTssBe6TCdt5i9D/Tb+KYXN3L0kXA==} + peerDependencies: + svelte: ^5.0.0-next.1 + + sade@1.8.1: + resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} + engines: {node: '>=6'} + + semver@7.6.3: + resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} + engines: {node: '>=10'} + hasBin: true + + set-cookie-parser@2.7.1: + resolution: {integrity: sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==} + + sharp@0.33.5: + resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + shelljs@0.8.5: + resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} + engines: {node: '>=4'} + hasBin: true + + shx@0.3.4: + resolution: {integrity: sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g==} + engines: {node: '>=6'} + hasBin: true + + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + + simple-swizzle@0.2.2: + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} + + sirv@3.0.0: + resolution: {integrity: sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==} + engines: {node: '>=18'} + + slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + + source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} + + strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + + style-to-object@1.0.8: + resolution: {integrity: sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==} + + sucrase@3.35.0: + resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} + engines: {node: '>=16 || 14 >=14.17'} + hasBin: true + + superstruct@2.0.2: + resolution: {integrity: sha512-uV+TFRZdXsqXTL2pRvujROjdZQ4RAlBUS5BTh9IGm+jTqQntYThciG/qu57Gs69yjnVUSqdxF9YLmSnpupBW9A==} + engines: {node: '>=14.0.0'} + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + svelte-check@4.0.7: + resolution: {integrity: sha512-24hwo+D5L35HOXsh3Z2sU4WhdDLavlHquYaJhrEqAt+mV1xOVzoMVYThW80n99osDJxyuH+vxjNFkNRL4EvwTg==} + engines: {node: '>= 18.0.0'} + hasBin: true + peerDependencies: + svelte: ^4.0.0 || ^5.0.0-next.0 + typescript: '>=5.0.0' + + svelte-eslint-parser@0.43.0: + resolution: {integrity: sha512-GpU52uPKKcVnh8tKN5P4UZpJ/fUDndmq7wfsvoVXsyP+aY0anol7Yqo01fyrlaWGMFfm4av5DyrjlaXdLRJvGA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + svelte: ^3.37.0 || ^4.0.0 || ^5.0.0 + peerDependenciesMeta: + svelte: + optional: true + + svelte-persisted-store@0.12.0: + resolution: {integrity: sha512-BdBQr2SGSJ+rDWH8/aEV5GthBJDapVP0GP3fuUCA7TjYG5ctcB+O9Mj9ZC0+Jo1oJMfZUd1y9H68NFRR5MyIJA==} + engines: {node: '>=0.14'} + peerDependencies: + svelte: ^3.48.0 || ^4 || ^5 + + svelte-radix@2.0.1: + resolution: {integrity: sha512-YrX44Dj+Rp6YZuPSjdmyd6P8QTkb2NXwySUCZYzjwkP6Cl3dZaTBPPeaSOutP3v3ycQ2XwyNOpyn4p0QcN+uYQ==} + engines: {node: '>=18.0.0', npm: '>=7.0.0'} + peerDependencies: + svelte: ^5.0.0 + + svelte-sonner@0.3.28: + resolution: {integrity: sha512-K3AmlySeFifF/cKgsYNv5uXqMVNln0NBAacOYgmkQStLa/UoU0LhfAACU6Gr+YYC8bOCHdVmFNoKuDbMEsppJg==} + peerDependencies: + svelte: ^3.0.0 || ^4.0.0 || ^5.0.0-next.1 + + svelte-toolbelt@0.4.6: + resolution: {integrity: sha512-k8OUvXBUifHZcAlWeY/HLg/4J0v5m2iOfOhn8fDmjt4AP8ZluaDh9eBFus9lFiLX6O5l6vKqI1dKL5wy7090NQ==} + engines: {node: '>=18', pnpm: '>=8.7.0'} + peerDependencies: + svelte: ^5.0.0-next.126 + + svelte@5.1.16: + resolution: {integrity: sha512-QcY+om9r8+uTcSfeFuv8++ExdfwVCKeT+Y7GPSZ6rQPczvy62BMtvMoi0rScabgv+upGE5jxKjd7M4u23+AjGA==} + engines: {node: '>=18'} + + sveltekit-superforms@2.20.0: + resolution: {integrity: sha512-5HyA6THKFBHEmJinZ/klu2/0jYr9ElSaXMYc5EO9ptP3x1wQPWVXYl59sMcaSrIjWUlPpayGxVppCyu+x/o4WA==} + peerDependencies: + '@sveltejs/kit': 1.x || 2.x + svelte: 3.x || 4.x || >=5.0.0-next.51 + + tabbable@6.2.0: + resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==} + + tailwind-merge@2.5.4: + resolution: {integrity: sha512-0q8cfZHMu9nuYP/b5Shb7Y7Sh1B7Nnl5GqNr1U+n2p6+mybvRtayrQ+0042Z5byvTA8ihjlP8Odo8/VnHbZu4Q==} + + tailwind-variants@0.2.1: + resolution: {integrity: sha512-2xmhAf4UIc3PijOUcJPA1LP4AbxhpcHuHM2C26xM0k81r0maAO6uoUSHl3APmvHZcY5cZCY/bYuJdfFa4eGoaw==} + engines: {node: '>=16.x', pnpm: '>=7.x'} + peerDependencies: + tailwindcss: '*' + + tailwindcss@3.4.14: + resolution: {integrity: sha512-IcSvOcTRcUtQQ7ILQL5quRDg7Xs93PdJEk1ZLbhhvJc7uj/OAhYOnruEiwnGgBvUtaUAJ8/mhSw1o8L2jCiENA==} + engines: {node: '>=14.0.0'} + hasBin: true + + tauri-api-adapter@0.3.16: + resolution: {integrity: sha512-AoKWtRyhTPFaclM/XOtCSQg4OPmr/ssJqY209W+ELd4C11IpWyTVZ/Yfd7cCL03kB4OfvVTDWldA7Bzc7E72dg==} + peerDependencies: + typescript: ^5.0.0 + + tauri-plugin-clipboard-api@2.1.11: + resolution: {integrity: sha512-VNkGaVPPfRoHg7/rJBcWqsvLvn4/kNEOOlzqwyI9Qdf6g54B3mc31GLZdnq/HWtX0vZskw3J8b/EF9YkASDCBQ==} + + tauri-plugin-network-api@2.0.5: + resolution: {integrity: sha512-u7CTvmgP4Lt3fK0/mVMD/pcWlXsWenC0YYlJUE2VQCThx8VQzxSAXgyPhcg0+CT5iIoPt5mkfixMfamM8e6v/w==} + + tauri-plugin-shellx-api@2.0.14: + resolution: {integrity: sha512-MdSYD2KDw63b7yEIa9Q2GXnbidL5Tk+s92BJX0XvYfHrv2l1fYE2vdRWGnyhvCWmUavyCeiOle5uMxM6QLOb2Q==} + + tauri-plugin-system-info-api@2.0.8: + resolution: {integrity: sha512-EFdLXNGp6Zu9SNsZCkU+55A8027OnrVw/TQrd0oJHgfZzs4qvm1iMmSvyid4MLftt33iZDhjCzxYijaaOxeKSg==} + + text-table@0.2.0: + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + + thenify-all@1.6.0: + resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} + engines: {node: '>=0.8'} + + thenify@3.3.1: + resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} + + tiny-case@1.0.3: + resolution: {integrity: sha512-Eet/eeMhkO6TX8mnUteS9zgPbUMQa4I6Kkp5ORiBD5476/m+PIRiumP5tmh5ioJpH7k51Kehawy2UDfsnxxY8Q==} + + tiny-glob@0.2.9: + resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + toposort@2.0.2: + resolution: {integrity: sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==} + + totalist@3.0.1: + resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} + engines: {node: '>=6'} + + ts-algebra@2.0.0: + resolution: {integrity: sha512-FPAhNPFMrkwz76P7cdjdmiShwMynZYN6SgOujD1urY4oNm80Ou9oMdmbR45LotcKOXoy7wSmHkRFE6Mxbrhefw==} + + ts-api-utils@1.4.0: + resolution: {integrity: sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ==} + engines: {node: '>=16'} + peerDependencies: + typescript: '>=4.2.0' + + ts-deepmerge@7.0.1: + resolution: {integrity: sha512-JBFCmNenZdUCc+TRNCtXVM6N8y/nDQHAcpj5BlwXG/gnogjam1NunulB9ia68mnqYI446giMfpqeBFFkOleh+g==} + engines: {node: '>=14.13.1'} + + ts-interface-checker@0.1.13: + resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} + + tsc-alias@1.8.10: + resolution: {integrity: sha512-Ibv4KAWfFkFdKJxnWfVtdOmB0Zi1RJVxcbPGiCDsFpCQSsmpWyuzHG3rQyI5YkobWwxFPEyQfu1hdo4qLG2zPw==} + hasBin: true + + tslib@2.4.0: + resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} + + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + + type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + + type-fest@2.19.0: + resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} + engines: {node: '>=12.20'} + + typescript-eslint@8.14.0: + resolution: {integrity: sha512-K8fBJHxVL3kxMmwByvz8hNdBJ8a0YqKzKDX6jRlrjMuNXyd5T2V02HIq37+OiWXvUUOXgOOGiSSOh26Mh8pC3w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + typescript@5.6.3: + resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==} + engines: {node: '>=14.17'} + hasBin: true + + undici-types@5.26.5: + resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + + update-browserslist-db@1.1.1: + resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + valibot@0.31.1: + resolution: {integrity: sha512-2YYIhPrnVSz/gfT2/iXVTrSj92HwchCt9Cga/6hX4B26iCz9zkIsGTS0HjDYTZfTi1Un0X6aRvhBi1cfqs/i0Q==} + + valibot@0.40.0: + resolution: {integrity: sha512-XHKnaVtwHqxPwnGOsLrwka9CEaL7yNeLNp707OKv/bmT29GnPVdl6PxBOZ6BW7hF66/6QT6iVbOlnW7qVPmoKw==} + peerDependencies: + typescript: '>=5' + peerDependenciesMeta: + typescript: + optional: true + + valibot@0.41.0: + resolution: {integrity: sha512-igDBb8CTYr8YTQlOKgaN9nSS0Be7z+WRuaeYqGf3Cjz3aKmSnqEmYnkfVjzIuumGqfHpa3fLIvMEAfhrpqN8ng==} + peerDependencies: + typescript: '>=5' + peerDependenciesMeta: + typescript: + optional: true + + valibot@0.42.1: + resolution: {integrity: sha512-3keXV29Ar5b//Hqi4MbSdV7lfVp6zuYLZuA9V1PvQUsXqogr+u5lvLPLk3A4f74VUXDnf/JfWMN6sB+koJ/FFw==} + peerDependencies: + typescript: '>=5' + peerDependenciesMeta: + typescript: + optional: true + + valibot@1.0.0-beta.11: + resolution: {integrity: sha512-Ztl5Iks1Ql7Z6CwkS5oyqguN3G8tmUiNlsHpqbDt6DLMpm+eu+n8Q7f921gI3uHvNZ8xDVkd4cEJP5t+lELOfw==} + peerDependencies: + typescript: '>=5' + peerDependenciesMeta: + typescript: + optional: true + + validator@13.12.0: + resolution: {integrity: sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==} + engines: {node: '>= 0.10'} + + vaul-svelte@0.3.2: + resolution: {integrity: sha512-X4OGWttSTVUl417qGDsSFgOvIx24DoiMRY/jaP9z0v9FL8LQQJ0RQ1ZM0QpdyQPRlNd24ewjNQHh5EgYDtfNpw==} + peerDependencies: + svelte: ^4.0.0 || ^5.0.0-next.1 + + vite@5.4.11: + resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || >=20.0.0 + less: '*' + lightningcss: ^1.21.0 + sass: '*' + sass-embedded: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + + vitefu@1.0.3: + resolution: {integrity: sha512-iKKfOMBHob2WxEJbqbJjHAkmYgvFDPhuqrO82om83S8RLk+17FtyMBfcyeH8GqD0ihShtkMW/zzJgiA51hCNCQ==} + peerDependencies: + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0-beta.0 + peerDependenciesMeta: + vite: + optional: true + + web-streams-polyfill@3.3.3: + resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==} + engines: {node: '>= 8'} + + which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + + wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + + wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + ws@8.18.0: + resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + yaml@1.10.2: + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} + + yaml@2.6.0: + resolution: {integrity: sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==} + engines: {node: '>= 14'} + hasBin: true + + yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + + yup@1.4.0: + resolution: {integrity: sha512-wPbgkJRCqIf+OHyiTBQoJiP5PFuAXaWiJK6AmYkzQAh5/c2K9hzSApBZG5wV9KoKSePF7sAxmNSvh/13YHkFDg==} + + zimmerframe@1.1.2: + resolution: {integrity: sha512-rAbqEGa8ovJy4pyBxZM70hg4pE6gDgaQ0Sl9M3enG3I0d6H4XSAM3GeNGLKnsBpuijUow064sf7ww1nutC5/3w==} + + zod-to-json-schema@3.23.5: + resolution: {integrity: sha512-5wlSS0bXfF/BrL4jPAbz9da5hDlDptdEppYfe+x4eIJ7jioqKG9uUxOwPzqof09u/XeVdrgFu29lZi+8XNDJtA==} + peerDependencies: + zod: ^3.23.3 + + zod@3.23.8: + resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} + +snapshots: + + '@alloc/quick-lru@5.2.0': {} + + '@ampproject/remapping@2.3.0': + dependencies: + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + + '@ark/schema@0.10.0': + dependencies: + '@ark/util': 0.10.0 + optional: true + + '@ark/util@0.10.0': + optional: true + + '@babel/runtime@7.26.0': + dependencies: + regenerator-runtime: 0.14.1 + optional: true + + '@effect/schema@0.75.5(effect@3.10.14)': + dependencies: + effect: 3.10.14 + fast-check: 3.23.1 + optional: true + + '@emnapi/runtime@1.3.1': + dependencies: + tslib: 2.8.1 + optional: true + + '@esbuild/aix-ppc64@0.21.5': + optional: true + + '@esbuild/android-arm64@0.21.5': + optional: true + + '@esbuild/android-arm@0.21.5': + optional: true + + '@esbuild/android-x64@0.21.5': + optional: true + + '@esbuild/darwin-arm64@0.21.5': + optional: true + + '@esbuild/darwin-x64@0.21.5': + optional: true + + '@esbuild/freebsd-arm64@0.21.5': + optional: true + + '@esbuild/freebsd-x64@0.21.5': + optional: true + + '@esbuild/linux-arm64@0.21.5': + optional: true + + '@esbuild/linux-arm@0.21.5': + optional: true + + '@esbuild/linux-ia32@0.21.5': + optional: true + + '@esbuild/linux-loong64@0.21.5': + optional: true + + '@esbuild/linux-mips64el@0.21.5': + optional: true + + '@esbuild/linux-ppc64@0.21.5': + optional: true + + '@esbuild/linux-riscv64@0.21.5': + optional: true + + '@esbuild/linux-s390x@0.21.5': + optional: true + + '@esbuild/linux-x64@0.21.5': + optional: true + + '@esbuild/netbsd-x64@0.21.5': + optional: true + + '@esbuild/openbsd-x64@0.21.5': + optional: true + + '@esbuild/sunos-x64@0.21.5': + optional: true + + '@esbuild/win32-arm64@0.21.5': + optional: true + + '@esbuild/win32-ia32@0.21.5': + optional: true + + '@esbuild/win32-x64@0.21.5': + optional: true + + '@eslint-community/eslint-utils@4.4.1(eslint@9.14.0(jiti@1.21.6))': + dependencies: + eslint: 9.14.0(jiti@1.21.6) + eslint-visitor-keys: 3.4.3 + + '@eslint-community/regexpp@4.12.1': {} + + '@eslint/config-array@0.18.0': + dependencies: + '@eslint/object-schema': 2.1.4 + debug: 4.3.7 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + '@eslint/core@0.7.0': {} + + '@eslint/eslintrc@3.1.0': + dependencies: + ajv: 6.12.6 + debug: 4.3.7 + 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@9.14.0': {} + + '@eslint/object-schema@2.1.4': {} + + '@eslint/plugin-kit@0.2.2': + dependencies: + levn: 0.4.1 + + '@exodus/schemasafe@1.3.0': + optional: true + + '@floating-ui/core@1.6.8': + dependencies: + '@floating-ui/utils': 0.2.8 + + '@floating-ui/dom@1.6.12': + dependencies: + '@floating-ui/core': 1.6.8 + '@floating-ui/utils': 0.2.8 + + '@floating-ui/utils@0.2.8': {} + + '@gcornut/valibot-json-schema@0.31.0': + dependencies: + valibot: 0.31.1 + optionalDependencies: + '@types/json-schema': 7.0.15 + esbuild: 0.21.5 + esbuild-runner: 2.2.2(esbuild@0.21.5) + optional: true + + '@hapi/hoek@9.3.0': + optional: true + + '@hapi/topo@5.1.0': + dependencies: + '@hapi/hoek': 9.3.0 + optional: true + + '@humanfs/core@0.19.1': {} + + '@humanfs/node@0.16.6': + dependencies: + '@humanfs/core': 0.19.1 + '@humanwhocodes/retry': 0.3.1 + + '@humanwhocodes/module-importer@1.0.1': {} + + '@humanwhocodes/retry@0.3.1': {} + + '@humanwhocodes/retry@0.4.1': {} + + '@iconify/svelte@4.0.2(svelte@5.1.16)': + dependencies: + '@iconify/types': 2.0.0 + svelte: 5.1.16 + + '@iconify/types@2.0.0': {} + + '@img/sharp-darwin-arm64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-darwin-arm64': 1.0.4 + optional: true + + '@img/sharp-darwin-x64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-darwin-x64': 1.0.4 + optional: true + + '@img/sharp-libvips-darwin-arm64@1.0.4': + optional: true + + '@img/sharp-libvips-darwin-x64@1.0.4': + optional: true + + '@img/sharp-libvips-linux-arm64@1.0.4': + optional: true + + '@img/sharp-libvips-linux-arm@1.0.5': + optional: true + + '@img/sharp-libvips-linux-s390x@1.0.4': + optional: true + + '@img/sharp-libvips-linux-x64@1.0.4': + optional: true + + '@img/sharp-libvips-linuxmusl-arm64@1.0.4': + optional: true + + '@img/sharp-libvips-linuxmusl-x64@1.0.4': + optional: true + + '@img/sharp-linux-arm64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linux-arm64': 1.0.4 + optional: true + + '@img/sharp-linux-arm@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linux-arm': 1.0.5 + optional: true + + '@img/sharp-linux-s390x@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linux-s390x': 1.0.4 + optional: true + + '@img/sharp-linux-x64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linux-x64': 1.0.4 + optional: true + + '@img/sharp-linuxmusl-arm64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 + optional: true + + '@img/sharp-linuxmusl-x64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-x64': 1.0.4 + optional: true + + '@img/sharp-wasm32@0.33.5': + dependencies: + '@emnapi/runtime': 1.3.1 + optional: true + + '@img/sharp-win32-ia32@0.33.5': + optional: true + + '@img/sharp-win32-x64@0.33.5': + optional: true + + '@internationalized/date@3.5.6': + dependencies: + '@swc/helpers': 0.5.15 + + '@isaacs/cliui@8.0.2': + dependencies: + string-width: 5.1.2 + string-width-cjs: string-width@4.2.3 + strip-ansi: 7.1.0 + strip-ansi-cjs: strip-ansi@6.0.1 + wrap-ansi: 8.1.0 + wrap-ansi-cjs: wrap-ansi@7.0.0 + + '@jridgewell/gen-mapping@0.3.5': + dependencies: + '@jridgewell/set-array': 1.2.1 + '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping': 0.3.25 + + '@jridgewell/resolve-uri@3.1.2': {} + + '@jridgewell/set-array@1.2.1': {} + + '@jridgewell/sourcemap-codec@1.5.0': {} + + '@jridgewell/trace-mapping@0.3.25': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 + + '@jsr/hk__photographer-toolbox@0.1.8': + dependencies: + '@jsr/valibot__valibot': 0.42.1 + '@types/fluent-ffmpeg': 2.1.27 + exiftool-vendored: 28.5.0 + fluent-ffmpeg: 2.1.3 + sharp: 0.33.5 + + '@jsr/valibot__valibot@0.42.1': {} + + '@kksh/api@0.0.48(svelte@5.1.16)(typescript@5.6.3)': + dependencies: + '@tauri-apps/api': 2.1.1 + '@tauri-apps/cli': 2.1.0 + '@tauri-apps/plugin-deep-link': 2.2.0 + '@tauri-apps/plugin-dialog': 2.2.0 + '@tauri-apps/plugin-fs': 2.2.0 + '@tauri-apps/plugin-global-shortcut': 2.2.0 + '@tauri-apps/plugin-http': 2.2.0 + '@tauri-apps/plugin-log': 2.2.0 + '@tauri-apps/plugin-notification': 2.2.0 + '@tauri-apps/plugin-os': 2.2.0 + '@tauri-apps/plugin-process': 2.2.0 + '@tauri-apps/plugin-shell': 2.2.0 + '@tauri-apps/plugin-store': 2.2.0 + '@tauri-apps/plugin-updater': 2.3.1 + '@tauri-apps/plugin-upload': https://gitpkg.vercel.app/HuakunShen/tauri-plugins-workspace/plugins/upload?69b198b0ccba269fe7622a95ec6a33ae392bff03 + kkrpc: 0.0.13(typescript@5.6.3) + lodash: 4.17.21 + minimatch: 10.0.1 + node-fetch: 3.3.2 + semver: 7.6.3 + svelte-sonner: 0.3.28(svelte@5.1.16) + tauri-api-adapter: 0.3.16(typescript@5.6.3) + tauri-plugin-network-api: 2.0.5(typescript@5.6.3) + tauri-plugin-shellx-api: 2.0.14 + tauri-plugin-system-info-api: 2.0.8(typescript@5.6.3) + valibot: 1.0.0-beta.11(typescript@5.6.3) + transitivePeerDependencies: + - bufferutil + - svelte + - typescript + - utf-8-validate + + '@kksh/svelte5@0.1.9(lucide-svelte@0.416.0(svelte@5.1.16))(svelte-sonner@0.3.28(svelte@5.1.16))(svelte@5.1.16)': + dependencies: + lucide-svelte: 0.416.0(svelte@5.1.16) + svelte: 5.1.16 + svelte-persisted-store: 0.12.0(svelte@5.1.16) + svelte-sonner: 0.3.28(svelte@5.1.16) + + '@melt-ui/svelte@0.76.2(svelte@5.1.16)': + dependencies: + '@floating-ui/core': 1.6.8 + '@floating-ui/dom': 1.6.12 + '@internationalized/date': 3.5.6 + dequal: 2.0.3 + focus-trap: 7.6.1 + nanoid: 5.0.8 + svelte: 5.1.16 + + '@nodelib/fs.scandir@2.1.5': + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + + '@nodelib/fs.stat@2.0.5': {} + + '@nodelib/fs.walk@1.2.8': + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.17.1 + + '@photostructure/tz-lookup@11.0.0': {} + + '@pkgjs/parseargs@0.11.0': + optional: true + + '@polka/url@1.0.0-next.28': {} + + '@poppinss/macroable@1.0.3': + optional: true + + '@rollup/rollup-android-arm-eabi@4.26.0': + optional: true + + '@rollup/rollup-android-arm64@4.26.0': + optional: true + + '@rollup/rollup-darwin-arm64@4.26.0': + optional: true + + '@rollup/rollup-darwin-x64@4.26.0': + optional: true + + '@rollup/rollup-freebsd-arm64@4.26.0': + optional: true + + '@rollup/rollup-freebsd-x64@4.26.0': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.26.0': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.26.0': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.26.0': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.26.0': + optional: true + + '@rollup/rollup-linux-powerpc64le-gnu@4.26.0': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.26.0': + optional: true + + '@rollup/rollup-linux-s390x-gnu@4.26.0': + optional: true + + '@rollup/rollup-linux-x64-gnu@4.26.0': + optional: true + + '@rollup/rollup-linux-x64-musl@4.26.0': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.26.0': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.26.0': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.26.0': + optional: true + + '@sideway/address@4.1.5': + dependencies: + '@hapi/hoek': 9.3.0 + optional: true + + '@sideway/formula@3.0.1': + optional: true + + '@sideway/pinpoint@2.0.0': + optional: true + + '@sinclair/typebox@0.32.35': + optional: true + + '@sveltejs/adapter-auto@3.3.1(@sveltejs/kit@2.8.1(@sveltejs/vite-plugin-svelte@4.0.0(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)))(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)))': + dependencies: + '@sveltejs/kit': 2.8.1(@sveltejs/vite-plugin-svelte@4.0.0(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)))(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)) + import-meta-resolve: 4.1.0 + + '@sveltejs/adapter-static@3.0.6(@sveltejs/kit@2.8.1(@sveltejs/vite-plugin-svelte@4.0.0(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)))(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)))': + dependencies: + '@sveltejs/kit': 2.8.1(@sveltejs/vite-plugin-svelte@4.0.0(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)))(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)) + + '@sveltejs/kit@2.8.1(@sveltejs/vite-plugin-svelte@4.0.0(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)))(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14))': + dependencies: + '@sveltejs/vite-plugin-svelte': 4.0.0(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)) + '@types/cookie': 0.6.0 + cookie: 0.6.0 + devalue: 5.1.1 + esm-env: 1.1.4 + import-meta-resolve: 4.1.0 + kleur: 4.1.5 + magic-string: 0.30.12 + mrmime: 2.0.0 + sade: 1.8.1 + set-cookie-parser: 2.7.1 + sirv: 3.0.0 + svelte: 5.1.16 + tiny-glob: 0.2.9 + vite: 5.4.11(@types/node@20.12.14) + + '@sveltejs/vite-plugin-svelte-inspector@3.0.1(@sveltejs/vite-plugin-svelte@4.0.0(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)))(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14))': + dependencies: + '@sveltejs/vite-plugin-svelte': 4.0.0(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)) + debug: 4.3.7 + svelte: 5.1.16 + vite: 5.4.11(@types/node@20.12.14) + transitivePeerDependencies: + - supports-color + + '@sveltejs/vite-plugin-svelte@4.0.0(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14))': + dependencies: + '@sveltejs/vite-plugin-svelte-inspector': 3.0.1(@sveltejs/vite-plugin-svelte@4.0.0(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)))(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)) + debug: 4.3.7 + deepmerge: 4.3.1 + kleur: 4.1.5 + magic-string: 0.30.12 + svelte: 5.1.16 + vite: 5.4.11(@types/node@20.12.14) + vitefu: 1.0.3(vite@5.4.11(@types/node@20.12.14)) + transitivePeerDependencies: + - supports-color + + '@swc/helpers@0.5.15': + dependencies: + tslib: 2.8.1 + + '@tailwindcss/typography@0.5.15(tailwindcss@3.4.14)': + dependencies: + lodash.castarray: 4.4.0 + lodash.isplainobject: 4.0.6 + lodash.merge: 4.6.2 + postcss-selector-parser: 6.0.10 + tailwindcss: 3.4.14 + + '@tanstack/table-core@8.20.5': {} + + '@tauri-apps/api@2.0.1': {} + + '@tauri-apps/api@2.1.1': {} + + '@tauri-apps/cli-darwin-arm64@2.1.0': + optional: true + + '@tauri-apps/cli-darwin-x64@2.1.0': + optional: true + + '@tauri-apps/cli-linux-arm-gnueabihf@2.1.0': + optional: true + + '@tauri-apps/cli-linux-arm64-gnu@2.1.0': + optional: true + + '@tauri-apps/cli-linux-arm64-musl@2.1.0': + optional: true + + '@tauri-apps/cli-linux-x64-gnu@2.1.0': + optional: true + + '@tauri-apps/cli-linux-x64-musl@2.1.0': + optional: true + + '@tauri-apps/cli-win32-arm64-msvc@2.1.0': + optional: true + + '@tauri-apps/cli-win32-ia32-msvc@2.1.0': + optional: true + + '@tauri-apps/cli-win32-x64-msvc@2.1.0': + optional: true + + '@tauri-apps/cli@2.1.0': + optionalDependencies: + '@tauri-apps/cli-darwin-arm64': 2.1.0 + '@tauri-apps/cli-darwin-x64': 2.1.0 + '@tauri-apps/cli-linux-arm-gnueabihf': 2.1.0 + '@tauri-apps/cli-linux-arm64-gnu': 2.1.0 + '@tauri-apps/cli-linux-arm64-musl': 2.1.0 + '@tauri-apps/cli-linux-x64-gnu': 2.1.0 + '@tauri-apps/cli-linux-x64-musl': 2.1.0 + '@tauri-apps/cli-win32-arm64-msvc': 2.1.0 + '@tauri-apps/cli-win32-ia32-msvc': 2.1.0 + '@tauri-apps/cli-win32-x64-msvc': 2.1.0 + + '@tauri-apps/plugin-deep-link@2.2.0': + dependencies: + '@tauri-apps/api': 2.1.1 + + '@tauri-apps/plugin-dialog@2.2.0': + dependencies: + '@tauri-apps/api': 2.1.1 + + '@tauri-apps/plugin-fs@2.2.0': + dependencies: + '@tauri-apps/api': 2.1.1 + + '@tauri-apps/plugin-global-shortcut@2.2.0': + dependencies: + '@tauri-apps/api': 2.1.1 + + '@tauri-apps/plugin-http@2.2.0': + dependencies: + '@tauri-apps/api': 2.1.1 + + '@tauri-apps/plugin-log@2.2.0': + dependencies: + '@tauri-apps/api': 2.1.1 + + '@tauri-apps/plugin-notification@2.2.0': + dependencies: + '@tauri-apps/api': 2.1.1 + + '@tauri-apps/plugin-os@2.2.0': + dependencies: + '@tauri-apps/api': 2.1.1 + + '@tauri-apps/plugin-process@2.2.0': + dependencies: + '@tauri-apps/api': 2.1.1 + + '@tauri-apps/plugin-shell@2.2.0': + dependencies: + '@tauri-apps/api': 2.1.1 + + '@tauri-apps/plugin-store@2.2.0': + dependencies: + '@tauri-apps/api': 2.1.1 + + '@tauri-apps/plugin-updater@2.3.1': + dependencies: + '@tauri-apps/api': 2.1.1 + + '@tauri-apps/plugin-upload@2.2.1': + dependencies: + '@tauri-apps/api': 2.1.1 + + '@tauri-apps/plugin-upload@https://gitpkg.vercel.app/HuakunShen/tauri-plugins-workspace/plugins/upload?69b198b0ccba269fe7622a95ec6a33ae392bff03': + dependencies: + '@tauri-apps/api': 2.1.1 + + '@types/cookie@0.6.0': {} + + '@types/eslint@9.6.1': + dependencies: + '@types/estree': 1.0.6 + '@types/json-schema': 7.0.15 + + '@types/estree@1.0.6': {} + + '@types/fluent-ffmpeg@2.1.27': + dependencies: + '@types/node': 20.12.14 + + '@types/json-schema@7.0.15': {} + + '@types/luxon@3.4.2': {} + + '@types/node@20.12.14': + dependencies: + undici-types: 5.26.5 + + '@types/validator@13.12.2': + optional: true + + '@typeschema/class-validator@0.3.0(@types/json-schema@7.0.15)(class-validator@0.14.1)': + dependencies: + '@typeschema/core': 0.14.0(@types/json-schema@7.0.15) + optionalDependencies: + class-validator: 0.14.1 + transitivePeerDependencies: + - '@types/json-schema' + optional: true + + '@typeschema/core@0.14.0(@types/json-schema@7.0.15)': + optionalDependencies: + '@types/json-schema': 7.0.15 + optional: true + + '@typescript-eslint/eslint-plugin@8.14.0(@typescript-eslint/parser@8.14.0(eslint@9.14.0(jiti@1.21.6))(typescript@5.6.3))(eslint@9.14.0(jiti@1.21.6))(typescript@5.6.3)': + dependencies: + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 8.14.0(eslint@9.14.0(jiti@1.21.6))(typescript@5.6.3) + '@typescript-eslint/scope-manager': 8.14.0 + '@typescript-eslint/type-utils': 8.14.0(eslint@9.14.0(jiti@1.21.6))(typescript@5.6.3) + '@typescript-eslint/utils': 8.14.0(eslint@9.14.0(jiti@1.21.6))(typescript@5.6.3) + '@typescript-eslint/visitor-keys': 8.14.0 + eslint: 9.14.0(jiti@1.21.6) + graphemer: 1.4.0 + ignore: 5.3.2 + natural-compare: 1.4.0 + ts-api-utils: 1.4.0(typescript@5.6.3) + optionalDependencies: + typescript: 5.6.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/parser@8.14.0(eslint@9.14.0(jiti@1.21.6))(typescript@5.6.3)': + dependencies: + '@typescript-eslint/scope-manager': 8.14.0 + '@typescript-eslint/types': 8.14.0 + '@typescript-eslint/typescript-estree': 8.14.0(typescript@5.6.3) + '@typescript-eslint/visitor-keys': 8.14.0 + debug: 4.3.7 + eslint: 9.14.0(jiti@1.21.6) + optionalDependencies: + typescript: 5.6.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/scope-manager@8.14.0': + dependencies: + '@typescript-eslint/types': 8.14.0 + '@typescript-eslint/visitor-keys': 8.14.0 + + '@typescript-eslint/type-utils@8.14.0(eslint@9.14.0(jiti@1.21.6))(typescript@5.6.3)': + dependencies: + '@typescript-eslint/typescript-estree': 8.14.0(typescript@5.6.3) + '@typescript-eslint/utils': 8.14.0(eslint@9.14.0(jiti@1.21.6))(typescript@5.6.3) + debug: 4.3.7 + ts-api-utils: 1.4.0(typescript@5.6.3) + optionalDependencies: + typescript: 5.6.3 + transitivePeerDependencies: + - eslint + - supports-color + + '@typescript-eslint/types@8.14.0': {} + + '@typescript-eslint/typescript-estree@8.14.0(typescript@5.6.3)': + dependencies: + '@typescript-eslint/types': 8.14.0 + '@typescript-eslint/visitor-keys': 8.14.0 + debug: 4.3.7 + fast-glob: 3.3.2 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.6.3 + ts-api-utils: 1.4.0(typescript@5.6.3) + optionalDependencies: + typescript: 5.6.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/utils@8.14.0(eslint@9.14.0(jiti@1.21.6))(typescript@5.6.3)': + dependencies: + '@eslint-community/eslint-utils': 4.4.1(eslint@9.14.0(jiti@1.21.6)) + '@typescript-eslint/scope-manager': 8.14.0 + '@typescript-eslint/types': 8.14.0 + '@typescript-eslint/typescript-estree': 8.14.0(typescript@5.6.3) + eslint: 9.14.0(jiti@1.21.6) + transitivePeerDependencies: + - supports-color + - typescript + + '@typescript-eslint/visitor-keys@8.14.0': + dependencies: + '@typescript-eslint/types': 8.14.0 + eslint-visitor-keys: 3.4.3 + + '@vinejs/compiler@2.5.0': + optional: true + + '@vinejs/vine@1.8.0': + dependencies: + '@poppinss/macroable': 1.0.3 + '@types/validator': 13.12.2 + '@vinejs/compiler': 2.5.0 + camelcase: 8.0.0 + dayjs: 1.11.13 + dlv: 1.1.3 + normalize-url: 8.0.1 + validator: 13.12.0 + optional: true + + acorn-jsx@5.3.2(acorn@8.14.0): + dependencies: + acorn: 8.14.0 + + acorn-typescript@1.4.13(acorn@8.14.0): + dependencies: + acorn: 8.14.0 + + acorn@8.14.0: {} + + ajv@6.12.6: + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + + ansi-regex@5.0.1: {} + + ansi-regex@6.1.0: {} + + ansi-styles@4.3.0: + dependencies: + color-convert: 2.0.1 + + ansi-styles@6.2.1: {} + + any-promise@1.3.0: {} + + anymatch@3.1.3: + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + + arg@5.0.2: {} + + argparse@2.0.1: {} + + aria-query@5.3.2: {} + + arktype@2.0.0-rc.8: + dependencies: + '@ark/schema': 0.10.0 + '@ark/util': 0.10.0 + optional: true + + array-union@2.1.0: {} + + async@0.2.10: {} + + autoprefixer@10.4.20(postcss@8.4.49): + dependencies: + browserslist: 4.24.2 + caniuse-lite: 1.0.30001680 + fraction.js: 4.3.7 + normalize-range: 0.1.2 + picocolors: 1.1.1 + postcss: 8.4.49 + postcss-value-parser: 4.2.0 + + axobject-query@4.1.0: {} + + balanced-match@1.0.2: {} + + batch-cluster@13.0.0: {} + + binary-extensions@2.3.0: {} + + bits-ui@0.21.16(svelte@5.1.16): + dependencies: + '@internationalized/date': 3.5.6 + '@melt-ui/svelte': 0.76.2(svelte@5.1.16) + nanoid: 5.0.8 + svelte: 5.1.16 + + bits-ui@1.0.0-next.54(svelte@5.1.16): + dependencies: + '@floating-ui/core': 1.6.8 + '@floating-ui/dom': 1.6.12 + '@internationalized/date': 3.5.6 + esm-env: 1.1.4 + runed: 0.15.3(svelte@5.1.16) + svelte: 5.1.16 + svelte-toolbelt: 0.4.6(svelte@5.1.16) + + brace-expansion@1.1.11: + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + + brace-expansion@2.0.1: + dependencies: + balanced-match: 1.0.2 + + braces@3.0.3: + dependencies: + fill-range: 7.1.1 + + browserslist@4.24.2: + dependencies: + caniuse-lite: 1.0.30001680 + electron-to-chromium: 1.5.57 + node-releases: 2.0.18 + update-browserslist-db: 1.1.1(browserslist@4.24.2) + + buffer-from@1.1.2: + optional: true + + callsites@3.1.0: {} + + camelcase-css@2.0.1: {} + + camelcase@8.0.0: + optional: true + + caniuse-lite@1.0.30001680: {} + + chalk@4.1.2: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + chokidar@3.6.0: + dependencies: + anymatch: 3.1.3 + braces: 3.0.3 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.3 + + chokidar@4.0.1: + dependencies: + readdirp: 4.0.2 + + class-validator@0.14.1: + dependencies: + '@types/validator': 13.12.2 + libphonenumber-js: 1.11.14 + validator: 13.12.0 + optional: true + + clsx@2.1.1: {} + + color-convert@2.0.1: + dependencies: + color-name: 1.1.4 + + color-name@1.1.4: {} + + color-string@1.9.1: + dependencies: + color-name: 1.1.4 + simple-swizzle: 0.2.2 + + color@4.2.3: + dependencies: + color-convert: 2.0.1 + color-string: 1.9.1 + + commander@4.1.1: {} + + commander@9.5.0: {} + + concat-map@0.0.1: {} + + cookie@0.6.0: {} + + cross-spawn@7.0.5: + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + + cssesc@3.0.0: {} + + data-uri-to-buffer@4.0.1: {} + + dayjs@1.11.13: + optional: true + + debug@4.3.7: + dependencies: + ms: 2.1.3 + + deep-is@0.1.4: {} + + deepmerge@4.3.1: {} + + dequal@2.0.3: {} + + detect-libc@2.0.3: {} + + devalue@5.1.1: {} + + didyoumean@1.2.2: {} + + dir-glob@3.0.1: + dependencies: + path-type: 4.0.0 + + dlv@1.1.3: {} + + eastasianwidth@0.2.0: {} + + effect@3.10.14: + dependencies: + fast-check: 3.23.1 + optional: true + + electron-to-chromium@1.5.57: {} + + embla-carousel-reactive-utils@8.3.1(embla-carousel@8.3.1): + dependencies: + embla-carousel: 8.3.1 + + embla-carousel-svelte@8.3.1(svelte@5.1.16): + dependencies: + embla-carousel: 8.3.1 + embla-carousel-reactive-utils: 8.3.1(embla-carousel@8.3.1) + svelte: 5.1.16 + + embla-carousel@8.3.1: {} + + emoji-regex@8.0.0: {} + + emoji-regex@9.2.2: {} + + esbuild-runner@2.2.2(esbuild@0.21.5): + dependencies: + esbuild: 0.21.5 + source-map-support: 0.5.21 + tslib: 2.4.0 + optional: true + + esbuild@0.21.5: + optionalDependencies: + '@esbuild/aix-ppc64': 0.21.5 + '@esbuild/android-arm': 0.21.5 + '@esbuild/android-arm64': 0.21.5 + '@esbuild/android-x64': 0.21.5 + '@esbuild/darwin-arm64': 0.21.5 + '@esbuild/darwin-x64': 0.21.5 + '@esbuild/freebsd-arm64': 0.21.5 + '@esbuild/freebsd-x64': 0.21.5 + '@esbuild/linux-arm': 0.21.5 + '@esbuild/linux-arm64': 0.21.5 + '@esbuild/linux-ia32': 0.21.5 + '@esbuild/linux-loong64': 0.21.5 + '@esbuild/linux-mips64el': 0.21.5 + '@esbuild/linux-ppc64': 0.21.5 + '@esbuild/linux-riscv64': 0.21.5 + '@esbuild/linux-s390x': 0.21.5 + '@esbuild/linux-x64': 0.21.5 + '@esbuild/netbsd-x64': 0.21.5 + '@esbuild/openbsd-x64': 0.21.5 + '@esbuild/sunos-x64': 0.21.5 + '@esbuild/win32-arm64': 0.21.5 + '@esbuild/win32-ia32': 0.21.5 + '@esbuild/win32-x64': 0.21.5 + + escalade@3.2.0: {} + + escape-string-regexp@4.0.0: {} + + eslint-compat-utils@0.5.1(eslint@9.14.0(jiti@1.21.6)): + dependencies: + eslint: 9.14.0(jiti@1.21.6) + semver: 7.6.3 + + eslint-config-prettier@9.1.0(eslint@9.14.0(jiti@1.21.6)): + dependencies: + eslint: 9.14.0(jiti@1.21.6) + + eslint-plugin-svelte@2.46.0(eslint@9.14.0(jiti@1.21.6))(svelte@5.1.16): + dependencies: + '@eslint-community/eslint-utils': 4.4.1(eslint@9.14.0(jiti@1.21.6)) + '@jridgewell/sourcemap-codec': 1.5.0 + eslint: 9.14.0(jiti@1.21.6) + eslint-compat-utils: 0.5.1(eslint@9.14.0(jiti@1.21.6)) + 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.1.16) + optionalDependencies: + svelte: 5.1.16 + transitivePeerDependencies: + - ts-node + + eslint-scope@7.2.2: + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + + eslint-scope@8.2.0: + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + + eslint-visitor-keys@3.4.3: {} + + eslint-visitor-keys@4.2.0: {} + + eslint@9.14.0(jiti@1.21.6): + dependencies: + '@eslint-community/eslint-utils': 4.4.1(eslint@9.14.0(jiti@1.21.6)) + '@eslint-community/regexpp': 4.12.1 + '@eslint/config-array': 0.18.0 + '@eslint/core': 0.7.0 + '@eslint/eslintrc': 3.1.0 + '@eslint/js': 9.14.0 + '@eslint/plugin-kit': 0.2.2 + '@humanfs/node': 0.16.6 + '@humanwhocodes/module-importer': 1.0.1 + '@humanwhocodes/retry': 0.4.1 + '@types/estree': 1.0.6 + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.5 + debug: 4.3.7 + 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 + text-table: 0.2.0 + optionalDependencies: + jiti: 1.21.6 + transitivePeerDependencies: + - supports-color + + esm-env@1.1.4: {} + + espree@10.3.0: + dependencies: + acorn: 8.14.0 + acorn-jsx: 5.3.2(acorn@8.14.0) + eslint-visitor-keys: 4.2.0 + + espree@9.6.1: + dependencies: + acorn: 8.14.0 + acorn-jsx: 5.3.2(acorn@8.14.0) + eslint-visitor-keys: 3.4.3 + + esquery@1.6.0: + dependencies: + estraverse: 5.3.0 + + esrap@1.2.2: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.0 + '@types/estree': 1.0.6 + + esrecurse@4.3.0: + dependencies: + estraverse: 5.3.0 + + estraverse@5.3.0: {} + + esutils@2.0.3: {} + + exiftool-vendored.exe@12.96.0: + optional: true + + exiftool-vendored.pl@12.96.0: + optional: true + + exiftool-vendored@28.5.0: + dependencies: + '@photostructure/tz-lookup': 11.0.0 + '@types/luxon': 3.4.2 + batch-cluster: 13.0.0 + he: 1.2.0 + luxon: 3.5.0 + optionalDependencies: + exiftool-vendored.exe: 12.96.0 + exiftool-vendored.pl: 12.96.0 + + fast-check@3.23.1: + dependencies: + pure-rand: 6.1.0 + optional: true + + fast-deep-equal@3.1.3: {} + + fast-glob@3.3.2: + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.8 + + fast-json-stable-stringify@2.1.0: {} + + fast-levenshtein@2.0.6: {} + + fastq@1.17.1: + dependencies: + reusify: 1.0.4 + + fdir@6.4.2(picomatch@4.0.2): + optionalDependencies: + picomatch: 4.0.2 + + fetch-blob@3.2.0: + dependencies: + node-domexception: 1.0.0 + web-streams-polyfill: 3.3.3 + + file-entry-cache@8.0.0: + dependencies: + flat-cache: 4.0.1 + + filesize@10.1.6: {} + + fill-range@7.1.1: + dependencies: + to-regex-range: 5.0.1 + + find-up@5.0.0: + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + + flat-cache@4.0.1: + dependencies: + flatted: 3.3.1 + keyv: 4.5.4 + + flatted@3.3.1: {} + + fluent-ffmpeg@2.1.3: + dependencies: + async: 0.2.10 + which: 1.3.1 + + focus-trap@7.6.1: + dependencies: + tabbable: 6.2.0 + + foreground-child@3.3.0: + dependencies: + cross-spawn: 7.0.5 + signal-exit: 4.1.0 + + formdata-polyfill@4.0.10: + dependencies: + fetch-blob: 3.2.0 + + formsnap@2.0.0-next.1(svelte@5.1.16)(sveltekit-superforms@2.20.0(@sveltejs/kit@2.8.1(@sveltejs/vite-plugin-svelte@4.0.0(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)))(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)))(@types/json-schema@7.0.15)(svelte@5.1.16)(typescript@5.6.3)): + dependencies: + svelte: 5.1.16 + svelte-toolbelt: 0.4.6(svelte@5.1.16) + sveltekit-superforms: 2.20.0(@sveltejs/kit@2.8.1(@sveltejs/vite-plugin-svelte@4.0.0(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)))(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)))(@types/json-schema@7.0.15)(svelte@5.1.16)(typescript@5.6.3) + + fraction.js@4.3.7: {} + + fs.realpath@1.0.0: {} + + fsevents@2.3.3: + optional: true + + function-bind@1.1.2: {} + + glob-parent@5.1.2: + dependencies: + is-glob: 4.0.3 + + glob-parent@6.0.2: + dependencies: + is-glob: 4.0.3 + + glob@10.4.5: + dependencies: + foreground-child: 3.3.0 + jackspeak: 3.4.3 + minimatch: 9.0.5 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 1.11.1 + + glob@11.0.0: + dependencies: + foreground-child: 3.3.0 + jackspeak: 4.0.2 + minimatch: 10.0.1 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 2.0.0 + + glob@7.2.3: + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + + globals@14.0.0: {} + + globals@15.12.0: {} + + globalyzer@0.1.0: {} + + globby@11.1.0: + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.3.2 + ignore: 5.3.2 + merge2: 1.4.1 + slash: 3.0.0 + + globrex@0.1.2: {} + + graphemer@1.4.0: {} + + has-flag@4.0.0: {} + + hasown@2.0.2: + dependencies: + function-bind: 1.1.2 + + he@1.2.0: {} + + ignore@5.3.2: {} + + import-fresh@3.3.0: + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + + import-meta-resolve@4.1.0: {} + + imurmurhash@0.1.4: {} + + inflight@1.0.6: + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + + inherits@2.0.4: {} + + inline-style-parser@0.2.4: {} + + interpret@1.4.0: {} + + is-arrayish@0.3.2: {} + + is-binary-path@2.1.0: + dependencies: + binary-extensions: 2.3.0 + + is-core-module@2.15.1: + dependencies: + hasown: 2.0.2 + + is-extglob@2.1.1: {} + + is-fullwidth-code-point@3.0.0: {} + + is-glob@4.0.3: + dependencies: + is-extglob: 2.1.1 + + is-number@7.0.0: {} + + is-reference@3.0.3: + dependencies: + '@types/estree': 1.0.6 + + isexe@2.0.0: {} + + jackspeak@3.4.3: + dependencies: + '@isaacs/cliui': 8.0.2 + optionalDependencies: + '@pkgjs/parseargs': 0.11.0 + + jackspeak@4.0.2: + dependencies: + '@isaacs/cliui': 8.0.2 + + jiti@1.21.6: {} + + joi@17.13.3: + dependencies: + '@hapi/hoek': 9.3.0 + '@hapi/topo': 5.1.0 + '@sideway/address': 4.1.5 + '@sideway/formula': 3.0.1 + '@sideway/pinpoint': 2.0.0 + optional: true + + js-yaml@4.1.0: + dependencies: + argparse: 2.0.1 + + json-buffer@3.0.1: {} + + json-schema-to-ts@3.1.1: + dependencies: + '@babel/runtime': 7.26.0 + ts-algebra: 2.0.0 + optional: true + + json-schema-traverse@0.4.1: {} + + json-stable-stringify-without-jsonify@1.0.1: {} + + just-clone@6.2.0: {} + + keyv@4.5.4: + dependencies: + json-buffer: 3.0.1 + + kkrpc@0.0.12(typescript@5.6.3): + dependencies: + typescript: 5.6.3 + ws: 8.18.0 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + + kkrpc@0.0.13(typescript@5.6.3): + dependencies: + typescript: 5.6.3 + ws: 8.18.0 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + + kleur@4.1.5: {} + + known-css-properties@0.35.0: {} + + levn@0.4.1: + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + + libphonenumber-js@1.11.14: + optional: true + + lilconfig@2.1.0: {} + + lilconfig@3.1.2: {} + + lines-and-columns@1.2.4: {} + + locate-character@3.0.0: {} + + locate-path@6.0.0: + dependencies: + p-locate: 5.0.0 + + lodash.castarray@4.4.0: {} + + lodash.isplainobject@4.0.6: {} + + lodash.merge@4.6.2: {} + + lodash@4.17.21: {} + + lru-cache@10.4.3: {} + + lru-cache@11.0.2: {} + + lucide-svelte@0.416.0(svelte@5.1.16): + dependencies: + svelte: 5.1.16 + + luxon@3.5.0: {} + + magic-string@0.30.12: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.0 + + memoize-weak@1.0.2: {} + + merge2@1.4.1: {} + + micromatch@4.0.8: + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 + + minimatch@10.0.1: + dependencies: + brace-expansion: 2.0.1 + + minimatch@3.1.2: + dependencies: + brace-expansion: 1.1.11 + + minimatch@9.0.5: + dependencies: + brace-expansion: 2.0.1 + + minimist@1.2.8: {} + + minipass@7.1.2: {} + + mode-watcher@0.4.1(svelte@5.1.16): + dependencies: + svelte: 5.1.16 + + mri@1.2.0: {} + + mrmime@2.0.0: {} + + ms@2.1.3: {} + + mylas@2.1.13: {} + + mz@2.7.0: + dependencies: + any-promise: 1.3.0 + object-assign: 4.1.1 + thenify-all: 1.6.0 + + nanoid@3.3.7: {} + + nanoid@5.0.8: {} + + natural-compare@1.4.0: {} + + node-domexception@1.0.0: {} + + node-fetch@3.3.2: + dependencies: + data-uri-to-buffer: 4.0.1 + fetch-blob: 3.2.0 + formdata-polyfill: 4.0.10 + + node-releases@2.0.18: {} + + normalize-path@3.0.0: {} + + normalize-range@0.1.2: {} + + normalize-url@8.0.1: + optional: true + + object-assign@4.1.1: {} + + object-hash@3.0.0: {} + + once@1.4.0: + dependencies: + wrappy: 1.0.2 + + optionator@0.9.4: + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.5 + + p-limit@3.1.0: + dependencies: + yocto-queue: 0.1.0 + + p-locate@5.0.0: + dependencies: + p-limit: 3.1.0 + + package-json-from-dist@1.0.1: {} + + paneforge@0.0.6(svelte@5.1.16): + dependencies: + nanoid: 5.0.8 + svelte: 5.1.16 + + parent-module@1.0.1: + dependencies: + callsites: 3.1.0 + + path-exists@4.0.0: {} + + path-is-absolute@1.0.1: {} + + path-key@3.1.1: {} + + path-parse@1.0.7: {} + + path-scurry@1.11.1: + dependencies: + lru-cache: 10.4.3 + minipass: 7.1.2 + + path-scurry@2.0.0: + dependencies: + lru-cache: 11.0.2 + minipass: 7.1.2 + + path-type@4.0.0: {} + + picocolors@1.1.1: {} + + picomatch@2.3.1: {} + + picomatch@4.0.2: + optional: true + + pify@2.3.0: {} + + pirates@4.0.6: {} + + plimit-lit@1.6.1: + dependencies: + queue-lit: 1.5.2 + + postcss-import@15.1.0(postcss@8.4.49): + dependencies: + postcss: 8.4.49 + postcss-value-parser: 4.2.0 + read-cache: 1.0.0 + resolve: 1.22.8 + + postcss-js@4.0.1(postcss@8.4.49): + dependencies: + camelcase-css: 2.0.1 + postcss: 8.4.49 + + postcss-load-config@3.1.4(postcss@8.4.49): + dependencies: + lilconfig: 2.1.0 + yaml: 1.10.2 + optionalDependencies: + postcss: 8.4.49 + + postcss-load-config@4.0.2(postcss@8.4.49): + dependencies: + lilconfig: 3.1.2 + yaml: 2.6.0 + optionalDependencies: + postcss: 8.4.49 + + postcss-nested@6.2.0(postcss@8.4.49): + dependencies: + postcss: 8.4.49 + postcss-selector-parser: 6.1.2 + + postcss-safe-parser@6.0.0(postcss@8.4.49): + dependencies: + postcss: 8.4.49 + + postcss-scss@4.0.9(postcss@8.4.49): + dependencies: + postcss: 8.4.49 + + postcss-selector-parser@6.0.10: + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + + postcss-selector-parser@6.1.2: + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + + postcss-value-parser@4.2.0: {} + + postcss@8.4.49: + dependencies: + nanoid: 3.3.7 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + prelude-ls@1.2.1: {} + + prettier-plugin-svelte@3.2.8(prettier@3.3.3)(svelte@5.1.16): + dependencies: + prettier: 3.3.3 + svelte: 5.1.16 + + prettier-plugin-tailwindcss@0.6.8(prettier-plugin-svelte@3.2.8(prettier@3.3.3)(svelte@5.1.16))(prettier@3.3.3): + dependencies: + prettier: 3.3.3 + optionalDependencies: + prettier-plugin-svelte: 3.2.8(prettier@3.3.3)(svelte@5.1.16) + + prettier@3.3.3: {} + + property-expr@2.0.6: + optional: true + + punycode@2.3.1: {} + + pure-rand@6.1.0: + optional: true + + queue-lit@1.5.2: {} + + queue-microtask@1.2.3: {} + + read-cache@1.0.0: + dependencies: + pify: 2.3.0 + + readdirp@3.6.0: + dependencies: + picomatch: 2.3.1 + + readdirp@4.0.2: {} + + rechoir@0.6.2: + dependencies: + resolve: 1.22.8 + + regenerator-runtime@0.14.1: + optional: true + + resolve-from@4.0.0: {} + + resolve@1.22.8: + dependencies: + is-core-module: 2.15.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + reusify@1.0.4: {} + + rimraf@6.0.1: + dependencies: + glob: 11.0.0 + package-json-from-dist: 1.0.1 + + rollup@4.26.0: + dependencies: + '@types/estree': 1.0.6 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.26.0 + '@rollup/rollup-android-arm64': 4.26.0 + '@rollup/rollup-darwin-arm64': 4.26.0 + '@rollup/rollup-darwin-x64': 4.26.0 + '@rollup/rollup-freebsd-arm64': 4.26.0 + '@rollup/rollup-freebsd-x64': 4.26.0 + '@rollup/rollup-linux-arm-gnueabihf': 4.26.0 + '@rollup/rollup-linux-arm-musleabihf': 4.26.0 + '@rollup/rollup-linux-arm64-gnu': 4.26.0 + '@rollup/rollup-linux-arm64-musl': 4.26.0 + '@rollup/rollup-linux-powerpc64le-gnu': 4.26.0 + '@rollup/rollup-linux-riscv64-gnu': 4.26.0 + '@rollup/rollup-linux-s390x-gnu': 4.26.0 + '@rollup/rollup-linux-x64-gnu': 4.26.0 + '@rollup/rollup-linux-x64-musl': 4.26.0 + '@rollup/rollup-win32-arm64-msvc': 4.26.0 + '@rollup/rollup-win32-ia32-msvc': 4.26.0 + '@rollup/rollup-win32-x64-msvc': 4.26.0 + fsevents: 2.3.3 + + run-parallel@1.2.0: + dependencies: + queue-microtask: 1.2.3 + + runed@0.15.3(svelte@5.1.16): + dependencies: + esm-env: 1.1.4 + svelte: 5.1.16 + + sade@1.8.1: + dependencies: + mri: 1.2.0 + + semver@7.6.3: {} + + set-cookie-parser@2.7.1: {} + + sharp@0.33.5: + dependencies: + color: 4.2.3 + detect-libc: 2.0.3 + semver: 7.6.3 + optionalDependencies: + '@img/sharp-darwin-arm64': 0.33.5 + '@img/sharp-darwin-x64': 0.33.5 + '@img/sharp-libvips-darwin-arm64': 1.0.4 + '@img/sharp-libvips-darwin-x64': 1.0.4 + '@img/sharp-libvips-linux-arm': 1.0.5 + '@img/sharp-libvips-linux-arm64': 1.0.4 + '@img/sharp-libvips-linux-s390x': 1.0.4 + '@img/sharp-libvips-linux-x64': 1.0.4 + '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 + '@img/sharp-libvips-linuxmusl-x64': 1.0.4 + '@img/sharp-linux-arm': 0.33.5 + '@img/sharp-linux-arm64': 0.33.5 + '@img/sharp-linux-s390x': 0.33.5 + '@img/sharp-linux-x64': 0.33.5 + '@img/sharp-linuxmusl-arm64': 0.33.5 + '@img/sharp-linuxmusl-x64': 0.33.5 + '@img/sharp-wasm32': 0.33.5 + '@img/sharp-win32-ia32': 0.33.5 + '@img/sharp-win32-x64': 0.33.5 + + shebang-command@2.0.0: + dependencies: + shebang-regex: 3.0.0 + + shebang-regex@3.0.0: {} + + shelljs@0.8.5: + dependencies: + glob: 7.2.3 + interpret: 1.4.0 + rechoir: 0.6.2 + + shx@0.3.4: + dependencies: + minimist: 1.2.8 + shelljs: 0.8.5 + + signal-exit@4.1.0: {} + + simple-swizzle@0.2.2: + dependencies: + is-arrayish: 0.3.2 + + sirv@3.0.0: + dependencies: + '@polka/url': 1.0.0-next.28 + mrmime: 2.0.0 + totalist: 3.0.1 + + slash@3.0.0: {} + + source-map-js@1.2.1: {} + + source-map-support@0.5.21: + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + optional: true + + source-map@0.6.1: + optional: true + + string-width@4.2.3: + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + + string-width@5.1.2: + dependencies: + eastasianwidth: 0.2.0 + emoji-regex: 9.2.2 + strip-ansi: 7.1.0 + + strip-ansi@6.0.1: + dependencies: + ansi-regex: 5.0.1 + + strip-ansi@7.1.0: + dependencies: + ansi-regex: 6.1.0 + + strip-json-comments@3.1.1: {} + + style-to-object@1.0.8: + dependencies: + inline-style-parser: 0.2.4 + + sucrase@3.35.0: + dependencies: + '@jridgewell/gen-mapping': 0.3.5 + commander: 4.1.1 + glob: 10.4.5 + lines-and-columns: 1.2.4 + mz: 2.7.0 + pirates: 4.0.6 + ts-interface-checker: 0.1.13 + + superstruct@2.0.2: + optional: true + + supports-color@7.2.0: + dependencies: + has-flag: 4.0.0 + + supports-preserve-symlinks-flag@1.0.0: {} + + svelte-check@4.0.7(picomatch@4.0.2)(svelte@5.1.16)(typescript@5.6.3): + dependencies: + '@jridgewell/trace-mapping': 0.3.25 + chokidar: 4.0.1 + fdir: 6.4.2(picomatch@4.0.2) + picocolors: 1.1.1 + sade: 1.8.1 + svelte: 5.1.16 + typescript: 5.6.3 + transitivePeerDependencies: + - picomatch + + svelte-eslint-parser@0.43.0(svelte@5.1.16): + dependencies: + eslint-scope: 7.2.2 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 + postcss: 8.4.49 + postcss-scss: 4.0.9(postcss@8.4.49) + optionalDependencies: + svelte: 5.1.16 + + svelte-persisted-store@0.12.0(svelte@5.1.16): + dependencies: + svelte: 5.1.16 + + svelte-radix@2.0.1(svelte@5.1.16): + dependencies: + svelte: 5.1.16 + + svelte-sonner@0.3.28(svelte@5.1.16): + dependencies: + svelte: 5.1.16 + + svelte-toolbelt@0.4.6(svelte@5.1.16): + dependencies: + clsx: 2.1.1 + style-to-object: 1.0.8 + svelte: 5.1.16 + + svelte@5.1.16: + dependencies: + '@ampproject/remapping': 2.3.0 + '@jridgewell/sourcemap-codec': 1.5.0 + '@types/estree': 1.0.6 + acorn: 8.14.0 + acorn-typescript: 1.4.13(acorn@8.14.0) + aria-query: 5.3.2 + axobject-query: 4.1.0 + esm-env: 1.1.4 + esrap: 1.2.2 + is-reference: 3.0.3 + locate-character: 3.0.0 + magic-string: 0.30.12 + zimmerframe: 1.1.2 + + sveltekit-superforms@2.20.0(@sveltejs/kit@2.8.1(@sveltejs/vite-plugin-svelte@4.0.0(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)))(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)))(@types/json-schema@7.0.15)(svelte@5.1.16)(typescript@5.6.3): + dependencies: + '@sveltejs/kit': 2.8.1(@sveltejs/vite-plugin-svelte@4.0.0(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)))(svelte@5.1.16)(vite@5.4.11(@types/node@20.12.14)) + devalue: 5.1.1 + just-clone: 6.2.0 + memoize-weak: 1.0.2 + svelte: 5.1.16 + ts-deepmerge: 7.0.1 + optionalDependencies: + '@effect/schema': 0.75.5(effect@3.10.14) + '@exodus/schemasafe': 1.3.0 + '@gcornut/valibot-json-schema': 0.31.0 + '@sinclair/typebox': 0.32.35 + '@typeschema/class-validator': 0.3.0(@types/json-schema@7.0.15)(class-validator@0.14.1) + '@vinejs/vine': 1.8.0 + arktype: 2.0.0-rc.8 + class-validator: 0.14.1 + effect: 3.10.14 + joi: 17.13.3 + json-schema-to-ts: 3.1.1 + superstruct: 2.0.2 + valibot: 0.41.0(typescript@5.6.3) + yup: 1.4.0 + zod: 3.23.8 + zod-to-json-schema: 3.23.5(zod@3.23.8) + transitivePeerDependencies: + - '@types/json-schema' + - typescript + + tabbable@6.2.0: {} + + tailwind-merge@2.5.4: {} + + tailwind-variants@0.2.1(tailwindcss@3.4.14): + dependencies: + tailwind-merge: 2.5.4 + tailwindcss: 3.4.14 + + tailwindcss@3.4.14: + dependencies: + '@alloc/quick-lru': 5.2.0 + arg: 5.0.2 + chokidar: 3.6.0 + didyoumean: 1.2.2 + dlv: 1.1.3 + fast-glob: 3.3.2 + glob-parent: 6.0.2 + is-glob: 4.0.3 + jiti: 1.21.6 + lilconfig: 2.1.0 + micromatch: 4.0.8 + normalize-path: 3.0.0 + object-hash: 3.0.0 + picocolors: 1.1.1 + postcss: 8.4.49 + postcss-import: 15.1.0(postcss@8.4.49) + postcss-js: 4.0.1(postcss@8.4.49) + postcss-load-config: 4.0.2(postcss@8.4.49) + postcss-nested: 6.2.0(postcss@8.4.49) + postcss-selector-parser: 6.1.2 + resolve: 1.22.8 + sucrase: 3.35.0 + transitivePeerDependencies: + - ts-node + + tauri-api-adapter@0.3.16(typescript@5.6.3): + dependencies: + '@tauri-apps/api': 2.1.1 + '@tauri-apps/plugin-dialog': 2.2.0 + '@tauri-apps/plugin-fs': 2.2.0 + '@tauri-apps/plugin-http': 2.2.0 + '@tauri-apps/plugin-log': 2.2.0 + '@tauri-apps/plugin-notification': 2.2.0 + '@tauri-apps/plugin-os': 2.2.0 + '@tauri-apps/plugin-shell': 2.2.0 + '@tauri-apps/plugin-upload': 2.2.1 + kkrpc: 0.0.12(typescript@5.6.3) + rimraf: 6.0.1 + shx: 0.3.4 + tauri-plugin-clipboard-api: 2.1.11(typescript@5.6.3) + tauri-plugin-network-api: 2.0.5(typescript@5.6.3) + tauri-plugin-shellx-api: 2.0.14 + tauri-plugin-system-info-api: 2.0.8(typescript@5.6.3) + tsc-alias: 1.8.10 + typescript: 5.6.3 + valibot: 1.0.0-beta.11(typescript@5.6.3) + transitivePeerDependencies: + - bufferutil + - utf-8-validate + + tauri-plugin-clipboard-api@2.1.11(typescript@5.6.3): + dependencies: + '@tauri-apps/api': 2.0.1 + valibot: 0.40.0(typescript@5.6.3) + transitivePeerDependencies: + - typescript + + tauri-plugin-network-api@2.0.5(typescript@5.6.3): + dependencies: + '@tauri-apps/api': 2.1.1 + valibot: 1.0.0-beta.11(typescript@5.6.3) + transitivePeerDependencies: + - typescript + + tauri-plugin-shellx-api@2.0.14: + dependencies: + '@tauri-apps/api': 2.1.1 + + tauri-plugin-system-info-api@2.0.8(typescript@5.6.3): + dependencies: + '@tauri-apps/api': 2.1.1 + valibot: 0.40.0(typescript@5.6.3) + transitivePeerDependencies: + - typescript + + text-table@0.2.0: {} + + thenify-all@1.6.0: + dependencies: + thenify: 3.3.1 + + thenify@3.3.1: + dependencies: + any-promise: 1.3.0 + + tiny-case@1.0.3: + optional: true + + tiny-glob@0.2.9: + dependencies: + globalyzer: 0.1.0 + globrex: 0.1.2 + + to-regex-range@5.0.1: + dependencies: + is-number: 7.0.0 + + toposort@2.0.2: + optional: true + + totalist@3.0.1: {} + + ts-algebra@2.0.0: + optional: true + + ts-api-utils@1.4.0(typescript@5.6.3): + dependencies: + typescript: 5.6.3 + + ts-deepmerge@7.0.1: {} + + ts-interface-checker@0.1.13: {} + + tsc-alias@1.8.10: + dependencies: + chokidar: 3.6.0 + commander: 9.5.0 + globby: 11.1.0 + mylas: 2.1.13 + normalize-path: 3.0.0 + plimit-lit: 1.6.1 + + tslib@2.4.0: + optional: true + + tslib@2.8.1: {} + + type-check@0.4.0: + dependencies: + prelude-ls: 1.2.1 + + type-fest@2.19.0: + optional: true + + typescript-eslint@8.14.0(eslint@9.14.0(jiti@1.21.6))(typescript@5.6.3): + dependencies: + '@typescript-eslint/eslint-plugin': 8.14.0(@typescript-eslint/parser@8.14.0(eslint@9.14.0(jiti@1.21.6))(typescript@5.6.3))(eslint@9.14.0(jiti@1.21.6))(typescript@5.6.3) + '@typescript-eslint/parser': 8.14.0(eslint@9.14.0(jiti@1.21.6))(typescript@5.6.3) + '@typescript-eslint/utils': 8.14.0(eslint@9.14.0(jiti@1.21.6))(typescript@5.6.3) + optionalDependencies: + typescript: 5.6.3 + transitivePeerDependencies: + - eslint + - supports-color + + typescript@5.6.3: {} + + undici-types@5.26.5: {} + + update-browserslist-db@1.1.1(browserslist@4.24.2): + dependencies: + browserslist: 4.24.2 + escalade: 3.2.0 + picocolors: 1.1.1 + + uri-js@4.4.1: + dependencies: + punycode: 2.3.1 + + util-deprecate@1.0.2: {} + + valibot@0.31.1: + optional: true + + valibot@0.40.0(typescript@5.6.3): + optionalDependencies: + typescript: 5.6.3 + + valibot@0.41.0(typescript@5.6.3): + optionalDependencies: + typescript: 5.6.3 + optional: true + + valibot@0.42.1(typescript@5.6.3): + optionalDependencies: + typescript: 5.6.3 + + valibot@1.0.0-beta.11(typescript@5.6.3): + optionalDependencies: + typescript: 5.6.3 + + validator@13.12.0: + optional: true + + vaul-svelte@0.3.2(svelte@5.1.16): + dependencies: + bits-ui: 0.21.16(svelte@5.1.16) + svelte: 5.1.16 + + vite@5.4.11(@types/node@20.12.14): + dependencies: + esbuild: 0.21.5 + postcss: 8.4.49 + rollup: 4.26.0 + optionalDependencies: + '@types/node': 20.12.14 + fsevents: 2.3.3 + + vitefu@1.0.3(vite@5.4.11(@types/node@20.12.14)): + optionalDependencies: + vite: 5.4.11(@types/node@20.12.14) + + web-streams-polyfill@3.3.3: {} + + which@1.3.1: + dependencies: + isexe: 2.0.0 + + which@2.0.2: + dependencies: + isexe: 2.0.0 + + word-wrap@1.2.5: {} + + wrap-ansi@7.0.0: + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + + wrap-ansi@8.1.0: + dependencies: + ansi-styles: 6.2.1 + string-width: 5.1.2 + strip-ansi: 7.1.0 + + wrappy@1.0.2: {} + + ws@8.18.0: {} + + yaml@1.10.2: {} + + yaml@2.6.0: {} + + yocto-queue@0.1.0: {} + + yup@1.4.0: + dependencies: + property-expr: 2.0.6 + tiny-case: 1.0.3 + toposort: 2.0.2 + type-fest: 2.19.0 + optional: true + + zimmerframe@1.1.2: {} + + zod-to-json-schema@3.23.5(zod@3.23.8): + dependencies: + zod: 3.23.8 + optional: true + + zod@3.23.8: {} diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..0f77216 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,6 @@ +export default { + plugins: { + tailwindcss: {}, + autoprefixer: {} + } +}; diff --git a/scripts/build-template-ext.ts b/scripts/build-template-ext.ts new file mode 100644 index 0000000..22b4562 --- /dev/null +++ b/scripts/build-template-ext.ts @@ -0,0 +1,36 @@ +import { watch } from 'fs'; +import { join } from 'path'; +import { refreshTemplateWorkerExtension } from '@kksh/api/dev'; +import { $ } from 'bun'; + +const entrypoints = ['./template-ext-src/video-info.ts']; + +async function build() { + try { + // for (const entrypoint of entrypoints) { + // await $`bun build --minify --target=browser --outdir=./dist ${entrypoint}`; + // } + await Bun.build({ + entrypoints, + target: 'browser', + outdir: './dist', + minify: false + }); + if (Bun.argv.includes('dev')) { + await refreshTemplateWorkerExtension(); + } + } catch (error) { + console.error(error); + } +} + +const srcDir = join(import.meta.dir, '..', 'template-ext-src'); + +await build(); + +if (Bun.argv.includes('dev')) { + console.log(`Watching ${srcDir} for changes...`); + watch(srcDir, { recursive: true }, async (event, filename) => { + await build(); + }); +} diff --git a/scripts/build.ts b/scripts/build.ts new file mode 100644 index 0000000..8377208 --- /dev/null +++ b/scripts/build.ts @@ -0,0 +1,4 @@ +import { $ } from 'bun'; + +await $`bun build:custom`; +await $`bun build:template`; diff --git a/src/app.css b/src/app.css new file mode 100644 index 0000000..117997f --- /dev/null +++ b/src/app.css @@ -0,0 +1,80 @@ +@import url("@kksh/svelte5/themes"); +@tailwind base; +@tailwind components; +@tailwind utilities; + +@layer base { + :root { + --background: 0 0% 100%; + --foreground: 0 0% 3.9%; + + --muted: 0 0% 96.1%; + --muted-foreground: 0 0% 45.1%; + + --popover: 0 0% 100%; + --popover-foreground: 0 0% 3.9%; + + --card: 0 0% 100%; + --card-foreground: 0 0% 3.9%; + + --border: 0 0% 89.8%; + --input: 0 0% 89.8%; + + --primary: 0 0% 9%; + --primary-foreground: 0 0% 98%; + + --secondary: 0 0% 96.1%; + --secondary-foreground: 0 0% 9%; + + --accent: 0 0% 96.1%; + --accent-foreground: 0 0% 9%; + + --destructive: 0 72.2% 50.6%; + --destructive-foreground: 0 0% 98%; + + --ring: 0 0% 3.9%; + + --radius: 0.5rem; + } + + .dark { + --background: 0 0% 3.9%; + --foreground: 0 0% 98%; + + --muted: 0 0% 14.9%; + --muted-foreground: 0 0% 63.9%; + + --popover: 0 0% 3.9%; + --popover-foreground: 0 0% 98%; + + --card: 0 0% 3.9%; + --card-foreground: 0 0% 98%; + + --border: 0 0% 14.9%; + --input: 0 0% 14.9%; + + --primary: 0 0% 98%; + --primary-foreground: 0 0% 9%; + + --secondary: 0 0% 14.9%; + --secondary-foreground: 0 0% 98%; + + --accent: 0 0% 14.9%; + --accent-foreground: 0 0% 98%; + + --destructive: 0 62.8% 30.6%; + --destructive-foreground: 0 0% 98%; + + --ring: 0 0% 83.1%; + } +} + +@layer base { + * { + @apply border-border; + } + + body { + @apply bg-background text-foreground; + } +} \ No newline at end of file diff --git a/src/app.d.ts b/src/app.d.ts new file mode 100644 index 0000000..743f07b --- /dev/null +++ b/src/app.d.ts @@ -0,0 +1,13 @@ +// See https://kit.svelte.dev/docs/types#app +// for information about these interfaces +declare global { + namespace App { + // interface Error {} + // interface Locals {} + // interface PageData {} + // interface PageState {} + // interface Platform {} + } +} + +export {}; diff --git a/src/app.html b/src/app.html new file mode 100644 index 0000000..77a5ff5 --- /dev/null +++ b/src/app.html @@ -0,0 +1,12 @@ + + + + + + + %sveltekit.head% + + +
%sveltekit.body%
+ + diff --git a/src/lib/api.ts b/src/lib/api.ts new file mode 100644 index 0000000..afd53fd --- /dev/null +++ b/src/lib/api.ts @@ -0,0 +1,89 @@ +// @ts-nocheck + +import { shell } from '@kksh/api/ui/iframe'; +import type { API } from '../types'; + +export async function getRpcAPI() { + const { rpcChannel, process, command } = await shell.createDenoRpcChannel( + '$EXTENSION/deno-src/index.ts', + [], + { + allowAllEnv: true, + // allowEnv: ['NODE_V8_COVERAGE', 'npm_package_config_libvips', 'EXIFTOOL_HOME', 'OSTYPE'], + // allowFfi: ["*sharp-darwin-arm64.node"], + allowAllFfi: true, + allowAllRead: true, + allowAllSys: true, + // allowSys: ['uid', 'cpus'], + // allowRun: ["*exiftool"] + allowAllRun: true, + env: { + FFMPEG_PATH: '/opt/homebrew/bin/ffmpeg', + FFPROBE_PATH: '/opt/homebrew/bin/ffprobe' + } + }, + {} + ); + const api = rpcChannel.getAPI(); + return { + api, + rpcChannel, + process, + command + }; +} + +export function getFFmpegPath() { + return shell.hasCommand('ffmpeg').then((has) => { + if (has) { + return shell.whereIsCommand('ffmpeg'); + } else { + return null; + } + }); +} + +(async () => { + + + import { shell } from '@kksh/api/ui/iframe'; + + const { rpcChannel, process, command } = await shell.createDenoRpcChannel( + '$EXTENSION/ext.ts', + { + allowEnv: ['NODE_V8_COVERAGE', 'npm_package_config_libvips', 'EXIFTOOL_HOME', 'OSTYPE'], + allowAllRead: true, + allowAllSys: true, + allowAllRun: true, + env: { + FFMPEG_PATH: '/opt/homebrew/bin/ffmpeg', + FFPROBE_PATH: '/opt/homebrew/bin/ffprobe' + } + } + ); + const api = rpcChannel.getAPI(); + api + .convertVideo( + inputPath, + outputPath, + verifiedOptions, + () => { + // on start + toast.info('Started'); + }, + (progress) => { + console.log('progress', progress); + }, + () => { + // on end + process.kill(); + toast.success('Done'); + } + ) + .catch((e) => { + console.error(e); + process.kill(); + }); + + +})(); diff --git a/src/lib/components/ThemeCustomizer.svelte b/src/lib/components/ThemeCustomizer.svelte new file mode 100644 index 0000000..d7b86b2 --- /dev/null +++ b/src/lib/components/ThemeCustomizer.svelte @@ -0,0 +1,20 @@ + + + diff --git a/src/lib/components/enable-button.svelte b/src/lib/components/enable-button.svelte new file mode 100644 index 0000000..9ba2940 --- /dev/null +++ b/src/lib/components/enable-button.svelte @@ -0,0 +1,25 @@ + + + diff --git a/src/lib/components/form-fields/aspect-ratio.svelte b/src/lib/components/form-fields/aspect-ratio.svelte new file mode 100644 index 0000000..b7fb647 --- /dev/null +++ b/src/lib/components/form-fields/aspect-ratio.svelte @@ -0,0 +1,34 @@ + + +
+
+ + +
+
+ + +
+
diff --git a/src/lib/components/form-fields/audio-bitrate.svelte b/src/lib/components/form-fields/audio-bitrate.svelte new file mode 100644 index 0000000..d903a36 --- /dev/null +++ b/src/lib/components/form-fields/audio-bitrate.svelte @@ -0,0 +1,36 @@ + + +
+
+ + +
+
+ + +
+
diff --git a/src/lib/components/form-fields/audio-channels.svelte b/src/lib/components/form-fields/audio-channels.svelte new file mode 100644 index 0000000..9023070 --- /dev/null +++ b/src/lib/components/form-fields/audio-channels.svelte @@ -0,0 +1,36 @@ + + +
+
+ + +
+
+ + +
+
diff --git a/src/lib/components/form-fields/audio-codec.svelte b/src/lib/components/form-fields/audio-codec.svelte new file mode 100644 index 0000000..915ef7b --- /dev/null +++ b/src/lib/components/form-fields/audio-codec.svelte @@ -0,0 +1,85 @@ + + +
+
+ + +
+
+ + + {#snippet child({ props }: { props: any })} + + {/snippet} + + + + + + No codec found. + + {#each codecs as codec} + { + if (!enabled) return; + audioCodec = codec; + closeAndFocusTrigger(); + }} + > + + {codec} + + {/each} + + + + + + + +
+
diff --git a/src/lib/components/form-fields/audio-quality.svelte b/src/lib/components/form-fields/audio-quality.svelte new file mode 100644 index 0000000..faf713b --- /dev/null +++ b/src/lib/components/form-fields/audio-quality.svelte @@ -0,0 +1,35 @@ + + +
+
+ + +
+
+ + +
+
diff --git a/src/lib/components/form-fields/autopad.svelte b/src/lib/components/form-fields/autopad.svelte new file mode 100644 index 0000000..2ad24ac --- /dev/null +++ b/src/lib/components/form-fields/autopad.svelte @@ -0,0 +1,28 @@ + + +
+ +
+ + +
+
diff --git a/src/lib/components/form-fields/duration.svelte b/src/lib/components/form-fields/duration.svelte new file mode 100644 index 0000000..bc51e4f --- /dev/null +++ b/src/lib/components/form-fields/duration.svelte @@ -0,0 +1,33 @@ + + +
+
+ + +
+
+ + +
+
diff --git a/src/lib/components/form-fields/ffmpeg-path.svelte b/src/lib/components/form-fields/ffmpeg-path.svelte new file mode 100644 index 0000000..a34480c --- /dev/null +++ b/src/lib/components/form-fields/ffmpeg-path.svelte @@ -0,0 +1,34 @@ + + +
+
+ + +
+
+ + +
+
diff --git a/src/lib/components/form-fields/format.svelte b/src/lib/components/form-fields/format.svelte new file mode 100644 index 0000000..9583447 --- /dev/null +++ b/src/lib/components/form-fields/format.svelte @@ -0,0 +1,104 @@ + + +
+
+ + +
+
+ + + {#snippet child({ props }: { props: any })} + + {/snippet} + + + + + + No format found. + + {#each videoFormats as _format} + { + if (!enabled) return; + format = _format; + closeAndFocusTrigger(); + }} + > + + {_format} + + {/each} + + + {#each audioFormats as _format} + { + if (!enabled) return; + format = _format; + closeAndFocusTrigger(); + }} + > + + {_format} + + {/each} + + + + + + + +
+
diff --git a/src/lib/components/form-fields/fps.svelte b/src/lib/components/form-fields/fps.svelte new file mode 100644 index 0000000..1dd6f84 --- /dev/null +++ b/src/lib/components/form-fields/fps.svelte @@ -0,0 +1,35 @@ + + +
+
+ + +
+
+ + +
+
diff --git a/src/lib/components/form-fields/frame-size.svelte b/src/lib/components/form-fields/frame-size.svelte new file mode 100644 index 0000000..a15771b --- /dev/null +++ b/src/lib/components/form-fields/frame-size.svelte @@ -0,0 +1,37 @@ + + +
+
+ + +
+
+ + +
+
diff --git a/src/lib/components/form-fields/input-file.svelte b/src/lib/components/form-fields/input-file.svelte new file mode 100644 index 0000000..58df59f --- /dev/null +++ b/src/lib/components/form-fields/input-file.svelte @@ -0,0 +1,48 @@ + + +
+ +
+ + +
+
diff --git a/src/lib/components/form-fields/no-audio.svelte b/src/lib/components/form-fields/no-audio.svelte new file mode 100644 index 0000000..24cd618 --- /dev/null +++ b/src/lib/components/form-fields/no-audio.svelte @@ -0,0 +1,28 @@ + + +
+
+
+
+ + {#if noAudio} + + {:else} + + {/if} +
+ +
+
diff --git a/src/lib/components/form-fields/no-video.svelte b/src/lib/components/form-fields/no-video.svelte new file mode 100644 index 0000000..f98208c --- /dev/null +++ b/src/lib/components/form-fields/no-video.svelte @@ -0,0 +1,28 @@ + + +
+
+
+
+ + {#if noVideo} + + {:else} + + {/if} +
+ +
+
diff --git a/src/lib/components/form-fields/output-path.svelte b/src/lib/components/form-fields/output-path.svelte new file mode 100644 index 0000000..8219fe3 --- /dev/null +++ b/src/lib/components/form-fields/output-path.svelte @@ -0,0 +1,26 @@ + + +
+ +
+ + +
+
diff --git a/src/lib/components/form-fields/preset.svelte b/src/lib/components/form-fields/preset.svelte new file mode 100644 index 0000000..1caa9e5 --- /dev/null +++ b/src/lib/components/form-fields/preset.svelte @@ -0,0 +1,52 @@ + + +
+
+ + +
+
+ + + {#if preset} + {preset} + {:else} + Select Preset + {/if} + + + + Presets + {#each presets as preset} + + {preset} + + {/each} + + + + +
+
diff --git a/src/lib/components/form-fields/resize-percentage.svelte b/src/lib/components/form-fields/resize-percentage.svelte new file mode 100644 index 0000000..6f76780 --- /dev/null +++ b/src/lib/components/form-fields/resize-percentage.svelte @@ -0,0 +1,37 @@ + + +
+
+ + +
+
+ + +
+
diff --git a/src/lib/components/form-fields/start-time.svelte b/src/lib/components/form-fields/start-time.svelte new file mode 100644 index 0000000..7748b2f --- /dev/null +++ b/src/lib/components/form-fields/start-time.svelte @@ -0,0 +1,26 @@ + + +
+
+ + +
+
+ + +
+
diff --git a/src/lib/components/form-fields/take-frames.svelte b/src/lib/components/form-fields/take-frames.svelte new file mode 100644 index 0000000..050f54f --- /dev/null +++ b/src/lib/components/form-fields/take-frames.svelte @@ -0,0 +1,33 @@ + + +
+
+ + +
+
+ + +
+
diff --git a/src/lib/components/form-fields/video-bitrate.svelte b/src/lib/components/form-fields/video-bitrate.svelte new file mode 100644 index 0000000..ee78d77 --- /dev/null +++ b/src/lib/components/form-fields/video-bitrate.svelte @@ -0,0 +1,36 @@ + + +
+
+ + +
+
+ + +
+
diff --git a/src/lib/components/form-fields/video-codec.svelte b/src/lib/components/form-fields/video-codec.svelte new file mode 100644 index 0000000..832039c --- /dev/null +++ b/src/lib/components/form-fields/video-codec.svelte @@ -0,0 +1,90 @@ + + +
+
+ + +
+
+ + + {#snippet child({ props }: { props: any })} + + {/snippet} + + + + + + No codec found. + + {#each codecs as codec} + { + if (!enabled) return; + videoCodec = codec; + closeAndFocusTrigger(); + }} + > + + {codec} + + {/each} + + + + + + + +
+
diff --git a/src/lib/components/info-popover.svelte b/src/lib/components/info-popover.svelte new file mode 100644 index 0000000..b5cd458 --- /dev/null +++ b/src/lib/components/info-popover.svelte @@ -0,0 +1,15 @@ + + + + + + + +
{description}
+
+
diff --git a/src/lib/components/options-form.svelte b/src/lib/components/options-form.svelte new file mode 100644 index 0000000..adf0c52 --- /dev/null +++ b/src/lib/components/options-form.svelte @@ -0,0 +1,222 @@ + + +
+ + + + +
+ + +
+
+
+ Start Processing + + + + More Options + + + + Video + Audio + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {#if browser && dev} + + {/if} + + + diff --git a/src/lib/form.ts b/src/lib/form.ts new file mode 100644 index 0000000..5d31962 --- /dev/null +++ b/src/lib/form.ts @@ -0,0 +1,77 @@ +import type { OptionsEnable, ProcessVideoOptions as LocalProcessVideoOptions } from './types'; +import type { ProcessVideoOptions } from '@hk/photographer-toolbox/types'; + +export function verifyFormOptions( + options: LocalProcessVideoOptions, + enabled: OptionsEnable +): ProcessVideoOptions | null { + const options2: ProcessVideoOptions = {}; + if (enabled.resizePercentage) { + options2.resizePercentage = options.resizePercentage; + } + if (enabled.size) { + options2.size = options.size; + } + if (enabled.aspectRatio) { + options2.aspectRatio = options.aspectRatio; + } + if (enabled.videoCodec) { + options2.videoCodec = options.videoCodec; + } + if (enabled.audioCodec) { + options2.audioCodec = options.audioCodec; + } + if (enabled.format) { + options2.format = options.format; + } + if (enabled.outputOptions) { + options2.outputOptions = options.outputOptions; + } + if (enabled.audioFilters) { + options2.audioFilters = options.audioFilters; + } + if (enabled.noAudio) { + options2.noAudio = options.noAudio; + } + if (enabled.takeFrames) { + options2.takeFrames = options.takeFrames; + } + if (enabled.noVideo) { + options2.noVideo = options.noVideo; + } + if (enabled.autopadPad) { + options2.autopad = { pad: options.enableAutopad }; + if (enabled.autopadColor) { + options2.autopad.color = options.autopadColor; + } + } + if (enabled.audioQuality) { + options2.audioQuality = options.audioQuality; + } + if (enabled.fps) { + options2.fps = options.fps; + } + if (enabled.preset) { + options2.preset = options.preset; + } + if (enabled.startTime) { + options2.startTime = options.startTime; + } + if (enabled.duration) { + options2.duration = options.duration; + } + if (enabled.audioBitrate) { + options2.audioBitrate = options.audioBitrate; + } + if (enabled.videoBitrate) { + options2.videoBitrate = options.videoBitrate; + } + if (enabled.audioChannels) { + options2.audioChannels = options.audioChannels; + } + if (enabled.ffmpegPath) { + options2.ffmpegPath = options.ffmpegPath; + } + return options2; + return null; +} diff --git a/src/lib/index.ts b/src/lib/index.ts new file mode 100644 index 0000000..856f2b6 --- /dev/null +++ b/src/lib/index.ts @@ -0,0 +1 @@ +// place files you want to import through the `$lib` alias in this folder. diff --git a/src/lib/stores/api.ts b/src/lib/stores/api.ts new file mode 100644 index 0000000..89517c1 --- /dev/null +++ b/src/lib/stores/api.ts @@ -0,0 +1,31 @@ +import { get, writable } from 'svelte/store'; +import type { API } from '../../types'; +import { getRpcAPI } from '@/api'; +import type { Child, DenoCommand } from '@kksh/api/ui/worker'; + +export function createApiStore() { + const store = writable<{ + api: API; + process: Child; + command: DenoCommand; + } | null>(null); + + async function init() { + return getRpcAPI().then(({ api, process, command }) => { + console.log('init api', api); + store.set({ api, process, command }); + }); + } + + return { + ...store, + init, + api: get(store)?.api, + destroy() { + console.log('destroy api'); + get(store)?.process.kill(); + } + }; +} + +export const api = createApiStore(); diff --git a/src/lib/types.ts b/src/lib/types.ts new file mode 100644 index 0000000..d2a67d0 --- /dev/null +++ b/src/lib/types.ts @@ -0,0 +1,76 @@ +import * as v from 'valibot'; + +export const ProcessVideoOptionsSchema = v.object({ + inputPath: v.string(), + outputPath: v.string(), + resizePercentage: v.optional(v.number()), + size: v.optional(v.string()), + aspectRatio: v.optional(v.string()), + videoCodec: v.optional(v.string()), + audioCodec: v.optional(v.string()), + format: v.optional(v.string()), + outputOptions: v.optional(v.array(v.string())), + audioFilters: v.optional(v.array(v.string())), + noAudio: v.optional(v.boolean(), false), + takeFrames: v.optional(v.number()), + noVideo: v.optional(v.boolean(), false), + enableAutopad: v.optional(v.boolean(), false), + autopadColor: v.optional(v.string()), + // autopad: v.optional( + // v.object({ + // pad: v.optional(v.boolean()), + // color: v.optional(v.string()) + // }), + // { pad: false, color: '' } + // ), + audioQuality: v.optional(v.number()), + fps: v.optional(v.number()), + preset: v.optional( + v.union([ + v.literal('ultrafast'), + v.literal('superfast'), + v.literal('veryfast'), + v.literal('faster'), + v.literal('fast'), + v.literal('medium'), + v.literal('slow'), + v.literal('slower'), + v.literal('veryslow') + ]), + 'medium' + ), + startTime: v.optional(v.union([v.string(), v.number()])), + duration: v.optional(v.union([v.string(), v.number()])), + audioBitrate: v.optional(v.number()), + videoBitrate: v.optional(v.number()), + audioChannels: v.optional(v.number()), + ffprobePath: v.optional(v.string()), + ffmpegPath: v.optional(v.string()) +}); +export type ProcessVideoOptions = v.InferOutput; + +export const OptionsEnableSchema = v.object({ + resizePercentage: v.boolean(), + size: v.boolean(), + aspectRatio: v.boolean(), + videoCodec: v.boolean(), + audioCodec: v.boolean(), + format: v.boolean(), + outputOptions: v.boolean(), + audioFilters: v.boolean(), + noAudio: v.boolean(), + takeFrames: v.boolean(), + noVideo: v.boolean(), + autopadPad: v.boolean(), + autopadColor: v.boolean(), + audioQuality: v.boolean(), + fps: v.boolean(), + preset: v.boolean(), + startTime: v.boolean(), + duration: v.boolean(), + audioBitrate: v.boolean(), + videoBitrate: v.boolean(), + audioChannels: v.boolean(), + ffmpegPath: v.boolean() +}); +export type OptionsEnable = v.InferOutput; diff --git a/src/lib/utils.ts b/src/lib/utils.ts new file mode 100644 index 0000000..8871245 --- /dev/null +++ b/src/lib/utils.ts @@ -0,0 +1,62 @@ +import { type ClassValue, clsx } from "clsx"; +import { twMerge } from "tailwind-merge"; +import { cubicOut } from "svelte/easing"; +import type { TransitionConfig } from "svelte/transition"; + +export function cn(...inputs: ClassValue[]) { + return twMerge(clsx(inputs)); +} + +type FlyAndScaleParams = { + y?: number; + x?: number; + start?: number; + duration?: number; +}; + +export const flyAndScale = ( + node: Element, + params: FlyAndScaleParams = { y: -8, x: 0, start: 0.95, duration: 150 } +): TransitionConfig => { + const style = getComputedStyle(node); + const transform = style.transform === "none" ? "" : style.transform; + + const scaleConversion = ( + valueA: number, + scaleA: [number, number], + scaleB: [number, number] + ) => { + const [minA, maxA] = scaleA; + const [minB, maxB] = scaleB; + + const percentage = (valueA - minA) / (maxA - minA); + const valueB = percentage * (maxB - minB) + minB; + + return valueB; + }; + + const styleToString = ( + style: Record + ): string => { + return Object.keys(style).reduce((str, key) => { + if (style[key] === undefined) return str; + return str + `${key}:${style[key]};`; + }, ""); + }; + + return { + duration: params.duration ?? 200, + delay: 0, + css: (t) => { + const y = scaleConversion(t, [0, 1], [params.y ?? 5, 0]); + const x = scaleConversion(t, [0, 1], [params.x ?? 0, 0]); + const scale = scaleConversion(t, [0, 1], [params.start ?? 0.95, 1]); + + return styleToString({ + transform: `${transform} translate3d(${x}px, ${y}px, 0) scale(${scale})`, + opacity: t + }); + }, + easing: cubicOut + }; +}; \ No newline at end of file diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte new file mode 100644 index 0000000..0474c6e --- /dev/null +++ b/src/routes/+layout.svelte @@ -0,0 +1,45 @@ + + + { + if (e.key === 'Escape') { + if (document.activeElement?.nodeName === 'BODY') { + e.preventDefault(); + ui.goBack(); + } + } + }} +/> + + + +
+ +
diff --git a/src/routes/+layout.ts b/src/routes/+layout.ts new file mode 100644 index 0000000..ceccaaf --- /dev/null +++ b/src/routes/+layout.ts @@ -0,0 +1,2 @@ +export const prerender = true; +export const ssr = false; diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte new file mode 100644 index 0000000..24c35e5 --- /dev/null +++ b/src/routes/+page.svelte @@ -0,0 +1,69 @@ + + +
+

Convert Video

+ + + + + + + 0} /> +
diff --git a/src/types.ts b/src/types.ts new file mode 100644 index 0000000..3717b21 --- /dev/null +++ b/src/types.ts @@ -0,0 +1,23 @@ +import type { + DefaultVideoMetadata, + ProcessVideoOptions, + Progress +} from '@hk/photographer-toolbox/types'; + +export type API = { + setFfprobePath: (path: string) => void; + setFfmpegPath: (path: string) => void; + readDefaultVideoMetadata: (path: string) => Promise; + getAvailableCodecsNamesByType: ( + type: 'video' | 'audio' | 'subtitle' | string, + source?: string + ) => Promise; + convertVideo: ( + inputPath: string, + outputPath: string, + options: ProcessVideoOptions, + startCallback?: () => void, + progressCallback?: (progress: Progress) => void, + endCallback?: () => void + ) => Promise; +}; diff --git a/static/favicon.png b/static/favicon.png new file mode 100644 index 0000000..825b9e6 Binary files /dev/null and b/static/favicon.png differ diff --git a/svelte.config.js b/svelte.config.js new file mode 100644 index 0000000..03d229d --- /dev/null +++ b/svelte.config.js @@ -0,0 +1,21 @@ +import adapter from '@sveltejs/adapter-static'; +import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; + +/** @type {import('@sveltejs/kit').Config} */ +const config = { + // Consult https://kit.svelte.dev/docs/integrations#preprocessors + // for more information about preprocessors + preprocess: vitePreprocess(), + + kit: { + // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list. + // If your environment is not supported, or you settled on a specific environment, switch out the adapter. + // See https://kit.svelte.dev/docs/adapters for more information about adapters. + adapter: adapter({}), + alias: { + '@/*': './src/lib/*' + } + } +}; + +export default config; diff --git a/tailwind.config.ts b/tailwind.config.ts new file mode 100644 index 0000000..8ab0eef --- /dev/null +++ b/tailwind.config.ts @@ -0,0 +1,86 @@ +import { fontFamily } from 'tailwindcss/defaultTheme'; +import type { Config } from 'tailwindcss'; + +const config: Config = { + darkMode: ['class'], + content: [ + './src/**/*.{html,js,svelte,ts}', + 'node_modules/@kksh/svelte5/dist/**/*.{html,js,svelte,ts}' + ], + safelist: ['dark'], + theme: { + container: { + center: true, + padding: '2rem', + screens: { + '2xl': '1400px' + } + }, + extend: { + colors: { + border: 'hsl(var(--border) / )', + input: 'hsl(var(--input) / )', + ring: 'hsl(var(--ring) / )', + background: 'hsl(var(--background) / )', + foreground: 'hsl(var(--foreground) / )', + primary: { + DEFAULT: 'hsl(var(--primary) / )', + foreground: 'hsl(var(--primary-foreground) / )' + }, + secondary: { + DEFAULT: 'hsl(var(--secondary) / )', + foreground: 'hsl(var(--secondary-foreground) / )' + }, + destructive: { + DEFAULT: 'hsl(var(--destructive) / )', + foreground: 'hsl(var(--destructive-foreground) / )' + }, + muted: { + DEFAULT: 'hsl(var(--muted) / )', + foreground: 'hsl(var(--muted-foreground) / )' + }, + accent: { + DEFAULT: 'hsl(var(--accent) / )', + foreground: 'hsl(var(--accent-foreground) / )' + }, + popover: { + DEFAULT: 'hsl(var(--popover) / )', + foreground: 'hsl(var(--popover-foreground) / )' + }, + card: { + DEFAULT: 'hsl(var(--card) / )', + foreground: 'hsl(var(--card-foreground) / )' + } + }, + borderRadius: { + lg: 'var(--radius)', + md: 'calc(var(--radius) - 2px)', + sm: 'calc(var(--radius) - 4px)' + }, + fontFamily: { + sans: [...fontFamily.sans] + }, + keyframes: { + 'accordion-down': { + from: { height: '0' }, + to: { height: 'var(--bits-accordion-content-height)' } + }, + 'accordion-up': { + from: { height: 'var(--bits-accordion-content-height)' }, + to: { height: '0' } + }, + 'caret-blink': { + '0%,70%,100%': { opacity: '1' }, + '20%,50%': { opacity: '0' } + } + }, + animation: { + 'accordion-down': 'accordion-down 0.2s ease-out', + 'accordion-up': 'accordion-up 0.2s ease-out', + 'caret-blink': 'caret-blink 1.25s ease-out infinite' + } + } + } +}; + +export default config; diff --git a/template-ext-src/video-info.ts b/template-ext-src/video-info.ts new file mode 100644 index 0000000..a6345d4 --- /dev/null +++ b/template-ext-src/video-info.ts @@ -0,0 +1,196 @@ +import { VideoMetadata, DefaultVideoMetadata } from '@hk/photographer-toolbox/types'; +import type { API } from '../src/types'; +import { + Action, + app, + Child, + clipboard, + expose, + Form, + fs, + Icon, + IconEnum, + List, + path, + shell, + system, + toast, + ui, + WorkerExtension +} from '@kksh/api/ui/worker'; +import { filesize } from 'filesize'; + +class VideoInfo extends WorkerExtension { + api: API | undefined; + apiProcess: Child | undefined; + videoMetadata: Record = {}; + + async fillApi() { + if (this.api) return; + const { rpcChannel, process, command } = await shell.createDenoRpcChannel( + '$EXTENSION/deno-src/index.ts', + [], + { + allowAllEnv: true, + // allowEnv: ['NODE_V8_COVERAGE', 'npm_package_config_libvips', 'EXIFTOOL_HOME', 'OSTYPE'], + // allowFfi: ["*sharp-darwin-arm64.node"], + allowAllFfi: true, + allowAllRead: true, + allowAllSys: true, + // allowSys: ['uid', 'cpus'], + // allowRun: ["*exiftool"] + allowAllRun: true, + env: { + FFMPEG_PATH: '/opt/homebrew/bin/ffmpeg', + FFPROBE_PATH: '/opt/homebrew/bin/ffprobe' + } + }, + {} + ); + command.stderr.on('data', (stderr) => { + console.warn('stderr', stderr); + }); + this.api = rpcChannel.getAPI(); + this.apiProcess = process; + } + + async refreshList(paths: string[]) { + ui.render(new List.List({ items: [] })); + if (!this.api) await this.fillApi(); + ui.showLoadingBar(true); + return Promise.all(paths.map((p) => this.api?.readDefaultVideoMetadata(p))) + .then((metadatas) => metadatas.filter((m) => !!m)) + .then((metadatas) => { + this.videoMetadata = Object.fromEntries( + paths.map((file, index) => [file, metadatas[index]]) + ); + }) + .then(async () => { + return ui.render( + new List.List({ + detail: new List.ItemDetail({ + width: 60, + children: [] + }), + items: await Promise.all( + paths.map(async (file) => { + const baseName = await path.basename(file); + return new List.Item({ + title: baseName, + value: file + }); + }) + ) + }) + ); + }) + .finally(() => { + ui.showLoadingBar(false); + console.log('finally, kill api process', this.apiProcess?.pid); + this.apiProcess?.kill(); + this.apiProcess = undefined; + this.api = undefined; + }); + } + + async load() { + ui.render(new List.List({ items: [] })); + await this.fillApi(); + ui.showLoadingBar(true); + const ffprobePath = await shell.whereIsCommand('ffprobe'); + console.log('ffprobePath', ffprobePath); + if (!ffprobePath) { + return toast.error('ffprobe not found in path'); + } + // await this.api?.setFfprobePath(ffprobePath); + let videoPaths = ( + await Promise.all([ + system.getSelectedFilesInFileExplorer().catch(() => { + return []; + }), + clipboard.hasFiles().then((has) => (has ? clipboard.readFiles() : Promise.resolve([]))) + ]) + ).flat(); + console.log('videoPaths', videoPaths); + + videoPaths = Array.from(new Set(videoPaths)); + this.refreshList(videoPaths); + } + + async onFilesDropped(paths: string[]): Promise { + return this.refreshList(paths); + } + + async onHighlightedListItemChanged(filePath: string): Promise { + const metadata = this.videoMetadata[filePath]; + const metadataLabels = [ + // genMetadataLabel(metadata, 'Width', 'width'), + // genMetadataLabel(metadata, 'Height', 'height'), + new List.ItemDetailMetadataLabel({ + title: 'Resolution', + text: `${metadata.width}x${metadata.height}` + }), + new List.ItemDetailMetadataLabel({ + title: 'Size', + text: metadata.size ? filesize(metadata.size) : 'N/A' + }), + genMetadataLabel(metadata, 'Average Frame Rate', 'avgFrameRate'), + // genMetadataLabel(metadata, 'Bit Rate', 'bitRate'), + new List.ItemDetailMetadataLabel({ + title: 'Bit Rate', + // text: metadata.bitRate ? metadata.bitRate.toString() : 'N/A' + text: metadata.bitRate ? `${filesize(metadata.bitRate / 8, { bits: true })}/s` : 'N/A' + }), + genMetadataLabel(metadata, 'Bits Per Raw Sample', 'bitsPerRawSample'), + genMetadataLabel(metadata, 'Codec', 'codec'), + genMetadataLabel(metadata, 'Codec Long Name', 'codecLongName'), + genMetadataLabel(metadata, 'Codec Tag', 'codecTag'), + genMetadataLabel(metadata, 'Codec Tag String', 'codecTagString'), + genMetadataLabel(metadata, 'Codec Type', 'codecType'), + genMetadataLabel(metadata, 'Duration', 'duration'), + genMetadataLabel(metadata, 'File Path', 'filePath'), + genMetadataLabel(metadata, 'Format Long Name', 'formatLongName'), + genMetadataLabel(metadata, 'Format Name', 'formatName'), + genMetadataLabel(metadata, 'Number Of Frames', 'numberOfFrames'), + genMetadataLabel(metadata, 'Number Of Streams', 'numberOfStreams'), + genMetadataLabel(metadata, 'Numeric Average Frame Rate', 'numericAvgFrameRate'), + genMetadataLabel(metadata, 'Profile', 'profile'), + genMetadataLabel(metadata, 'Raw Frame Rate', 'rFrameRate'), + genMetadataLabel(metadata, 'Start Time', 'startTime'), + genMetadataLabel(metadata, 'Time Base', 'timeBase') + ].filter((label) => label !== null); + return ui.render( + new List.List({ + inherits: ['items'], + detail: new List.ItemDetail({ + width: 55, + children: [new List.ItemDetailMetadata(metadataLabels)] + }) + }) + ); + } + + async onBeforeGoBack(): Promise { + console.log('onBeforeGoBack, kill api process', this.apiProcess?.pid); + await this.apiProcess?.kill(); + } + + async onListItemSelected(value: string): Promise { + return Promise.resolve(); + } +} + +function genMetadataLabel(metadata: DefaultVideoMetadata, title: string, key: string) { + if (!metadata[key]) return null; + return new List.ItemDetailMetadataLabel({ + title, + text: + typeof metadata[key] === 'number' + ? Number.isInteger(metadata[key]) + ? metadata[key].toString() + : metadata[key].toFixed(3).toString() + : metadata[key].toString() + }); +} + +expose(new VideoInfo()); diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..fc93cbd --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,19 @@ +{ + "extends": "./.svelte-kit/tsconfig.json", + "compilerOptions": { + "allowJs": true, + "checkJs": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "skipLibCheck": true, + "sourceMap": true, + "strict": true, + "moduleResolution": "bundler" + } + // Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias + // except $lib which is handled by https://kit.svelte.dev/docs/configuration#files + // + // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes + // from the referenced tsconfig.json - TypeScript does not merge them in +} diff --git a/vite.config.ts b/vite.config.ts new file mode 100644 index 0000000..bbf8c7d --- /dev/null +++ b/vite.config.ts @@ -0,0 +1,6 @@ +import { sveltekit } from '@sveltejs/kit/vite'; +import { defineConfig } from 'vite'; + +export default defineConfig({ + plugins: [sveltekit()] +});