From 8ae1e4a24a9087346ac1dcf3cb22d9b0f0f4d66b Mon Sep 17 00:00:00 2001 From: Louis Date: Tue, 31 Dec 2024 18:38:14 +0700 Subject: [PATCH] chore: refactor core and server packages --- .gitignore | 3 +- core/package.json | 26 +- core/rolldown.config.mjs | 51 + core/rollup.config.ts | 93 -- core/src/browser/core.ts | 49 +- core/src/node/extension/extension.ts | 36 +- core/tsconfig.json | 4 +- electron/package.json | 2 +- extensions/yarn.lock | 64 +- server/main.ts | 6 - server/package.json | 17 +- server/rolldown.config.mjs | 17 + server/tsconfig.json | 4 +- yarn.lock | 1942 +++----------------------- 14 files changed, 385 insertions(+), 1929 deletions(-) create mode 100644 core/rolldown.config.mjs delete mode 100644 core/rollup.config.ts delete mode 100644 server/main.ts create mode 100644 server/rolldown.config.mjs diff --git a/.gitignore b/.gitignore index 4d275f5b0..bbf7c059f 100644 --- a/.gitignore +++ b/.gitignore @@ -49,4 +49,5 @@ test_results.html electron/shared/** # docs -docs/yarn.lock \ No newline at end of file +docs/yarn.lock +electron/.version.bak diff --git a/core/package.json b/core/package.json index 564696910..d63fedb98 100644 --- a/core/package.json +++ b/core/package.json @@ -1,16 +1,16 @@ { "name": "@janhq/core", "version": "0.1.10", - "description": "Jan app core lib", + "description": "Core library for the Jan AI application framework", "keywords": [ "jan", "core" ], "homepage": "https://jan.ai", "license": "AGPL-3.0", - "browser": "dist/core.es5.js", - "main": "dist/core.es5.js", - "module": "dist/index.cjs.js", + "browser": "dist/index.js", + "main": "dist/index.js", + "module": "dist/node/index.cjs.js", "typings": "dist/types/index.d.ts", "files": [ "dist", @@ -18,13 +18,13 @@ ], "author": "Jan ", "exports": { - ".": "./dist/core.es5.js", + ".": "./dist/index.js", "./node": "./dist/node/index.cjs.js" }, "typesVersions": { "*": { ".": [ - "./dist/core.es5.js.map", + "./dist/index.js.map", "./dist/types/index.d.ts" ], "node": [ @@ -37,14 +37,13 @@ "lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'", "test": "jest", "prebuild": "rimraf dist", - "build": "rollup -c rollup.config.ts" + "build": "tsc -p . && rolldown -c rolldown.config.mjs" }, "devDependencies": { - "@npmcli/arborist": "^9.0.0", - "@rollup/plugin-replace": "^5.0.5", + "@npmcli/arborist": "^7.1.0", "@types/jest": "^29.5.14", "@types/node": "^22.10.0", - "@types/pacote": "^11.1.8", + "@types/pacote": "^11.1.7", "@types/request": "^2.48.12", "electron": "33.2.1", "eslint": "8.57.0", @@ -56,12 +55,7 @@ "request": "^2.88.2", "request-progress": "^3.0.0", "rimraf": "^3.0.2", - "rollup": "^2.38.5", - "rollup-plugin-commonjs": "^9.1.8", - "rollup-plugin-json": "^3.1.0", - "rollup-plugin-node-resolve": "^5.2.0", - "rollup-plugin-sourcemaps": "^0.6.3", - "rollup-plugin-typescript2": "^0.36.0", + "rolldown": "1.0.0-beta.1", "ts-jest": "^29.2.5", "tslib": "^2.6.2", "typescript": "^5.3.3" diff --git a/core/rolldown.config.mjs b/core/rolldown.config.mjs new file mode 100644 index 000000000..d95f8de8e --- /dev/null +++ b/core/rolldown.config.mjs @@ -0,0 +1,51 @@ +import { defineConfig } from 'rolldown' +import pkgJson from './package.json' with { type: 'json' } + +export default defineConfig([ + { + input: 'src/index.ts', + output: { + format: 'esm', + file: 'dist/index.js', + sourcemap: true, + }, + platform: 'browser', + external: ['path'], + define: { + NODE: JSON.stringify(`${pkgJson.name}/${pkgJson.node}`), + VERSION: JSON.stringify(pkgJson.version), + }, + }, + { + input: 'src/node/index.ts', + external: [ + 'fs/promises', + 'path', + 'pacote', + '@types/pacote', + '@npmcli/arborist', + 'ulidx', + 'node-fetch', + 'fs', + 'request', + 'crypto', + 'url', + 'http', + 'os', + 'util', + 'child_process', + 'electron', + 'request-progress', + ], + output: { + format: 'cjs', + file: 'dist/node/index.cjs.js', + sourcemap: true, + inlineDynamicImports: true, + }, + resolve: { + extensions: ['.js', '.ts'], + }, + platform: 'node', + }, +]) diff --git a/core/rollup.config.ts b/core/rollup.config.ts deleted file mode 100644 index 32e2d570f..000000000 --- a/core/rollup.config.ts +++ /dev/null @@ -1,93 +0,0 @@ -import resolve from 'rollup-plugin-node-resolve' -import commonjs from 'rollup-plugin-commonjs' -import sourceMaps from 'rollup-plugin-sourcemaps' -import typescript from 'rollup-plugin-typescript2' -import json from 'rollup-plugin-json' -import replace from '@rollup/plugin-replace' - -const pkg = require('./package.json') - -export default [ - { - input: `src/index.ts`, - output: [ - // { file: pkg.main, name: libraryName, format: 'umd', sourcemap: true }, - { file: pkg.main, format: 'es', sourcemap: true }, - ], - // Indicate here external modules you don't wanna include in your bundle (i.e.: 'lodash') - external: ['path'], - watch: { - include: 'src/**', - }, - plugins: [ - // Allow json resolution - json(), - // Compile TypeScript files - typescript({ - useTsconfigDeclarationDir: true, - exclude: ['**/*.test.ts', 'src/node/**'], - }), - // Allow bundling cjs modules (unlike webpack, rollup doesn't understand cjs) - // commonjs(), - // Allow node_modules resolution, so you can use 'external' to control - // which external modules to include in the bundle - // https://github.com/rollup/rollup-plugin-node-resolve#usage - replace({ - 'preventAssignment': true, - 'node:crypto': 'crypto', - 'delimiters': ['"', '"'], - }), - resolve({ - browser: true, - }), - - // Resolve source maps to the original source - sourceMaps(), - ], - }, - { - input: `src/node/index.ts`, - output: [ - { file: 'dist/node/index.cjs.js', format: 'cjs', sourcemap: true }, - ], - // Indicate here external modules you don't wanna include in your bundle (i.e.: 'lodash') - external: [ - 'fs/promises', - 'path', - 'pacote', - '@types/pacote', - '@npmcli/arborist', - 'ulidx', - 'node-fetch', - 'fs', - 'request', - 'crypto', - 'url', - 'http', - 'os', - 'util', - 'child_process', - ], - watch: { - include: 'src/node/**', - }, - plugins: [ - // Allow json resolution - json(), - // Compile TypeScript files - typescript({ - useTsconfigDeclarationDir: true, - exclude: ['**/*.test.ts', 'src/browser/**'], - }), - // Allow bundling cjs modules (unlike webpack, rollup doesn't understand cjs) - commonjs(), - // Allow node_modules resolution, so you can use 'external' to control - // which external modules to include in the bundle - // https://github.com/rollup/rollup-plugin-node-resolve#usage - resolve(), - - // Resolve source maps to the original source - sourceMaps(), - ], - }, -] diff --git a/core/src/browser/core.ts b/core/src/browser/core.ts index 7058fc172..a0abbb43e 100644 --- a/core/src/browser/core.ts +++ b/core/src/browser/core.ts @@ -1,4 +1,9 @@ -import { DownloadRequest, FileStat, NetworkConfig, SystemInformation } from '../types' +import { + DownloadRequest, + FileStat, + NetworkConfig, + SystemInformation, +} from '../types' /** * Execute a extension module function in main process @@ -9,11 +14,12 @@ import { DownloadRequest, FileStat, NetworkConfig, SystemInformation } from '../ * @returns Promise * */ -const executeOnMain: (extension: string, method: string, ...args: any[]) => Promise = ( - extension, - method, - ...args -) => globalThis.core?.api?.invokeExtensionFunc(extension, method, ...args) +const executeOnMain: ( + extension: string, + method: string, + ...args: any[] +) => Promise = (extension, method, ...args) => + globalThis.core?.api?.invokeExtensionFunc(extension, method, ...args) /** * Downloads a file from a URL and saves it to the local file system. @@ -23,10 +29,11 @@ const executeOnMain: (extension: string, method: string, ...args: any[]) => Prom * * @returns {Promise} A promise that resolves when the file is downloaded. */ -const downloadFile: (downloadRequest: DownloadRequest, network?: NetworkConfig) => Promise = ( - downloadRequest, - network -) => globalThis.core?.api?.downloadFile(downloadRequest, network) +const downloadFile: ( + downloadRequest: DownloadRequest, + network?: NetworkConfig +) => Promise = (downloadRequest, network) => + globalThis.core?.api?.downloadFile(downloadRequest, network) /** * Aborts the download of a specific file. @@ -41,7 +48,8 @@ const abortDownload: (fileName: string) => Promise = (fileName) => * * @returns {Promise} A Promise that resolves with Jan's data folder path. */ -const getJanDataFolderPath = (): Promise => globalThis.core.api?.getJanDataFolderPath() +const getJanDataFolderPath = (): Promise => + globalThis.core.api?.getJanDataFolderPath() /** * Opens the file explorer at a specific path. @@ -64,14 +72,16 @@ const joinPath: (paths: string[]) => Promise = (paths) => * @param path - The file path to retrieve dirname. * @returns {Promise} A promise that resolves the dirname. */ -const dirName: (path: string) => Promise = (path) => globalThis.core.api?.dirName(path) +const dirName: (path: string) => Promise = (path) => + globalThis.core.api?.dirName(path) /** * Retrieve the basename from an url. * @param path - The path to retrieve. * @returns {Promise} A promise that resolves with the basename. */ -const baseName: (paths: string) => Promise = (path) => globalThis.core.api?.baseName(path) +const baseName: (paths: string) => Promise = (path) => + globalThis.core.api?.baseName(path) /** * Opens an external URL in the default web browser. @@ -87,13 +97,15 @@ const openExternalUrl: (url: string) => Promise = (url) => * * @returns {Promise} - A promise that resolves with the resource path. */ -const getResourcePath: () => Promise = () => globalThis.core.api?.getResourcePath() +const getResourcePath: () => Promise = () => + globalThis.core.api?.getResourcePath() /** * Gets the user's home path. * @returns return user's home path */ -const getUserHomePath = (): Promise => globalThis.core.api?.getUserHomePath() +const getUserHomePath = (): Promise => + globalThis.core.api?.getUserHomePath() /** * Log to file from browser processes. @@ -111,8 +123,10 @@ const log: (message: string, fileName?: string) => void = (message, fileName) => * * @returns {Promise} - A promise that resolves with a boolean indicating whether the path is a subdirectory. */ -const isSubdirectory: (from: string, to: string) => Promise = (from: string, to: string) => - globalThis.core.api?.isSubdirectory(from, to) +const isSubdirectory: (from: string, to: string) => Promise = ( + from: string, + to: string +) => globalThis.core.api?.isSubdirectory(from, to) /** * Get system information @@ -159,5 +173,4 @@ export { systemInformation, showToast, dirName, - FileStat, } diff --git a/core/src/node/extension/extension.ts b/core/src/node/extension/extension.ts index 849f2d5f2..aea14f705 100644 --- a/core/src/node/extension/extension.ts +++ b/core/src/node/extension/extension.ts @@ -57,7 +57,10 @@ export default class Extension { * @type {string} */ get specifier() { - return this.origin + (this.installOptions.version ? '@' + this.installOptions.version : '') + return ( + this.origin + + (this.installOptions.version ? '@' + this.installOptions.version : '') + ) } /** @@ -75,8 +78,10 @@ export default class Extension { async getManifest() { // Get the package's manifest (package.json object) try { - await import('pacote').then((pacote) => { - return pacote.manifest(this.specifier, this.installOptions).then((mnf) => { + const pacote = require('pacote') + return pacote + .manifest(this.specifier, this.installOptions) + .then((mnf: any) => { // set the Package properties based on the it's manifest this.name = mnf.name this.productName = mnf.productName as string | undefined @@ -84,9 +89,10 @@ export default class Extension { this.main = mnf.main this.description = mnf.description }) - }) } catch (error) { - throw new Error(`Package ${this.origin} does not contain a valid manifest: ${error}`) + throw new Error( + `Package ${this.origin} does not contain a valid manifest: ${error}` + ) } return true @@ -103,10 +109,13 @@ export default class Extension { await this.getManifest() // Install the package in a child folder of the given folder - const pacote = await import('pacote') + const pacote = require('pacote') await pacote.extract( this.specifier, - join(ExtensionManager.instance.getExtensionsPath() ?? '', this.name ?? ''), + join( + ExtensionManager.instance.getExtensionsPath() ?? '', + this.name ?? '' + ), this.installOptions ) @@ -169,13 +178,12 @@ export default class Extension { * @returns the latest available version if a new version is available or false if not. */ async isUpdateAvailable() { - return import('pacote').then((pacote) => { - if (this.origin) { - return pacote.manifest(this.origin).then((mnf) => { - return mnf.version !== this.version ? mnf.version : false - }) - } - }) + const pacote = require('pacote') + if (this.origin) { + return pacote.manifest(this.origin).then((mnf: any) => { + return mnf.version !== this.version ? mnf.version : false + }) + } } /** diff --git a/core/tsconfig.json b/core/tsconfig.json index 2ca239146..3c1e7f57a 100644 --- a/core/tsconfig.json +++ b/core/tsconfig.json @@ -11,10 +11,10 @@ "experimentalDecorators": true, "emitDecoratorMetadata": true, "declarationDir": "dist/types", - "outDir": "dist/lib", + "outDir": "dist", "importHelpers": true, "types": ["jest", "node"] }, "include": ["src"], - "exclude": ["*.test.ts"] + "exclude": ["src/**/*.test.ts"] } diff --git a/electron/package.json b/electron/package.json index ae92cb89d..c058370a7 100644 --- a/electron/package.json +++ b/electron/package.json @@ -108,7 +108,7 @@ "electron-updater": "^6.1.7", "fs-extra": "^11.2.0", "node-fetch": "2", - "pacote": "^17.0.4", + "pacote": "^21.0.0", "request": "^2.88.2", "request-progress": "^3.0.0", "ulidx": "^2.3.0" diff --git a/extensions/yarn.lock b/extensions/yarn.lock index 920c08b36..fd5377275 100644 --- a/extensions/yarn.lock +++ b/extensions/yarn.lock @@ -509,161 +509,161 @@ __metadata: "@janhq/core@file:../../core/package.tgz::locator=%40janhq%2Fassistant-extension%40workspace%3Aassistant-extension": version: 0.1.10 - resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=02e76a&locator=%40janhq%2Fassistant-extension%40workspace%3Aassistant-extension" + resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=663527&locator=%40janhq%2Fassistant-extension%40workspace%3Aassistant-extension" dependencies: rxjs: "npm:^7.8.1" ulidx: "npm:^2.3.0" - checksum: 10c0/6402872ec92c48269a29766dcdf498289032b62ab8637a1f35d3c4cd78bfa814b94746f9d0f409ac4b653b6f7828109ce910f44c506d16efb40fef872e9b57bb + checksum: 10c0/1297917d8be757142645a76657af16193ea3ac58de53a2cc60142ef7c2a5900b461e84c237da0f13be58f6ce70155d53d1d1745702d8d9fdf8b177a5c67b09b5 languageName: node linkType: hard "@janhq/core@file:../../core/package.tgz::locator=%40janhq%2Fconversational-extension%40workspace%3Aconversational-extension": version: 0.1.10 - resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=02e76a&locator=%40janhq%2Fconversational-extension%40workspace%3Aconversational-extension" + resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=663527&locator=%40janhq%2Fconversational-extension%40workspace%3Aconversational-extension" dependencies: rxjs: "npm:^7.8.1" ulidx: "npm:^2.3.0" - checksum: 10c0/6402872ec92c48269a29766dcdf498289032b62ab8637a1f35d3c4cd78bfa814b94746f9d0f409ac4b653b6f7828109ce910f44c506d16efb40fef872e9b57bb + checksum: 10c0/1297917d8be757142645a76657af16193ea3ac58de53a2cc60142ef7c2a5900b461e84c237da0f13be58f6ce70155d53d1d1745702d8d9fdf8b177a5c67b09b5 languageName: node linkType: hard "@janhq/core@file:../../core/package.tgz::locator=%40janhq%2Fengine-management-extension%40workspace%3Aengine-management-extension": version: 0.1.10 - resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=02e76a&locator=%40janhq%2Fengine-management-extension%40workspace%3Aengine-management-extension" + resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=663527&locator=%40janhq%2Fengine-management-extension%40workspace%3Aengine-management-extension" dependencies: rxjs: "npm:^7.8.1" ulidx: "npm:^2.3.0" - checksum: 10c0/6402872ec92c48269a29766dcdf498289032b62ab8637a1f35d3c4cd78bfa814b94746f9d0f409ac4b653b6f7828109ce910f44c506d16efb40fef872e9b57bb + checksum: 10c0/1297917d8be757142645a76657af16193ea3ac58de53a2cc60142ef7c2a5900b461e84c237da0f13be58f6ce70155d53d1d1745702d8d9fdf8b177a5c67b09b5 languageName: node linkType: hard "@janhq/core@file:../../core/package.tgz::locator=%40janhq%2Finference-anthropic-extension%40workspace%3Ainference-anthropic-extension": version: 0.1.10 - resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=02e76a&locator=%40janhq%2Finference-anthropic-extension%40workspace%3Ainference-anthropic-extension" + resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=663527&locator=%40janhq%2Finference-anthropic-extension%40workspace%3Ainference-anthropic-extension" dependencies: rxjs: "npm:^7.8.1" ulidx: "npm:^2.3.0" - checksum: 10c0/6402872ec92c48269a29766dcdf498289032b62ab8637a1f35d3c4cd78bfa814b94746f9d0f409ac4b653b6f7828109ce910f44c506d16efb40fef872e9b57bb + checksum: 10c0/1297917d8be757142645a76657af16193ea3ac58de53a2cc60142ef7c2a5900b461e84c237da0f13be58f6ce70155d53d1d1745702d8d9fdf8b177a5c67b09b5 languageName: node linkType: hard "@janhq/core@file:../../core/package.tgz::locator=%40janhq%2Finference-cohere-extension%40workspace%3Ainference-cohere-extension": version: 0.1.10 - resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=02e76a&locator=%40janhq%2Finference-cohere-extension%40workspace%3Ainference-cohere-extension" + resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=663527&locator=%40janhq%2Finference-cohere-extension%40workspace%3Ainference-cohere-extension" dependencies: rxjs: "npm:^7.8.1" ulidx: "npm:^2.3.0" - checksum: 10c0/6402872ec92c48269a29766dcdf498289032b62ab8637a1f35d3c4cd78bfa814b94746f9d0f409ac4b653b6f7828109ce910f44c506d16efb40fef872e9b57bb + checksum: 10c0/1297917d8be757142645a76657af16193ea3ac58de53a2cc60142ef7c2a5900b461e84c237da0f13be58f6ce70155d53d1d1745702d8d9fdf8b177a5c67b09b5 languageName: node linkType: hard "@janhq/core@file:../../core/package.tgz::locator=%40janhq%2Finference-cortex-extension%40workspace%3Ainference-cortex-extension": version: 0.1.10 - resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=02e76a&locator=%40janhq%2Finference-cortex-extension%40workspace%3Ainference-cortex-extension" + resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=663527&locator=%40janhq%2Finference-cortex-extension%40workspace%3Ainference-cortex-extension" dependencies: rxjs: "npm:^7.8.1" ulidx: "npm:^2.3.0" - checksum: 10c0/6402872ec92c48269a29766dcdf498289032b62ab8637a1f35d3c4cd78bfa814b94746f9d0f409ac4b653b6f7828109ce910f44c506d16efb40fef872e9b57bb + checksum: 10c0/1297917d8be757142645a76657af16193ea3ac58de53a2cc60142ef7c2a5900b461e84c237da0f13be58f6ce70155d53d1d1745702d8d9fdf8b177a5c67b09b5 languageName: node linkType: hard "@janhq/core@file:../../core/package.tgz::locator=%40janhq%2Finference-groq-extension%40workspace%3Ainference-groq-extension": version: 0.1.10 - resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=02e76a&locator=%40janhq%2Finference-groq-extension%40workspace%3Ainference-groq-extension" + resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=663527&locator=%40janhq%2Finference-groq-extension%40workspace%3Ainference-groq-extension" dependencies: rxjs: "npm:^7.8.1" ulidx: "npm:^2.3.0" - checksum: 10c0/6402872ec92c48269a29766dcdf498289032b62ab8637a1f35d3c4cd78bfa814b94746f9d0f409ac4b653b6f7828109ce910f44c506d16efb40fef872e9b57bb + checksum: 10c0/1297917d8be757142645a76657af16193ea3ac58de53a2cc60142ef7c2a5900b461e84c237da0f13be58f6ce70155d53d1d1745702d8d9fdf8b177a5c67b09b5 languageName: node linkType: hard "@janhq/core@file:../../core/package.tgz::locator=%40janhq%2Finference-martian-extension%40workspace%3Ainference-martian-extension": version: 0.1.10 - resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=02e76a&locator=%40janhq%2Finference-martian-extension%40workspace%3Ainference-martian-extension" + resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=663527&locator=%40janhq%2Finference-martian-extension%40workspace%3Ainference-martian-extension" dependencies: rxjs: "npm:^7.8.1" ulidx: "npm:^2.3.0" - checksum: 10c0/6402872ec92c48269a29766dcdf498289032b62ab8637a1f35d3c4cd78bfa814b94746f9d0f409ac4b653b6f7828109ce910f44c506d16efb40fef872e9b57bb + checksum: 10c0/1297917d8be757142645a76657af16193ea3ac58de53a2cc60142ef7c2a5900b461e84c237da0f13be58f6ce70155d53d1d1745702d8d9fdf8b177a5c67b09b5 languageName: node linkType: hard "@janhq/core@file:../../core/package.tgz::locator=%40janhq%2Finference-mistral-extension%40workspace%3Ainference-mistral-extension": version: 0.1.10 - resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=02e76a&locator=%40janhq%2Finference-mistral-extension%40workspace%3Ainference-mistral-extension" + resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=663527&locator=%40janhq%2Finference-mistral-extension%40workspace%3Ainference-mistral-extension" dependencies: rxjs: "npm:^7.8.1" ulidx: "npm:^2.3.0" - checksum: 10c0/6402872ec92c48269a29766dcdf498289032b62ab8637a1f35d3c4cd78bfa814b94746f9d0f409ac4b653b6f7828109ce910f44c506d16efb40fef872e9b57bb + checksum: 10c0/1297917d8be757142645a76657af16193ea3ac58de53a2cc60142ef7c2a5900b461e84c237da0f13be58f6ce70155d53d1d1745702d8d9fdf8b177a5c67b09b5 languageName: node linkType: hard "@janhq/core@file:../../core/package.tgz::locator=%40janhq%2Finference-nvidia-extension%40workspace%3Ainference-nvidia-extension": version: 0.1.10 - resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=02e76a&locator=%40janhq%2Finference-nvidia-extension%40workspace%3Ainference-nvidia-extension" + resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=663527&locator=%40janhq%2Finference-nvidia-extension%40workspace%3Ainference-nvidia-extension" dependencies: rxjs: "npm:^7.8.1" ulidx: "npm:^2.3.0" - checksum: 10c0/6402872ec92c48269a29766dcdf498289032b62ab8637a1f35d3c4cd78bfa814b94746f9d0f409ac4b653b6f7828109ce910f44c506d16efb40fef872e9b57bb + checksum: 10c0/1297917d8be757142645a76657af16193ea3ac58de53a2cc60142ef7c2a5900b461e84c237da0f13be58f6ce70155d53d1d1745702d8d9fdf8b177a5c67b09b5 languageName: node linkType: hard "@janhq/core@file:../../core/package.tgz::locator=%40janhq%2Finference-openai-extension%40workspace%3Ainference-openai-extension": version: 0.1.10 - resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=02e76a&locator=%40janhq%2Finference-openai-extension%40workspace%3Ainference-openai-extension" + resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=663527&locator=%40janhq%2Finference-openai-extension%40workspace%3Ainference-openai-extension" dependencies: rxjs: "npm:^7.8.1" ulidx: "npm:^2.3.0" - checksum: 10c0/6402872ec92c48269a29766dcdf498289032b62ab8637a1f35d3c4cd78bfa814b94746f9d0f409ac4b653b6f7828109ce910f44c506d16efb40fef872e9b57bb + checksum: 10c0/1297917d8be757142645a76657af16193ea3ac58de53a2cc60142ef7c2a5900b461e84c237da0f13be58f6ce70155d53d1d1745702d8d9fdf8b177a5c67b09b5 languageName: node linkType: hard "@janhq/core@file:../../core/package.tgz::locator=%40janhq%2Finference-openrouter-extension%40workspace%3Ainference-openrouter-extension": version: 0.1.10 - resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=02e76a&locator=%40janhq%2Finference-openrouter-extension%40workspace%3Ainference-openrouter-extension" + resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=663527&locator=%40janhq%2Finference-openrouter-extension%40workspace%3Ainference-openrouter-extension" dependencies: rxjs: "npm:^7.8.1" ulidx: "npm:^2.3.0" - checksum: 10c0/6402872ec92c48269a29766dcdf498289032b62ab8637a1f35d3c4cd78bfa814b94746f9d0f409ac4b653b6f7828109ce910f44c506d16efb40fef872e9b57bb + checksum: 10c0/1297917d8be757142645a76657af16193ea3ac58de53a2cc60142ef7c2a5900b461e84c237da0f13be58f6ce70155d53d1d1745702d8d9fdf8b177a5c67b09b5 languageName: node linkType: hard "@janhq/core@file:../../core/package.tgz::locator=%40janhq%2Finference-triton-trt-llm-extension%40workspace%3Ainference-triton-trtllm-extension": version: 0.1.10 - resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=02e76a&locator=%40janhq%2Finference-triton-trt-llm-extension%40workspace%3Ainference-triton-trtllm-extension" + resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=663527&locator=%40janhq%2Finference-triton-trt-llm-extension%40workspace%3Ainference-triton-trtllm-extension" dependencies: rxjs: "npm:^7.8.1" ulidx: "npm:^2.3.0" - checksum: 10c0/6402872ec92c48269a29766dcdf498289032b62ab8637a1f35d3c4cd78bfa814b94746f9d0f409ac4b653b6f7828109ce910f44c506d16efb40fef872e9b57bb + checksum: 10c0/1297917d8be757142645a76657af16193ea3ac58de53a2cc60142ef7c2a5900b461e84c237da0f13be58f6ce70155d53d1d1745702d8d9fdf8b177a5c67b09b5 languageName: node linkType: hard "@janhq/core@file:../../core/package.tgz::locator=%40janhq%2Fmodel-extension%40workspace%3Amodel-extension": version: 0.1.10 - resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=02e76a&locator=%40janhq%2Fmodel-extension%40workspace%3Amodel-extension" + resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=663527&locator=%40janhq%2Fmodel-extension%40workspace%3Amodel-extension" dependencies: rxjs: "npm:^7.8.1" ulidx: "npm:^2.3.0" - checksum: 10c0/6402872ec92c48269a29766dcdf498289032b62ab8637a1f35d3c4cd78bfa814b94746f9d0f409ac4b653b6f7828109ce910f44c506d16efb40fef872e9b57bb + checksum: 10c0/1297917d8be757142645a76657af16193ea3ac58de53a2cc60142ef7c2a5900b461e84c237da0f13be58f6ce70155d53d1d1745702d8d9fdf8b177a5c67b09b5 languageName: node linkType: hard "@janhq/core@file:../../core/package.tgz::locator=%40janhq%2Fmonitoring-extension%40workspace%3Amonitoring-extension": version: 0.1.10 - resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=02e76a&locator=%40janhq%2Fmonitoring-extension%40workspace%3Amonitoring-extension" + resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=663527&locator=%40janhq%2Fmonitoring-extension%40workspace%3Amonitoring-extension" dependencies: rxjs: "npm:^7.8.1" ulidx: "npm:^2.3.0" - checksum: 10c0/6402872ec92c48269a29766dcdf498289032b62ab8637a1f35d3c4cd78bfa814b94746f9d0f409ac4b653b6f7828109ce910f44c506d16efb40fef872e9b57bb + checksum: 10c0/1297917d8be757142645a76657af16193ea3ac58de53a2cc60142ef7c2a5900b461e84c237da0f13be58f6ce70155d53d1d1745702d8d9fdf8b177a5c67b09b5 languageName: node linkType: hard "@janhq/core@file:../../core/package.tgz::locator=%40janhq%2Ftensorrt-llm-extension%40workspace%3Atensorrt-llm-extension": version: 0.1.10 - resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=02e76a&locator=%40janhq%2Ftensorrt-llm-extension%40workspace%3Atensorrt-llm-extension" + resolution: "@janhq/core@file:../../core/package.tgz#../../core/package.tgz::hash=663527&locator=%40janhq%2Ftensorrt-llm-extension%40workspace%3Atensorrt-llm-extension" dependencies: rxjs: "npm:^7.8.1" ulidx: "npm:^2.3.0" - checksum: 10c0/6402872ec92c48269a29766dcdf498289032b62ab8637a1f35d3c4cd78bfa814b94746f9d0f409ac4b653b6f7828109ce910f44c506d16efb40fef872e9b57bb + checksum: 10c0/1297917d8be757142645a76657af16193ea3ac58de53a2cc60142ef7c2a5900b461e84c237da0f13be58f6ce70155d53d1d1745702d8d9fdf8b177a5c67b09b5 languageName: node linkType: hard diff --git a/server/main.ts b/server/main.ts deleted file mode 100644 index b69197d15..000000000 --- a/server/main.ts +++ /dev/null @@ -1,6 +0,0 @@ -import { setup } from './helpers/setup' -import { startServer as start } from './index' -/** - * Setup extensions and start the server - */ -setup().then(() => start()) diff --git a/server/package.json b/server/package.json index 34c3a470f..3f2c54a7b 100644 --- a/server/package.json +++ b/server/package.json @@ -1,38 +1,28 @@ { "name": "@janhq/server", "version": "0.1.3", - "main": "build/index.js", - "types": "build/index.d.ts", + "main": "dist/index.js", "author": "Jan ", "license": "AGPL-3.0", "homepage": "https://jan.ai", - "description": "Use offline LLMs with your own data. Run open source models like Llama2 or Falcon on your internal computers/servers.", + "description": "Jan API Server proxies route all requests to cortex.cpp server with customized configurations.", "files": [ "build/**", "cortex.json" ], "scripts": { "lint": "eslint . --ext \".js,.jsx,.ts,.tsx\"", - "test:e2e": "playwright test --workers=1", - "dev": "tsc --watch & node --watch build/main.js", - "build": "tsc" + "build": "rolldown -c rolldown.config.mjs" }, "dependencies": { - "@alumna/reflect": "^1.1.3", - "@cyclic.sh/s3fs": "^1.2.9", "@fastify/cors": "^10.0.1", "@fastify/http-proxy": "^10.0.0", "@fastify/static": "^6.12.0", "@fastify/swagger": "^9.4.0", "@fastify/swagger-ui": "5.2.0", "@janhq/core": "link:../core", - "@npmcli/arborist": "^7.3.1", "dotenv": "^16.3.1", "fastify": "^5.2.0", - "fetch-retry": "^5.0.6", - "node-fetch": "2", - "request": "^2.88.2", - "request-progress": "^3.0.0", "tcp-port-used": "^1.0.2" }, "devDependencies": { @@ -42,6 +32,7 @@ "@typescript-eslint/eslint-plugin": "^6.7.3", "@typescript-eslint/parser": "^6.7.3", "eslint-plugin-react": "^7.34.0", + "rolldown": "1.0.0-beta.1", "run-script-os": "^1.1.6", "typescript": "^5.3.3" }, diff --git a/server/rolldown.config.mjs b/server/rolldown.config.mjs new file mode 100644 index 000000000..3f6acae63 --- /dev/null +++ b/server/rolldown.config.mjs @@ -0,0 +1,17 @@ +import { defineConfig } from 'rolldown' + +export default defineConfig([ + { + input: 'index.ts', + output: { + format: 'cjs', + file: 'dist/index.js', + sourcemap: true, + inlineDynamicImports: true, + }, + resolve: { + extensions: ['.js', '.ts'], + }, + platform: 'node', + }, +]) diff --git a/server/tsconfig.json b/server/tsconfig.json index d70798403..98ea8f886 100644 --- a/server/tsconfig.json +++ b/server/tsconfig.json @@ -4,8 +4,8 @@ "module": "commonjs", "noImplicitAny": true, "sourceMap": true, - "strict": true, - "outDir": "./build", + "strict": false, + "outDir": "./dist", "rootDir": "./", "noEmitOnError": true, "esModuleInterop": true, diff --git a/yarn.lock b/yarn.lock index 9664a2a9c..ee712022b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -43,699 +43,6 @@ __metadata: languageName: node linkType: hard -"@aws-crypto/crc32@npm:5.2.0": - version: 5.2.0 - resolution: "@aws-crypto/crc32@npm:5.2.0" - dependencies: - "@aws-crypto/util": "npm:^5.2.0" - "@aws-sdk/types": "npm:^3.222.0" - tslib: "npm:^2.6.2" - checksum: 10c0/eab9581d3363af5ea498ae0e72de792f54d8890360e14a9d8261b7b5c55ebe080279fb2556e07994d785341cdaa99ab0b1ccf137832b53b5904cd6928f2b094b - languageName: node - linkType: hard - -"@aws-crypto/crc32c@npm:5.2.0": - version: 5.2.0 - resolution: "@aws-crypto/crc32c@npm:5.2.0" - dependencies: - "@aws-crypto/util": "npm:^5.2.0" - "@aws-sdk/types": "npm:^3.222.0" - tslib: "npm:^2.6.2" - checksum: 10c0/223efac396cdebaf5645568fa9a38cd0c322c960ae1f4276bedfe2e1031d0112e49d7d39225d386354680ecefae29f39af469a84b2ddfa77cb6692036188af77 - languageName: node - linkType: hard - -"@aws-crypto/sha1-browser@npm:5.2.0": - version: 5.2.0 - resolution: "@aws-crypto/sha1-browser@npm:5.2.0" - dependencies: - "@aws-crypto/supports-web-crypto": "npm:^5.2.0" - "@aws-crypto/util": "npm:^5.2.0" - "@aws-sdk/types": "npm:^3.222.0" - "@aws-sdk/util-locate-window": "npm:^3.0.0" - "@smithy/util-utf8": "npm:^2.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/51fed0bf078c10322d910af179871b7d299dde5b5897873ffbeeb036f427e5d11d23db9794439226544b73901920fd19f4d86bbc103ed73cc0cfdea47a83c6ac - languageName: node - linkType: hard - -"@aws-crypto/sha256-browser@npm:5.2.0": - version: 5.2.0 - resolution: "@aws-crypto/sha256-browser@npm:5.2.0" - dependencies: - "@aws-crypto/sha256-js": "npm:^5.2.0" - "@aws-crypto/supports-web-crypto": "npm:^5.2.0" - "@aws-crypto/util": "npm:^5.2.0" - "@aws-sdk/types": "npm:^3.222.0" - "@aws-sdk/util-locate-window": "npm:^3.0.0" - "@smithy/util-utf8": "npm:^2.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/05f6d256794df800fe9aef5f52f2ac7415f7f3117d461f85a6aecaa4e29e91527b6fd503681a17136fa89e9dd3d916e9c7e4cfb5eba222875cb6c077bdc1d00d - languageName: node - linkType: hard - -"@aws-crypto/sha256-js@npm:5.2.0, @aws-crypto/sha256-js@npm:^5.2.0": - version: 5.2.0 - resolution: "@aws-crypto/sha256-js@npm:5.2.0" - dependencies: - "@aws-crypto/util": "npm:^5.2.0" - "@aws-sdk/types": "npm:^3.222.0" - tslib: "npm:^2.6.2" - checksum: 10c0/6c48701f8336341bb104dfde3d0050c89c288051f6b5e9bdfeb8091cf3ffc86efcd5c9e6ff2a4a134406b019c07aca9db608128f8d9267c952578a3108db9fd1 - languageName: node - linkType: hard - -"@aws-crypto/supports-web-crypto@npm:^5.2.0": - version: 5.2.0 - resolution: "@aws-crypto/supports-web-crypto@npm:5.2.0" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10c0/4d2118e29d68ca3f5947f1e37ce1fbb3239a0c569cc938cdc8ab8390d595609b5caf51a07c9e0535105b17bf5c52ea256fed705a07e9681118120ab64ee73af2 - languageName: node - linkType: hard - -"@aws-crypto/util@npm:5.2.0, @aws-crypto/util@npm:^5.2.0": - version: 5.2.0 - resolution: "@aws-crypto/util@npm:5.2.0" - dependencies: - "@aws-sdk/types": "npm:^3.222.0" - "@smithy/util-utf8": "npm:^2.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/0362d4c197b1fd64b423966945130207d1fe23e1bb2878a18e361f7743c8d339dad3f8729895a29aa34fff6a86c65f281cf5167c4bf253f21627ae80b6dd2951 - languageName: node - linkType: hard - -"@aws-sdk/client-s3@npm:^3.226.0": - version: 3.717.0 - resolution: "@aws-sdk/client-s3@npm:3.717.0" - dependencies: - "@aws-crypto/sha1-browser": "npm:5.2.0" - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.716.0" - "@aws-sdk/client-sts": "npm:3.716.0" - "@aws-sdk/core": "npm:3.716.0" - "@aws-sdk/credential-provider-node": "npm:3.716.0" - "@aws-sdk/middleware-bucket-endpoint": "npm:3.714.0" - "@aws-sdk/middleware-expect-continue": "npm:3.714.0" - "@aws-sdk/middleware-flexible-checksums": "npm:3.717.0" - "@aws-sdk/middleware-host-header": "npm:3.714.0" - "@aws-sdk/middleware-location-constraint": "npm:3.714.0" - "@aws-sdk/middleware-logger": "npm:3.714.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.714.0" - "@aws-sdk/middleware-sdk-s3": "npm:3.716.0" - "@aws-sdk/middleware-ssec": "npm:3.714.0" - "@aws-sdk/middleware-user-agent": "npm:3.716.0" - "@aws-sdk/region-config-resolver": "npm:3.714.0" - "@aws-sdk/signature-v4-multi-region": "npm:3.716.0" - "@aws-sdk/types": "npm:3.714.0" - "@aws-sdk/util-endpoints": "npm:3.714.0" - "@aws-sdk/util-user-agent-browser": "npm:3.714.0" - "@aws-sdk/util-user-agent-node": "npm:3.716.0" - "@aws-sdk/xml-builder": "npm:3.709.0" - "@smithy/config-resolver": "npm:^3.0.13" - "@smithy/core": "npm:^2.5.5" - "@smithy/eventstream-serde-browser": "npm:^3.0.14" - "@smithy/eventstream-serde-config-resolver": "npm:^3.0.11" - "@smithy/eventstream-serde-node": "npm:^3.0.13" - "@smithy/fetch-http-handler": "npm:^4.1.2" - "@smithy/hash-blob-browser": "npm:^3.1.10" - "@smithy/hash-node": "npm:^3.0.11" - "@smithy/hash-stream-node": "npm:^3.1.10" - "@smithy/invalid-dependency": "npm:^3.0.11" - "@smithy/md5-js": "npm:^3.0.11" - "@smithy/middleware-content-length": "npm:^3.0.13" - "@smithy/middleware-endpoint": "npm:^3.2.6" - "@smithy/middleware-retry": "npm:^3.0.31" - "@smithy/middleware-serde": "npm:^3.0.11" - "@smithy/middleware-stack": "npm:^3.0.11" - "@smithy/node-config-provider": "npm:^3.1.12" - "@smithy/node-http-handler": "npm:^3.3.2" - "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/smithy-client": "npm:^3.5.1" - "@smithy/types": "npm:^3.7.2" - "@smithy/url-parser": "npm:^3.0.11" - "@smithy/util-base64": "npm:^3.0.0" - "@smithy/util-body-length-browser": "npm:^3.0.0" - "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.31" - "@smithy/util-defaults-mode-node": "npm:^3.0.31" - "@smithy/util-endpoints": "npm:^2.1.7" - "@smithy/util-middleware": "npm:^3.0.11" - "@smithy/util-retry": "npm:^3.0.11" - "@smithy/util-stream": "npm:^3.3.2" - "@smithy/util-utf8": "npm:^3.0.0" - "@smithy/util-waiter": "npm:^3.2.0" - tslib: "npm:^2.6.2" - checksum: 10c0/f89525742aa38e0acd9c6395dabad3464dfb83c28d019b66ffca4268676ae93089be221e07f087d6d57856ab9c43ffd700c43f9ec392b995aefec29b24549ae0 - languageName: node - linkType: hard - -"@aws-sdk/client-sso-oidc@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/client-sso-oidc@npm:3.716.0" - dependencies: - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.716.0" - "@aws-sdk/credential-provider-node": "npm:3.716.0" - "@aws-sdk/middleware-host-header": "npm:3.714.0" - "@aws-sdk/middleware-logger": "npm:3.714.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.714.0" - "@aws-sdk/middleware-user-agent": "npm:3.716.0" - "@aws-sdk/region-config-resolver": "npm:3.714.0" - "@aws-sdk/types": "npm:3.714.0" - "@aws-sdk/util-endpoints": "npm:3.714.0" - "@aws-sdk/util-user-agent-browser": "npm:3.714.0" - "@aws-sdk/util-user-agent-node": "npm:3.716.0" - "@smithy/config-resolver": "npm:^3.0.13" - "@smithy/core": "npm:^2.5.5" - "@smithy/fetch-http-handler": "npm:^4.1.2" - "@smithy/hash-node": "npm:^3.0.11" - "@smithy/invalid-dependency": "npm:^3.0.11" - "@smithy/middleware-content-length": "npm:^3.0.13" - "@smithy/middleware-endpoint": "npm:^3.2.6" - "@smithy/middleware-retry": "npm:^3.0.31" - "@smithy/middleware-serde": "npm:^3.0.11" - "@smithy/middleware-stack": "npm:^3.0.11" - "@smithy/node-config-provider": "npm:^3.1.12" - "@smithy/node-http-handler": "npm:^3.3.2" - "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/smithy-client": "npm:^3.5.1" - "@smithy/types": "npm:^3.7.2" - "@smithy/url-parser": "npm:^3.0.11" - "@smithy/util-base64": "npm:^3.0.0" - "@smithy/util-body-length-browser": "npm:^3.0.0" - "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.31" - "@smithy/util-defaults-mode-node": "npm:^3.0.31" - "@smithy/util-endpoints": "npm:^2.1.7" - "@smithy/util-middleware": "npm:^3.0.11" - "@smithy/util-retry": "npm:^3.0.11" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - peerDependencies: - "@aws-sdk/client-sts": ^3.716.0 - checksum: 10c0/56c158846b2ff895565ff1da0f677d7959700288cf3dc44e7bd17ef87d6188233f6a331d1ded0e91df0068083ef28d50024016a90f5405f55b877b6c7130c7b0 - languageName: node - linkType: hard - -"@aws-sdk/client-sso@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/client-sso@npm:3.716.0" - dependencies: - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.716.0" - "@aws-sdk/middleware-host-header": "npm:3.714.0" - "@aws-sdk/middleware-logger": "npm:3.714.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.714.0" - "@aws-sdk/middleware-user-agent": "npm:3.716.0" - "@aws-sdk/region-config-resolver": "npm:3.714.0" - "@aws-sdk/types": "npm:3.714.0" - "@aws-sdk/util-endpoints": "npm:3.714.0" - "@aws-sdk/util-user-agent-browser": "npm:3.714.0" - "@aws-sdk/util-user-agent-node": "npm:3.716.0" - "@smithy/config-resolver": "npm:^3.0.13" - "@smithy/core": "npm:^2.5.5" - "@smithy/fetch-http-handler": "npm:^4.1.2" - "@smithy/hash-node": "npm:^3.0.11" - "@smithy/invalid-dependency": "npm:^3.0.11" - "@smithy/middleware-content-length": "npm:^3.0.13" - "@smithy/middleware-endpoint": "npm:^3.2.6" - "@smithy/middleware-retry": "npm:^3.0.31" - "@smithy/middleware-serde": "npm:^3.0.11" - "@smithy/middleware-stack": "npm:^3.0.11" - "@smithy/node-config-provider": "npm:^3.1.12" - "@smithy/node-http-handler": "npm:^3.3.2" - "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/smithy-client": "npm:^3.5.1" - "@smithy/types": "npm:^3.7.2" - "@smithy/url-parser": "npm:^3.0.11" - "@smithy/util-base64": "npm:^3.0.0" - "@smithy/util-body-length-browser": "npm:^3.0.0" - "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.31" - "@smithy/util-defaults-mode-node": "npm:^3.0.31" - "@smithy/util-endpoints": "npm:^2.1.7" - "@smithy/util-middleware": "npm:^3.0.11" - "@smithy/util-retry": "npm:^3.0.11" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/5c30caf6e21800974ff4c7f1dce230cfd7cfd4be146e356b19c0a4690b6123f23095f32eb73fa96b389f729975bbd5fbfe05c3d940f958c4f2a884fe4b9d44b4 - languageName: node - linkType: hard - -"@aws-sdk/client-sts@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/client-sts@npm:3.716.0" - dependencies: - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.716.0" - "@aws-sdk/core": "npm:3.716.0" - "@aws-sdk/credential-provider-node": "npm:3.716.0" - "@aws-sdk/middleware-host-header": "npm:3.714.0" - "@aws-sdk/middleware-logger": "npm:3.714.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.714.0" - "@aws-sdk/middleware-user-agent": "npm:3.716.0" - "@aws-sdk/region-config-resolver": "npm:3.714.0" - "@aws-sdk/types": "npm:3.714.0" - "@aws-sdk/util-endpoints": "npm:3.714.0" - "@aws-sdk/util-user-agent-browser": "npm:3.714.0" - "@aws-sdk/util-user-agent-node": "npm:3.716.0" - "@smithy/config-resolver": "npm:^3.0.13" - "@smithy/core": "npm:^2.5.5" - "@smithy/fetch-http-handler": "npm:^4.1.2" - "@smithy/hash-node": "npm:^3.0.11" - "@smithy/invalid-dependency": "npm:^3.0.11" - "@smithy/middleware-content-length": "npm:^3.0.13" - "@smithy/middleware-endpoint": "npm:^3.2.6" - "@smithy/middleware-retry": "npm:^3.0.31" - "@smithy/middleware-serde": "npm:^3.0.11" - "@smithy/middleware-stack": "npm:^3.0.11" - "@smithy/node-config-provider": "npm:^3.1.12" - "@smithy/node-http-handler": "npm:^3.3.2" - "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/smithy-client": "npm:^3.5.1" - "@smithy/types": "npm:^3.7.2" - "@smithy/url-parser": "npm:^3.0.11" - "@smithy/util-base64": "npm:^3.0.0" - "@smithy/util-body-length-browser": "npm:^3.0.0" - "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.31" - "@smithy/util-defaults-mode-node": "npm:^3.0.31" - "@smithy/util-endpoints": "npm:^2.1.7" - "@smithy/util-middleware": "npm:^3.0.11" - "@smithy/util-retry": "npm:^3.0.11" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/3a0a408f264260781dcf992028c60c8dbfad1acf00ae3590db07b1d52d931a05ffbe7f6709783ac8385dc79f44f0427054d21a89333faddd8c50f62eb354f854 - languageName: node - linkType: hard - -"@aws-sdk/core@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/core@npm:3.716.0" - dependencies: - "@aws-sdk/types": "npm:3.714.0" - "@smithy/core": "npm:^2.5.5" - "@smithy/node-config-provider": "npm:^3.1.12" - "@smithy/property-provider": "npm:^3.1.11" - "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/signature-v4": "npm:^4.2.4" - "@smithy/smithy-client": "npm:^3.5.1" - "@smithy/types": "npm:^3.7.2" - "@smithy/util-middleware": "npm:^3.0.11" - fast-xml-parser: "npm:4.4.1" - tslib: "npm:^2.6.2" - checksum: 10c0/d11deccbe6b33f91f951fa317793d56359e87a1871772e429519df2d488929a9d9c230aa6be501446980b8e9c01fc549970c28b6d1eeff23f53955e57b021db7 - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-env@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.716.0" - dependencies: - "@aws-sdk/core": "npm:3.716.0" - "@aws-sdk/types": "npm:3.714.0" - "@smithy/property-provider": "npm:^3.1.11" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/00f197f9e5f49f596357b620415d85084150f794cd908838b36d9cb6e537832db530e7975c12a8d66a0e711f5c32c57453131ba1f463392e257ce6f0625a5c2a - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-http@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/credential-provider-http@npm:3.716.0" - dependencies: - "@aws-sdk/core": "npm:3.716.0" - "@aws-sdk/types": "npm:3.714.0" - "@smithy/fetch-http-handler": "npm:^4.1.2" - "@smithy/node-http-handler": "npm:^3.3.2" - "@smithy/property-provider": "npm:^3.1.11" - "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/smithy-client": "npm:^3.5.1" - "@smithy/types": "npm:^3.7.2" - "@smithy/util-stream": "npm:^3.3.2" - tslib: "npm:^2.6.2" - checksum: 10c0/ed342f61d1365b4511392b8eb897bea49b0f7c71ab92bb81748ca036409c1b59eef68cd507e7697e6df2d07f69b7a26bf57172ddde6bed10730152551ba8b603 - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-ini@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.716.0" - dependencies: - "@aws-sdk/core": "npm:3.716.0" - "@aws-sdk/credential-provider-env": "npm:3.716.0" - "@aws-sdk/credential-provider-http": "npm:3.716.0" - "@aws-sdk/credential-provider-process": "npm:3.716.0" - "@aws-sdk/credential-provider-sso": "npm:3.716.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.716.0" - "@aws-sdk/types": "npm:3.714.0" - "@smithy/credential-provider-imds": "npm:^3.2.8" - "@smithy/property-provider": "npm:^3.1.11" - "@smithy/shared-ini-file-loader": "npm:^3.1.12" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - peerDependencies: - "@aws-sdk/client-sts": ^3.716.0 - checksum: 10c0/1282f893a2149f0105f33dc9cfcbfa519b2936e8fc41da4b85fc89b022824c5689f8fc8652c2a03586ea0719e569da64b51414e831667b0c2c79c4e383cc65c6 - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-node@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.716.0" - dependencies: - "@aws-sdk/credential-provider-env": "npm:3.716.0" - "@aws-sdk/credential-provider-http": "npm:3.716.0" - "@aws-sdk/credential-provider-ini": "npm:3.716.0" - "@aws-sdk/credential-provider-process": "npm:3.716.0" - "@aws-sdk/credential-provider-sso": "npm:3.716.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.716.0" - "@aws-sdk/types": "npm:3.714.0" - "@smithy/credential-provider-imds": "npm:^3.2.8" - "@smithy/property-provider": "npm:^3.1.11" - "@smithy/shared-ini-file-loader": "npm:^3.1.12" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/41955b9098845652ab892e6edea9ce94705ade42be8ccc96f212efd75a2aec7aaf6cd06beaa9c01dd74e7cca1bc0a23571f94b4593034eccfe199603fc353cd0 - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-process@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.716.0" - dependencies: - "@aws-sdk/core": "npm:3.716.0" - "@aws-sdk/types": "npm:3.714.0" - "@smithy/property-provider": "npm:^3.1.11" - "@smithy/shared-ini-file-loader": "npm:^3.1.12" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/cec748bc9ecf9c029b1e7cdec4722ecae6b4a4653f39c0be03e4901ec9a1745f8d341eb879b374119096490c93dd5746cfc3f1bd0af552462da57e2249646146 - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-sso@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.716.0" - dependencies: - "@aws-sdk/client-sso": "npm:3.716.0" - "@aws-sdk/core": "npm:3.716.0" - "@aws-sdk/token-providers": "npm:3.714.0" - "@aws-sdk/types": "npm:3.714.0" - "@smithy/property-provider": "npm:^3.1.11" - "@smithy/shared-ini-file-loader": "npm:^3.1.12" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/5d1e941343164b4246722cc88909cd50966116c2028d9760f2a09b85dae80c1198de682b1f2c1c9d74a62bc8942e4cedb63695782b5b08f167bfef2f09c5abf3 - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-web-identity@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.716.0" - dependencies: - "@aws-sdk/core": "npm:3.716.0" - "@aws-sdk/types": "npm:3.714.0" - "@smithy/property-provider": "npm:^3.1.11" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - peerDependencies: - "@aws-sdk/client-sts": ^3.716.0 - checksum: 10c0/28e5b97cb7ca314c1013a1af867e0853f9e542bd98105af09e58e824abc30f7cdf14a2cfa2b443d449a89a1d94f046db2014ec001d5a99c5df1d34944a1d5631 - languageName: node - linkType: hard - -"@aws-sdk/middleware-bucket-endpoint@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.714.0" - dependencies: - "@aws-sdk/types": "npm:3.714.0" - "@aws-sdk/util-arn-parser": "npm:3.693.0" - "@smithy/node-config-provider": "npm:^3.1.12" - "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/types": "npm:^3.7.2" - "@smithy/util-config-provider": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/41b1bb79e34cd445e783affe896dc01ecdf71b13b68b2354a24c18f9383d2f4ab76cbae516bb5d3413a0aaa094bb783556aed04bc5a7cc4c06c09eecd2c88d73 - languageName: node - linkType: hard - -"@aws-sdk/middleware-expect-continue@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/middleware-expect-continue@npm:3.714.0" - dependencies: - "@aws-sdk/types": "npm:3.714.0" - "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/91652133b747c5fb84fca22176e38f982dc79e124cfa99310a07126bb9870f1abd5856dde0c708c776b25708c55d6cc1146bedcab87307e041ecf24538347738 - languageName: node - linkType: hard - -"@aws-sdk/middleware-flexible-checksums@npm:3.717.0": - version: 3.717.0 - resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.717.0" - dependencies: - "@aws-crypto/crc32": "npm:5.2.0" - "@aws-crypto/crc32c": "npm:5.2.0" - "@aws-crypto/util": "npm:5.2.0" - "@aws-sdk/core": "npm:3.716.0" - "@aws-sdk/types": "npm:3.714.0" - "@smithy/is-array-buffer": "npm:^3.0.0" - "@smithy/node-config-provider": "npm:^3.1.12" - "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/types": "npm:^3.7.2" - "@smithy/util-middleware": "npm:^3.0.11" - "@smithy/util-stream": "npm:^3.3.2" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/8034301a5a4d0296a5699b152b03f5db4369ddc433d232ffe6a92febae8a93c09f339218e64fe5eb46f0be4e517e739de67ba093fd7b49a068d13ce987e28cd0 - languageName: node - linkType: hard - -"@aws-sdk/middleware-host-header@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/middleware-host-header@npm:3.714.0" - dependencies: - "@aws-sdk/types": "npm:3.714.0" - "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/c817ca326e9986fa135cfb94abc000477278fdac01d78e0d7d59cf2f02be89afe6e4c9aeb2c575f49dc29d08ed6593f0df634bd23a61f183a4cb09c50d76a1b9 - languageName: node - linkType: hard - -"@aws-sdk/middleware-location-constraint@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/middleware-location-constraint@npm:3.714.0" - dependencies: - "@aws-sdk/types": "npm:3.714.0" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/6766c16359561e147d4408df76c56a26ee53c34ba58a6e20c15b654045dd0a7005da98061e0de5520f3fa059fb24f751d1521cbf5a7a2d2ba41585c54f13b45d - languageName: node - linkType: hard - -"@aws-sdk/middleware-logger@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/middleware-logger@npm:3.714.0" - dependencies: - "@aws-sdk/types": "npm:3.714.0" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/c4ae1cdf3e8569fcab51f3a61cf8ee053e94a5b0efb0b3149178c18e44eb37b2be7f35a7e351fd9cfe21b8178f5a60d53012dc93779529b3d41a0f158a6d4ae4 - languageName: node - linkType: hard - -"@aws-sdk/middleware-recursion-detection@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/middleware-recursion-detection@npm:3.714.0" - dependencies: - "@aws-sdk/types": "npm:3.714.0" - "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/0a423e6fd930b98a6237849ef2d1d5c50217fb1a78a48e6e6eb73b077588ad295f3e64edc4836702dd8053bb1eac73d5007ff1dfc097f1b66b793cbd98f390cc - languageName: node - linkType: hard - -"@aws-sdk/middleware-sdk-s3@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/middleware-sdk-s3@npm:3.716.0" - dependencies: - "@aws-sdk/core": "npm:3.716.0" - "@aws-sdk/types": "npm:3.714.0" - "@aws-sdk/util-arn-parser": "npm:3.693.0" - "@smithy/core": "npm:^2.5.5" - "@smithy/node-config-provider": "npm:^3.1.12" - "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/signature-v4": "npm:^4.2.4" - "@smithy/smithy-client": "npm:^3.5.1" - "@smithy/types": "npm:^3.7.2" - "@smithy/util-config-provider": "npm:^3.0.0" - "@smithy/util-middleware": "npm:^3.0.11" - "@smithy/util-stream": "npm:^3.3.2" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/dadd75dcceb88b3576c38efd853159ac76fe0a8b5723dd8de20b6b94a7689beca2352e53ec229dede634ea0971335258d135b25e4e4649cbc562b5ecb951103d - languageName: node - linkType: hard - -"@aws-sdk/middleware-ssec@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/middleware-ssec@npm:3.714.0" - dependencies: - "@aws-sdk/types": "npm:3.714.0" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/9ad944a94549c9a4a068ea6d46df2ab830a91c49936260fe4347ec5a01d6efc7649979eee021ebad84a73802b75c83bb142392f7a1b7b99f5e40ed1e579b564f - languageName: node - linkType: hard - -"@aws-sdk/middleware-user-agent@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.716.0" - dependencies: - "@aws-sdk/core": "npm:3.716.0" - "@aws-sdk/types": "npm:3.714.0" - "@aws-sdk/util-endpoints": "npm:3.714.0" - "@smithy/core": "npm:^2.5.5" - "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/b66356f04adfda722910c2ddabed763fa40af0e9988c37b6dd7f6fb805538122100dbfb4332caa141fdaf0dd2e877e95a32513319046e109af905679697ad431 - languageName: node - linkType: hard - -"@aws-sdk/region-config-resolver@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/region-config-resolver@npm:3.714.0" - dependencies: - "@aws-sdk/types": "npm:3.714.0" - "@smithy/node-config-provider": "npm:^3.1.12" - "@smithy/types": "npm:^3.7.2" - "@smithy/util-config-provider": "npm:^3.0.0" - "@smithy/util-middleware": "npm:^3.0.11" - tslib: "npm:^2.6.2" - checksum: 10c0/160e001b060ed2743c74856991207ac47cec1d7e96885d90468548c8ee7113e1de65143a1f417d8fa27f6c57679b89b56d1444ff87c05333d31f3379b55838b3 - languageName: node - linkType: hard - -"@aws-sdk/signature-v4-multi-region@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/signature-v4-multi-region@npm:3.716.0" - dependencies: - "@aws-sdk/middleware-sdk-s3": "npm:3.716.0" - "@aws-sdk/types": "npm:3.714.0" - "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/signature-v4": "npm:^4.2.4" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/04058d993cea25cb4084feade3ebb7863788a24dc6b266d042e0de7cb0f83b8cded8dd5990a835ff2505725eb8417f5e379bfc8ab2f59693152e59b8c56916c9 - languageName: node - linkType: hard - -"@aws-sdk/token-providers@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/token-providers@npm:3.714.0" - dependencies: - "@aws-sdk/types": "npm:3.714.0" - "@smithy/property-provider": "npm:^3.1.11" - "@smithy/shared-ini-file-loader": "npm:^3.1.12" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - peerDependencies: - "@aws-sdk/client-sso-oidc": ^3.714.0 - checksum: 10c0/5f3c83f8128a5bf0dfb6bbf78cb908d8b289ea5e1ead7d6dceb32f84a72eb910edddabb419a4c4f662a28a5e0f334dc6ca3be5f4e199f899d97a3b1fa25cbefd - languageName: node - linkType: hard - -"@aws-sdk/types@npm:3.714.0, @aws-sdk/types@npm:^3.222.0": - version: 3.714.0 - resolution: "@aws-sdk/types@npm:3.714.0" - dependencies: - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/fd1b47d0d85bef495a2d76e4ad8d56328638ba59fec9719c7f30aedbde1f058d269825e00fc78eebafda14b73a583445911599eba6e9d039e3059cc79dd074d4 - languageName: node - linkType: hard - -"@aws-sdk/util-arn-parser@npm:3.693.0": - version: 3.693.0 - resolution: "@aws-sdk/util-arn-parser@npm:3.693.0" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10c0/dd3ff41885f3c9c69043bf145d9e28ba5d18e71d3ffc5e97f3700fa4f9461d092d33d632eca00236f00e25ebcf39ed1a6900d7b39d2f592c83e38115890ad701 - languageName: node - linkType: hard - -"@aws-sdk/util-endpoints@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/util-endpoints@npm:3.714.0" - dependencies: - "@aws-sdk/types": "npm:3.714.0" - "@smithy/types": "npm:^3.7.2" - "@smithy/util-endpoints": "npm:^2.1.7" - tslib: "npm:^2.6.2" - checksum: 10c0/2cccad1c18848e48a764def1aa46efac10900a9c083d6f8d8cf6d9495e66439e0dcb54c181242840bb3ea814ac4c1ef1f663c2b17d34e52035917435a473cd68 - languageName: node - linkType: hard - -"@aws-sdk/util-locate-window@npm:^3.0.0": - version: 3.693.0 - resolution: "@aws-sdk/util-locate-window@npm:3.693.0" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10c0/68630e3b6e7f47ec05c92a7f2369464f5fcd218d4dc5c4103465681424b64072d290ab565938449c0afa312cfce200e553e4a14d6a411542069d95880f3434f5 - languageName: node - linkType: hard - -"@aws-sdk/util-user-agent-browser@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/util-user-agent-browser@npm:3.714.0" - dependencies: - "@aws-sdk/types": "npm:3.714.0" - "@smithy/types": "npm:^3.7.2" - bowser: "npm:^2.11.0" - tslib: "npm:^2.6.2" - checksum: 10c0/6b8813e28c7a73316d0a3b3259b3a6ecc403390f475f8e223a81469e24583712c07cb36a026e5109c82cf00c237974025cf320e2b35f4256339732e99cbcc092 - languageName: node - linkType: hard - -"@aws-sdk/util-user-agent-node@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.716.0" - dependencies: - "@aws-sdk/middleware-user-agent": "npm:3.716.0" - "@aws-sdk/types": "npm:3.714.0" - "@smithy/node-config-provider": "npm:^3.1.12" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - peerDependencies: - aws-crt: ">=1.0.0" - peerDependenciesMeta: - aws-crt: - optional: true - checksum: 10c0/03cc627ebe7660d51232a9d08b6f217f6a4a944657abb3f21489c274342bc6bfad709daf7f1ad6c430e7498dea94acd7accc589c5cfa4168f8b2ac43c47c9d3e - languageName: node - linkType: hard - -"@aws-sdk/xml-builder@npm:3.709.0": - version: 3.709.0 - resolution: "@aws-sdk/xml-builder@npm:3.709.0" - dependencies: - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/019feddf39e8a98862baac53cce8e39cf1d9452e6ca8d04a89854429e31dadd2280cf5d8c3ebf9cb04ec5ffc871d86eeb74318a32ad28d3618ebf24305722896 - languageName: node - linkType: hard - "@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.22.13, @babel/code-frame@npm:^7.25.9, @babel/code-frame@npm:^7.26.0, @babel/code-frame@npm:^7.26.2": version: 7.26.2 resolution: "@babel/code-frame@npm:7.26.2" @@ -1114,15 +421,6 @@ __metadata: languageName: node linkType: hard -"@cyclic.sh/s3fs@npm:^1.2.9": - version: 1.2.9 - resolution: "@cyclic.sh/s3fs@npm:1.2.9" - dependencies: - "@aws-sdk/client-s3": "npm:^3.226.0" - checksum: 10c0/3389b34205f2eb83d21562bc9ec3d186e1f07f9740c8fd0991a2e6d5d0aab54eaa6c4da33e79803478a09144ade7f7253d41b8a93d7bdf1f9168ee192ef54f9e - languageName: node - linkType: hard - "@develar/schema-utils@npm:~2.6.5": version: 2.6.5 resolution: "@develar/schema-utils@npm:2.6.5" @@ -1219,6 +517,34 @@ __metadata: languageName: node linkType: hard +"@emnapi/core@npm:^1.3.1": + version: 1.3.1 + resolution: "@emnapi/core@npm:1.3.1" + dependencies: + "@emnapi/wasi-threads": "npm:1.0.1" + tslib: "npm:^2.4.0" + checksum: 10c0/d3be1044ad704e2c486641bc18908523490f28c7d38bd12d9c1d4ce37d39dae6c4aecd2f2eaf44c6e3bd90eaf04e0591acc440b1b038cdf43cce078a355a0ea0 + languageName: node + linkType: hard + +"@emnapi/runtime@npm:^1.3.1": + version: 1.3.1 + resolution: "@emnapi/runtime@npm:1.3.1" + dependencies: + tslib: "npm:^2.4.0" + checksum: 10c0/060ffede50f1b619c15083312b80a9e62a5b0c87aa8c1b54854c49766c9d69f8d1d3d87bd963a647071263a320db41b25eaa50b74d6a80dcc763c23dbeaafd6c + languageName: node + linkType: hard + +"@emnapi/wasi-threads@npm:1.0.1": + version: 1.0.1 + resolution: "@emnapi/wasi-threads@npm:1.0.1" + dependencies: + tslib: "npm:^2.4.0" + checksum: 10c0/1e0c8036b8d53e9b07cc9acf021705ef6c86ab6b13e1acda7fffaf541a2d3565072afb92597419173ced9ea14f6bf32fce149106e669b5902b825e8b499e5c6c + languageName: node + linkType: hard + "@emotion/is-prop-valid@npm:^0.8.2": version: 0.8.8 resolution: "@emotion/is-prop-valid@npm:0.8.8" @@ -1602,11 +928,10 @@ __metadata: version: 0.0.0-use.local resolution: "@janhq/core@workspace:core" dependencies: - "@npmcli/arborist": "npm:^9.0.0" - "@rollup/plugin-replace": "npm:^5.0.5" + "@npmcli/arborist": "npm:^7.1.0" "@types/jest": "npm:^29.5.14" "@types/node": "npm:^22.10.0" - "@types/pacote": "npm:^11.1.8" + "@types/pacote": "npm:^11.1.7" "@types/request": "npm:^2.48.12" electron: "npm:33.2.1" eslint: "npm:8.57.0" @@ -1618,12 +943,7 @@ __metadata: request: "npm:^2.88.2" request-progress: "npm:^3.0.0" rimraf: "npm:^3.0.2" - rollup: "npm:^2.38.5" - rollup-plugin-commonjs: "npm:^9.1.8" - rollup-plugin-json: "npm:^3.1.0" - rollup-plugin-node-resolve: "npm:^5.2.0" - rollup-plugin-sourcemaps: "npm:^0.6.3" - rollup-plugin-typescript2: "npm:^0.36.0" + rolldown: "npm:1.0.0-beta.1" rxjs: "npm:^7.8.1" ts-jest: "npm:^29.2.5" tslib: "npm:^2.6.2" @@ -1700,15 +1020,12 @@ __metadata: version: 0.0.0-use.local resolution: "@janhq/server@workspace:server" dependencies: - "@alumna/reflect": "npm:^1.1.3" - "@cyclic.sh/s3fs": "npm:^1.2.9" "@fastify/cors": "npm:^10.0.1" "@fastify/http-proxy": "npm:^10.0.0" "@fastify/static": "npm:^6.12.0" "@fastify/swagger": "npm:^9.4.0" "@fastify/swagger-ui": "npm:5.2.0" "@janhq/core": "link:../core" - "@npmcli/arborist": "npm:^7.3.1" "@types/body-parser": "npm:^1.19.5" "@types/npmcli__arborist": "npm:^5.6.4" "@types/tcp-port-used": "npm:^1.0.4" @@ -1717,10 +1034,7 @@ __metadata: dotenv: "npm:^16.3.1" eslint-plugin-react: "npm:^7.34.0" fastify: "npm:^5.2.0" - fetch-retry: "npm:^5.0.6" - node-fetch: "npm:2" - request: "npm:^2.88.2" - request-progress: "npm:^3.0.0" + rolldown: "npm:1.0.0-beta.1" run-script-os: "npm:^1.1.6" tcp-port-used: "npm:^1.0.2" typescript: "npm:^5.3.3" @@ -2627,6 +1941,17 @@ __metadata: languageName: node linkType: hard +"@napi-rs/wasm-runtime@npm:^0.2.4": + version: 0.2.6 + resolution: "@napi-rs/wasm-runtime@npm:0.2.6" + dependencies: + "@emnapi/core": "npm:^1.3.1" + "@emnapi/runtime": "npm:^1.3.1" + "@tybys/wasm-util": "npm:^0.9.0" + checksum: 10c0/f921676c1d5c75494bd704c6c0837fd05fe95f5d1cb7373e32987ef5e00c3a1e90b5052352bd4b60ee20c3fe592af2dbba3b0de0c637218c25590828dbc4067e + languageName: node + linkType: hard + "@next/env@npm:14.2.3": version: 14.2.3 resolution: "@next/env@npm:14.2.3" @@ -2782,7 +2107,7 @@ __metadata: languageName: node linkType: hard -"@npmcli/arborist@npm:^7.1.0, @npmcli/arborist@npm:^7.3.1": +"@npmcli/arborist@npm:^7.1.0": version: 7.5.4 resolution: "@npmcli/arborist@npm:7.5.4" dependencies: @@ -2827,50 +2152,6 @@ __metadata: languageName: node linkType: hard -"@npmcli/arborist@npm:^9.0.0": - version: 9.0.0 - resolution: "@npmcli/arborist@npm:9.0.0" - dependencies: - "@isaacs/string-locale-compare": "npm:^1.1.0" - "@npmcli/fs": "npm:^4.0.0" - "@npmcli/installed-package-contents": "npm:^3.0.0" - "@npmcli/map-workspaces": "npm:^4.0.1" - "@npmcli/metavuln-calculator": "npm:^9.0.0" - "@npmcli/name-from-folder": "npm:^3.0.0" - "@npmcli/node-gyp": "npm:^4.0.0" - "@npmcli/package-json": "npm:^6.0.1" - "@npmcli/query": "npm:^4.0.0" - "@npmcli/redact": "npm:^3.0.0" - "@npmcli/run-script": "npm:^9.0.1" - bin-links: "npm:^5.0.0" - cacache: "npm:^19.0.1" - common-ancestor-path: "npm:^1.0.1" - hosted-git-info: "npm:^8.0.0" - json-stringify-nice: "npm:^1.1.4" - lru-cache: "npm:^10.2.2" - minimatch: "npm:^9.0.4" - nopt: "npm:^8.0.0" - npm-install-checks: "npm:^7.1.0" - npm-package-arg: "npm:^12.0.0" - npm-pick-manifest: "npm:^10.0.0" - npm-registry-fetch: "npm:^18.0.1" - pacote: "npm:^21.0.0" - parse-conflict-json: "npm:^4.0.0" - proc-log: "npm:^5.0.0" - proggy: "npm:^3.0.0" - promise-all-reject-late: "npm:^1.0.0" - promise-call-limit: "npm:^3.0.1" - read-package-json-fast: "npm:^4.0.0" - semver: "npm:^7.3.7" - ssri: "npm:^12.0.0" - treeverse: "npm:^3.0.0" - walk-up-path: "npm:^4.0.0" - bin: - arborist: bin/index.js - checksum: 10c0/7b92bce447b81de647f601537e257c5f05789efff393d8115e7db81b900bc5f60ccd73b2807eb674cd9fd69d192c08e9f9a7ef25d27bb976dbfd6f9861f896fd - languageName: node - linkType: hard - "@npmcli/fs@npm:^3.1.0, @npmcli/fs@npm:^3.1.1": version: 3.1.1 resolution: "@npmcli/fs@npm:3.1.1" @@ -2959,18 +2240,6 @@ __metadata: languageName: node linkType: hard -"@npmcli/map-workspaces@npm:^4.0.1": - version: 4.0.2 - resolution: "@npmcli/map-workspaces@npm:4.0.2" - dependencies: - "@npmcli/name-from-folder": "npm:^3.0.0" - "@npmcli/package-json": "npm:^6.0.0" - glob: "npm:^10.2.2" - minimatch: "npm:^9.0.0" - checksum: 10c0/26af5e5271c52d0986228583218fa04fcea2e0e1052f0c50f5c7941bbfb7be487cc98c2e6732f0a3f515f6d9228d7dc04414f0471f40a33b748e2b4cbb350b86 - languageName: node - linkType: hard - "@npmcli/metavuln-calculator@npm:^7.1.1": version: 7.1.1 resolution: "@npmcli/metavuln-calculator@npm:7.1.1" @@ -2984,19 +2253,6 @@ __metadata: languageName: node linkType: hard -"@npmcli/metavuln-calculator@npm:^9.0.0": - version: 9.0.0 - resolution: "@npmcli/metavuln-calculator@npm:9.0.0" - dependencies: - cacache: "npm:^19.0.0" - json-parse-even-better-errors: "npm:^4.0.0" - pacote: "npm:^21.0.0" - proc-log: "npm:^5.0.0" - semver: "npm:^7.3.5" - checksum: 10c0/6ff58d73ea97bfb32e62ce3c3131a79db0d594f7920006ac86352562ac792d4f697610b7c2a6699de3b6cc7b82734f852ad8db60d9d0cdc0d3b9bdb8af5e436e - languageName: node - linkType: hard - "@npmcli/name-from-folder@npm:^2.0.0": version: 2.0.0 resolution: "@npmcli/name-from-folder@npm:2.0.0" @@ -3004,13 +2260,6 @@ __metadata: languageName: node linkType: hard -"@npmcli/name-from-folder@npm:^3.0.0": - version: 3.0.0 - resolution: "@npmcli/name-from-folder@npm:3.0.0" - checksum: 10c0/d6a508c5b4920fb28c752718b906b36fc2374873eba804668afdac8b3c322e8b97a5f1a74f3448d847c615a10828446821d90caf7cdf603d424a9f40f3a733df - languageName: node - linkType: hard - "@npmcli/node-gyp@npm:^3.0.0": version: 3.0.0 resolution: "@npmcli/node-gyp@npm:3.0.0" @@ -3040,7 +2289,7 @@ __metadata: languageName: node linkType: hard -"@npmcli/package-json@npm:^6.0.0, @npmcli/package-json@npm:^6.0.1": +"@npmcli/package-json@npm:^6.0.0": version: 6.1.0 resolution: "@npmcli/package-json@npm:6.1.0" dependencies: @@ -3082,22 +2331,6 @@ __metadata: languageName: node linkType: hard -"@npmcli/query@npm:^4.0.0": - version: 4.0.0 - resolution: "@npmcli/query@npm:4.0.0" - dependencies: - postcss-selector-parser: "npm:^6.1.2" - checksum: 10c0/e4022e7b13e1bbe0b76e0402630244543faf97aa35a10498bba09ca5dbc765786d7666f0b94ecce1588a4c420aca9933cfce0e90f2b3142c1dbec8cc50bca1bc - languageName: node - linkType: hard - -"@npmcli/redact@npm:^1.1.0": - version: 1.1.0 - resolution: "@npmcli/redact@npm:1.1.0" - checksum: 10c0/886995220e60ca00405c93c5588aff524d1dbfee0ca8688b9607fefcda42aa464d4a3f7c75fc03a16a582befe4b6c3ac4493d67c4eb07da2fe0794fbe0dfc89b - languageName: node - linkType: hard - "@npmcli/redact@npm:^2.0.0": version: 2.0.1 resolution: "@npmcli/redact@npm:2.0.1" @@ -3112,19 +2345,6 @@ __metadata: languageName: node linkType: hard -"@npmcli/run-script@npm:^7.0.0": - version: 7.0.4 - resolution: "@npmcli/run-script@npm:7.0.4" - dependencies: - "@npmcli/node-gyp": "npm:^3.0.0" - "@npmcli/package-json": "npm:^5.0.0" - "@npmcli/promise-spawn": "npm:^7.0.0" - node-gyp: "npm:^10.0.0" - which: "npm:^4.0.0" - checksum: 10c0/45159ef7d6b8d9e449e87ed401da69da60514f6e7752e268f29a96f17a543c4a8d4eea6fe2f74b07fd41095e48e0f9859ebec558065d2b01849b382b06fefe35 - languageName: node - linkType: hard - "@npmcli/run-script@npm:^8.0.0, @npmcli/run-script@npm:^8.1.0": version: 8.1.0 resolution: "@npmcli/run-script@npm:8.1.0" @@ -3139,7 +2359,7 @@ __metadata: languageName: node linkType: hard -"@npmcli/run-script@npm:^9.0.0, @npmcli/run-script@npm:^9.0.1": +"@npmcli/run-script@npm:^9.0.0": version: 9.0.2 resolution: "@npmcli/run-script@npm:9.0.2" dependencies: @@ -4012,6 +3232,92 @@ __metadata: languageName: node linkType: hard +"@rolldown/binding-darwin-arm64@npm:1.0.0-beta.1": + version: 1.0.0-beta.1 + resolution: "@rolldown/binding-darwin-arm64@npm:1.0.0-beta.1" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + +"@rolldown/binding-darwin-x64@npm:1.0.0-beta.1": + version: 1.0.0-beta.1 + resolution: "@rolldown/binding-darwin-x64@npm:1.0.0-beta.1" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + +"@rolldown/binding-freebsd-x64@npm:1.0.0-beta.1": + version: 1.0.0-beta.1 + resolution: "@rolldown/binding-freebsd-x64@npm:1.0.0-beta.1" + conditions: os=freebsd & cpu=x64 + languageName: node + linkType: hard + +"@rolldown/binding-linux-arm-gnueabihf@npm:1.0.0-beta.1": + version: 1.0.0-beta.1 + resolution: "@rolldown/binding-linux-arm-gnueabihf@npm:1.0.0-beta.1" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + +"@rolldown/binding-linux-arm64-gnu@npm:1.0.0-beta.1": + version: 1.0.0-beta.1 + resolution: "@rolldown/binding-linux-arm64-gnu@npm:1.0.0-beta.1" + conditions: os=linux & cpu=arm64 & libc=glibc + languageName: node + linkType: hard + +"@rolldown/binding-linux-arm64-musl@npm:1.0.0-beta.1": + version: 1.0.0-beta.1 + resolution: "@rolldown/binding-linux-arm64-musl@npm:1.0.0-beta.1" + conditions: os=linux & cpu=arm64 & libc=musl + languageName: node + linkType: hard + +"@rolldown/binding-linux-x64-gnu@npm:1.0.0-beta.1": + version: 1.0.0-beta.1 + resolution: "@rolldown/binding-linux-x64-gnu@npm:1.0.0-beta.1" + conditions: os=linux & cpu=x64 & libc=glibc + languageName: node + linkType: hard + +"@rolldown/binding-linux-x64-musl@npm:1.0.0-beta.1": + version: 1.0.0-beta.1 + resolution: "@rolldown/binding-linux-x64-musl@npm:1.0.0-beta.1" + conditions: os=linux & cpu=x64 & libc=musl + languageName: node + linkType: hard + +"@rolldown/binding-wasm32-wasi@npm:1.0.0-beta.1": + version: 1.0.0-beta.1 + resolution: "@rolldown/binding-wasm32-wasi@npm:1.0.0-beta.1" + dependencies: + "@napi-rs/wasm-runtime": "npm:^0.2.4" + conditions: cpu=wasm32 + languageName: node + linkType: hard + +"@rolldown/binding-win32-arm64-msvc@npm:1.0.0-beta.1": + version: 1.0.0-beta.1 + resolution: "@rolldown/binding-win32-arm64-msvc@npm:1.0.0-beta.1" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + +"@rolldown/binding-win32-ia32-msvc@npm:1.0.0-beta.1": + version: 1.0.0-beta.1 + resolution: "@rolldown/binding-win32-ia32-msvc@npm:1.0.0-beta.1" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + +"@rolldown/binding-win32-x64-msvc@npm:1.0.0-beta.1": + version: 1.0.0-beta.1 + resolution: "@rolldown/binding-win32-x64-msvc@npm:1.0.0-beta.1" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + "@rollup/plugin-node-resolve@npm:15.2.3": version: 15.2.3 resolution: "@rollup/plugin-node-resolve@npm:15.2.3" @@ -4031,21 +3337,6 @@ __metadata: languageName: node linkType: hard -"@rollup/plugin-replace@npm:^5.0.5": - version: 5.0.7 - resolution: "@rollup/plugin-replace@npm:5.0.7" - dependencies: - "@rollup/pluginutils": "npm:^5.0.1" - magic-string: "npm:^0.30.3" - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - checksum: 10c0/1732af42febdb42d96fd7916b65ca94a550a028d1ea5efa40d5d7a99ab3c336e41efac14a77eefef18b956b4b7335969c6252f2a22bf0223dc8b4a7a53f89ed3 - languageName: node - linkType: hard - "@rollup/plugin-terser@npm:0.4.4": version: 0.4.4 resolution: "@rollup/plugin-terser@npm:0.4.4" @@ -4078,19 +3369,6 @@ __metadata: languageName: node linkType: hard -"@rollup/pluginutils@npm:^3.0.9": - version: 3.1.0 - resolution: "@rollup/pluginutils@npm:3.1.0" - dependencies: - "@types/estree": "npm:0.0.39" - estree-walker: "npm:^1.0.1" - picomatch: "npm:^2.2.2" - peerDependencies: - rollup: ^1.20.0||^2.0.0 - checksum: 10c0/7151753160d15ba2b259461a6c25b3932150994ea52dba8fd3144f634c7647c2e56733d986e2c15de67c4d96a9ee7d6278efa6d2e626a7169898fd64adc0f90c - languageName: node - linkType: hard - "@rollup/pluginutils@npm:^4.1.2": version: 4.2.1 resolution: "@rollup/pluginutils@npm:4.2.1" @@ -4370,602 +3648,6 @@ __metadata: languageName: node linkType: hard -"@smithy/abort-controller@npm:^3.1.9": - version: 3.1.9 - resolution: "@smithy/abort-controller@npm:3.1.9" - dependencies: - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/d8e27940a087a16922d3c292049b50847fe8a84e632701e5aa33c175ddd84c1ef2566ac3f6550bcc06689da64bf79bdbabaf4e442ba92b18c252e62ca6a8880e - languageName: node - linkType: hard - -"@smithy/chunked-blob-reader-native@npm:^3.0.1": - version: 3.0.1 - resolution: "@smithy/chunked-blob-reader-native@npm:3.0.1" - dependencies: - "@smithy/util-base64": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/26f7660d3cb5a257d1db70aaa4b0a109bf4412c3069d35b40645a045481e1633765c8a530ffdab4645bf640fdc957693fa84c6ebb15e864b7bd4be9d4e16b46c - languageName: node - linkType: hard - -"@smithy/chunked-blob-reader@npm:^4.0.0": - version: 4.0.0 - resolution: "@smithy/chunked-blob-reader@npm:4.0.0" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10c0/4d997cb3a828c9c76bb764586918944ba07262aed832827d2be8ba3556f436171613e80b9f35a005af8f2189fc43befdfe44e21d9bde668fb48d5443f509ae22 - languageName: node - linkType: hard - -"@smithy/config-resolver@npm:^3.0.13": - version: 3.0.13 - resolution: "@smithy/config-resolver@npm:3.0.13" - dependencies: - "@smithy/node-config-provider": "npm:^3.1.12" - "@smithy/types": "npm:^3.7.2" - "@smithy/util-config-provider": "npm:^3.0.0" - "@smithy/util-middleware": "npm:^3.0.11" - tslib: "npm:^2.6.2" - checksum: 10c0/9dac64028019e7b64ddf0e884dd03ce53eb1e9f070aec28acfbc24d624cd5d5ba2830d1e63a448119b20711969b03d4dbca0c4d7650e976b28475a8d8b7d0d93 - languageName: node - linkType: hard - -"@smithy/core@npm:^2.5.5, @smithy/core@npm:^2.5.6": - version: 2.5.6 - resolution: "@smithy/core@npm:2.5.6" - dependencies: - "@smithy/middleware-serde": "npm:^3.0.11" - "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/types": "npm:^3.7.2" - "@smithy/util-body-length-browser": "npm:^3.0.0" - "@smithy/util-middleware": "npm:^3.0.11" - "@smithy/util-stream": "npm:^3.3.3" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/e184b6224c910161840a5f794217a8c862f78adb7c56c8b788cf3bb80be6812dd52b1a4217eb320de38d84a7a54050151ba75b08e826639c0243e5377ec3185c - languageName: node - linkType: hard - -"@smithy/credential-provider-imds@npm:^3.2.8": - version: 3.2.8 - resolution: "@smithy/credential-provider-imds@npm:3.2.8" - dependencies: - "@smithy/node-config-provider": "npm:^3.1.12" - "@smithy/property-provider": "npm:^3.1.11" - "@smithy/types": "npm:^3.7.2" - "@smithy/url-parser": "npm:^3.0.11" - tslib: "npm:^2.6.2" - checksum: 10c0/26af5e83ccff767fc0857bc92d90e406c8cd261c40da189c6057a0c1754ba1a13abbff86bb41648988eb1d5e841af0df5cc5bed73f72c49b3f44d4121618b79c - languageName: node - linkType: hard - -"@smithy/eventstream-codec@npm:^3.1.10": - version: 3.1.10 - resolution: "@smithy/eventstream-codec@npm:3.1.10" - dependencies: - "@aws-crypto/crc32": "npm:5.2.0" - "@smithy/types": "npm:^3.7.2" - "@smithy/util-hex-encoding": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/2d95bbdc13866ad3acfb81b63d17ad7b9a232bde54a76f31d1f98a8097f1420a5ce86bb45e14c3fd7de0562f4cdfdb9047c79003f3cd37d0eef1b8334b4cfb61 - languageName: node - linkType: hard - -"@smithy/eventstream-serde-browser@npm:^3.0.14": - version: 3.0.14 - resolution: "@smithy/eventstream-serde-browser@npm:3.0.14" - dependencies: - "@smithy/eventstream-serde-universal": "npm:^3.0.13" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/ebcdde6435df0a20b6439bd16f5a3d3597b7bcba4a3e8e05f59451116d18c874b37abcc0dfd3e7b67e3381782d6656013c2511a1b66400a7e0a9a3d00c9c38d3 - languageName: node - linkType: hard - -"@smithy/eventstream-serde-config-resolver@npm:^3.0.11": - version: 3.0.11 - resolution: "@smithy/eventstream-serde-config-resolver@npm:3.0.11" - dependencies: - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/0c8ba642c63b95c0a6c218a6fc71dd212b0fc42306605fba2827602e54782efc9ba15d9ce1b8cf0f9aa8b46cabbb4e4fab0addd12007493b9551b3997ab8cc05 - languageName: node - linkType: hard - -"@smithy/eventstream-serde-node@npm:^3.0.13": - version: 3.0.13 - resolution: "@smithy/eventstream-serde-node@npm:3.0.13" - dependencies: - "@smithy/eventstream-serde-universal": "npm:^3.0.13" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/934531f159cf6b24f038396df5fe5b53d43c16e143f1d89b4a9cc1d64e3a6687aa98002c4e67cc8e61ed0fe211be67c3df3dab7c5b93866e867a2887b5d3bc3b - languageName: node - linkType: hard - -"@smithy/eventstream-serde-universal@npm:^3.0.13": - version: 3.0.13 - resolution: "@smithy/eventstream-serde-universal@npm:3.0.13" - dependencies: - "@smithy/eventstream-codec": "npm:^3.1.10" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/5eea197d6c6f2fc993bbd3499d71655bc14d597b95bda11f030c45871ae68a56472b58cee4c199a0f33bc7dd4caf437d74eafb836884c899a548dfd0b6776961 - languageName: node - linkType: hard - -"@smithy/fetch-http-handler@npm:^4.1.2": - version: 4.1.2 - resolution: "@smithy/fetch-http-handler@npm:4.1.2" - dependencies: - "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/querystring-builder": "npm:^3.0.11" - "@smithy/types": "npm:^3.7.2" - "@smithy/util-base64": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/6fd45737e236e4ac607013a174088e28f26b2a52b3eb3d410bfcbe289ef735b323bae2f5044b339e43c80305c33dca18c7b33dbaa5297f7b5604e0cb2cb8ec0c - languageName: node - linkType: hard - -"@smithy/hash-blob-browser@npm:^3.1.10": - version: 3.1.10 - resolution: "@smithy/hash-blob-browser@npm:3.1.10" - dependencies: - "@smithy/chunked-blob-reader": "npm:^4.0.0" - "@smithy/chunked-blob-reader-native": "npm:^3.0.1" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/206eb5200f6d678f81cd8811cbd9e938a62256bce188503d25534a1df3d97c489420bee32cc61e634a00f9d0129c7683bca64428f7955e9c4f174df1db185cee - languageName: node - linkType: hard - -"@smithy/hash-node@npm:^3.0.11": - version: 3.0.11 - resolution: "@smithy/hash-node@npm:3.0.11" - dependencies: - "@smithy/types": "npm:^3.7.2" - "@smithy/util-buffer-from": "npm:^3.0.0" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/d0eb389976fac0667d9cd94eac5d0a16010198034ecb18180973974ced06952a73846a7b760a7c53e52d7fb3d9c2193bd0580afbefd675ca5620cf66ac14d1f7 - languageName: node - linkType: hard - -"@smithy/hash-stream-node@npm:^3.1.10": - version: 3.1.10 - resolution: "@smithy/hash-stream-node@npm:3.1.10" - dependencies: - "@smithy/types": "npm:^3.7.2" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/ade9da919768d138010acf9487b8bcb18c91ba70312440322da06b75f9205bfcb8716d2fa9f3904b9d07e9d306e13b91e4f192bc8807e5a6e3f8bc77f193a4d3 - languageName: node - linkType: hard - -"@smithy/invalid-dependency@npm:^3.0.11": - version: 3.0.11 - resolution: "@smithy/invalid-dependency@npm:3.0.11" - dependencies: - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/7cba9b2ebfee068e5ddddfb0a89b87c70ab252e88b0bfb2967c5373187b754452e66487ad3a539095049f2a6f327e438105b781e18f9a1ba1eb898f78c25d5ba - languageName: node - linkType: hard - -"@smithy/is-array-buffer@npm:^2.2.0": - version: 2.2.0 - resolution: "@smithy/is-array-buffer@npm:2.2.0" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10c0/2f2523cd8cc4538131e408eb31664983fecb0c8724956788b015aaf3ab85a0c976b50f4f09b176f1ed7bbe79f3edf80743be7a80a11f22cd9ce1285d77161aaf - languageName: node - linkType: hard - -"@smithy/is-array-buffer@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/is-array-buffer@npm:3.0.0" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10c0/44710d94b9e6655ebc02169c149ea2bc5d5b9e509b6b39511cfe61bac571412290f4b9c743d61e395822f014021fcb709dbb533f2f717c1ac2d5a356696c22fd - languageName: node - linkType: hard - -"@smithy/md5-js@npm:^3.0.11": - version: 3.0.11 - resolution: "@smithy/md5-js@npm:3.0.11" - dependencies: - "@smithy/types": "npm:^3.7.2" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/6d5d13e27c0233079b2dba610d7744fba6528eb868c94a7a8d2eb8c4746bd327648016c473b7872eb4d55f6143b0253b472c91ab69e7bc2747c8f4f7212f9405 - languageName: node - linkType: hard - -"@smithy/middleware-content-length@npm:^3.0.13": - version: 3.0.13 - resolution: "@smithy/middleware-content-length@npm:3.0.13" - dependencies: - "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/b5a4a3d28543e2175f15f3b2df7faf4e34b5a295ffeb583333971a94cf7f769f998ffa42a66f2e56fb5c3c1590fc2d0b8880bf47251dc301c41ae81d0eebf07a - languageName: node - linkType: hard - -"@smithy/middleware-endpoint@npm:^3.2.6, @smithy/middleware-endpoint@npm:^3.2.7": - version: 3.2.7 - resolution: "@smithy/middleware-endpoint@npm:3.2.7" - dependencies: - "@smithy/core": "npm:^2.5.6" - "@smithy/middleware-serde": "npm:^3.0.11" - "@smithy/node-config-provider": "npm:^3.1.12" - "@smithy/shared-ini-file-loader": "npm:^3.1.12" - "@smithy/types": "npm:^3.7.2" - "@smithy/url-parser": "npm:^3.0.11" - "@smithy/util-middleware": "npm:^3.0.11" - tslib: "npm:^2.6.2" - checksum: 10c0/bc197e4b63ea212c4a309dbc54f70096050b8b94d9e7961682d343fa35433319f121c7a09bd0ea92c1884c7255c9cc342988f6e17d943c8065c6ef331a35f55a - languageName: node - linkType: hard - -"@smithy/middleware-retry@npm:^3.0.31": - version: 3.0.32 - resolution: "@smithy/middleware-retry@npm:3.0.32" - dependencies: - "@smithy/node-config-provider": "npm:^3.1.12" - "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/service-error-classification": "npm:^3.0.11" - "@smithy/smithy-client": "npm:^3.5.2" - "@smithy/types": "npm:^3.7.2" - "@smithy/util-middleware": "npm:^3.0.11" - "@smithy/util-retry": "npm:^3.0.11" - tslib: "npm:^2.6.2" - uuid: "npm:^9.0.1" - checksum: 10c0/bfb429fc101fe864bb1c78c1ffabd99eabb60b3a7c082b646cc8196356cffc577216a1fd10bc4be9ad349e7482c59fac004be375aa810845a7265649f00be4a2 - languageName: node - linkType: hard - -"@smithy/middleware-serde@npm:^3.0.11": - version: 3.0.11 - resolution: "@smithy/middleware-serde@npm:3.0.11" - dependencies: - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/fae0ce5784ff77d2998652c11b18304d0a5a537853acffe683f06a505f995a21228c086f7a6a979218f81ff5aee8705ed38343b6f9db4540e90340b34f763f65 - languageName: node - linkType: hard - -"@smithy/middleware-stack@npm:^3.0.11": - version: 3.0.11 - resolution: "@smithy/middleware-stack@npm:3.0.11" - dependencies: - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/39d943328735d70b1f29d565b014aaf9c96a2f95e33ab499284b70d48229b4304d35ab5b0df31971f868066f6996d5ee24083bcd71dff3892e9f5a595064c10f - languageName: node - linkType: hard - -"@smithy/node-config-provider@npm:^3.1.12": - version: 3.1.12 - resolution: "@smithy/node-config-provider@npm:3.1.12" - dependencies: - "@smithy/property-provider": "npm:^3.1.11" - "@smithy/shared-ini-file-loader": "npm:^3.1.12" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/e00b47e749233df6d98287176c8b6cf69287aaab593e5e97b365da8d2781a3478178cab1ad3c68c997efe41a9653960e5615c2cab368e677f05a3acc16e958e5 - languageName: node - linkType: hard - -"@smithy/node-http-handler@npm:^3.3.2, @smithy/node-http-handler@npm:^3.3.3": - version: 3.3.3 - resolution: "@smithy/node-http-handler@npm:3.3.3" - dependencies: - "@smithy/abort-controller": "npm:^3.1.9" - "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/querystring-builder": "npm:^3.0.11" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/b95ac887388f5698583855a430ca6e727bff4fc32bc4143debbdde70061685174fde132c0475f9a5128cf7522d553e108e859b41b01b3e58843f0f9cf48acd3e - languageName: node - linkType: hard - -"@smithy/property-provider@npm:^3.1.11": - version: 3.1.11 - resolution: "@smithy/property-provider@npm:3.1.11" - dependencies: - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/7c8a9b567ff2ec33b021e718b9757c5492f0e6b4330793bb9726d4756312fb3e786fe636f26c56ddfcbea4f58dbf6c3452c0fd2ecce9193031151a4555602424 - languageName: node - linkType: hard - -"@smithy/protocol-http@npm:^4.1.8": - version: 4.1.8 - resolution: "@smithy/protocol-http@npm:4.1.8" - dependencies: - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/490425e7329962ede034cf04911c80a2653011dc2b15b9b76a1553545bec84aeef1b70c9f0ab6c2adfc3502afec6f4cf38499dba211e9f81370d470f6e35ca0f - languageName: node - linkType: hard - -"@smithy/querystring-builder@npm:^3.0.11": - version: 3.0.11 - resolution: "@smithy/querystring-builder@npm:3.0.11" - dependencies: - "@smithy/types": "npm:^3.7.2" - "@smithy/util-uri-escape": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/77daf191c606178cc76f46739b4085660ed3036993a9c2274cb6b70a9ba29e000c33c3c093263a6a119e0a55f063d02a29806e1c90384e18f50a8c2bc0a1d7f0 - languageName: node - linkType: hard - -"@smithy/querystring-parser@npm:^3.0.11": - version: 3.0.11 - resolution: "@smithy/querystring-parser@npm:3.0.11" - dependencies: - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/f5650eb44ff621308ea3e65de54f284e866812abc814fd4d36c432d7a0150e7a92cead604a8580bd12d108c6e78e019fb36eef30774b36086be1137c8d6846eb - languageName: node - linkType: hard - -"@smithy/service-error-classification@npm:^3.0.11": - version: 3.0.11 - resolution: "@smithy/service-error-classification@npm:3.0.11" - dependencies: - "@smithy/types": "npm:^3.7.2" - checksum: 10c0/a3e7cb55989f2f7aaca170a8b56187bab35ab2ef7c4199b145aa7e2d02b130d9e779c92e25805415a6a2e4ec4c67f0355f640281e4cf24f0e92f71f2eca32e9f - languageName: node - linkType: hard - -"@smithy/shared-ini-file-loader@npm:^3.1.12": - version: 3.1.12 - resolution: "@smithy/shared-ini-file-loader@npm:3.1.12" - dependencies: - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/8dc647cc697977bb6fd9d6d0efa51a42b811c2da11d6a73f07a9713a73ad795458d68e5fef9d2e66b45310de9f55dbace6ebb1d12f2551fc6a75aa0ceadced5f - languageName: node - linkType: hard - -"@smithy/signature-v4@npm:^4.2.4": - version: 4.2.4 - resolution: "@smithy/signature-v4@npm:4.2.4" - dependencies: - "@smithy/is-array-buffer": "npm:^3.0.0" - "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/types": "npm:^3.7.2" - "@smithy/util-hex-encoding": "npm:^3.0.0" - "@smithy/util-middleware": "npm:^3.0.11" - "@smithy/util-uri-escape": "npm:^3.0.0" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/a75450f508cec1cff56f22c4b81f51faec48474648bb4deadc28eb16f7c9bac7623b55733429169c1eaf85129c57c168dc41f0a5ceef0b2c031f4b08c49c1315 - languageName: node - linkType: hard - -"@smithy/smithy-client@npm:^3.5.1, @smithy/smithy-client@npm:^3.5.2": - version: 3.5.2 - resolution: "@smithy/smithy-client@npm:3.5.2" - dependencies: - "@smithy/core": "npm:^2.5.6" - "@smithy/middleware-endpoint": "npm:^3.2.7" - "@smithy/middleware-stack": "npm:^3.0.11" - "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/types": "npm:^3.7.2" - "@smithy/util-stream": "npm:^3.3.3" - tslib: "npm:^2.6.2" - checksum: 10c0/8cacf513141c31b40e9a3839fe46736b9f54c4dc328536e2c0310edbbb2b43c386dc019d121252b6c6365015e08b11caf327d04e1d4704b102b04c785f2589b0 - languageName: node - linkType: hard - -"@smithy/types@npm:^3.7.2": - version: 3.7.2 - resolution: "@smithy/types@npm:3.7.2" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10c0/4bf4674c922c092f9c92b482b074163ceea199e82466ccd4414c4cd9651f67757456414f969e9997371250e112778b636115727b5af53324334300f328069293 - languageName: node - linkType: hard - -"@smithy/url-parser@npm:^3.0.11": - version: 3.0.11 - resolution: "@smithy/url-parser@npm:3.0.11" - dependencies: - "@smithy/querystring-parser": "npm:^3.0.11" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/9960d5db786d61f94bf1afe689fa763fbdbbb50f4d896019cac18cb0784bcda6a40a1bcb50040b7932f7722c4760e94e88b329acd2fe99a327f131103b1e3a90 - languageName: node - linkType: hard - -"@smithy/util-base64@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/util-base64@npm:3.0.0" - dependencies: - "@smithy/util-buffer-from": "npm:^3.0.0" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/5c05c3505bd1ac4c1e04ec0e22ad1c9e0c61756945735861614f9e46146369a1a112dd0895602475822c18b8f1fe0cc3fb9e45c99a4e7fb03308969c673cf043 - languageName: node - linkType: hard - -"@smithy/util-body-length-browser@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/util-body-length-browser@npm:3.0.0" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10c0/cfb595e814334fe7bb78e8381141cc7364f66bff0c1d672680f4abb99361ef66fbdb9468fa1dbabcd5753254b2b05c59c907fa9d600b36e6e4b8423eccf412f7 - languageName: node - linkType: hard - -"@smithy/util-body-length-node@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/util-body-length-node@npm:3.0.0" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10c0/6f779848e7c81051364cf6e40ed61034a06fa8df3480398528baae54d9b69622abc7d068869e33dbe51fef2bbc6fda3f548ac59644a0f10545a54c87bc3a4391 - languageName: node - linkType: hard - -"@smithy/util-buffer-from@npm:^2.2.0": - version: 2.2.0 - resolution: "@smithy/util-buffer-from@npm:2.2.0" - dependencies: - "@smithy/is-array-buffer": "npm:^2.2.0" - tslib: "npm:^2.6.2" - checksum: 10c0/223d6a508b52ff236eea01cddc062b7652d859dd01d457a4e50365af3de1e24a05f756e19433f6ccf1538544076b4215469e21a4ea83dc1d58d829725b0dbc5a - languageName: node - linkType: hard - -"@smithy/util-buffer-from@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/util-buffer-from@npm:3.0.0" - dependencies: - "@smithy/is-array-buffer": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/b10fb81ef34f95418f27c9123c2c1774e690dd447e8064184688c553156bdec46d2ba1b1ae3bad7edd2b58a5ef32ac569e1ad814b36e7ee05eba10526d329983 - languageName: node - linkType: hard - -"@smithy/util-config-provider@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/util-config-provider@npm:3.0.0" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10c0/a2c25eac31223eddea306beff2bb3c32e8761f8cb50e8cb2a9d61417a5040e9565dc715a655787e99a37465fdd35bbd0668ff36e06043a5f6b7be48a76974792 - languageName: node - linkType: hard - -"@smithy/util-defaults-mode-browser@npm:^3.0.31": - version: 3.0.32 - resolution: "@smithy/util-defaults-mode-browser@npm:3.0.32" - dependencies: - "@smithy/property-provider": "npm:^3.1.11" - "@smithy/smithy-client": "npm:^3.5.2" - "@smithy/types": "npm:^3.7.2" - bowser: "npm:^2.11.0" - tslib: "npm:^2.6.2" - checksum: 10c0/71a2e16219c14d0eead0e563dd2ce244778d22518a1a438a7c97e2fca2f2974fa06441fbfe068885422b5304e9499e1ea9be92bae28c509a1dc19b9d47bc1a98 - languageName: node - linkType: hard - -"@smithy/util-defaults-mode-node@npm:^3.0.31": - version: 3.0.32 - resolution: "@smithy/util-defaults-mode-node@npm:3.0.32" - dependencies: - "@smithy/config-resolver": "npm:^3.0.13" - "@smithy/credential-provider-imds": "npm:^3.2.8" - "@smithy/node-config-provider": "npm:^3.1.12" - "@smithy/property-provider": "npm:^3.1.11" - "@smithy/smithy-client": "npm:^3.5.2" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/de7b29b9f2f1b9ca2eed8e7b30d0ab06423d184f6017d004d11e77ab3993272573119e867ccc4bfd6779b913a1ab032a638937ff91d03eec5dafbfdcf3b3ddbe - languageName: node - linkType: hard - -"@smithy/util-endpoints@npm:^2.1.7": - version: 2.1.7 - resolution: "@smithy/util-endpoints@npm:2.1.7" - dependencies: - "@smithy/node-config-provider": "npm:^3.1.12" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/a14f25c60f0e1b37848d7e149530366c0568aa9edc8cfc050b995874688c75cd826f5c0bba91ae3d5b9922ee02af09d204165d9ebe8643363f57fe0ad1ae2213 - languageName: node - linkType: hard - -"@smithy/util-hex-encoding@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/util-hex-encoding@npm:3.0.0" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10c0/d2fa7270853cc8f22c4f4635c72bf52e303731a68a3999e3ea9da1d38b6bf08c0f884e7d20b65741e3bc68bb3821e1abd1c3406d7a3dce8fc02df019aea59162 - languageName: node - linkType: hard - -"@smithy/util-middleware@npm:^3.0.11": - version: 3.0.11 - resolution: "@smithy/util-middleware@npm:3.0.11" - dependencies: - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/983a329b0f9abc62ddbcda7227acf2b1aa5c7c1bb06c5b1de78353cc565d3b1817607491be7d067753877a05ea4e3f648f84b8bd9600de6454713f1ac35e56ba - languageName: node - linkType: hard - -"@smithy/util-retry@npm:^3.0.11": - version: 3.0.11 - resolution: "@smithy/util-retry@npm:3.0.11" - dependencies: - "@smithy/service-error-classification": "npm:^3.0.11" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/df71c62b696a6551c2a1454d673740e58eaefcb822a9633a1bacb82464b3fed15cb7b91ed68b20661d024228d3f25ee49b5f54b51c711f7c2d7a2b802dde760a - languageName: node - linkType: hard - -"@smithy/util-stream@npm:^3.3.2, @smithy/util-stream@npm:^3.3.3": - version: 3.3.3 - resolution: "@smithy/util-stream@npm:3.3.3" - dependencies: - "@smithy/fetch-http-handler": "npm:^4.1.2" - "@smithy/node-http-handler": "npm:^3.3.3" - "@smithy/types": "npm:^3.7.2" - "@smithy/util-base64": "npm:^3.0.0" - "@smithy/util-buffer-from": "npm:^3.0.0" - "@smithy/util-hex-encoding": "npm:^3.0.0" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/cadcf9e0b03affd89a0adfa47a61d9a6b9c226a7e794ed8fbe16be674ed44cb2ee1f97b1a4f5e26aad102e381caed51a43bcfec3dfb67d7cbeac2289d53394b9 - languageName: node - linkType: hard - -"@smithy/util-uri-escape@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/util-uri-escape@npm:3.0.0" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10c0/b8d831348412cfafd9300069e74a12e0075b5e786d7ef6a210ba4ab576001c2525653eec68b71dfe6d7aef71c52f547404c4f0345c0fb476a67277f9d44b1156 - languageName: node - linkType: hard - -"@smithy/util-utf8@npm:^2.0.0": - version: 2.3.0 - resolution: "@smithy/util-utf8@npm:2.3.0" - dependencies: - "@smithy/util-buffer-from": "npm:^2.2.0" - tslib: "npm:^2.6.2" - checksum: 10c0/e18840c58cc507ca57fdd624302aefd13337ee982754c9aa688463ffcae598c08461e8620e9852a424d662ffa948fc64919e852508028d09e89ced459bd506ab - languageName: node - linkType: hard - -"@smithy/util-utf8@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/util-utf8@npm:3.0.0" - dependencies: - "@smithy/util-buffer-from": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/b568ed84b4770d2ae9b632eb85603765195a791f045af7f47df1369dc26b001056f4edf488b42ca1cd6d852d0155ad306a0d6531e912cb4e633c0d87abaa8899 - languageName: node - linkType: hard - -"@smithy/util-waiter@npm:^3.2.0": - version: 3.2.0 - resolution: "@smithy/util-waiter@npm:3.2.0" - dependencies: - "@smithy/abort-controller": "npm:^3.1.9" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/9b4a2a9f254f8218909dcc1586d3ea4026b5efc261b948f6ca89e240c317264ac93aaf66a5a8ee07ce2b6733d531179bb25d8ffcb8a0d4016ae2f81d32e45669 - languageName: node - linkType: hard - "@swc/counter@npm:^0.1.3": version: 0.1.3 resolution: "@swc/counter@npm:0.1.3" @@ -5126,6 +3808,15 @@ __metadata: languageName: node linkType: hard +"@tybys/wasm-util@npm:^0.9.0": + version: 0.9.0 + resolution: "@tybys/wasm-util@npm:0.9.0" + dependencies: + tslib: "npm:^2.4.0" + checksum: 10c0/f9fde5c554455019f33af6c8215f1a1435028803dc2a2825b077d812bed4209a1a64444a4ca0ce2ea7e1175c8d88e2f9173a36a33c199e8a5c671aa31de8242d + languageName: node + linkType: hard + "@types/aria-query@npm:^5.0.1": version: 5.0.4 resolution: "@types/aria-query@npm:5.0.4" @@ -5246,13 +3937,6 @@ __metadata: languageName: node linkType: hard -"@types/estree@npm:0.0.39": - version: 0.0.39 - resolution: "@types/estree@npm:0.0.39" - checksum: 10c0/f0af6c95ac1988c4827964bd9d3b51d24da442e2188943f6dfcb1e1559103d5d024d564b2e9d3f84c53714a02a0a7435c7441138eb63d9af5de4dfc66cdc0d92 - languageName: node - linkType: hard - "@types/estree@npm:1.0.5": version: 1.0.5 resolution: "@types/estree@npm:1.0.5" @@ -5511,7 +4195,7 @@ __metadata: languageName: node linkType: hard -"@types/pacote@npm:*, @types/pacote@npm:^11.1.7, @types/pacote@npm:^11.1.8": +"@types/pacote@npm:*, @types/pacote@npm:^11.1.7": version: 11.1.8 resolution: "@types/pacote@npm:11.1.8" dependencies: @@ -5618,15 +4302,6 @@ __metadata: languageName: node linkType: hard -"@types/resolve@npm:0.0.8": - version: 0.0.8 - resolution: "@types/resolve@npm:0.0.8" - dependencies: - "@types/node": "npm:*" - checksum: 10c0/ead6902f01e7240918e6f6dabf0e2bc37035492b1da16f605bbd1e153c17d0639df77981b2ec042480361be76c9e967543287d9b312cd668ed9123524994c344 - languageName: node - linkType: hard - "@types/resolve@npm:1.20.2": version: 1.20.2 resolution: "@types/resolve@npm:1.20.2" @@ -6914,19 +5589,6 @@ __metadata: languageName: node linkType: hard -"bin-links@npm:^5.0.0": - version: 5.0.0 - resolution: "bin-links@npm:5.0.0" - dependencies: - cmd-shim: "npm:^7.0.0" - npm-normalize-package-bin: "npm:^4.0.0" - proc-log: "npm:^5.0.0" - read-cmd-shim: "npm:^5.0.0" - write-file-atomic: "npm:^6.0.0" - checksum: 10c0/7ef087164b13df1810bf087146880a5d43d7d0beb95c51ec0664224f9371e1ca0de70c813306de6de173fb1a3fd0ca49e636ba80c951a70ce6bd7cbf48daf075 - languageName: node - linkType: hard - "binary-extensions@npm:^1.0.0": version: 1.13.1 resolution: "binary-extensions@npm:1.13.1" @@ -6998,13 +5660,6 @@ __metadata: languageName: node linkType: hard -"bowser@npm:^2.11.0": - version: 2.11.0 - resolution: "bowser@npm:2.11.0" - checksum: 10c0/04efeecc7927a9ec33c667fa0965dea19f4ac60b3fea60793c2e6cf06c1dcd2f7ae1dbc656f450c5f50783b1c75cf9dc173ba6f3b7db2feee01f8c4b793e1bd3 - languageName: node - linkType: hard - "brace-expansion@npm:^1.1.7": version: 1.1.11 resolution: "brace-expansion@npm:1.1.11" @@ -7176,7 +5831,7 @@ __metadata: languageName: node linkType: hard -"builtin-modules@npm:^3.1.0, builtin-modules@npm:^3.3.0": +"builtin-modules@npm:^3.3.0": version: 3.3.0 resolution: "builtin-modules@npm:3.3.0" checksum: 10c0/2cb3448b4f7306dc853632a4fcddc95e8d4e4b9868c139400027b71938fc6806d4ff44007deffb362ac85724bd40c2c6452fb6a0aa4531650eeddb98d8e5ee8a @@ -7621,13 +6276,6 @@ __metadata: languageName: node linkType: hard -"cmd-shim@npm:^7.0.0": - version: 7.0.0 - resolution: "cmd-shim@npm:7.0.0" - checksum: 10c0/f2a14eccea9d29ac39f5182b416af60b2d4ad13ef96c541580175a394c63192aeaa53a3edfc73c7f988685574623465304b80c417dde4049d6ad7370a78dc792 - languageName: node - linkType: hard - "co@npm:^4.6.0": version: 4.6.0 resolution: "co@npm:4.6.0" @@ -9541,20 +8189,13 @@ __metadata: languageName: node linkType: hard -"estree-walker@npm:^0.6.0, estree-walker@npm:^0.6.1": +"estree-walker@npm:^0.6.1": version: 0.6.1 resolution: "estree-walker@npm:0.6.1" checksum: 10c0/6dabc855faa04a1ffb17b6a9121b6008ba75ab5a163ad9dc3d7fca05cfda374c5f5e91418d783496620ca75e99a73c40874d8b75f23b4117508cc8bde78e7b41 languageName: node linkType: hard -"estree-walker@npm:^1.0.1": - version: 1.0.1 - resolution: "estree-walker@npm:1.0.1" - checksum: 10c0/fa9e5f8c1bbe8d01e314c0f03067b64a4f22d4c58410fc5237060d0c15b81e58c23921c41acc60abbdab490f1fdfcbd6408ede2d03ca704454272e0244d61a55 - languageName: node - linkType: hard - "estree-walker@npm:^2.0.1, estree-walker@npm:^2.0.2": version: 2.0.2 resolution: "estree-walker@npm:2.0.2" @@ -9857,17 +8498,6 @@ __metadata: languageName: node linkType: hard -"fast-xml-parser@npm:4.4.1": - version: 4.4.1 - resolution: "fast-xml-parser@npm:4.4.1" - dependencies: - strnum: "npm:^1.0.5" - bin: - fxparser: src/cli/cli.js - checksum: 10c0/7f334841fe41bfb0bf5d920904ccad09cefc4b5e61eaf4c225bf1e1bb69ee77ef2147d8942f783ee8249e154d1ca8a858e10bda78a5d78b8bed3f48dcee9bf33 - languageName: node - linkType: hard - "fastify-plugin@npm:^4.0.0": version: 4.5.1 resolution: "fastify-plugin@npm:4.5.1" @@ -9942,13 +8572,6 @@ __metadata: languageName: node linkType: hard -"fetch-retry@npm:^5.0.6": - version: 5.0.6 - resolution: "fetch-retry@npm:5.0.6" - checksum: 10c0/349f50db631039630e915f70c763469cb696f3ac92ca6f63823109334a2bc62f63670b8c5a5c7e0195c39df517e60ef385cc5264f4c4904d0c6707d371fa8999 - languageName: node - linkType: hard - "fflate@npm:^0.4.8": version: 0.4.8 resolution: "fflate@npm:0.4.8" @@ -12326,7 +10949,7 @@ __metadata: eslint-plugin-react: "npm:^7.34.0" fs-extra: "npm:^11.2.0" node-fetch: "npm:2" - pacote: "npm:^17.0.4" + pacote: "npm:^21.0.0" request: "npm:^2.88.2" request-progress: "npm:^3.0.0" rimraf: "npm:^5.0.5" @@ -13550,7 +12173,7 @@ __metadata: languageName: node linkType: hard -"magic-string@npm:^0.30.3, magic-string@npm:^0.30.4": +"magic-string@npm:^0.30.4": version: 0.30.17 resolution: "magic-string@npm:0.30.17" dependencies: @@ -14377,16 +13000,6 @@ __metadata: languageName: node linkType: hard -"minipass-json-stream@npm:^1.0.1": - version: 1.0.2 - resolution: "minipass-json-stream@npm:1.0.2" - dependencies: - jsonparse: "npm:^1.3.1" - minipass: "npm:^3.0.0" - checksum: 10c0/c2fc0d9719dd445d08de82bb449b51c59c3609a08064dd270da8bc76e4e542f4f354b5b1ef3b6e2f2f5b621b25e21ffbd0f0fa26ba6a80121fc19c3ad0d4db2c - languageName: node - linkType: hard - "minipass-pipeline@npm:^1.2.4": version: 1.2.4 resolution: "minipass-pipeline@npm:1.2.4" @@ -15008,22 +13621,6 @@ __metadata: languageName: node linkType: hard -"npm-registry-fetch@npm:^16.0.0": - version: 16.2.1 - resolution: "npm-registry-fetch@npm:16.2.1" - dependencies: - "@npmcli/redact": "npm:^1.1.0" - make-fetch-happen: "npm:^13.0.0" - minipass: "npm:^7.0.2" - minipass-fetch: "npm:^3.0.0" - minipass-json-stream: "npm:^1.0.1" - minizlib: "npm:^2.1.2" - npm-package-arg: "npm:^11.0.0" - proc-log: "npm:^4.0.0" - checksum: 10c0/bccffc291771d55056a6ebedb7aaf431cecc663286e060dc2936e8e0deee454a4a71654f772afcaa44f0d74a2c02403d8b45486a0aa2dd6d2bd8c09c9134eeb9 - languageName: node - linkType: hard - "npm-registry-fetch@npm:^17.0.0, npm-registry-fetch@npm:^17.0.1": version: 17.1.0 resolution: "npm-registry-fetch@npm:17.1.0" @@ -15040,7 +13637,7 @@ __metadata: languageName: node linkType: hard -"npm-registry-fetch@npm:^18.0.0, npm-registry-fetch@npm:^18.0.1": +"npm-registry-fetch@npm:^18.0.0": version: 18.0.2 resolution: "npm-registry-fetch@npm:18.0.2" dependencies: @@ -15410,34 +14007,6 @@ __metadata: languageName: node linkType: hard -"pacote@npm:^17.0.4": - version: 17.0.7 - resolution: "pacote@npm:17.0.7" - dependencies: - "@npmcli/git": "npm:^5.0.0" - "@npmcli/installed-package-contents": "npm:^2.0.1" - "@npmcli/promise-spawn": "npm:^7.0.0" - "@npmcli/run-script": "npm:^7.0.0" - cacache: "npm:^18.0.0" - fs-minipass: "npm:^3.0.0" - minipass: "npm:^7.0.2" - npm-package-arg: "npm:^11.0.0" - npm-packlist: "npm:^8.0.0" - npm-pick-manifest: "npm:^9.0.0" - npm-registry-fetch: "npm:^16.0.0" - proc-log: "npm:^4.0.0" - promise-retry: "npm:^2.0.1" - read-package-json: "npm:^7.0.0" - read-package-json-fast: "npm:^3.0.0" - sigstore: "npm:^2.2.0" - ssri: "npm:^10.0.0" - tar: "npm:^6.1.11" - bin: - pacote: lib/bin.js - checksum: 10c0/05730d3233918e4d89a4b9f8b436cddbe5081a4922c26c8af7d8f7db3adc79b211edd0e1ef2fd1c5b280811fd93a4486d76188fe75f3172a09d864f099d61066 - languageName: node - linkType: hard - "pacote@npm:^18.0.0, pacote@npm:^18.0.6": version: 18.0.6 resolution: "pacote@npm:18.0.6" @@ -15543,17 +14112,6 @@ __metadata: languageName: node linkType: hard -"parse-conflict-json@npm:^4.0.0": - version: 4.0.0 - resolution: "parse-conflict-json@npm:4.0.0" - dependencies: - json-parse-even-better-errors: "npm:^4.0.0" - just-diff: "npm:^6.0.0" - just-diff-apply: "npm:^5.2.0" - checksum: 10c0/5e027cdb6c93a283e32e406e829c1d5b30bfb344ab93dd5a0b8fe983f26dab05dd4d8cba3b3106259f32cbea722f383eda2c8132da3a4a9846803d2bdb004feb - languageName: node - linkType: hard - "parse-entities@npm:^4.0.0": version: 4.0.2 resolution: "parse-entities@npm:4.0.2" @@ -16591,13 +15149,6 @@ __metadata: languageName: node linkType: hard -"proggy@npm:^3.0.0": - version: 3.0.0 - resolution: "proggy@npm:3.0.0" - checksum: 10c0/b4265664405e780edf7a164b2424bb59fc7bd3ab917365c88c6540e5f3bedcbbfb1a534da9c6a4a5570f374a41ef6942e9a4e862dc3ea744798b6c7be63e4351 - languageName: node - linkType: hard - "progress@npm:^2.0.3": version: 2.0.3 resolution: "progress@npm:2.0.3" @@ -16988,13 +15539,6 @@ __metadata: languageName: node linkType: hard -"read-cmd-shim@npm:^5.0.0": - version: 5.0.0 - resolution: "read-cmd-shim@npm:5.0.0" - checksum: 10c0/5688aea2742d928575a1dd87ee0ce691f57b344935fe87d6460067951e7a3bb3677501513316785e1e9ea43b0bb1635eacba3b00b81ad158f9b23512f1de26d2 - languageName: node - linkType: hard - "read-config-file@npm:6.3.2": version: 6.3.2 resolution: "read-config-file@npm:6.3.2" @@ -17019,28 +15563,6 @@ __metadata: languageName: node linkType: hard -"read-package-json-fast@npm:^4.0.0": - version: 4.0.0 - resolution: "read-package-json-fast@npm:4.0.0" - dependencies: - json-parse-even-better-errors: "npm:^4.0.0" - npm-normalize-package-bin: "npm:^4.0.0" - checksum: 10c0/8a03509ae8e852f1abc4b109c1be571dd90ac9ea65d55433b2fe287e409113441a9b00df698288fe48aa786c1a2550569d47b5ab01ed83ada073d691d5aff582 - languageName: node - linkType: hard - -"read-package-json@npm:^7.0.0": - version: 7.0.1 - resolution: "read-package-json@npm:7.0.1" - dependencies: - glob: "npm:^10.2.2" - json-parse-even-better-errors: "npm:^3.0.0" - normalize-package-data: "npm:^6.0.0" - npm-normalize-package-bin: "npm:^3.0.0" - checksum: 10c0/4bb2ad7dc6f460d0db04c5ef6ad7e9644d9566f07fa3563a938aedf0ee4b5ea0f0e2c5a321f79a73b34488ade0bd5937a7671ee3b453c42cd9d5e7e9b07c57f3 - languageName: node - linkType: hard - "readable-stream@npm:^2.0.0, readable-stream@npm:^2.0.2, readable-stream@npm:^2.0.5, readable-stream@npm:~2.3.6": version: 2.3.8 resolution: "readable-stream@npm:2.3.8" @@ -17404,7 +15926,7 @@ __metadata: languageName: node linkType: hard -"resolve@npm:^1.1.7, resolve@npm:^1.10.0, resolve@npm:^1.11.0, resolve@npm:^1.11.1, resolve@npm:^1.19.0, resolve@npm:^1.20.0, resolve@npm:^1.22.1, resolve@npm:^1.22.2, resolve@npm:^1.22.4, resolve@npm:^1.22.8, resolve@npm:^1.5.0": +"resolve@npm:^1.1.7, resolve@npm:^1.11.0, resolve@npm:^1.19.0, resolve@npm:^1.20.0, resolve@npm:^1.22.1, resolve@npm:^1.22.2, resolve@npm:^1.22.4, resolve@npm:^1.22.8, resolve@npm:^1.5.0": version: 1.22.10 resolution: "resolve@npm:1.22.10" dependencies: @@ -17430,7 +15952,7 @@ __metadata: languageName: node linkType: hard -"resolve@patch:resolve@npm%3A^1.1.7#optional!builtin, resolve@patch:resolve@npm%3A^1.10.0#optional!builtin, resolve@patch:resolve@npm%3A^1.11.0#optional!builtin, resolve@patch:resolve@npm%3A^1.11.1#optional!builtin, resolve@patch:resolve@npm%3A^1.19.0#optional!builtin, resolve@patch:resolve@npm%3A^1.20.0#optional!builtin, resolve@patch:resolve@npm%3A^1.22.1#optional!builtin, resolve@patch:resolve@npm%3A^1.22.2#optional!builtin, resolve@patch:resolve@npm%3A^1.22.4#optional!builtin, resolve@patch:resolve@npm%3A^1.22.8#optional!builtin, resolve@patch:resolve@npm%3A^1.5.0#optional!builtin": +"resolve@patch:resolve@npm%3A^1.1.7#optional!builtin, resolve@patch:resolve@npm%3A^1.11.0#optional!builtin, resolve@patch:resolve@npm%3A^1.19.0#optional!builtin, resolve@patch:resolve@npm%3A^1.20.0#optional!builtin, resolve@patch:resolve@npm%3A^1.22.1#optional!builtin, resolve@patch:resolve@npm%3A^1.22.2#optional!builtin, resolve@patch:resolve@npm%3A^1.22.4#optional!builtin, resolve@patch:resolve@npm%3A^1.22.8#optional!builtin, resolve@patch:resolve@npm%3A^1.5.0#optional!builtin": version: 1.22.10 resolution: "resolve@patch:resolve@npm%3A1.22.10#optional!builtin::version=1.22.10&hash=c3c19d" dependencies: @@ -17555,6 +16077,59 @@ __metadata: languageName: node linkType: hard +"rolldown@npm:1.0.0-beta.1": + version: 1.0.0-beta.1 + resolution: "rolldown@npm:1.0.0-beta.1" + dependencies: + "@rolldown/binding-darwin-arm64": "npm:1.0.0-beta.1" + "@rolldown/binding-darwin-x64": "npm:1.0.0-beta.1" + "@rolldown/binding-freebsd-x64": "npm:1.0.0-beta.1" + "@rolldown/binding-linux-arm-gnueabihf": "npm:1.0.0-beta.1" + "@rolldown/binding-linux-arm64-gnu": "npm:1.0.0-beta.1" + "@rolldown/binding-linux-arm64-musl": "npm:1.0.0-beta.1" + "@rolldown/binding-linux-x64-gnu": "npm:1.0.0-beta.1" + "@rolldown/binding-linux-x64-musl": "npm:1.0.0-beta.1" + "@rolldown/binding-wasm32-wasi": "npm:1.0.0-beta.1" + "@rolldown/binding-win32-arm64-msvc": "npm:1.0.0-beta.1" + "@rolldown/binding-win32-ia32-msvc": "npm:1.0.0-beta.1" + "@rolldown/binding-win32-x64-msvc": "npm:1.0.0-beta.1" + zod: "npm:^3.23.8" + peerDependencies: + "@babel/runtime": ">=7" + dependenciesMeta: + "@rolldown/binding-darwin-arm64": + optional: true + "@rolldown/binding-darwin-x64": + optional: true + "@rolldown/binding-freebsd-x64": + optional: true + "@rolldown/binding-linux-arm-gnueabihf": + optional: true + "@rolldown/binding-linux-arm64-gnu": + optional: true + "@rolldown/binding-linux-arm64-musl": + optional: true + "@rolldown/binding-linux-x64-gnu": + optional: true + "@rolldown/binding-linux-x64-musl": + optional: true + "@rolldown/binding-wasm32-wasi": + optional: true + "@rolldown/binding-win32-arm64-msvc": + optional: true + "@rolldown/binding-win32-ia32-msvc": + optional: true + "@rolldown/binding-win32-x64-msvc": + optional: true + peerDependenciesMeta: + "@babel/runtime": + optional: true + bin: + rolldown: bin/cli.js + checksum: 10c0/170feec3d87ea4c129d63f8b5999266cf09e8889402d014ebdcd18f36d1ac4ca270d16b2cfaf5c6b80adb4d3c1d5537b8caa6a0ba30bac6387fccb4bf573d91c + languageName: node + linkType: hard + "rollup-plugin-bundle-size@npm:1.0.3": version: 1.0.3 resolution: "rollup-plugin-bundle-size@npm:1.0.3" @@ -17580,20 +16155,6 @@ __metadata: languageName: node linkType: hard -"rollup-plugin-commonjs@npm:^9.1.8": - version: 9.3.4 - resolution: "rollup-plugin-commonjs@npm:9.3.4" - dependencies: - estree-walker: "npm:^0.6.0" - magic-string: "npm:^0.25.2" - resolve: "npm:^1.10.0" - rollup-pluginutils: "npm:^2.6.0" - peerDependencies: - rollup: ">=0.56.0" - checksum: 10c0/331758bd7f68d036f56e85500ba3fec130a4731efaf33788cff24bc00b35a093d6b4432aa33ac4ce339c1f23be4c7f1744671e069762d8bd4216d9f47c1802f1 - languageName: node - linkType: hard - "rollup-plugin-copy@npm:3.5.0": version: 3.5.0 resolution: "rollup-plugin-copy@npm:3.5.0" @@ -17623,30 +16184,6 @@ __metadata: languageName: node linkType: hard -"rollup-plugin-json@npm:^3.1.0": - version: 3.1.0 - resolution: "rollup-plugin-json@npm:3.1.0" - dependencies: - rollup-pluginutils: "npm:^2.3.1" - checksum: 10c0/4524d118455783f38a50ccedf0cf42a897a483b8fbb42563aeeb4b34c3c8d17ff56ed0df17238ed3d11acd0f031256a95ed062be84ad2b667cdb0e329d7a55ef - languageName: node - linkType: hard - -"rollup-plugin-node-resolve@npm:^5.2.0": - version: 5.2.0 - resolution: "rollup-plugin-node-resolve@npm:5.2.0" - dependencies: - "@types/resolve": "npm:0.0.8" - builtin-modules: "npm:^3.1.0" - is-module: "npm:^1.0.0" - resolve: "npm:^1.11.1" - rollup-pluginutils: "npm:^2.8.1" - peerDependencies: - rollup: ">=1.11.0" - checksum: 10c0/4f9903a1042f6eab1495e044ac64540c054d89add7b3f09ea98cfef869628ad0749aebffd946fb4793cb29841c4711bbdd5e6f7fcaecf1eb9c30f67968e1dcb5 - languageName: node - linkType: hard - "rollup-plugin-peer-deps-external@npm:2.2.4": version: 2.2.4 resolution: "rollup-plugin-peer-deps-external@npm:2.2.4" @@ -17690,23 +16227,7 @@ __metadata: languageName: node linkType: hard -"rollup-plugin-sourcemaps@npm:^0.6.3": - version: 0.6.3 - resolution: "rollup-plugin-sourcemaps@npm:0.6.3" - dependencies: - "@rollup/pluginutils": "npm:^3.0.9" - source-map-resolve: "npm:^0.6.0" - peerDependencies: - "@types/node": ">=10.0.0" - rollup: ">=0.31.2" - peerDependenciesMeta: - "@types/node": - optional: true - checksum: 10c0/c2d4f1b76d40fa4fb78bd8403c24e4e8539f9097e1a9fb7eb7162f47fbf313f31293442ca1a01a0dab8ff52ded9aa4ea7bbbeae47aaadb765d270f15325ba4c9 - languageName: node - linkType: hard - -"rollup-plugin-typescript2@npm:0.36.0, rollup-plugin-typescript2@npm:^0.36.0": +"rollup-plugin-typescript2@npm:0.36.0": version: 0.36.0 resolution: "rollup-plugin-typescript2@npm:0.36.0" dependencies: @@ -17722,7 +16243,7 @@ __metadata: languageName: node linkType: hard -"rollup-pluginutils@npm:^2.3.1, rollup-pluginutils@npm:^2.6.0, rollup-pluginutils@npm:^2.8.1, rollup-pluginutils@npm:^2.8.2": +"rollup-pluginutils@npm:^2.8.1, rollup-pluginutils@npm:^2.8.2": version: 2.8.2 resolution: "rollup-pluginutils@npm:2.8.2" dependencies: @@ -17785,20 +16306,6 @@ __metadata: languageName: node linkType: hard -"rollup@npm:^2.38.5": - version: 2.79.2 - resolution: "rollup@npm:2.79.2" - dependencies: - fsevents: "npm:~2.3.2" - dependenciesMeta: - fsevents: - optional: true - bin: - rollup: dist/bin/rollup - checksum: 10c0/bc3746c988d903c2211266ddc539379d53d92689b9cc5c2b4e3ae161689de9af491957a567c629b6cc81f48d0928a7591fc4c383fba68a48d2966c9fb8a2bce9 - languageName: node - linkType: hard - "run-parallel@npm:^1.1.9": version: 1.2.0 resolution: "run-parallel@npm:1.2.0" @@ -18410,16 +16917,6 @@ __metadata: languageName: node linkType: hard -"source-map-resolve@npm:^0.6.0": - version: 0.6.0 - resolution: "source-map-resolve@npm:0.6.0" - dependencies: - atob: "npm:^2.1.2" - decode-uri-component: "npm:^0.2.0" - checksum: 10c0/bc2a94af3d2417196195eecf0130925b3558726726504a7c7bd1b9e383c4a789fa3f4616c4c673cf8bd7930ddd2e80481f203422282aeae342dbd56b91995188 - languageName: node - linkType: hard - "source-map-support@npm:0.5.13": version: 0.5.13 resolution: "source-map-support@npm:0.5.13" @@ -18850,13 +17347,6 @@ __metadata: languageName: node linkType: hard -"strnum@npm:^1.0.5": - version: 1.0.5 - resolution: "strnum@npm:1.0.5" - checksum: 10c0/64fb8cc2effbd585a6821faa73ad97d4b553c8927e49086a162ffd2cc818787643390b89d567460a8e74300148d11ac052e21c921ef2049f2987f4b1b89a7ff1 - languageName: node - linkType: hard - "strtok3@npm:^6.2.4": version: 6.3.0 resolution: "strtok3@npm:6.3.0" @@ -20169,13 +18659,6 @@ __metadata: languageName: node linkType: hard -"walk-up-path@npm:^4.0.0": - version: 4.0.0 - resolution: "walk-up-path@npm:4.0.0" - checksum: 10c0/fabe344f91387d1d41df230af962ef18bf703dd4178006d55cd6412caacd187b54440002d4d53a982d4f7f0455567dcffb6d3884533c8b2268928eca3ebd8a19 - languageName: node - linkType: hard - "walker@npm:^1.0.8": version: 1.0.8 resolution: "walker@npm:1.0.8" @@ -20430,16 +18913,6 @@ __metadata: languageName: node linkType: hard -"write-file-atomic@npm:^6.0.0": - version: 6.0.0 - resolution: "write-file-atomic@npm:6.0.0" - dependencies: - imurmurhash: "npm:^0.1.4" - signal-exit: "npm:^4.0.1" - checksum: 10c0/ae2f1c27474758a9aca92037df6c1dd9cb94c4e4983451210bd686bfe341f142662f6aa5913095e572ab037df66b1bfe661ed4ce4c0369ed0e8219e28e141786 - languageName: node - linkType: hard - "ws@npm:^8.11.0, ws@npm:^8.16.0": version: 8.18.0 resolution: "ws@npm:8.18.0" @@ -20634,6 +19107,13 @@ __metadata: languageName: node linkType: hard +"zod@npm:^3.23.8": + version: 3.24.1 + resolution: "zod@npm:3.24.1" + checksum: 10c0/0223d21dbaa15d8928fe0da3b54696391d8e3e1e2d0283a1a070b5980a1dbba945ce631c2d1eccc088fdbad0f2dfa40155590bf83732d3ac4fcca2cc9237591b + languageName: node + linkType: hard + "zwitch@npm:^2.0.0": version: 2.0.4 resolution: "zwitch@npm:2.0.4"