Compare commits

..

1 Commits

Author SHA1 Message Date
Amin Yahyaabadi a5f6731dd9
fix: fix the build + downgrade eslint to 8 2024-09-19 22:15:28 -07:00
35 changed files with 303 additions and 205 deletions

View File

@ -8,18 +8,14 @@
"matchUpdateTypes": ["major", "minor", "patch", "pin", "digest", "lockFileMaintenance", "rollback", "bump"], "matchUpdateTypes": ["major", "minor", "patch", "pin", "digest", "lockFileMaintenance", "rollback", "bump"],
"groupName": "devDependencies", "groupName": "devDependencies",
"semanticCommitType": "chore", "semanticCommitType": "chore",
"automerge": true "automerge": true,
"ignoreDeps": ["eslint"]
}, },
{ {
"matchDepTypes": ["dependencies"], "matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["major", "minor", "patch", "pin", "digest", "lockFileMaintenance", "rollback", "bump"], "matchUpdateTypes": ["major", "minor", "patch", "pin", "digest", "lockFileMaintenance", "rollback", "bump"],
"groupName": "dependencies", "groupName": "dependencies",
"semanticCommitType": "fix" "semanticCommitType": "fix"
},
{
"matchDatasources": ["npm"],
"matchPackageNames": ["eslint", "numerous", "execa"],
"rangeStrategy": "pin"
} }
] ]
} }

View File

@ -29,11 +29,9 @@ jobs:
node: node:
- 22.6.0 - 22.6.0
pnpm: pnpm:
- 9.11.0 - 9.10.0
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with:
ref: ${{ github.head_ref || github.ref_name }}
- name: Setup Node - name: Setup Node
uses: actions/setup-node@v4 uses: actions/setup-node@v4
@ -58,17 +56,13 @@ jobs:
run: | run: |
pnpm run test.lint pnpm run test.lint
- name: Update Dist - name: Validate Dist
run: | run: |
if [ "$(git diff --ignore-space-at-eol --text dist/ | wc -l)" -gt "0" ]; then if [ "$(git diff --ignore-space-at-eol --text dist/ | wc -l)" -gt "0" ]; then
git config user.name "github-actions[bot]" echo "Detected uncommitted changes after build. See status below:"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" git diff --ignore-space-at-eol --text dist/ ':(exclude)*.js.map'
git add dist/ exit 1
git commit -m "chore(build): update dist"
git push
fi fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Dist - name: Upload Dist
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
@ -97,7 +91,7 @@ jobs:
node: node:
- 22 - 22
pnpm: pnpm:
- 9.11.0 - 9.10.0
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@ -164,7 +158,7 @@ jobs:
node: node:
- 22 - 22
pnpm: pnpm:
- 9.11.0 - 9.10.0
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
@ -245,7 +239,7 @@ jobs:
node: node:
- 22 - 22
pnpm: pnpm:
- 9.11.0 - 9.10.0
container: container:
- { file: "ubuntu-llvm.dockerfile", image: "setup-cpp-ubuntu-llvm", tag: "22.04-0.43.0" } - { file: "ubuntu-llvm.dockerfile", image: "setup-cpp-ubuntu-llvm", tag: "22.04-0.43.0" }
- { file: "fedora-llvm.dockerfile", image: "setup-cpp-fedora-llvm", tag: "40-0.43.0" } - { file: "fedora-llvm.dockerfile", image: "setup-cpp-fedora-llvm", tag: "40-0.43.0" }

View File

@ -1,5 +1,2 @@
import { buildTerserOptions } from "terser-config-atomic/dist/builder.js" import { buildTerserOptions } from "terser-config-atomic/dist/builder.js"
const config = buildTerserOptions(process.env.NODE_ENV, undefined, true) export default buildTerserOptions(process.env.NODE_ENV, undefined, true)
config.compress.unsafe_math = false
export default config

View File

@ -78,7 +78,6 @@ words:
- nodistro - nodistro
- NOPASSWD - NOPASSWD
- noprogressbar - noprogressbar
- noreply
- nothrow - nothrow
- npmrc - npmrc
- Opencppcoverage - Opencppcoverage

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -30,7 +30,7 @@
"build.vite": "cross-env NODE_ENV=production vite build", "build.vite": "cross-env NODE_ENV=production vite build",
"build.vite.legacy": "cross-env NODE_ENV=production TARGET=legacy vite build", "build.vite.legacy": "cross-env NODE_ENV=production TARGET=legacy vite build",
"build.json": "shx cp ./src/*/*.json ./dist/legacy/ && shx cp ./dist/legacy/*.json ./dist/modern && minijson --file ./dist/**/*.json", "build.json": "shx cp ./src/*/*.json ./dist/legacy/ && shx cp ./dist/legacy/*.json ./dist/modern && minijson --file ./dist/**/*.json",
"bump": "ncu -u -x execa,numerous,eslint,@types/eslint && pnpm update && pnpx typesync && pnpm run clean", "bump": "ncu -u -x numerous,execa,prettier,@types/node,eslint,@types/eslint && pnpm update && pnpx typesync && pnpm run clean",
"clean": "shx rm -rf ./dist ./packages/*/dist ./exe ./.parcel-cache && shx mkdir -p ./dist/legacy ./dist/modern ./dist/modern ", "clean": "shx rm -rf ./dist ./packages/*/dist ./exe ./.parcel-cache && shx mkdir -p ./dist/legacy ./dist/modern ./dist/modern ",
"dev.vite": "cross-env NODE_ENV=development vite build --watch", "dev.vite": "cross-env NODE_ENV=development vite build --watch",
"dev.packages": "turbo dev", "dev.packages": "turbo dev",
@ -98,10 +98,10 @@
"escape-path-with-spaces": "^1.0.2", "escape-path-with-spaces": "^1.0.2",
"escape-quotes": "^1.0.2", "escape-quotes": "^1.0.2",
"escape-string-regexp": "^5.0.0", "escape-string-regexp": "^5.0.0",
"eslint": "8.57.1", "eslint": "^8.57.1",
"eslint-config-atomic": "^1.22.1", "eslint-config-atomic": "^1.22.1",
"exec-powershell": "workspace:*", "exec-powershell": "workspace:*",
"execa": "7.2.0", "execa": "^9.4.0",
"is-url-online": "^1.5.0", "is-url-online": "^1.5.0",
"jest": "^29.7.0", "jest": "^29.7.0",
"lefthook": "^1.7.15", "lefthook": "^1.7.15",
@ -126,13 +126,12 @@
"semver": "7.6.3", "semver": "7.6.3",
"setup-apt": "workspace:*", "setup-apt": "workspace:*",
"setup-brew": "workspace:*", "setup-brew": "workspace:*",
"setup-python": "github:aminya/setup-python#9700887", "setup-python": "github:aminya/setup-python#65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236",
"shx": "0.3.4", "shx": "0.3.4",
"simple-update-notifier": "^2.0.0", "simple-update-notifier": "^2.0.0",
"terser": "^5.33.0", "terser": "^5.33.0",
"terser-config-atomic": "^1.0.0", "terser-config-atomic": "^1.0.0",
"time-delta": "github:aminya/time-delta#69d91a4", "time-delta": "github:aminya/time-delta#d732dbc4fe991ab323cfa9075df8a7988537926e",
"timers-browserify": "^2.0.12",
"ts-node": "^10.9.2", "ts-node": "^10.9.2",
"ts-readme": "^1.1.3", "ts-readme": "^1.1.3",
"turbo": "2.1.2", "turbo": "2.1.2",
@ -180,14 +179,13 @@
"ubuntu-version", "ubuntu-version",
"untildify-user", "untildify-user",
"util.types", "util.types",
"web-streams-polyfill", "web-streams-polyfill"
"timers-browserify"
], ],
"engines": { "engines": {
"node": ">=12.x", "node": ">=12.x",
"pnpm": "^9" "pnpm": "^9"
}, },
"packageManager": "pnpm@9.11.0", "packageManager": "pnpm@9.10.0",
"workspaces": [ "workspaces": [
"packages/*" "packages/*"
], ],

View File

@ -18,7 +18,7 @@
}, },
"dependencies": { "dependencies": {
"@actions/core": "^1.10.1", "@actions/core": "^1.10.1",
"@types/node": "22.5.5", "@types/node": "^12",
"admina": "^1.0.1", "admina": "^1.0.1",
"ci-info": "^4.0.0", "ci-info": "^4.0.0",
"escape-path-with-spaces": "^1.0.2", "escape-path-with-spaces": "^1.0.2",

View File

@ -18,7 +18,7 @@ export function execPowershell(
command: string, command: string,
startupFlags: string[] = ["-NoProfile", "-NoLogo", "-NonInteractive"], startupFlags: string[] = ["-NoProfile", "-NoLogo", "-NonInteractive"],
execOptions: execa.Options = { stdio: "inherit" }, execOptions: execa.Options = { stdio: "inherit" },
) { ): execa.ExecaChildProcess<string> {
return execa.execa(getPowerShell(), [...startupFlags, "-c", command], execOptions) return execa.execa(getPowerShell(), [...startupFlags, "-c", command], execOptions)
} }
@ -36,7 +36,7 @@ export function execPowershellSync(
command: string, command: string,
startupFlags: string[] = ["-NoProfile", "-NoLogo", "-NonInteractive"], startupFlags: string[] = ["-NoProfile", "-NoLogo", "-NonInteractive"],
execOptions: execa.SyncOptions = { stdio: "inherit" }, execOptions: execa.SyncOptions = { stdio: "inherit" },
) { ): execa.ExecaSyncReturnValue<string> {
return execa.execaSync(getPowerShell(), [...startupFlags, "-c", command], execOptions) return execa.execaSync(getPowerShell(), [...startupFlags, "-c", command], execOptions)
} }

View File

@ -17,14 +17,14 @@
"prepublishOnly": "pnpm run build" "prepublishOnly": "pnpm run build"
}, },
"dependencies": { "dependencies": {
"@types/node": "22.5.5", "@types/node": "^12",
"admina": "^1.0.1", "admina": "^1.0.1",
"ci-info": "^4.0.0", "ci-info": "^4.0.0",
"path-exists": "^5.0.0", "path-exists": "^5.0.0",
"ci-log": "workspace:*", "ci-log": "workspace:*",
"envosman": "workspace:*", "envosman": "workspace:*",
"which": "4.0.0", "which": "4.0.0",
"execa": "^7", "execa": "^7.2.0",
"escape-string-regexp": "^5.0.0", "escape-string-regexp": "^5.0.0",
"node-downloader-helper": "2.1.9", "node-downloader-helper": "2.1.9",
"memoizee": "^0.4.17" "memoizee": "^0.4.17"

View File

@ -104,7 +104,7 @@ export async function installAptPack(packages: AptPackage[], update = false): Pr
}) })
} catch (err) { } catch (err) {
if (isExecaError(err)) { if (isExecaError(err)) {
if (retryErrors.some((error) => typeof err.stderr === "string" && err.stderr.includes(error))) { if (retryErrors.some((error) => err.stderr.includes(error))) {
warning(`Failed to install packages ${needToInstall}. Retrying...`) warning(`Failed to install packages ${needToInstall}. Retrying...`)
execRootSync( execRootSync(
apt, apt,

View File

@ -18,11 +18,11 @@
"test": "jest --coverage" "test": "jest --coverage"
}, },
"dependencies": { "dependencies": {
"@types/node": "22.5.5", "@types/node": "^12",
"ci-log": "workspace:*", "ci-log": "workspace:*",
"envosman": "workspace:*", "envosman": "workspace:*",
"which": "4.0.0", "which": "4.0.0",
"execa": "^7", "execa": "^7.2.0",
"setup-apt": "workspace:*", "setup-apt": "workspace:*",
"node-downloader-helper": "2.1.9" "node-downloader-helper": "2.1.9"
}, },

View File

@ -45,7 +45,7 @@ importers:
version: 2.2.5 version: 2.2.5
'@liuli-util/vite-plugin-node': '@liuli-util/vite-plugin-node':
specifier: ^0.9.0 specifier: ^0.9.0
version: 0.9.0(@types/node@22.5.5)(rollup@4.22.2)(typescript@5.6.2)(vite@5.4.7(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0)) version: 0.9.0(@types/node@22.5.5)(rollup@4.22.0)(typescript@5.6.2)(vite@5.4.6(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0))
'@octokit/core': '@octokit/core':
specifier: ^6.1.2 specifier: ^6.1.2
version: 6.1.2 version: 6.1.2
@ -143,7 +143,7 @@ importers:
specifier: ^5.0.0 specifier: ^5.0.0
version: 5.0.0 version: 5.0.0
eslint: eslint:
specifier: 8.57.1 specifier: ^8.57.1
version: 8.57.1 version: 8.57.1
eslint-config-atomic: eslint-config-atomic:
specifier: ^1.22.1 specifier: ^1.22.1
@ -152,8 +152,8 @@ importers:
specifier: workspace:* specifier: workspace:*
version: link:packages/exec-powershell version: link:packages/exec-powershell
execa: execa:
specifier: 7.2.0 specifier: ^9.4.0
version: 7.2.0 version: 9.4.0
is-url-online: is-url-online:
specifier: ^1.5.0 specifier: ^1.5.0
version: 1.5.0 version: 1.5.0
@ -213,7 +213,7 @@ importers:
version: 7.0.4 version: 7.0.4
rollup: rollup:
specifier: ^4.22.0 specifier: ^4.22.0
version: 4.22.2 version: 4.22.0
safe-stable-stringify: safe-stable-stringify:
specifier: ^2.5.0 specifier: ^2.5.0
version: 2.5.0 version: 2.5.0
@ -227,8 +227,8 @@ importers:
specifier: workspace:* specifier: workspace:*
version: link:packages/setup-brew version: link:packages/setup-brew
setup-python: setup-python:
specifier: github:aminya/setup-python#9700887 specifier: github:aminya/setup-python#65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236
version: https://codeload.github.com/aminya/setup-python/tar.gz/9700887(encoding@0.1.13) version: https://codeload.github.com/aminya/setup-python/tar.gz/65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236(encoding@0.1.13)
shx: shx:
specifier: 0.3.4 specifier: 0.3.4
version: 0.3.4 version: 0.3.4
@ -242,11 +242,8 @@ importers:
specifier: ^1.0.0 specifier: ^1.0.0
version: 1.0.0 version: 1.0.0
time-delta: time-delta:
specifier: github:aminya/time-delta#69d91a4 specifier: github:aminya/time-delta#d732dbc4fe991ab323cfa9075df8a7988537926e
version: https://codeload.github.com/aminya/time-delta/tar.gz/69d91a4 version: https://codeload.github.com/aminya/time-delta/tar.gz/d732dbc4fe991ab323cfa9075df8a7988537926e
timers-browserify:
specifier: ^2.0.12
version: 2.0.12
ts-node: ts-node:
specifier: ^10.9.2 specifier: ^10.9.2
version: 10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.5.5)(typescript@5.6.2) version: 10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.5.5)(typescript@5.6.2)
@ -270,10 +267,10 @@ importers:
version: 0.0.2 version: 0.0.2
vite: vite:
specifier: ^5.4.6 specifier: ^5.4.6
version: 5.4.7(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0) version: 5.4.6(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0)
vite-plugin-babel: vite-plugin-babel:
specifier: ^1.2.0 specifier: ^1.2.0
version: 1.2.0(@babel/core@7.25.2)(vite@5.4.7(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0)) version: 1.2.0(@babel/core@7.25.2)(vite@5.4.6(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0))
web-streams-polyfill: web-streams-polyfill:
specifier: ^4.0.0 specifier: ^4.0.0
version: 4.0.0 version: 4.0.0
@ -296,8 +293,8 @@ importers:
specifier: ^1.10.1 specifier: ^1.10.1
version: 1.10.1 version: 1.10.1
'@types/node': '@types/node':
specifier: 22.5.5 specifier: ^12
version: 22.5.5 version: 12.20.55
admina: admina:
specifier: ^1.0.1 specifier: ^1.0.1
version: 1.0.1 version: 1.0.1
@ -352,8 +349,8 @@ importers:
packages/setup-apt: packages/setup-apt:
dependencies: dependencies:
'@types/node': '@types/node':
specifier: 22.5.5 specifier: ^12
version: 22.5.5 version: 12.20.55
admina: admina:
specifier: ^1.0.1 specifier: ^1.0.1
version: 1.0.1 version: 1.0.1
@ -370,7 +367,7 @@ importers:
specifier: ^5.0.0 specifier: ^5.0.0
version: 5.0.0 version: 5.0.0
execa: execa:
specifier: ^7 specifier: ^7.2.0
version: 7.2.0 version: 7.2.0
memoizee: memoizee:
specifier: ^0.4.17 specifier: ^0.4.17
@ -395,8 +392,8 @@ importers:
packages/setup-brew: packages/setup-brew:
dependencies: dependencies:
'@types/node': '@types/node':
specifier: 22.5.5 specifier: ^12
version: 22.5.5 version: 12.20.55
ci-log: ci-log:
specifier: workspace:* specifier: workspace:*
version: link:../ci-log version: link:../ci-log
@ -404,7 +401,7 @@ importers:
specifier: workspace:* specifier: workspace:*
version: link:../envosman version: link:../envosman
execa: execa:
specifier: ^7 specifier: ^7.2.0
version: 7.2.0 version: 7.2.0
node-downloader-helper: node-downloader-helper:
specifier: 2.1.9 specifier: 2.1.9
@ -452,8 +449,11 @@ packages:
'@actions/glob@0.1.2': '@actions/glob@0.1.2':
resolution: {integrity: sha512-SclLR7Ia5sEqjkJTPs7Sd86maMDw43p769YxBOxvPvEWuPEhpAnBsQfENOpXjFYMmhCqd127bmf+YdvJqVqR4A==} resolution: {integrity: sha512-SclLR7Ia5sEqjkJTPs7Sd86maMDw43p769YxBOxvPvEWuPEhpAnBsQfENOpXjFYMmhCqd127bmf+YdvJqVqR4A==}
'@actions/glob@0.4.0': '@actions/glob@0.2.1':
resolution: {integrity: sha512-+eKIGFhsFa4EBwaf/GMyzCdWrXWymGXfFmZU3FHQvYS8mPcHtTtZONbkcqqUMzw9mJ/pImEBFET1JNifhqGsAQ==} resolution: {integrity: sha512-OqseGbxR8vVikg6rfdKST21GX3QYGq2Nz7/gX3UxZb2Mw1ujJ2S3U5CsYUvYHwxbYguU+HNhfE3930oo5nprXQ==}
'@actions/http-client@1.0.11':
resolution: {integrity: sha512-VRYHGQV1rqnROJqdMvGUbY/Kn8vriQe/F9HR2AlYHzmKuM/p3kjNuXhmdBfcVgsvRWTz5C5XW5xvndZrVBuAYg==}
'@actions/http-client@2.2.3': '@actions/http-client@2.2.3':
resolution: {integrity: sha512-mx8hyJi/hjFvbPokCg4uRd4ZX78t+YyRPtnKWwIl+RzNaVuFpQHfmlGVfsKEJN8LwTCvL+DfVgAM04XaHkm6bA==} resolution: {integrity: sha512-mx8hyJi/hjFvbPokCg4uRd4ZX78t+YyRPtnKWwIl+RzNaVuFpQHfmlGVfsKEJN8LwTCvL+DfVgAM04XaHkm6bA==}
@ -461,6 +461,9 @@ packages:
'@actions/io@1.1.3': '@actions/io@1.1.3':
resolution: {integrity: sha512-wi9JjgKLYS7U/z8PPbco+PvTb/nRWjeoFlJ1Qer83k/3C5PHQi28hiVdeE2kHXmIL99mQFawx8qt/JPjZilJ8Q==} resolution: {integrity: sha512-wi9JjgKLYS7U/z8PPbco+PvTb/nRWjeoFlJ1Qer83k/3C5PHQi28hiVdeE2kHXmIL99mQFawx8qt/JPjZilJ8Q==}
'@actions/tool-cache@1.7.2':
resolution: {integrity: sha512-GYlcgg/PK2RWBrGG2sFg6s7im3S94LMKuqAv8UPDq/pGTZbuEvmN4a95Fn1Z19OE+vt7UbUHeewOD5tEBT+4TQ==}
'@actions/tool-cache@2.0.1': '@actions/tool-cache@2.0.1':
resolution: {integrity: sha512-iPU+mNwrbA8jodY8eyo/0S/QqCKDajiR8OxWTnSk/SnYg0sj8Hp4QcUEVC1YFpHWXtrfbQrE13Jz4k4HXJQKcA==} resolution: {integrity: sha512-iPU+mNwrbA8jodY8eyo/0S/QqCKDajiR8OxWTnSk/SnYg0sj8Hp4QcUEVC1YFpHWXtrfbQrE13Jz4k4HXJQKcA==}
@ -1195,9 +1198,6 @@ packages:
'@iarna/toml@2.2.5': '@iarna/toml@2.2.5':
resolution: {integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==} resolution: {integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==}
'@iarna/toml@3.0.0':
resolution: {integrity: sha512-td6ZUkz2oS3VeleBcN+m//Q6HlCFCPrnI0FZhrt/h4XqLEdOyYp2u21nd8MdsR+WJy5r9PTDaHTDDfhf4H4l6Q==}
'@istanbuljs/load-nyc-config@1.1.0': '@istanbuljs/load-nyc-config@1.1.0':
resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
engines: {node: '>=8'} engines: {node: '>=8'}
@ -1411,83 +1411,83 @@ packages:
rollup: rollup:
optional: true optional: true
'@rollup/rollup-android-arm-eabi@4.22.2': '@rollup/rollup-android-arm-eabi@4.22.0':
resolution: {integrity: sha512-8Ao+EDmTPjZ1ZBABc1ohN7Ylx7UIYcjReZinigedTOnGFhIctyGPxY2II+hJ6gD2/vkDKZTyQ0e7++kwv6wDrw==} resolution: {integrity: sha512-/IZQvg6ZR0tAkEi4tdXOraQoWeJy9gbQ/cx4I7k9dJaCk9qrXEcdouxRVz5kZXt5C2bQ9pILoAA+KB4C/d3pfw==}
cpu: [arm] cpu: [arm]
os: [android] os: [android]
'@rollup/rollup-android-arm64@4.22.2': '@rollup/rollup-android-arm64@4.22.0':
resolution: {integrity: sha512-I+B1v0a4iqdS9DvYt1RJZ3W+Oh9EVWjbY6gp79aAYipIbxSLEoQtFQlZEnUuwhDXCqMxJ3hluxKAdPD+GiluFQ==} resolution: {integrity: sha512-ETHi4bxrYnvOtXeM7d4V4kZWixib2jddFacJjsOjwbgYSRsyXYtZHC4ht134OsslPIcnkqT+TKV4eU8rNBKyyQ==}
cpu: [arm64] cpu: [arm64]
os: [android] os: [android]
'@rollup/rollup-darwin-arm64@4.22.2': '@rollup/rollup-darwin-arm64@4.22.0':
resolution: {integrity: sha512-BTHO7rR+LC67OP7I8N8GvdvnQqzFujJYWo7qCQ8fGdQcb8Gn6EQY+K1P+daQLnDCuWKbZ+gHAQZuKiQkXkqIYg==} resolution: {integrity: sha512-ZWgARzhSKE+gVUX7QWaECoRQsPwaD8ZR0Oxb3aUpzdErTvlEadfQpORPXkKSdKbFci9v8MJfkTtoEHnnW9Ulng==}
cpu: [arm64] cpu: [arm64]
os: [darwin] os: [darwin]
'@rollup/rollup-darwin-x64@4.22.2': '@rollup/rollup-darwin-x64@4.22.0':
resolution: {integrity: sha512-1esGwDNFe2lov4I6GsEeYaAMHwkqk0IbuGH7gXGdBmd/EP9QddJJvTtTF/jv+7R8ZTYPqwcdLpMTxK8ytP6k6Q==} resolution: {integrity: sha512-h0ZAtOfHyio8Az6cwIGS+nHUfRMWBDO5jXB8PQCARVF6Na/G6XS2SFxDl8Oem+S5ZsHQgtsI7RT4JQnI1qrlaw==}
cpu: [x64] cpu: [x64]
os: [darwin] os: [darwin]
'@rollup/rollup-linux-arm-gnueabihf@4.22.2': '@rollup/rollup-linux-arm-gnueabihf@4.22.0':
resolution: {integrity: sha512-GBHuY07x96OTEM3OQLNaUSUwrOhdMea/LDmlFHi/HMonrgF6jcFrrFFwJhhe84XtA1oK/Qh4yFS+VMREf6dobg==} resolution: {integrity: sha512-9pxQJSPwFsVi0ttOmqLY4JJ9pg9t1gKhK0JDbV1yUEETSx55fdyCjt39eBQ54OQCzAF0nVGO6LfEH1KnCPvelA==}
cpu: [arm] cpu: [arm]
os: [linux] os: [linux]
'@rollup/rollup-linux-arm-musleabihf@4.22.2': '@rollup/rollup-linux-arm-musleabihf@4.22.0':
resolution: {integrity: sha512-Dbfa9Sc1G1lWxop0gNguXOfGhaXQWAGhZUcqA0Vs6CnJq8JW/YOw/KvyGtQFmz4yDr0H4v9X248SM7bizYj4yQ==} resolution: {integrity: sha512-YJ5Ku5BmNJZb58A4qSEo3JlIG4d3G2lWyBi13ABlXzO41SsdnUKi3HQHe83VpwBVG4jHFTW65jOQb8qyoR+qzg==}
cpu: [arm] cpu: [arm]
os: [linux] os: [linux]
'@rollup/rollup-linux-arm64-gnu@4.22.2': '@rollup/rollup-linux-arm64-gnu@4.22.0':
resolution: {integrity: sha512-Z1YpgBvFYhZIyBW5BoopwSg+t7yqEhs5HCei4JbsaXnhz/eZehT18DaXl957aaE9QK7TRGFryCAtStZywcQe1A==} resolution: {integrity: sha512-U4G4u7f+QCqHlVg1Nlx+qapZy+QoG+NV6ux+upo/T7arNGwKvKP2kmGM4W5QTbdewWFgudQxi3kDNST9GT1/mg==}
cpu: [arm64] cpu: [arm64]
os: [linux] os: [linux]
'@rollup/rollup-linux-arm64-musl@4.22.2': '@rollup/rollup-linux-arm64-musl@4.22.0':
resolution: {integrity: sha512-66Zszr7i/JaQ0u/lefcfaAw16wh3oT72vSqubIMQqWzOg85bGCPhoeykG/cC5uvMzH80DQa2L539IqKht6twVA==} resolution: {integrity: sha512-aQpNlKmx3amwkA3a5J6nlXSahE1ijl0L9KuIjVOUhfOh7uw2S4piR3mtpxpRtbnK809SBtyPsM9q15CPTsY7HQ==}
cpu: [arm64] cpu: [arm64]
os: [linux] os: [linux]
'@rollup/rollup-linux-powerpc64le-gnu@4.22.2': '@rollup/rollup-linux-powerpc64le-gnu@4.22.0':
resolution: {integrity: sha512-HpJCMnlMTfEhwo19bajvdraQMcAq3FX08QDx3OfQgb+414xZhKNf3jNvLFYKbbDSGBBrQh5yNwWZrdK0g0pokg==} resolution: {integrity: sha512-9fx6Zj/7vve/Fp4iexUFRKb5+RjLCff6YTRQl4CoDhdMfDoobWmhAxQWV3NfShMzQk1Q/iCnageFyGfqnsmeqQ==}
cpu: [ppc64] cpu: [ppc64]
os: [linux] os: [linux]
'@rollup/rollup-linux-riscv64-gnu@4.22.2': '@rollup/rollup-linux-riscv64-gnu@4.22.0':
resolution: {integrity: sha512-/egzQzbOSRef2vYCINKITGrlwkzP7uXRnL+xU2j75kDVp3iPdcF0TIlfwTRF8woBZllhk3QaxNOEj2Ogh3t9hg==} resolution: {integrity: sha512-VWQiCcN7zBgZYLjndIEh5tamtnKg5TGxyZPWcN9zBtXBwfcGSZ5cHSdQZfQH/GB4uRxk0D3VYbOEe/chJhPGLQ==}
cpu: [riscv64] cpu: [riscv64]
os: [linux] os: [linux]
'@rollup/rollup-linux-s390x-gnu@4.22.2': '@rollup/rollup-linux-s390x-gnu@4.22.0':
resolution: {integrity: sha512-qgYbOEbrPfEkH/OnUJd1/q4s89FvNJQIUldx8X2F/UM5sEbtkqZpf2s0yly2jSCKr1zUUOY1hnTP2J1WOzMAdA==} resolution: {integrity: sha512-EHmPnPWvyYqncObwqrosb/CpH3GOjE76vWVs0g4hWsDRUVhg61hBmlVg5TPXqF+g+PvIbqkC7i3h8wbn4Gp2Fg==}
cpu: [s390x] cpu: [s390x]
os: [linux] os: [linux]
'@rollup/rollup-linux-x64-gnu@4.22.2': '@rollup/rollup-linux-x64-gnu@4.22.0':
resolution: {integrity: sha512-a0lkvNhFLhf+w7A95XeBqGQaG0KfS3hPFJnz1uraSdUe/XImkp/Psq0Ca0/UdD5IEAGoENVmnYrzSC9Y2a2uKQ==} resolution: {integrity: sha512-tsSWy3YQzmpjDKnQ1Vcpy3p9Z+kMFbSIesCdMNgLizDWFhrLZIoN21JSq01g+MZMDFF+Y1+4zxgrlqPjid5ohg==}
cpu: [x64] cpu: [x64]
os: [linux] os: [linux]
'@rollup/rollup-linux-x64-musl@4.22.2': '@rollup/rollup-linux-x64-musl@4.22.0':
resolution: {integrity: sha512-sSWBVZgzwtsuG9Dxi9kjYOUu/wKW+jrbzj4Cclabqnfkot8Z3VEHcIgyenA3lLn/Fu11uDviWjhctulkhEO60g==} resolution: {integrity: sha512-anr1Y11uPOQrpuU8XOikY5lH4Qu94oS6j0xrulHk3NkLDq19MlX8Ng/pVipjxBJ9a2l3+F39REZYyWQFkZ4/fw==}
cpu: [x64] cpu: [x64]
os: [linux] os: [linux]
'@rollup/rollup-win32-arm64-msvc@4.22.2': '@rollup/rollup-win32-arm64-msvc@4.22.0':
resolution: {integrity: sha512-t/YgCbZ638R/r7IKb9yCM6nAek1RUvyNdfU0SHMDLOf6GFe/VG1wdiUAsxTWHKqjyzkRGg897ZfCpdo1bsCSsA==} resolution: {integrity: sha512-7LB+Bh+Ut7cfmO0m244/asvtIGQr5pG5Rvjz/l1Rnz1kDzM02pSX9jPaS0p+90H5I1x4d1FkCew+B7MOnoatNw==}
cpu: [arm64] cpu: [arm64]
os: [win32] os: [win32]
'@rollup/rollup-win32-ia32-msvc@4.22.2': '@rollup/rollup-win32-ia32-msvc@4.22.0':
resolution: {integrity: sha512-kTmX5uGs3WYOA+gYDgI6ITkZng9SP71FEMoHNkn+cnmb9Zuyyay8pf0oO5twtTwSjNGy1jlaWooTIr+Dw4tIbw==} resolution: {integrity: sha512-+3qZ4rer7t/QsC5JwMpcvCVPRcJt1cJrYS/TMJZzXIJbxWFQEVhrIc26IhB+5Z9fT9umfVc+Es2mOZgl+7jdJQ==}
cpu: [ia32] cpu: [ia32]
os: [win32] os: [win32]
'@rollup/rollup-win32-x64-msvc@4.22.2': '@rollup/rollup-win32-x64-msvc@4.22.0':
resolution: {integrity: sha512-Yy8So+SoRz8I3NS4Bjh91BICPOSVgdompTIPYTByUqU66AXSIOgmW3Lv1ke3NORPqxdF+RdrZET+8vYai6f4aA==} resolution: {integrity: sha512-YdicNOSJONVx/vuPkgPTyRoAPx3GbknBZRCOUkK84FJ/YTfs/F0vl/YsMscrB6Y177d+yDRcj+JWMPMCgshwrA==}
cpu: [x64] cpu: [x64]
os: [win32] os: [win32]
@ -1538,6 +1538,9 @@ packages:
'@rushstack/ts-command-line@4.22.8': '@rushstack/ts-command-line@4.22.8':
resolution: {integrity: sha512-XbFjOoV7qZHJnSuFUHv0pKaFA4ixyCuki+xMjsMfDwfvQjs5MYG0IK5COal3tRnG7KCDe2l/G+9LrzYE/RJhgg==} resolution: {integrity: sha512-XbFjOoV7qZHJnSuFUHv0pKaFA4ixyCuki+xMjsMfDwfvQjs5MYG0IK5COal3tRnG7KCDe2l/G+9LrzYE/RJhgg==}
'@sec-ant/readable-stream@0.4.1':
resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
'@shockpkg/archive-files@https://codeload.github.com/aminya/archive-files/tar.gz/54ec59fad46aca736ac6feb6c7bb526528141b9d': '@shockpkg/archive-files@https://codeload.github.com/aminya/archive-files/tar.gz/54ec59fad46aca736ac6feb6c7bb526528141b9d':
resolution: {tarball: https://codeload.github.com/aminya/archive-files/tar.gz/54ec59fad46aca736ac6feb6c7bb526528141b9d} resolution: {tarball: https://codeload.github.com/aminya/archive-files/tar.gz/54ec59fad46aca736ac6feb6c7bb526528141b9d}
version: 3.2.2 version: 3.2.2
@ -1554,6 +1557,10 @@ packages:
'@sinclair/typebox@0.27.8': '@sinclair/typebox@0.27.8':
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
'@sindresorhus/merge-streams@4.0.0':
resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==}
engines: {node: '>=18'}
'@sinonjs/commons@3.0.1': '@sinonjs/commons@3.0.1':
resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==}
@ -1734,6 +1741,9 @@ packages:
'@types/ms@0.7.34': '@types/ms@0.7.34':
resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
'@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
'@types/node@14.18.63': '@types/node@14.18.63':
resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==} resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==}
@ -3033,6 +3043,10 @@ packages:
resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==} resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==}
engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
execa@9.4.0:
resolution: {integrity: sha512-yKHlle2YGxZE842MERVIplWwNH5VYmqqcPFgtnlU//K8gxuFFXu0pwd/CrfXTumFpeEiufsP7+opT/bPJa1yVw==}
engines: {node: ^18.19.0 || >=20.5.0}
exit@0.1.2: exit@0.1.2:
resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==}
engines: {node: '>= 0.8.0'} engines: {node: '>= 0.8.0'}
@ -3082,6 +3096,10 @@ packages:
resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
engines: {node: '>=8'} engines: {node: '>=8'}
figures@6.1.0:
resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==}
engines: {node: '>=18'}
file-entry-cache@6.0.1: file-entry-cache@6.0.1:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0} engines: {node: ^10.12.0 || >=12.0.0}
@ -3188,6 +3206,10 @@ packages:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'} engines: {node: '>=10'}
get-stream@9.0.1:
resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==}
engines: {node: '>=18'}
get-symbol-description@1.0.2: get-symbol-description@1.0.2:
resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
engines: {node: '>= 0.4'} engines: {node: '>= 0.4'}
@ -3347,6 +3369,10 @@ packages:
resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==} resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==}
engines: {node: '>=14.18.0'} engines: {node: '>=14.18.0'}
human-signals@8.0.0:
resolution: {integrity: sha512-/1/GPCpDUCCYwlERiYjxoczfP0zfvZMU/OWgQPMya9AbAE24vseigFdhAMObpc8Q4lc/kjutPfUddDYyAmejnA==}
engines: {node: '>=18.18.0'}
iconv-lite@0.4.24: iconv-lite@0.4.24:
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
engines: {node: '>=0.10.0'} engines: {node: '>=0.10.0'}
@ -3550,6 +3576,10 @@ packages:
resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
is-stream@4.0.1:
resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==}
engines: {node: '>=18'}
is-string@1.0.7: is-string@1.0.7:
resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
engines: {node: '>= 0.4'} engines: {node: '>= 0.4'}
@ -3562,6 +3592,10 @@ packages:
resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
engines: {node: '>= 0.4'} engines: {node: '>= 0.4'}
is-unicode-supported@2.1.0:
resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
engines: {node: '>=18'}
is-url-online@1.5.0: is-url-online@1.5.0:
resolution: {integrity: sha512-uN7eZhWzxuiJs0OeMIzzMcU5OqUrS0OBoLrorPi3gExjsIO1zkaT5kXfsSbai7FmPzLNg2j8NdbJqgr5l8S2xw==} resolution: {integrity: sha512-uN7eZhWzxuiJs0OeMIzzMcU5OqUrS0OBoLrorPi3gExjsIO1zkaT5kXfsSbai7FmPzLNg2j8NdbJqgr5l8S2xw==}
@ -4306,6 +4340,10 @@ packages:
resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
npm-run-path@6.0.0:
resolution: {integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==}
engines: {node: '>=18'}
numerous@1.0.3: numerous@1.0.3:
resolution: {integrity: sha512-jN2WTpfdMmR1d5ClpYguln+XAvgW7B0te6wlsyaZhyev7E2CyOmvXq5LTIV/p9mt9WrPW9Xw1g5+28iZh8BhFQ==} resolution: {integrity: sha512-jN2WTpfdMmR1d5ClpYguln+XAvgW7B0te6wlsyaZhyev7E2CyOmvXq5LTIV/p9mt9WrPW9Xw1g5+28iZh8BhFQ==}
@ -4416,6 +4454,10 @@ packages:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'} engines: {node: '>=8'}
parse-ms@4.0.0:
resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==}
engines: {node: '>=18'}
path-browserify@1.0.1: path-browserify@1.0.1:
resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
@ -4532,6 +4574,10 @@ packages:
resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
pretty-ms@9.1.0:
resolution: {integrity: sha512-o1piW0n3tgKIKCwk2vpM/vOV13zjJzvP37Ioze54YlTHE06m4tjEbzg9WsKkvTuyYln2DHjo5pY4qrZGI0otpw==}
engines: {node: '>=18'}
process-nextick-args@2.0.1: process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
@ -4700,8 +4746,8 @@ packages:
peerDependencies: peerDependencies:
rollup: ^3.0.0 || ^4.0.0 rollup: ^3.0.0 || ^4.0.0
rollup@4.22.2: rollup@4.22.0:
resolution: {integrity: sha512-JWWpTrZmqQGQWt16xvNn6KVIUz16VtZwl984TKw0dfqqRpFwtLJYYk1/4BTgplndMQKWUk/yB4uOShYmMzA2Vg==} resolution: {integrity: sha512-W21MUIFPZ4+O2Je/EU+GP3iz7PH4pVPUXSbEZdatQnxo29+3rsUjgrJmzuAZU24z7yRAnFN6ukxeAhZh/c7hzg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'} engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true hasBin: true
@ -4772,12 +4818,9 @@ packages:
resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
engines: {node: '>= 0.4'} engines: {node: '>= 0.4'}
setimmediate@1.0.5: setup-python@https://codeload.github.com/aminya/setup-python/tar.gz/65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236:
resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} resolution: {tarball: https://codeload.github.com/aminya/setup-python/tar.gz/65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236}
version: 4.0.0
setup-python@https://codeload.github.com/aminya/setup-python/tar.gz/9700887:
resolution: {tarball: https://codeload.github.com/aminya/setup-python/tar.gz/9700887}
version: 5.0.0
shebang-command@2.0.0: shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
@ -4807,6 +4850,10 @@ packages:
signal-exit@3.0.7: signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
signal-exit@4.1.0:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
simple-update-notifier@2.0.0: simple-update-notifier@2.0.0:
resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==} resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==}
engines: {node: '>=10'} engines: {node: '>=10'}
@ -4944,6 +4991,10 @@ packages:
resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
engines: {node: '>=12'} engines: {node: '>=12'}
strip-final-newline@4.0.0:
resolution: {integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==}
engines: {node: '>=18'}
strip-json-comments@1.0.4: strip-json-comments@1.0.4:
resolution: {integrity: sha512-AOPG8EBc5wAikaG1/7uFCNFJwnKOuQwFTpYBdTW6OvWHeZBQBrAA/amefHGrEiOnCPcLFZK6FUPtWVKpQVIRgg==} resolution: {integrity: sha512-AOPG8EBc5wAikaG1/7uFCNFJwnKOuQwFTpYBdTW6OvWHeZBQBrAA/amefHGrEiOnCPcLFZK6FUPtWVKpQVIRgg==}
engines: {node: '>=0.8.0'} engines: {node: '>=0.8.0'}
@ -5017,15 +5068,11 @@ packages:
through@2.3.8: through@2.3.8:
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
time-delta@https://codeload.github.com/aminya/time-delta/tar.gz/69d91a4: time-delta@https://codeload.github.com/aminya/time-delta/tar.gz/d732dbc4fe991ab323cfa9075df8a7988537926e:
resolution: {tarball: https://codeload.github.com/aminya/time-delta/tar.gz/69d91a4} resolution: {tarball: https://codeload.github.com/aminya/time-delta/tar.gz/d732dbc4fe991ab323cfa9075df8a7988537926e}
version: 1.0.0 version: 1.0.0
engines: {node: '>=12'} engines: {node: '>=12'}
timers-browserify@2.0.12:
resolution: {integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==}
engines: {node: '>=0.6.0'}
timers-ext@0.1.8: timers-ext@0.1.8:
resolution: {integrity: sha512-wFH7+SEAcKfJpfLPkrgMPvvwnEtj8W4IurvEyrKsDleXnKLCDw71w8jltvfLa8Rm4qQxxT4jmDBYbJG/z7qoww==} resolution: {integrity: sha512-wFH7+SEAcKfJpfLPkrgMPvvwnEtj8W4IurvEyrKsDleXnKLCDw71w8jltvfLa8Rm4qQxxT4jmDBYbJG/z7qoww==}
engines: {node: '>=0.12'} engines: {node: '>=0.12'}
@ -5239,6 +5286,10 @@ packages:
resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==} resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==}
engines: {node: '>=14.0'} engines: {node: '>=14.0'}
unicorn-magic@0.3.0:
resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==}
engines: {node: '>=18'}
unique-string@2.0.0: unique-string@2.0.0:
resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==}
engines: {node: '>=8'} engines: {node: '>=8'}
@ -5311,8 +5362,8 @@ packages:
vite: vite:
optional: true optional: true
vite@5.4.7: vite@5.4.6:
resolution: {integrity: sha512-5l2zxqMEPVENgvzTuBpHer2awaetimj2BGkhBPdnwKbPNOlHsODU+oiazEZzLK7KhAnOrO+XGYJYn4ZlUhDtDQ==} resolution: {integrity: sha512-IeL5f8OO5nylsgzd9tq4qD2QqI0k2CQLGrWD0rCN0EQJZpBK5vJAx0I+GDkMOXxQX/OfFHMuLIx6ddAxGX/k+Q==}
engines: {node: ^18.0.0 || >=20.0.0} engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true hasBin: true
peerDependencies: peerDependencies:
@ -5494,6 +5545,10 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'} engines: {node: '>=10'}
yoctocolors@2.1.1:
resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==}
engines: {node: '>=18'}
z-schema@5.0.5: z-schema@5.0.5:
resolution: {integrity: sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==} resolution: {integrity: sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==}
engines: {node: '>=8.0.0'} engines: {node: '>=8.0.0'}
@ -5535,11 +5590,15 @@ snapshots:
'@actions/core': 1.10.1 '@actions/core': 1.10.1
minimatch: 3.1.2 minimatch: 3.1.2
'@actions/glob@0.4.0': '@actions/glob@0.2.1':
dependencies: dependencies:
'@actions/core': 1.10.1 '@actions/core': 1.10.1
minimatch: 3.1.2 minimatch: 3.1.2
'@actions/http-client@1.0.11':
dependencies:
tunnel: 0.0.6
'@actions/http-client@2.2.3(patch_hash=gqcf2jay7nqqezf3jni6mxu74u)': '@actions/http-client@2.2.3(patch_hash=gqcf2jay7nqqezf3jni6mxu74u)':
dependencies: dependencies:
tunnel: 0.0.6 tunnel: 0.0.6
@ -5547,6 +5606,15 @@ snapshots:
'@actions/io@1.1.3': {} '@actions/io@1.1.3': {}
'@actions/tool-cache@1.7.2':
dependencies:
'@actions/core': 1.10.1
'@actions/exec': 1.1.1
'@actions/http-client': 1.0.11
'@actions/io': 1.1.3
semver: 6.3.1
uuid: 3.4.0
'@actions/tool-cache@2.0.1': '@actions/tool-cache@2.0.1':
dependencies: dependencies:
'@actions/core': 1.10.1 '@actions/core': 1.10.1
@ -6255,8 +6323,6 @@ snapshots:
'@iarna/toml@2.2.5': {} '@iarna/toml@2.2.5': {}
'@iarna/toml@3.0.0': {}
'@istanbuljs/load-nyc-config@1.1.0': '@istanbuljs/load-nyc-config@1.1.0':
dependencies: dependencies:
camelcase: 5.3.1 camelcase: 5.3.1
@ -6460,14 +6526,14 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.2 '@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.0 '@jridgewell/sourcemap-codec': 1.5.0
'@liuli-util/vite-plugin-node@0.9.0(@types/node@22.5.5)(rollup@4.22.2)(typescript@5.6.2)(vite@5.4.7(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0))': '@liuli-util/vite-plugin-node@0.9.0(@types/node@22.5.5)(rollup@4.22.0)(typescript@5.6.2)(vite@5.4.6(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0))':
dependencies: dependencies:
'@microsoft/api-extractor': 7.47.9(@types/node@22.5.5) '@microsoft/api-extractor': 7.47.9(@types/node@22.5.5)
magic-string: 0.30.11 magic-string: 0.30.11
pathe: 1.1.2 pathe: 1.1.2
rollup-plugin-node-externals: 7.1.3(rollup@4.22.2) rollup-plugin-node-externals: 7.1.3(rollup@4.22.0)
vite: 5.4.7(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0) vite: 5.4.6(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0)
vite-plugin-dts: 3.9.1(@types/node@22.5.5)(rollup@4.22.2)(typescript@5.6.2)(vite@5.4.7(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0)) vite-plugin-dts: 3.9.1(@types/node@22.5.5)(rollup@4.22.0)(typescript@5.6.2)(vite@5.4.6(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0))
transitivePeerDependencies: transitivePeerDependencies:
- '@types/node' - '@types/node'
- rollup - rollup
@ -6623,60 +6689,60 @@ snapshots:
'@pkgr/core@0.1.1': {} '@pkgr/core@0.1.1': {}
'@rollup/pluginutils@5.1.0(rollup@4.22.2)': '@rollup/pluginutils@5.1.0(rollup@4.22.0)':
dependencies: dependencies:
'@types/estree': 1.0.6 '@types/estree': 1.0.6
estree-walker: 2.0.2 estree-walker: 2.0.2
picomatch: 2.3.1 picomatch: 2.3.1
optionalDependencies: optionalDependencies:
rollup: 4.22.2 rollup: 4.22.0
'@rollup/rollup-android-arm-eabi@4.22.2': '@rollup/rollup-android-arm-eabi@4.22.0':
optional: true optional: true
'@rollup/rollup-android-arm64@4.22.2': '@rollup/rollup-android-arm64@4.22.0':
optional: true optional: true
'@rollup/rollup-darwin-arm64@4.22.2': '@rollup/rollup-darwin-arm64@4.22.0':
optional: true optional: true
'@rollup/rollup-darwin-x64@4.22.2': '@rollup/rollup-darwin-x64@4.22.0':
optional: true optional: true
'@rollup/rollup-linux-arm-gnueabihf@4.22.2': '@rollup/rollup-linux-arm-gnueabihf@4.22.0':
optional: true optional: true
'@rollup/rollup-linux-arm-musleabihf@4.22.2': '@rollup/rollup-linux-arm-musleabihf@4.22.0':
optional: true optional: true
'@rollup/rollup-linux-arm64-gnu@4.22.2': '@rollup/rollup-linux-arm64-gnu@4.22.0':
optional: true optional: true
'@rollup/rollup-linux-arm64-musl@4.22.2': '@rollup/rollup-linux-arm64-musl@4.22.0':
optional: true optional: true
'@rollup/rollup-linux-powerpc64le-gnu@4.22.2': '@rollup/rollup-linux-powerpc64le-gnu@4.22.0':
optional: true optional: true
'@rollup/rollup-linux-riscv64-gnu@4.22.2': '@rollup/rollup-linux-riscv64-gnu@4.22.0':
optional: true optional: true
'@rollup/rollup-linux-s390x-gnu@4.22.2': '@rollup/rollup-linux-s390x-gnu@4.22.0':
optional: true optional: true
'@rollup/rollup-linux-x64-gnu@4.22.2': '@rollup/rollup-linux-x64-gnu@4.22.0':
optional: true optional: true
'@rollup/rollup-linux-x64-musl@4.22.2': '@rollup/rollup-linux-x64-musl@4.22.0':
optional: true optional: true
'@rollup/rollup-win32-arm64-msvc@4.22.2': '@rollup/rollup-win32-arm64-msvc@4.22.0':
optional: true optional: true
'@rollup/rollup-win32-ia32-msvc@4.22.2': '@rollup/rollup-win32-ia32-msvc@4.22.0':
optional: true optional: true
'@rollup/rollup-win32-x64-msvc@4.22.2': '@rollup/rollup-win32-x64-msvc@4.22.0':
optional: true optional: true
'@rtsao/scc@1.1.0': {} '@rtsao/scc@1.1.0': {}
@ -6747,6 +6813,8 @@ snapshots:
transitivePeerDependencies: transitivePeerDependencies:
- '@types/node' - '@types/node'
'@sec-ant/readable-stream@0.4.1': {}
'@shockpkg/archive-files@https://codeload.github.com/aminya/archive-files/tar.gz/54ec59fad46aca736ac6feb6c7bb526528141b9d': '@shockpkg/archive-files@https://codeload.github.com/aminya/archive-files/tar.gz/54ec59fad46aca736ac6feb6c7bb526528141b9d':
dependencies: dependencies:
'@shockpkg/hdi-mac': 3.1.4 '@shockpkg/hdi-mac': 3.1.4
@ -6764,6 +6832,8 @@ snapshots:
'@sinclair/typebox@0.27.8': {} '@sinclair/typebox@0.27.8': {}
'@sindresorhus/merge-streams@4.0.0': {}
'@sinonjs/commons@3.0.1': '@sinonjs/commons@3.0.1':
dependencies: dependencies:
type-detect: 4.0.8 type-detect: 4.0.8
@ -6933,6 +7003,8 @@ snapshots:
'@types/ms@0.7.34': {} '@types/ms@0.7.34': {}
'@types/node@12.20.55': {}
'@types/node@14.18.63': {} '@types/node@14.18.63': {}
'@types/node@18.19.50': '@types/node@18.19.50':
@ -8733,6 +8805,21 @@ snapshots:
signal-exit: 3.0.7 signal-exit: 3.0.7
strip-final-newline: 3.0.0 strip-final-newline: 3.0.0
execa@9.4.0:
dependencies:
'@sindresorhus/merge-streams': 4.0.0
cross-spawn: 7.0.3
figures: 6.1.0
get-stream: 9.0.1
human-signals: 8.0.0
is-plain-obj: 4.1.0
is-stream: 4.0.1
npm-run-path: 6.0.0
pretty-ms: 9.1.0
signal-exit: 4.1.0
strip-final-newline: 4.0.0
yoctocolors: 2.1.1
exit@0.1.2: {} exit@0.1.2: {}
expect@29.7.0: expect@29.7.0:
@ -8789,6 +8876,10 @@ snapshots:
dependencies: dependencies:
escape-string-regexp: 1.0.5 escape-string-regexp: 1.0.5
figures@6.1.0:
dependencies:
is-unicode-supported: 2.1.0
file-entry-cache@6.0.1: file-entry-cache@6.0.1:
dependencies: dependencies:
flat-cache: 3.2.0 flat-cache: 3.2.0
@ -8894,6 +8985,11 @@ snapshots:
get-stream@6.0.1: {} get-stream@6.0.1: {}
get-stream@9.0.1:
dependencies:
'@sec-ant/readable-stream': 0.4.1
is-stream: 4.0.1
get-symbol-description@1.0.2: get-symbol-description@1.0.2:
dependencies: dependencies:
call-bind: 1.0.7 call-bind: 1.0.7
@ -9069,6 +9165,8 @@ snapshots:
human-signals@4.3.1: {} human-signals@4.3.1: {}
human-signals@8.0.0: {}
iconv-lite@0.4.24: iconv-lite@0.4.24:
dependencies: dependencies:
safer-buffer: 2.1.2 safer-buffer: 2.1.2
@ -9249,6 +9347,8 @@ snapshots:
is-stream@3.0.0: {} is-stream@3.0.0: {}
is-stream@4.0.1: {}
is-string@1.0.7: is-string@1.0.7:
dependencies: dependencies:
has-tostringtag: 1.0.2 has-tostringtag: 1.0.2
@ -9261,6 +9361,8 @@ snapshots:
dependencies: dependencies:
which-typed-array: 1.1.15 which-typed-array: 1.1.15
is-unicode-supported@2.1.0: {}
is-url-online@1.5.0: {} is-url-online@1.5.0: {}
is-valid-path@0.1.1: is-valid-path@0.1.1:
@ -10228,6 +10330,11 @@ snapshots:
dependencies: dependencies:
path-key: 4.0.0 path-key: 4.0.0
npm-run-path@6.0.0:
dependencies:
path-key: 4.0.0
unicorn-magic: 0.3.0
numerous@1.0.3: {} numerous@1.0.3: {}
numerous@2.0.0: numerous@2.0.0:
@ -10354,6 +10461,8 @@ snapshots:
json-parse-even-better-errors: 2.3.1 json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4 lines-and-columns: 1.2.4
parse-ms@4.0.0: {}
path-browserify@1.0.1: {} path-browserify@1.0.1: {}
path-exists@4.0.0: {} path-exists@4.0.0: {}
@ -10450,6 +10559,10 @@ snapshots:
ansi-styles: 5.2.0 ansi-styles: 5.2.0
react-is: 18.3.1 react-is: 18.3.1
pretty-ms@9.1.0:
dependencies:
parse-ms: 4.0.0
process-nextick-args@2.0.1: {} process-nextick-args@2.0.1: {}
process@0.11.10: process@0.11.10:
@ -10629,30 +10742,30 @@ snapshots:
dependencies: dependencies:
glob: 7.2.3 glob: 7.2.3
rollup-plugin-node-externals@7.1.3(rollup@4.22.2): rollup-plugin-node-externals@7.1.3(rollup@4.22.0):
dependencies: dependencies:
rollup: 4.22.2 rollup: 4.22.0
rollup@4.22.2: rollup@4.22.0:
dependencies: dependencies:
'@types/estree': 1.0.5 '@types/estree': 1.0.5
optionalDependencies: optionalDependencies:
'@rollup/rollup-android-arm-eabi': 4.22.2 '@rollup/rollup-android-arm-eabi': 4.22.0
'@rollup/rollup-android-arm64': 4.22.2 '@rollup/rollup-android-arm64': 4.22.0
'@rollup/rollup-darwin-arm64': 4.22.2 '@rollup/rollup-darwin-arm64': 4.22.0
'@rollup/rollup-darwin-x64': 4.22.2 '@rollup/rollup-darwin-x64': 4.22.0
'@rollup/rollup-linux-arm-gnueabihf': 4.22.2 '@rollup/rollup-linux-arm-gnueabihf': 4.22.0
'@rollup/rollup-linux-arm-musleabihf': 4.22.2 '@rollup/rollup-linux-arm-musleabihf': 4.22.0
'@rollup/rollup-linux-arm64-gnu': 4.22.2 '@rollup/rollup-linux-arm64-gnu': 4.22.0
'@rollup/rollup-linux-arm64-musl': 4.22.2 '@rollup/rollup-linux-arm64-musl': 4.22.0
'@rollup/rollup-linux-powerpc64le-gnu': 4.22.2 '@rollup/rollup-linux-powerpc64le-gnu': 4.22.0
'@rollup/rollup-linux-riscv64-gnu': 4.22.2 '@rollup/rollup-linux-riscv64-gnu': 4.22.0
'@rollup/rollup-linux-s390x-gnu': 4.22.2 '@rollup/rollup-linux-s390x-gnu': 4.22.0
'@rollup/rollup-linux-x64-gnu': 4.22.2 '@rollup/rollup-linux-x64-gnu': 4.22.0
'@rollup/rollup-linux-x64-musl': 4.22.2 '@rollup/rollup-linux-x64-musl': 4.22.0
'@rollup/rollup-win32-arm64-msvc': 4.22.2 '@rollup/rollup-win32-arm64-msvc': 4.22.0
'@rollup/rollup-win32-ia32-msvc': 4.22.2 '@rollup/rollup-win32-ia32-msvc': 4.22.0
'@rollup/rollup-win32-x64-msvc': 4.22.2 '@rollup/rollup-win32-x64-msvc': 4.22.0
fsevents: 2.3.3 fsevents: 2.3.3
run-async@2.4.1: {} run-async@2.4.1: {}
@ -10721,18 +10834,16 @@ snapshots:
functions-have-names: 1.2.3 functions-have-names: 1.2.3
has-property-descriptors: 1.0.2 has-property-descriptors: 1.0.2
setimmediate@1.0.5: {} setup-python@https://codeload.github.com/aminya/setup-python/tar.gz/65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236(encoding@0.1.13):
setup-python@https://codeload.github.com/aminya/setup-python/tar.gz/9700887(encoding@0.1.13):
dependencies: dependencies:
'@actions/cache': 3.2.4(encoding@0.1.13) '@actions/cache': 3.2.4(encoding@0.1.13)
'@actions/core': 1.10.1 '@actions/core': 1.10.1
'@actions/exec': 1.1.1 '@actions/exec': 1.1.1
'@actions/glob': 0.4.0 '@actions/glob': 0.2.1
'@actions/http-client': 2.2.3(patch_hash=gqcf2jay7nqqezf3jni6mxu74u) '@actions/http-client': 1.0.11
'@actions/io': 1.1.3 '@actions/io': 1.1.3
'@actions/tool-cache': 2.0.1 '@actions/tool-cache': 1.7.2
'@iarna/toml': 3.0.0 '@iarna/toml': 2.2.5
semver: 7.6.3 semver: 7.6.3
transitivePeerDependencies: transitivePeerDependencies:
- encoding - encoding
@ -10766,6 +10877,8 @@ snapshots:
signal-exit@3.0.7: {} signal-exit@3.0.7: {}
signal-exit@4.1.0: {}
simple-update-notifier@2.0.0: simple-update-notifier@2.0.0:
dependencies: dependencies:
semver: 7.6.3 semver: 7.6.3
@ -10929,6 +11042,8 @@ snapshots:
strip-final-newline@3.0.0: {} strip-final-newline@3.0.0: {}
strip-final-newline@4.0.0: {}
strip-json-comments@1.0.4: {} strip-json-comments@1.0.4: {}
strip-json-comments@3.1.1: {} strip-json-comments@3.1.1: {}
@ -11002,15 +11117,11 @@ snapshots:
through@2.3.8: {} through@2.3.8: {}
time-delta@https://codeload.github.com/aminya/time-delta/tar.gz/69d91a4: time-delta@https://codeload.github.com/aminya/time-delta/tar.gz/d732dbc4fe991ab323cfa9075df8a7988537926e:
dependencies: dependencies:
is-node: 1.0.2 is-node: 1.0.2
numerous: 1.0.3 numerous: 1.0.3
timers-browserify@2.0.12:
dependencies:
setimmediate: 1.0.5
timers-ext@0.1.8: timers-ext@0.1.8:
dependencies: dependencies:
es5-ext: 0.10.64 es5-ext: 0.10.64
@ -11219,6 +11330,8 @@ snapshots:
dependencies: dependencies:
'@fastify/busboy': 2.1.1 '@fastify/busboy': 2.1.1
unicorn-magic@0.3.0: {}
unique-string@2.0.0: unique-string@2.0.0:
dependencies: dependencies:
crypto-random-string: 2.0.0 crypto-random-string: 2.0.0
@ -11268,15 +11381,15 @@ snapshots:
validator@13.12.0: {} validator@13.12.0: {}
vite-plugin-babel@1.2.0(@babel/core@7.25.2)(vite@5.4.7(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0)): vite-plugin-babel@1.2.0(@babel/core@7.25.2)(vite@5.4.6(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0)):
dependencies: dependencies:
'@babel/core': 7.25.2 '@babel/core': 7.25.2
vite: 5.4.7(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0) vite: 5.4.6(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0)
vite-plugin-dts@3.9.1(@types/node@22.5.5)(rollup@4.22.2)(typescript@5.6.2)(vite@5.4.7(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0)): vite-plugin-dts@3.9.1(@types/node@22.5.5)(rollup@4.22.0)(typescript@5.6.2)(vite@5.4.6(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0)):
dependencies: dependencies:
'@microsoft/api-extractor': 7.43.0(@types/node@22.5.5) '@microsoft/api-extractor': 7.43.0(@types/node@22.5.5)
'@rollup/pluginutils': 5.1.0(rollup@4.22.2) '@rollup/pluginutils': 5.1.0(rollup@4.22.0)
'@vue/language-core': 1.8.27(typescript@5.6.2) '@vue/language-core': 1.8.27(typescript@5.6.2)
debug: 4.3.7 debug: 4.3.7
kolorist: 1.8.0 kolorist: 1.8.0
@ -11284,17 +11397,17 @@ snapshots:
typescript: 5.6.2 typescript: 5.6.2
vue-tsc: 1.8.27(typescript@5.6.2) vue-tsc: 1.8.27(typescript@5.6.2)
optionalDependencies: optionalDependencies:
vite: 5.4.7(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0) vite: 5.4.6(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0)
transitivePeerDependencies: transitivePeerDependencies:
- '@types/node' - '@types/node'
- rollup - rollup
- supports-color - supports-color
vite@5.4.7(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0): vite@5.4.6(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0):
dependencies: dependencies:
esbuild: 0.21.5 esbuild: 0.21.5
postcss: 8.4.47 postcss: 8.4.47
rollup: 4.22.2 rollup: 4.22.0
optionalDependencies: optionalDependencies:
'@types/node': 22.5.5 '@types/node': 22.5.5
fsevents: 2.3.3 fsevents: 2.3.3
@ -11483,6 +11596,8 @@ snapshots:
yocto-queue@0.1.0: {} yocto-queue@0.1.0: {}
yoctocolors@2.1.1: {}
z-schema@5.0.5: z-schema@5.0.5:
dependencies: dependencies:
lodash.get: 4.4.2 lodash.get: 4.4.2

View File

@ -4,9 +4,9 @@
import { GITHUB_ACTIONS, isCI } from "ci-info" import { GITHUB_ACTIONS, isCI } from "ci-info"
import { error, info, success, warning } from "ci-log" import { error, info, success, warning } from "ci-log"
import { finalizeRC } from "envosman" import { finalizeRC } from "envosman"
import numerous from "numerous" import * as numerous from "numerous"
import numerousLocale from "numerous/locales/en.js" import numerousLocale from "numerous/locales/en.js"
import timeDelta from "time-delta" import * as timeDelta from "time-delta"
import timeDeltaLocale from "time-delta/locales/en.js" import timeDeltaLocale from "time-delta/locales/en.js"
import { untildifyUser } from "untildify-user" import { untildifyUser } from "untildify-user"
import { checkUpdates } from "./check-updates.js" import { checkUpdates } from "./check-updates.js"

View File

@ -31,7 +31,6 @@ const viteConfig = defineConfig({
"stream/promises": "./src/utils/compat/stream/promises.ts", "stream/promises": "./src/utils/compat/stream/promises.ts",
"stream/web": "web-streams-polyfill/dist/ponyfill.mjs", "stream/web": "web-streams-polyfill/dist/ponyfill.mjs",
"util/types": "util.types/index.js", "util/types": "util.types/index.js",
"timers/promises": "timers-browserify",
diagnostics_channel: "diagnostics_channel/index.js", diagnostics_channel: "diagnostics_channel/index.js",
} }
: {}), : {}),