mirror of
https://github.com/docker/login-action.git
synced 2026-06-30 13:31:52 +08:00
Compare commits
7 Commits
dependabot
...
dependabot
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3be61c42c8 | ||
|
|
17f7c1809f | ||
|
|
a2447fe0f6 | ||
|
|
3864d6aed8 | ||
|
|
64b25388de | ||
|
|
37a9a4b333 | ||
|
|
eb1946f59c |
55
.github/workflows/ci.yml
vendored
55
.github/workflows/ci.yml
vendored
@@ -195,6 +195,33 @@ jobs:
|
||||
with:
|
||||
registry: 175142243308.dkr.ecr.us-east-1.amazonaws.com
|
||||
|
||||
ecr-oidc:
|
||||
permissions:
|
||||
contents: read
|
||||
id-token: write
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os:
|
||||
- ubuntu-latest
|
||||
- windows-latest
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Configure AWS Credentials
|
||||
uses: aws-actions/configure-aws-credentials@acca2b1b2070338fb9fd1ca27ecee81d687e58e5 # v6.1.2
|
||||
with:
|
||||
role-to-assume: arn:aws:iam::175142243308:role/official_gha_cicd_login_action
|
||||
aws-region: us-east-1
|
||||
-
|
||||
name: Login to ECR
|
||||
uses: ./
|
||||
with:
|
||||
registry: 175142243308.dkr.ecr.us-east-1.amazonaws.com
|
||||
|
||||
ecr-public:
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
@@ -244,6 +271,34 @@ jobs:
|
||||
with:
|
||||
registry: public.ecr.aws
|
||||
|
||||
ecr-public-oidc:
|
||||
permissions:
|
||||
contents: read
|
||||
id-token: write
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os:
|
||||
- ubuntu-latest
|
||||
- windows-latest
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Configure AWS Credentials
|
||||
uses: aws-actions/configure-aws-credentials@acca2b1b2070338fb9fd1ca27ecee81d687e58e5 # v6.1.2
|
||||
with:
|
||||
role-to-assume: arn:aws:iam::175142243308:role/official_gha_cicd_login_action
|
||||
aws-region: us-east-1
|
||||
-
|
||||
name: Login to Public ECR
|
||||
continue-on-error: ${{ matrix.os == 'windows-latest' }}
|
||||
uses: ./
|
||||
with:
|
||||
registry: public.ecr.aws
|
||||
|
||||
ghcr:
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
|
||||
@@ -17,7 +17,7 @@ FROM base AS deps
|
||||
RUN --mount=type=bind,target=.,rw \
|
||||
--mount=type=cache,target=/src/.yarn/cache \
|
||||
--mount=type=cache,target=/src/node_modules \
|
||||
yarn install && mkdir /vendor && cp yarn.lock /vendor
|
||||
yarn install --immutable && mkdir /vendor && cp yarn.lock /vendor
|
||||
|
||||
FROM scratch AS vendor-update
|
||||
COPY --from=deps /vendor /
|
||||
|
||||
327
dist/index.cjs
generated
vendored
327
dist/index.cjs
generated
vendored
File diff suppressed because one or more lines are too long
8
dist/index.cjs.map
generated
vendored
8
dist/index.cjs.map
generated
vendored
File diff suppressed because one or more lines are too long
5
dist/licenses.txt
generated
vendored
5
dist/licenses.txt
generated
vendored
@@ -2891,7 +2891,7 @@ The following npm packages may be included in this product:
|
||||
- agent-base@9.0.0
|
||||
- https-proxy-agent@7.0.4
|
||||
- https-proxy-agent@7.0.6
|
||||
- https-proxy-agent@9.1.0
|
||||
- https-proxy-agent@9.0.0
|
||||
- socks-proxy-agent@8.0.3
|
||||
|
||||
These packages each contain the following license:
|
||||
@@ -2924,7 +2924,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
The following npm packages may be included in this product:
|
||||
|
||||
- http-proxy-agent@7.0.2
|
||||
- http-proxy-agent@9.1.0
|
||||
- http-proxy-agent@9.0.0
|
||||
|
||||
These packages each contain the following license:
|
||||
|
||||
@@ -5604,7 +5604,6 @@ The following npm packages may be included in this product:
|
||||
- imurmurhash@0.1.4
|
||||
- is-gzip@1.0.0
|
||||
- isarray@1.0.0
|
||||
- proxy-agent-negotiate@1.1.0
|
||||
- xml-naming@0.1.0
|
||||
|
||||
These packages each contain the following license:
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
"type": "module",
|
||||
"main": "src/main.ts",
|
||||
"scripts": {
|
||||
"build": "esbuild src/main.ts --bundle --platform=node --target=node24 --format=cjs --outfile=dist/index.cjs --sourcemap --minify && yarn run license",
|
||||
"build": "esbuild src/main.ts --bundle --platform=node --target=node24 --format=cjs --outfile=dist/index.cjs --sourcemap --minify --keep-names && yarn run license",
|
||||
"lint": "eslint --max-warnings=0 .",
|
||||
"format": "eslint --fix .",
|
||||
"test": "vitest run",
|
||||
@@ -27,8 +27,8 @@
|
||||
"@aws-sdk/client-ecr": "^3.1050.0",
|
||||
"@aws-sdk/client-ecr-public": "^3.1050.0",
|
||||
"@docker/actions-toolkit": "^0.91.0",
|
||||
"http-proxy-agent": "^9.1.0",
|
||||
"https-proxy-agent": "^9.1.0",
|
||||
"http-proxy-agent": "^9.0.0",
|
||||
"https-proxy-agent": "^9.0.0",
|
||||
"js-yaml": "^4.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
||||
316
yarn.lock
316
yarn.lock
@@ -792,13 +792,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/aix-ppc64@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/aix-ppc64@npm:0.27.3"
|
||||
conditions: os=aix & cpu=ppc64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/aix-ppc64@npm:0.28.0":
|
||||
version: 0.28.0
|
||||
resolution: "@esbuild/aix-ppc64@npm:0.28.0"
|
||||
@@ -806,10 +799,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/android-arm64@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/android-arm64@npm:0.27.3"
|
||||
conditions: os=android & cpu=arm64
|
||||
"@esbuild/aix-ppc64@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/aix-ppc64@npm:0.28.1"
|
||||
conditions: os=aix & cpu=ppc64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -820,10 +813,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/android-arm@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/android-arm@npm:0.27.3"
|
||||
conditions: os=android & cpu=arm
|
||||
"@esbuild/android-arm64@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/android-arm64@npm:0.28.1"
|
||||
conditions: os=android & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -834,10 +827,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/android-x64@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/android-x64@npm:0.27.3"
|
||||
conditions: os=android & cpu=x64
|
||||
"@esbuild/android-arm@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/android-arm@npm:0.28.1"
|
||||
conditions: os=android & cpu=arm
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -848,10 +841,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/darwin-arm64@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/darwin-arm64@npm:0.27.3"
|
||||
conditions: os=darwin & cpu=arm64
|
||||
"@esbuild/android-x64@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/android-x64@npm:0.28.1"
|
||||
conditions: os=android & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -862,10 +855,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/darwin-x64@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/darwin-x64@npm:0.27.3"
|
||||
conditions: os=darwin & cpu=x64
|
||||
"@esbuild/darwin-arm64@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/darwin-arm64@npm:0.28.1"
|
||||
conditions: os=darwin & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -876,10 +869,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/freebsd-arm64@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/freebsd-arm64@npm:0.27.3"
|
||||
conditions: os=freebsd & cpu=arm64
|
||||
"@esbuild/darwin-x64@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/darwin-x64@npm:0.28.1"
|
||||
conditions: os=darwin & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -890,10 +883,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/freebsd-x64@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/freebsd-x64@npm:0.27.3"
|
||||
conditions: os=freebsd & cpu=x64
|
||||
"@esbuild/freebsd-arm64@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/freebsd-arm64@npm:0.28.1"
|
||||
conditions: os=freebsd & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -904,10 +897,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/linux-arm64@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/linux-arm64@npm:0.27.3"
|
||||
conditions: os=linux & cpu=arm64
|
||||
"@esbuild/freebsd-x64@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/freebsd-x64@npm:0.28.1"
|
||||
conditions: os=freebsd & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -918,10 +911,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/linux-arm@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/linux-arm@npm:0.27.3"
|
||||
conditions: os=linux & cpu=arm
|
||||
"@esbuild/linux-arm64@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/linux-arm64@npm:0.28.1"
|
||||
conditions: os=linux & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -932,10 +925,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/linux-ia32@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/linux-ia32@npm:0.27.3"
|
||||
conditions: os=linux & cpu=ia32
|
||||
"@esbuild/linux-arm@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/linux-arm@npm:0.28.1"
|
||||
conditions: os=linux & cpu=arm
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -946,10 +939,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/linux-loong64@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/linux-loong64@npm:0.27.3"
|
||||
conditions: os=linux & cpu=loong64
|
||||
"@esbuild/linux-ia32@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/linux-ia32@npm:0.28.1"
|
||||
conditions: os=linux & cpu=ia32
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -960,10 +953,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/linux-mips64el@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/linux-mips64el@npm:0.27.3"
|
||||
conditions: os=linux & cpu=mips64el
|
||||
"@esbuild/linux-loong64@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/linux-loong64@npm:0.28.1"
|
||||
conditions: os=linux & cpu=loong64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -974,10 +967,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/linux-ppc64@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/linux-ppc64@npm:0.27.3"
|
||||
conditions: os=linux & cpu=ppc64
|
||||
"@esbuild/linux-mips64el@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/linux-mips64el@npm:0.28.1"
|
||||
conditions: os=linux & cpu=mips64el
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -988,10 +981,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/linux-riscv64@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/linux-riscv64@npm:0.27.3"
|
||||
conditions: os=linux & cpu=riscv64
|
||||
"@esbuild/linux-ppc64@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/linux-ppc64@npm:0.28.1"
|
||||
conditions: os=linux & cpu=ppc64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1002,10 +995,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/linux-s390x@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/linux-s390x@npm:0.27.3"
|
||||
conditions: os=linux & cpu=s390x
|
||||
"@esbuild/linux-riscv64@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/linux-riscv64@npm:0.28.1"
|
||||
conditions: os=linux & cpu=riscv64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1016,10 +1009,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/linux-x64@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/linux-x64@npm:0.27.3"
|
||||
conditions: os=linux & cpu=x64
|
||||
"@esbuild/linux-s390x@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/linux-s390x@npm:0.28.1"
|
||||
conditions: os=linux & cpu=s390x
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1030,10 +1023,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/netbsd-arm64@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/netbsd-arm64@npm:0.27.3"
|
||||
conditions: os=netbsd & cpu=arm64
|
||||
"@esbuild/linux-x64@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/linux-x64@npm:0.28.1"
|
||||
conditions: os=linux & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1044,10 +1037,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/netbsd-x64@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/netbsd-x64@npm:0.27.3"
|
||||
conditions: os=netbsd & cpu=x64
|
||||
"@esbuild/netbsd-arm64@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/netbsd-arm64@npm:0.28.1"
|
||||
conditions: os=netbsd & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1058,10 +1051,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/openbsd-arm64@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/openbsd-arm64@npm:0.27.3"
|
||||
conditions: os=openbsd & cpu=arm64
|
||||
"@esbuild/netbsd-x64@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/netbsd-x64@npm:0.28.1"
|
||||
conditions: os=netbsd & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1072,10 +1065,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/openbsd-x64@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/openbsd-x64@npm:0.27.3"
|
||||
conditions: os=openbsd & cpu=x64
|
||||
"@esbuild/openbsd-arm64@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/openbsd-arm64@npm:0.28.1"
|
||||
conditions: os=openbsd & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1086,10 +1079,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/openharmony-arm64@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/openharmony-arm64@npm:0.27.3"
|
||||
conditions: os=openharmony & cpu=arm64
|
||||
"@esbuild/openbsd-x64@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/openbsd-x64@npm:0.28.1"
|
||||
conditions: os=openbsd & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1100,10 +1093,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/sunos-x64@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/sunos-x64@npm:0.27.3"
|
||||
conditions: os=sunos & cpu=x64
|
||||
"@esbuild/openharmony-arm64@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/openharmony-arm64@npm:0.28.1"
|
||||
conditions: os=openharmony & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1114,10 +1107,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/win32-arm64@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/win32-arm64@npm:0.27.3"
|
||||
conditions: os=win32 & cpu=arm64
|
||||
"@esbuild/sunos-x64@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/sunos-x64@npm:0.28.1"
|
||||
conditions: os=sunos & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1128,10 +1121,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/win32-ia32@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/win32-ia32@npm:0.27.3"
|
||||
conditions: os=win32 & cpu=ia32
|
||||
"@esbuild/win32-arm64@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/win32-arm64@npm:0.28.1"
|
||||
conditions: os=win32 & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1142,10 +1135,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/win32-x64@npm:0.27.3":
|
||||
version: 0.27.3
|
||||
resolution: "@esbuild/win32-x64@npm:0.27.3"
|
||||
conditions: os=win32 & cpu=x64
|
||||
"@esbuild/win32-ia32@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/win32-ia32@npm:0.28.1"
|
||||
conditions: os=win32 & cpu=ia32
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1156,6 +1149,13 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/win32-x64@npm:0.28.1":
|
||||
version: 0.28.1
|
||||
resolution: "@esbuild/win32-x64@npm:0.28.1"
|
||||
conditions: os=win32 & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@eslint-community/eslint-utils@npm:^4.8.0, @eslint-community/eslint-utils@npm:^4.9.1":
|
||||
version: 4.9.1
|
||||
resolution: "@eslint-community/eslint-utils@npm:4.9.1"
|
||||
@@ -3274,8 +3274,8 @@ __metadata:
|
||||
eslint-plugin-prettier: "npm:^5.5.5"
|
||||
generate-license-file: "npm:^4.1.1"
|
||||
globals: "npm:^17.3.0"
|
||||
http-proxy-agent: "npm:^9.1.0"
|
||||
https-proxy-agent: "npm:^9.1.0"
|
||||
http-proxy-agent: "npm:^9.0.0"
|
||||
https-proxy-agent: "npm:^9.0.0"
|
||||
js-yaml: "npm:^4.1.1"
|
||||
prettier: "npm:^3.8.1"
|
||||
typescript: "npm:^5.9.3"
|
||||
@@ -3374,36 +3374,36 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"esbuild@npm:^0.27.0":
|
||||
version: 0.27.3
|
||||
resolution: "esbuild@npm:0.27.3"
|
||||
"esbuild@npm:^0.27.0 || ^0.28.0":
|
||||
version: 0.28.1
|
||||
resolution: "esbuild@npm:0.28.1"
|
||||
dependencies:
|
||||
"@esbuild/aix-ppc64": "npm:0.27.3"
|
||||
"@esbuild/android-arm": "npm:0.27.3"
|
||||
"@esbuild/android-arm64": "npm:0.27.3"
|
||||
"@esbuild/android-x64": "npm:0.27.3"
|
||||
"@esbuild/darwin-arm64": "npm:0.27.3"
|
||||
"@esbuild/darwin-x64": "npm:0.27.3"
|
||||
"@esbuild/freebsd-arm64": "npm:0.27.3"
|
||||
"@esbuild/freebsd-x64": "npm:0.27.3"
|
||||
"@esbuild/linux-arm": "npm:0.27.3"
|
||||
"@esbuild/linux-arm64": "npm:0.27.3"
|
||||
"@esbuild/linux-ia32": "npm:0.27.3"
|
||||
"@esbuild/linux-loong64": "npm:0.27.3"
|
||||
"@esbuild/linux-mips64el": "npm:0.27.3"
|
||||
"@esbuild/linux-ppc64": "npm:0.27.3"
|
||||
"@esbuild/linux-riscv64": "npm:0.27.3"
|
||||
"@esbuild/linux-s390x": "npm:0.27.3"
|
||||
"@esbuild/linux-x64": "npm:0.27.3"
|
||||
"@esbuild/netbsd-arm64": "npm:0.27.3"
|
||||
"@esbuild/netbsd-x64": "npm:0.27.3"
|
||||
"@esbuild/openbsd-arm64": "npm:0.27.3"
|
||||
"@esbuild/openbsd-x64": "npm:0.27.3"
|
||||
"@esbuild/openharmony-arm64": "npm:0.27.3"
|
||||
"@esbuild/sunos-x64": "npm:0.27.3"
|
||||
"@esbuild/win32-arm64": "npm:0.27.3"
|
||||
"@esbuild/win32-ia32": "npm:0.27.3"
|
||||
"@esbuild/win32-x64": "npm:0.27.3"
|
||||
"@esbuild/aix-ppc64": "npm:0.28.1"
|
||||
"@esbuild/android-arm": "npm:0.28.1"
|
||||
"@esbuild/android-arm64": "npm:0.28.1"
|
||||
"@esbuild/android-x64": "npm:0.28.1"
|
||||
"@esbuild/darwin-arm64": "npm:0.28.1"
|
||||
"@esbuild/darwin-x64": "npm:0.28.1"
|
||||
"@esbuild/freebsd-arm64": "npm:0.28.1"
|
||||
"@esbuild/freebsd-x64": "npm:0.28.1"
|
||||
"@esbuild/linux-arm": "npm:0.28.1"
|
||||
"@esbuild/linux-arm64": "npm:0.28.1"
|
||||
"@esbuild/linux-ia32": "npm:0.28.1"
|
||||
"@esbuild/linux-loong64": "npm:0.28.1"
|
||||
"@esbuild/linux-mips64el": "npm:0.28.1"
|
||||
"@esbuild/linux-ppc64": "npm:0.28.1"
|
||||
"@esbuild/linux-riscv64": "npm:0.28.1"
|
||||
"@esbuild/linux-s390x": "npm:0.28.1"
|
||||
"@esbuild/linux-x64": "npm:0.28.1"
|
||||
"@esbuild/netbsd-arm64": "npm:0.28.1"
|
||||
"@esbuild/netbsd-x64": "npm:0.28.1"
|
||||
"@esbuild/openbsd-arm64": "npm:0.28.1"
|
||||
"@esbuild/openbsd-x64": "npm:0.28.1"
|
||||
"@esbuild/openharmony-arm64": "npm:0.28.1"
|
||||
"@esbuild/sunos-x64": "npm:0.28.1"
|
||||
"@esbuild/win32-arm64": "npm:0.28.1"
|
||||
"@esbuild/win32-ia32": "npm:0.28.1"
|
||||
"@esbuild/win32-x64": "npm:0.28.1"
|
||||
dependenciesMeta:
|
||||
"@esbuild/aix-ppc64":
|
||||
optional: true
|
||||
@@ -3459,7 +3459,7 @@ __metadata:
|
||||
optional: true
|
||||
bin:
|
||||
esbuild: bin/esbuild
|
||||
checksum: 10/aa74b8d8a3ed8e2eea4d8421737b322f4d21215244e8fa2156c6402d49b5bda01343c220196f1e3f830a7ce92b54ef653c6c723a8cc2e912bb4d17b7398b51ae
|
||||
checksum: 10/aaa4a922644afffac45e735c99caf343f881e2d36abcc6b6fb53c230bd69940504a5bb6b0041bdd1a690e748ebc681d3308a7d178987c523d74c63c2c280bac8
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -4129,14 +4129,13 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"http-proxy-agent@npm:^9.1.0":
|
||||
version: 9.1.0
|
||||
resolution: "http-proxy-agent@npm:9.1.0"
|
||||
"http-proxy-agent@npm:^9.0.0":
|
||||
version: 9.0.0
|
||||
resolution: "http-proxy-agent@npm:9.0.0"
|
||||
dependencies:
|
||||
agent-base: "npm:9.0.0"
|
||||
debug: "npm:^4.3.4"
|
||||
proxy-agent-negotiate: "npm:1.1.0"
|
||||
checksum: 10/d76441afe6849c3ea6f8143371062908fe4cb1037c5f6ad709f068e8086afd544e1980cc33b06513770878f423529db6f33ac0b5db4877214ec5a157e1e950c9
|
||||
checksum: 10/8cf23a49ab274b2a5199011e5a96268d75dd6e4031cf72b723182c41b47d876c507c2fa125451743b87cd9f826cf60f5260dcc5e7db58f9dcc38823c9c07e625
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -4160,14 +4159,13 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"https-proxy-agent@npm:^9.1.0":
|
||||
version: 9.1.0
|
||||
resolution: "https-proxy-agent@npm:9.1.0"
|
||||
"https-proxy-agent@npm:^9.0.0":
|
||||
version: 9.0.0
|
||||
resolution: "https-proxy-agent@npm:9.0.0"
|
||||
dependencies:
|
||||
agent-base: "npm:9.0.0"
|
||||
debug: "npm:^4.3.4"
|
||||
proxy-agent-negotiate: "npm:1.1.0"
|
||||
checksum: 10/45021d326c032bf8cd480acee488d5f701842cbef4756a33b81244a872304c918498ef6cf667d8348c11e9b065dd520ec1fd9138196147f608c5837500e7395b
|
||||
checksum: 10/27457d671278c8c1074cc901fe305b70d1e340127433219124c4aefc44153a179a8921e4b16d67beb2868a3a39b6b7ec84d91d8f24f2ec1d39cf4ac385351a92
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -5486,18 +5484,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"proxy-agent-negotiate@npm:1.1.0":
|
||||
version: 1.1.0
|
||||
resolution: "proxy-agent-negotiate@npm:1.1.0"
|
||||
peerDependencies:
|
||||
kerberos: ^2.0.0
|
||||
peerDependenciesMeta:
|
||||
kerberos:
|
||||
optional: true
|
||||
checksum: 10/4554c42b8b872f37cf76c9044b7a5827bccf41ad77a1992b09bb89b84c779f5536bdd0d3312f247565e09fba8700e48a25f233e339705978242e3ca1d0dab149
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"pump@npm:^2.0.0":
|
||||
version: 2.0.1
|
||||
resolution: "pump@npm:2.0.1"
|
||||
@@ -6401,10 +6387,10 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"vite@npm:^6.0.0 || ^7.0.0":
|
||||
version: 7.3.3
|
||||
resolution: "vite@npm:7.3.3"
|
||||
version: 7.3.6
|
||||
resolution: "vite@npm:7.3.6"
|
||||
dependencies:
|
||||
esbuild: "npm:^0.27.0"
|
||||
esbuild: "npm:^0.27.0 || ^0.28.0"
|
||||
fdir: "npm:^6.5.0"
|
||||
fsevents: "npm:~2.3.3"
|
||||
picomatch: "npm:^4.0.3"
|
||||
@@ -6451,7 +6437,7 @@ __metadata:
|
||||
optional: true
|
||||
bin:
|
||||
vite: bin/vite.js
|
||||
checksum: 10/c7fa17bc0aa530313417a28a144edcf910466b936cb192ce2c8cf7d6075e4b8e481b08a55ef71a7486757b03465b054d8c2cb49473d6fc9a0db8ac1dd641edff
|
||||
checksum: 10/6fcbadb1a409990e1bbd4ff0ff41e763c87049228cdc407984bdca40b96ab32de0f1f70fa62fb1f3ca001a5b90accbbe22ddfad5cc436855058357b3f2141d3b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
|
||||
Reference in New Issue
Block a user