generated from nhcarrigan/template
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 867594efbe | |||
| 05634b9a4c | |||
| 970a31895d |
@@ -1,47 +0,0 @@
|
|||||||
name: Node.js CI
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
ci:
|
|
||||||
name: CI
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout Source Files
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Use Node.js v24
|
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 24
|
|
||||||
|
|
||||||
- name: Setup pnpm
|
|
||||||
uses: pnpm/action-setup@v2
|
|
||||||
with:
|
|
||||||
version: 10
|
|
||||||
|
|
||||||
- name: Ensure Dependencies are Pinned
|
|
||||||
uses: naomi-lgbt/dependency-pin-check@main
|
|
||||||
with:
|
|
||||||
language: javascript
|
|
||||||
dev-dependencies: true
|
|
||||||
peer-dependencies: true
|
|
||||||
optional-dependencies: true
|
|
||||||
|
|
||||||
- name: Install Dependencies
|
|
||||||
run: pnpm install
|
|
||||||
|
|
||||||
- name: Lint Source Files
|
|
||||||
run: pnpm run lint
|
|
||||||
|
|
||||||
- name: Verify Build
|
|
||||||
run: pnpm run build
|
|
||||||
|
|
||||||
- name: Run Tests
|
|
||||||
run: pnpm run test
|
|
||||||
@@ -1,177 +0,0 @@
|
|||||||
name: Security Scan and Upload
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [ main ]
|
|
||||||
pull_request:
|
|
||||||
branches: [ main ]
|
|
||||||
schedule:
|
|
||||||
- cron: '0 0 * * 1'
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
security-audit:
|
|
||||||
name: Security & DefectDojo Upload
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
continue-on-error: true
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
# --- AUTO-SETUP PROJECT ---
|
|
||||||
- name: Ensure DefectDojo Product Exists
|
|
||||||
env:
|
|
||||||
DD_URL: ${{ secrets.DD_URL }}
|
|
||||||
DD_TOKEN: ${{ secrets.DD_TOKEN }}
|
|
||||||
PRODUCT_NAME: ${{ github.repository }}
|
|
||||||
PRODUCT_TYPE_ID: 1
|
|
||||||
run: |
|
|
||||||
sudo apt-get install jq -y > /dev/null
|
|
||||||
|
|
||||||
echo "Checking connection to $DD_URL..."
|
|
||||||
|
|
||||||
# Check if product exists - capture HTTP code to debug connection issues
|
|
||||||
RESPONSE=$(curl --write-out "%{http_code}" --silent --output /tmp/response.json \
|
|
||||||
-H "Authorization: Token $DD_TOKEN" \
|
|
||||||
"$DD_URL/api/v2/products/?name=$PRODUCT_NAME")
|
|
||||||
|
|
||||||
# If response is not 200, print error
|
|
||||||
if [ "$RESPONSE" != "200" ]; then
|
|
||||||
echo "::error::Failed to query DefectDojo. HTTP Code: $RESPONSE"
|
|
||||||
cat /tmp/response.json
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
COUNT=$(cat /tmp/response.json | jq -r '.count')
|
|
||||||
|
|
||||||
if [ "$COUNT" = "0" ]; then
|
|
||||||
echo "Creating product '$PRODUCT_NAME'..."
|
|
||||||
curl -s -X POST "$DD_URL/api/v2/products/" \
|
|
||||||
-H "Authorization: Token $DD_TOKEN" \
|
|
||||||
-H "Content-Type: application/json" \
|
|
||||||
-d '{ "name": "'"$PRODUCT_NAME"'", "description": "Auto-created by Gitea Actions", "prod_type": '$PRODUCT_TYPE_ID' }'
|
|
||||||
else
|
|
||||||
echo "Product '$PRODUCT_NAME' already exists."
|
|
||||||
fi
|
|
||||||
|
|
||||||
# --- 1. TRIVY (Dependencies & Misconfig) ---
|
|
||||||
- name: Install Trivy
|
|
||||||
run: |
|
|
||||||
sudo apt-get install wget apt-transport-https gnupg lsb-release -y
|
|
||||||
wget -qO - https://aquasecurity.github.io/trivy-repo/deb/public.key | sudo apt-key add -
|
|
||||||
echo "deb https://aquasecurity.github.io/trivy-repo/deb $(lsb_release -sc) main" | sudo tee -a /etc/apt/sources.list.d/trivy.list
|
|
||||||
sudo apt-get update && sudo apt-get install trivy -y
|
|
||||||
|
|
||||||
- name: Run Trivy (FS Scan)
|
|
||||||
run: |
|
|
||||||
trivy fs . --scanners vuln,misconfig --format json --output trivy-results.json --exit-code 0
|
|
||||||
|
|
||||||
- name: Upload Trivy to DefectDojo
|
|
||||||
env:
|
|
||||||
DD_URL: ${{ secrets.DD_URL }}
|
|
||||||
DD_TOKEN: ${{ secrets.DD_TOKEN }}
|
|
||||||
run: |
|
|
||||||
echo "Uploading Trivy results..."
|
|
||||||
# Generate today's date in YYYY-MM-DD format
|
|
||||||
TODAY=$(date +%Y-%m-%d)
|
|
||||||
|
|
||||||
HTTP_CODE=$(curl --write-out "%{http_code}" --output response.txt --silent -X POST "$DD_URL/api/v2/import-scan/" \
|
|
||||||
-H "Authorization: Token $DD_TOKEN" \
|
|
||||||
-F "active=true" \
|
|
||||||
-F "verified=true" \
|
|
||||||
-F "scan_type=Trivy Scan" \
|
|
||||||
-F "engagement_name=CI/CD Pipeline" \
|
|
||||||
-F "product_name=${{ github.repository }}" \
|
|
||||||
-F "scan_date=$TODAY" \
|
|
||||||
-F "auto_create_context=true" \
|
|
||||||
-F "file=@trivy-results.json")
|
|
||||||
|
|
||||||
if [[ "$HTTP_CODE" != "200" && "$HTTP_CODE" != "201" ]]; then
|
|
||||||
echo "::error::Upload Failed with HTTP $HTTP_CODE"
|
|
||||||
echo "--- SERVER RESPONSE ---"
|
|
||||||
cat response.txt
|
|
||||||
echo "-----------------------"
|
|
||||||
exit 1
|
|
||||||
else
|
|
||||||
echo "Upload Success!"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# --- 2. GITLEAKS (Secrets) ---
|
|
||||||
- name: Install Gitleaks
|
|
||||||
run: |
|
|
||||||
wget -qO gitleaks.tar.gz https://github.com/gitleaks/gitleaks/releases/download/v8.18.0/gitleaks_8.18.0_linux_x64.tar.gz
|
|
||||||
tar -xzf gitleaks.tar.gz
|
|
||||||
sudo mv gitleaks /usr/local/bin/ && chmod +x /usr/local/bin/gitleaks
|
|
||||||
|
|
||||||
- name: Run Gitleaks
|
|
||||||
run: gitleaks detect --source . -v --report-path gitleaks-results.json --report-format json --no-git || true
|
|
||||||
|
|
||||||
- name: Upload Gitleaks to DefectDojo
|
|
||||||
env:
|
|
||||||
DD_URL: ${{ secrets.DD_URL }}
|
|
||||||
DD_TOKEN: ${{ secrets.DD_TOKEN }}
|
|
||||||
run: |
|
|
||||||
echo "Uploading Gitleaks results..."
|
|
||||||
TODAY=$(date +%Y-%m-%d)
|
|
||||||
|
|
||||||
HTTP_CODE=$(curl --write-out "%{http_code}" --output response.txt --silent -X POST "$DD_URL/api/v2/import-scan/" \
|
|
||||||
-H "Authorization: Token $DD_TOKEN" \
|
|
||||||
-F "active=true" \
|
|
||||||
-F "verified=true" \
|
|
||||||
-F "scan_type=Gitleaks Scan" \
|
|
||||||
-F "engagement_name=CI/CD Pipeline" \
|
|
||||||
-F "product_name=${{ github.repository }}" \
|
|
||||||
-F "scan_date=$TODAY" \
|
|
||||||
-F "auto_create_context=true" \
|
|
||||||
-F "file=@gitleaks-results.json")
|
|
||||||
|
|
||||||
if [[ "$HTTP_CODE" != "200" && "$HTTP_CODE" != "201" ]]; then
|
|
||||||
echo "::error::Upload Failed with HTTP $HTTP_CODE"
|
|
||||||
echo "--- SERVER RESPONSE ---"
|
|
||||||
cat response.txt
|
|
||||||
echo "-----------------------"
|
|
||||||
exit 1
|
|
||||||
else
|
|
||||||
echo "Upload Success!"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# --- 3. SEMGREP (SAST) ---
|
|
||||||
- name: Install Semgrep (via pipx)
|
|
||||||
run: |
|
|
||||||
sudo apt-get install pipx -y
|
|
||||||
pipx install semgrep
|
|
||||||
# Add pipx binary path to GITHUB_PATH so next steps can see 'semgrep'
|
|
||||||
echo "$HOME/.local/bin" >> $GITHUB_PATH
|
|
||||||
|
|
||||||
- name: Run Semgrep
|
|
||||||
run: semgrep scan --config=p/security-audit --config=p/owasp-top-ten --json --output semgrep-results.json . || true
|
|
||||||
|
|
||||||
- name: Upload Semgrep to DefectDojo
|
|
||||||
env:
|
|
||||||
DD_URL: ${{ secrets.DD_URL }}
|
|
||||||
DD_TOKEN: ${{ secrets.DD_TOKEN }}
|
|
||||||
run: |
|
|
||||||
echo "Uploading Semgrep results..."
|
|
||||||
TODAY=$(date +%Y-%m-%d)
|
|
||||||
|
|
||||||
HTTP_CODE=$(curl --write-out "%{http_code}" --output response.txt --silent -X POST "$DD_URL/api/v2/import-scan/" \
|
|
||||||
-H "Authorization: Token $DD_TOKEN" \
|
|
||||||
-F "active=true" \
|
|
||||||
-F "verified=true" \
|
|
||||||
-F "scan_type=Semgrep JSON Report" \
|
|
||||||
-F "engagement_name=CI/CD Pipeline" \
|
|
||||||
-F "product_name=${{ github.repository }}" \
|
|
||||||
-F "scan_date=$TODAY" \
|
|
||||||
-F "auto_create_context=true" \
|
|
||||||
-F "file=@semgrep-results.json")
|
|
||||||
|
|
||||||
if [[ "$HTTP_CODE" != "200" && "$HTTP_CODE" != "201" ]]; then
|
|
||||||
echo "::error::Upload Failed with HTTP $HTTP_CODE"
|
|
||||||
echo "--- SERVER RESPONSE ---"
|
|
||||||
cat response.txt
|
|
||||||
echo "-----------------------"
|
|
||||||
exit 1
|
|
||||||
else
|
|
||||||
echo "Upload Success!"
|
|
||||||
fi
|
|
||||||
@@ -1,2 +1 @@
|
|||||||
node_modules
|
node_modules
|
||||||
prod
|
|
||||||
|
|||||||
@@ -1,25 +0,0 @@
|
|||||||
# Package Manager Configuration
|
|
||||||
# Force pnpm usage - breaks npm/yarn intentionally
|
|
||||||
node-linker=pnpm
|
|
||||||
|
|
||||||
# Security: Disable all lifecycle scripts
|
|
||||||
ignore-scripts=true
|
|
||||||
enable-pre-post-scripts=false
|
|
||||||
|
|
||||||
# Security: Require packages to be 10+ days old before installation
|
|
||||||
minimum-release-age=14400
|
|
||||||
|
|
||||||
# Security: Verify package integrity hashes
|
|
||||||
verify-store-integrity=true
|
|
||||||
|
|
||||||
# Security: Enforce strict trust policies
|
|
||||||
trust-policy=strict
|
|
||||||
|
|
||||||
# Security: Strict peer dependency resolution
|
|
||||||
strict-peer-dependencies=true
|
|
||||||
|
|
||||||
# Performance: Use symlinks for node_modules
|
|
||||||
symlink=true
|
|
||||||
|
|
||||||
# Lockfile: Ensure lockfile is not modified during install
|
|
||||||
frozen-lockfile=false
|
|
||||||
@@ -18,7 +18,7 @@ This page is currently deployed. [View the live website.]
|
|||||||
|
|
||||||
## Feedback and Bugs
|
## Feedback and Bugs
|
||||||
|
|
||||||
If you have feedback or a bug report, please [log a ticket on our forum](https://support.nhcarrigan.com).
|
If you have feedback or a bug report, please feel free to open a GitHub issue!
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -9,7 +9,7 @@
|
|||||||
"dev": "tsx watch src/index.ts",
|
"dev": "tsx watch src/index.ts",
|
||||||
"lint": "eslint src --max-warnings 0",
|
"lint": "eslint src --max-warnings 0",
|
||||||
"start": "op run --env-file=prod.env --no-masking -- node prod/index.js",
|
"start": "op run --env-file=prod.env --no-masking -- node prod/index.js",
|
||||||
"test": "echo \"Error: no test specified\" && exit 0"
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
},
|
},
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "Naomi Carrigan",
|
"author": "Naomi Carrigan",
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
"@nhcarrigan/typescript-config": "4.0.0",
|
"@nhcarrigan/typescript-config": "4.0.0",
|
||||||
"@types/node": "22.13.9",
|
"@types/node": "22.13.9",
|
||||||
"@types/node-schedule": "2.1.7",
|
"@types/node-schedule": "2.1.7",
|
||||||
"eslint": "10.0.0",
|
"eslint": "9.21.0",
|
||||||
"typescript": "5.8.2"
|
"typescript": "5.8.2"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
Generated
+191
-213
@@ -35,7 +35,7 @@ importers:
|
|||||||
devDependencies:
|
devDependencies:
|
||||||
'@nhcarrigan/eslint-config':
|
'@nhcarrigan/eslint-config':
|
||||||
specifier: 5.2.0
|
specifier: 5.2.0
|
||||||
version: 5.2.0(@typescript-eslint/utils@8.26.0(eslint@10.0.0)(typescript@5.8.2))(eslint@10.0.0)(playwright@1.51.0)(react@19.0.0)(typescript@5.8.2)(vitest@3.0.8(@types/node@22.13.9))
|
version: 5.2.0(@typescript-eslint/utils@8.26.0(eslint@9.21.0)(typescript@5.8.2))(eslint@9.21.0)(playwright@1.51.0)(react@19.0.0)(typescript@5.8.2)(vitest@3.0.8(@types/node@22.13.9))
|
||||||
'@nhcarrigan/typescript-config':
|
'@nhcarrigan/typescript-config':
|
||||||
specifier: 4.0.0
|
specifier: 4.0.0
|
||||||
version: 4.0.0(typescript@5.8.2)
|
version: 4.0.0(typescript@5.8.2)
|
||||||
@@ -46,8 +46,8 @@ importers:
|
|||||||
specifier: 2.1.7
|
specifier: 2.1.7
|
||||||
version: 2.1.7
|
version: 2.1.7
|
||||||
eslint:
|
eslint:
|
||||||
specifier: 10.0.0
|
specifier: 9.21.0
|
||||||
version: 10.0.0
|
version: 9.21.0
|
||||||
typescript:
|
typescript:
|
||||||
specifier: 5.8.2
|
specifier: 5.8.2
|
||||||
version: 5.8.2
|
version: 5.8.2
|
||||||
@@ -271,20 +271,10 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
|
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
|
||||||
|
|
||||||
'@eslint-community/eslint-utils@4.9.1':
|
|
||||||
resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
|
|
||||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
||||||
peerDependencies:
|
|
||||||
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
|
|
||||||
|
|
||||||
'@eslint-community/regexpp@4.12.1':
|
'@eslint-community/regexpp@4.12.1':
|
||||||
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
|
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
|
||||||
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
|
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
|
||||||
|
|
||||||
'@eslint-community/regexpp@4.12.2':
|
|
||||||
resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
|
|
||||||
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
|
|
||||||
|
|
||||||
'@eslint/compat@1.2.4':
|
'@eslint/compat@1.2.4':
|
||||||
resolution: {integrity: sha512-S8ZdQj/N69YAtuqFt7653jwcvuUj131+6qGLUyDqfDg1OIoBQ66OCuXC473YQfO2AaxITTutiRQiDwoo7ZLYyg==}
|
resolution: {integrity: sha512-S8ZdQj/N69YAtuqFt7653jwcvuUj131+6qGLUyDqfDg1OIoBQ66OCuXC473YQfO2AaxITTutiRQiDwoo7ZLYyg==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
@@ -294,33 +284,37 @@ packages:
|
|||||||
eslint:
|
eslint:
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@eslint/config-array@0.23.1':
|
'@eslint/config-array@0.19.2':
|
||||||
resolution: {integrity: sha512-uVSdg/V4dfQmTjJzR0szNczjOH/J+FyUMMjYtr07xFRXR7EDf9i1qdxrD0VusZH9knj1/ecxzCQQxyic5NzAiA==}
|
resolution: {integrity: sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==}
|
||||||
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
'@eslint/config-helpers@0.5.2':
|
'@eslint/core@0.12.0':
|
||||||
resolution: {integrity: sha512-a5MxrdDXEvqnIq+LisyCX6tQMPF/dSJpCfBgBauY+pNZ28yCtSsTvyTYrMhaI+LK26bVyCJfJkT0u8KIj2i1dQ==}
|
resolution: {integrity: sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==}
|
||||||
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
'@eslint/core@1.1.0':
|
|
||||||
resolution: {integrity: sha512-/nr9K9wkr3P1EzFTdFdMoLuo1PmIxjmwvPozwoSodjNBdefGujXQUF93u1DDZpEaTuDvMsIQddsd35BwtrW9Xw==}
|
|
||||||
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
||||||
|
|
||||||
'@eslint/eslintrc@3.2.0':
|
'@eslint/eslintrc@3.2.0':
|
||||||
resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==}
|
resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
|
'@eslint/eslintrc@3.3.0':
|
||||||
|
resolution: {integrity: sha512-yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ==}
|
||||||
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
'@eslint/js@9.17.0':
|
'@eslint/js@9.17.0':
|
||||||
resolution: {integrity: sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==}
|
resolution: {integrity: sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
'@eslint/object-schema@3.0.1':
|
'@eslint/js@9.21.0':
|
||||||
resolution: {integrity: sha512-P9cq2dpr+LU8j3qbLygLcSZrl2/ds/pUpfnHNNuk5HW7mnngHs+6WSq5C9mO3rqRX8A1poxqLTC9cu0KOyJlBg==}
|
resolution: {integrity: sha512-BqStZ3HX8Yz6LvsF5ByXYrtigrV5AXADWLAGc7PH/1SxOb7/FIYYMszZZWiUou/GB9P2lXWk2SV4d+Z8h0nknw==}
|
||||||
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
'@eslint/plugin-kit@0.6.0':
|
'@eslint/object-schema@2.1.6':
|
||||||
resolution: {integrity: sha512-bIZEUzOI1jkhviX2cp5vNyXQc6olzb2ohewQubuYlMXZ2Q/XjBO0x0XhGPvc9fjSIiUN0vw+0hq53BJ4eQSJKQ==}
|
resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
|
||||||
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
|
'@eslint/plugin-kit@0.2.7':
|
||||||
|
resolution: {integrity: sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==}
|
||||||
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
'@fastify/ajv-compiler@4.0.2':
|
'@fastify/ajv-compiler@4.0.2':
|
||||||
resolution: {integrity: sha512-Rkiu/8wIjpsf46Rr+Fitd3HRP+VsxUFDDeag0hs9L0ksfnwx2g7SPQQTFL0E8Qv+rfXzQOxBJnjUB9ITUDjfWQ==}
|
resolution: {integrity: sha512-Rkiu/8wIjpsf46Rr+Fitd3HRP+VsxUFDDeag0hs9L0ksfnwx2g7SPQQTFL0E8Qv+rfXzQOxBJnjUB9ITUDjfWQ==}
|
||||||
@@ -360,14 +354,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
|
resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
|
||||||
engines: {node: '>=18.18'}
|
engines: {node: '>=18.18'}
|
||||||
|
|
||||||
'@isaacs/balanced-match@4.0.1':
|
|
||||||
resolution: {integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==}
|
|
||||||
engines: {node: 20 || >=22}
|
|
||||||
|
|
||||||
'@isaacs/brace-expansion@5.0.1':
|
|
||||||
resolution: {integrity: sha512-WMz71T1JS624nWj2n2fnYAuPovhv7EUhk69R6i9dsVyzxt5eM3bjwvgk9L+APE1TRscGysAVMANkB0jh0LQZrQ==}
|
|
||||||
engines: {node: 20 || >=22}
|
|
||||||
|
|
||||||
'@jridgewell/sourcemap-codec@1.5.0':
|
'@jridgewell/sourcemap-codec@1.5.0':
|
||||||
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
|
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
|
||||||
|
|
||||||
@@ -440,61 +426,51 @@ packages:
|
|||||||
resolution: {integrity: sha512-88I+D3TeKItrw+Y/2ud4Tw0+3CxQ2kLgu3QvrogZ0OfkmX/DEppehus7L3TS2Q4lpB+hYyxhkQiYPJ6Mf5/dPg==}
|
resolution: {integrity: sha512-88I+D3TeKItrw+Y/2ud4Tw0+3CxQ2kLgu3QvrogZ0OfkmX/DEppehus7L3TS2Q4lpB+hYyxhkQiYPJ6Mf5/dPg==}
|
||||||
cpu: [arm]
|
cpu: [arm]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
libc: [glibc]
|
|
||||||
|
|
||||||
'@rollup/rollup-linux-arm-musleabihf@4.34.9':
|
'@rollup/rollup-linux-arm-musleabihf@4.34.9':
|
||||||
resolution: {integrity: sha512-3qyfWljSFHi9zH0KgtEPG4cBXHDFhwD8kwg6xLfHQ0IWuH9crp005GfoUUh/6w9/FWGBwEHg3lxK1iHRN1MFlA==}
|
resolution: {integrity: sha512-3qyfWljSFHi9zH0KgtEPG4cBXHDFhwD8kwg6xLfHQ0IWuH9crp005GfoUUh/6w9/FWGBwEHg3lxK1iHRN1MFlA==}
|
||||||
cpu: [arm]
|
cpu: [arm]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
libc: [musl]
|
|
||||||
|
|
||||||
'@rollup/rollup-linux-arm64-gnu@4.34.9':
|
'@rollup/rollup-linux-arm64-gnu@4.34.9':
|
||||||
resolution: {integrity: sha512-6TZjPHjKZUQKmVKMUowF3ewHxctrRR09eYyvT5eFv8w/fXarEra83A2mHTVJLA5xU91aCNOUnM+DWFMSbQ0Nxw==}
|
resolution: {integrity: sha512-6TZjPHjKZUQKmVKMUowF3ewHxctrRR09eYyvT5eFv8w/fXarEra83A2mHTVJLA5xU91aCNOUnM+DWFMSbQ0Nxw==}
|
||||||
cpu: [arm64]
|
cpu: [arm64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
libc: [glibc]
|
|
||||||
|
|
||||||
'@rollup/rollup-linux-arm64-musl@4.34.9':
|
'@rollup/rollup-linux-arm64-musl@4.34.9':
|
||||||
resolution: {integrity: sha512-LD2fytxZJZ6xzOKnMbIpgzFOuIKlxVOpiMAXawsAZ2mHBPEYOnLRK5TTEsID6z4eM23DuO88X0Tq1mErHMVq0A==}
|
resolution: {integrity: sha512-LD2fytxZJZ6xzOKnMbIpgzFOuIKlxVOpiMAXawsAZ2mHBPEYOnLRK5TTEsID6z4eM23DuO88X0Tq1mErHMVq0A==}
|
||||||
cpu: [arm64]
|
cpu: [arm64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
libc: [musl]
|
|
||||||
|
|
||||||
'@rollup/rollup-linux-loongarch64-gnu@4.34.9':
|
'@rollup/rollup-linux-loongarch64-gnu@4.34.9':
|
||||||
resolution: {integrity: sha512-dRAgTfDsn0TE0HI6cmo13hemKpVHOEyeciGtvlBTkpx/F65kTvShtY/EVyZEIfxFkV5JJTuQ9tP5HGBS0hfxIg==}
|
resolution: {integrity: sha512-dRAgTfDsn0TE0HI6cmo13hemKpVHOEyeciGtvlBTkpx/F65kTvShtY/EVyZEIfxFkV5JJTuQ9tP5HGBS0hfxIg==}
|
||||||
cpu: [loong64]
|
cpu: [loong64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
libc: [glibc]
|
|
||||||
|
|
||||||
'@rollup/rollup-linux-powerpc64le-gnu@4.34.9':
|
'@rollup/rollup-linux-powerpc64le-gnu@4.34.9':
|
||||||
resolution: {integrity: sha512-PHcNOAEhkoMSQtMf+rJofwisZqaU8iQ8EaSps58f5HYll9EAY5BSErCZ8qBDMVbq88h4UxaNPlbrKqfWP8RfJA==}
|
resolution: {integrity: sha512-PHcNOAEhkoMSQtMf+rJofwisZqaU8iQ8EaSps58f5HYll9EAY5BSErCZ8qBDMVbq88h4UxaNPlbrKqfWP8RfJA==}
|
||||||
cpu: [ppc64]
|
cpu: [ppc64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
libc: [glibc]
|
|
||||||
|
|
||||||
'@rollup/rollup-linux-riscv64-gnu@4.34.9':
|
'@rollup/rollup-linux-riscv64-gnu@4.34.9':
|
||||||
resolution: {integrity: sha512-Z2i0Uy5G96KBYKjeQFKbbsB54xFOL5/y1P5wNBsbXB8yE+At3oh0DVMjQVzCJRJSfReiB2tX8T6HUFZ2k8iaKg==}
|
resolution: {integrity: sha512-Z2i0Uy5G96KBYKjeQFKbbsB54xFOL5/y1P5wNBsbXB8yE+At3oh0DVMjQVzCJRJSfReiB2tX8T6HUFZ2k8iaKg==}
|
||||||
cpu: [riscv64]
|
cpu: [riscv64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
libc: [glibc]
|
|
||||||
|
|
||||||
'@rollup/rollup-linux-s390x-gnu@4.34.9':
|
'@rollup/rollup-linux-s390x-gnu@4.34.9':
|
||||||
resolution: {integrity: sha512-U+5SwTMoeYXoDzJX5dhDTxRltSrIax8KWwfaaYcynuJw8mT33W7oOgz0a+AaXtGuvhzTr2tVKh5UO8GVANTxyQ==}
|
resolution: {integrity: sha512-U+5SwTMoeYXoDzJX5dhDTxRltSrIax8KWwfaaYcynuJw8mT33W7oOgz0a+AaXtGuvhzTr2tVKh5UO8GVANTxyQ==}
|
||||||
cpu: [s390x]
|
cpu: [s390x]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
libc: [glibc]
|
|
||||||
|
|
||||||
'@rollup/rollup-linux-x64-gnu@4.34.9':
|
'@rollup/rollup-linux-x64-gnu@4.34.9':
|
||||||
resolution: {integrity: sha512-FwBHNSOjUTQLP4MG7y6rR6qbGw4MFeQnIBrMe161QGaQoBQLqSUEKlHIiVgF3g/mb3lxlxzJOpIBhaP+C+KP2A==}
|
resolution: {integrity: sha512-FwBHNSOjUTQLP4MG7y6rR6qbGw4MFeQnIBrMe161QGaQoBQLqSUEKlHIiVgF3g/mb3lxlxzJOpIBhaP+C+KP2A==}
|
||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
libc: [glibc]
|
|
||||||
|
|
||||||
'@rollup/rollup-linux-x64-musl@4.34.9':
|
'@rollup/rollup-linux-x64-musl@4.34.9':
|
||||||
resolution: {integrity: sha512-cYRpV4650z2I3/s6+5/LONkjIz8MBeqrk+vPXV10ORBnshpn8S32bPqQ2Utv39jCiDcO2eJTuSlPXpnvmaIgRA==}
|
resolution: {integrity: sha512-cYRpV4650z2I3/s6+5/LONkjIz8MBeqrk+vPXV10ORBnshpn8S32bPqQ2Utv39jCiDcO2eJTuSlPXpnvmaIgRA==}
|
||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
libc: [musl]
|
|
||||||
|
|
||||||
'@rollup/rollup-win32-arm64-msvc@4.34.9':
|
'@rollup/rollup-win32-arm64-msvc@4.34.9':
|
||||||
resolution: {integrity: sha512-z4mQK9dAN6byRA/vsSgQiPeuO63wdiDxZ9yg9iyX2QTzKuQM7T4xlBoeUP/J8uiFkqxkcWndWi+W7bXdPbt27Q==}
|
resolution: {integrity: sha512-z4mQK9dAN6byRA/vsSgQiPeuO63wdiDxZ9yg9iyX2QTzKuQM7T4xlBoeUP/J8uiFkqxkcWndWi+W7bXdPbt27Q==}
|
||||||
@@ -564,15 +540,9 @@ packages:
|
|||||||
'@types/connect@3.4.38':
|
'@types/connect@3.4.38':
|
||||||
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
|
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
|
||||||
|
|
||||||
'@types/esrecurse@4.3.1':
|
|
||||||
resolution: {integrity: sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==}
|
|
||||||
|
|
||||||
'@types/estree@1.0.6':
|
'@types/estree@1.0.6':
|
||||||
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
|
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
|
||||||
|
|
||||||
'@types/estree@1.0.8':
|
|
||||||
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
|
|
||||||
|
|
||||||
'@types/express-serve-static-core@5.0.6':
|
'@types/express-serve-static-core@5.0.6':
|
||||||
resolution: {integrity: sha512-3xhRnjJPkULekpSzgtoNYYcTWgEZkp4myc+Saevii5JPnHNvHMRlBSHDbs7Bh1iPPoVTERHEZXyhyLbMEsExsA==}
|
resolution: {integrity: sha512-3xhRnjJPkULekpSzgtoNYYcTWgEZkp4myc+Saevii5JPnHNvHMRlBSHDbs7Bh1iPPoVTERHEZXyhyLbMEsExsA==}
|
||||||
|
|
||||||
@@ -786,8 +756,8 @@ packages:
|
|||||||
engines: {node: '>=0.4.0'}
|
engines: {node: '>=0.4.0'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
acorn@8.15.0:
|
acorn@8.14.1:
|
||||||
resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
|
resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==}
|
||||||
engines: {node: '>=0.4.0'}
|
engines: {node: '>=0.4.0'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
@@ -805,6 +775,10 @@ packages:
|
|||||||
ajv@8.17.1:
|
ajv@8.17.1:
|
||||||
resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
|
resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
|
||||||
|
|
||||||
|
ansi-styles@4.3.0:
|
||||||
|
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
||||||
|
engines: {node: '>=8'}
|
||||||
|
|
||||||
are-docs-informative@0.0.2:
|
are-docs-informative@0.0.2:
|
||||||
resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==}
|
resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==}
|
||||||
engines: {node: '>=14'}
|
engines: {node: '>=14'}
|
||||||
@@ -936,6 +910,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==}
|
resolution: {integrity: sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==}
|
||||||
engines: {node: '>=12'}
|
engines: {node: '>=12'}
|
||||||
|
|
||||||
|
chalk@4.1.2:
|
||||||
|
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
|
||||||
|
engines: {node: '>=10'}
|
||||||
|
|
||||||
check-error@2.1.1:
|
check-error@2.1.1:
|
||||||
resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==}
|
resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==}
|
||||||
engines: {node: '>= 16'}
|
engines: {node: '>= 16'}
|
||||||
@@ -948,6 +926,13 @@ packages:
|
|||||||
resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==}
|
resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==}
|
||||||
engines: {node: '>=4'}
|
engines: {node: '>=4'}
|
||||||
|
|
||||||
|
color-convert@2.0.1:
|
||||||
|
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
||||||
|
engines: {node: '>=7.0.0'}
|
||||||
|
|
||||||
|
color-name@1.1.4:
|
||||||
|
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
||||||
|
|
||||||
combined-stream@1.0.8:
|
combined-stream@1.0.8:
|
||||||
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
|
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
|
||||||
engines: {node: '>= 0.8'}
|
engines: {node: '>= 0.8'}
|
||||||
@@ -1217,9 +1202,9 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
eslint: '>=8.56.0'
|
eslint: '>=8.56.0'
|
||||||
|
|
||||||
eslint-scope@9.1.0:
|
eslint-scope@8.2.0:
|
||||||
resolution: {integrity: sha512-CkWE42hOJsNj9FJRaoMX9waUFYhqY4jmyLFdAdzZr6VaCg3ynLYx4WnOdkaIifGfH4gsUcBTn4OZbHXkpLD0FQ==}
|
resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==}
|
||||||
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
eslint-visitor-keys@1.3.0:
|
eslint-visitor-keys@1.3.0:
|
||||||
resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==}
|
resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==}
|
||||||
@@ -1233,17 +1218,9 @@ packages:
|
|||||||
resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
|
resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
eslint-visitor-keys@4.2.1:
|
eslint@9.21.0:
|
||||||
resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
|
resolution: {integrity: sha512-KjeihdFqTPhOMXTt7StsDxriV4n66ueuF/jfPNC3j/lduHwr/ijDwJMsF+wyMJethgiKi5wniIE243vi07d3pg==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
eslint-visitor-keys@5.0.0:
|
|
||||||
resolution: {integrity: sha512-A0XeIi7CXU7nPlfHS9loMYEKxUaONu/hTEzHTGba9Huu94Cq1hPivf+DE5erJozZOky0LfvXAyrV/tcswpLI0Q==}
|
|
||||||
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
||||||
|
|
||||||
eslint@10.0.0:
|
|
||||||
resolution: {integrity: sha512-O0piBKY36YSJhlFSG8p9VUdPV/SxxS4FYDWVpr/9GJuMaepzwlf4J8I4ov1b+ySQfDTPhc3DtLaxcT1fN0yqCg==}
|
|
||||||
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
||||||
hasBin: true
|
hasBin: true
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
jiti: '*'
|
jiti: '*'
|
||||||
@@ -1255,10 +1232,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
|
resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
espree@11.1.0:
|
|
||||||
resolution: {integrity: sha512-WFWYhO1fV4iYkqOOvq8FbqIhr2pYfoDY0kCotMkDeNtGpiGGkZ1iov2u8ydjtgM8yF8rzK7oaTbw2NAzbAbehw==}
|
|
||||||
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
||||||
|
|
||||||
espree@6.2.1:
|
espree@6.2.1:
|
||||||
resolution: {integrity: sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==}
|
resolution: {integrity: sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==}
|
||||||
engines: {node: '>=6.0.0'}
|
engines: {node: '>=6.0.0'}
|
||||||
@@ -1267,10 +1240,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
|
resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
|
||||||
engines: {node: '>=0.10'}
|
engines: {node: '>=0.10'}
|
||||||
|
|
||||||
esquery@1.7.0:
|
|
||||||
resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
|
|
||||||
engines: {node: '>=0.10'}
|
|
||||||
|
|
||||||
esrecurse@4.3.0:
|
esrecurse@4.3.0:
|
||||||
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
|
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
|
||||||
engines: {node: '>=4.0'}
|
engines: {node: '>=4.0'}
|
||||||
@@ -1470,6 +1439,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==}
|
resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
|
|
||||||
|
has-flag@4.0.0:
|
||||||
|
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
|
||||||
|
engines: {node: '>=8'}
|
||||||
|
|
||||||
has-property-descriptors@1.0.2:
|
has-property-descriptors@1.0.2:
|
||||||
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
|
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
|
||||||
|
|
||||||
@@ -1756,6 +1729,9 @@ packages:
|
|||||||
lodash.isstring@4.0.1:
|
lodash.isstring@4.0.1:
|
||||||
resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==}
|
resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==}
|
||||||
|
|
||||||
|
lodash.merge@4.6.2:
|
||||||
|
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
|
||||||
|
|
||||||
lodash.once@4.1.1:
|
lodash.once@4.1.1:
|
||||||
resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==}
|
resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==}
|
||||||
|
|
||||||
@@ -1829,10 +1805,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
|
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
|
||||||
engines: {node: '>=4'}
|
engines: {node: '>=4'}
|
||||||
|
|
||||||
minimatch@10.1.2:
|
|
||||||
resolution: {integrity: sha512-fu656aJ0n2kcXwsnwnv9g24tkU5uSmOlTjd6WyyaKm2Z+h1qmY6bAjrcaIxF/BslFqbZ8UBtbJi7KgQOZD2PTw==}
|
|
||||||
engines: {node: 20 || >=22}
|
|
||||||
|
|
||||||
minimatch@3.1.2:
|
minimatch@3.1.2:
|
||||||
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
|
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
|
||||||
|
|
||||||
@@ -2347,6 +2319,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
|
|
||||||
|
supports-color@7.2.0:
|
||||||
|
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
|
||||||
|
engines: {node: '>=8'}
|
||||||
|
|
||||||
supports-preserve-symlinks-flag@1.0.0:
|
supports-preserve-symlinks-flag@1.0.0:
|
||||||
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
@@ -2792,43 +2768,32 @@ snapshots:
|
|||||||
'@esbuild/win32-x64@0.25.0':
|
'@esbuild/win32-x64@0.25.0':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@10.0.0)':
|
'@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@9.21.0)':
|
||||||
dependencies:
|
dependencies:
|
||||||
escape-string-regexp: 4.0.0
|
escape-string-regexp: 4.0.0
|
||||||
eslint: 10.0.0
|
eslint: 9.21.0
|
||||||
ignore: 5.3.2
|
ignore: 5.3.2
|
||||||
|
|
||||||
'@eslint-community/eslint-utils@4.4.1(eslint@10.0.0)':
|
'@eslint-community/eslint-utils@4.4.1(eslint@9.21.0)':
|
||||||
dependencies:
|
dependencies:
|
||||||
eslint: 10.0.0
|
eslint: 9.21.0
|
||||||
eslint-visitor-keys: 3.4.3
|
|
||||||
|
|
||||||
'@eslint-community/eslint-utils@4.9.1(eslint@10.0.0)':
|
|
||||||
dependencies:
|
|
||||||
eslint: 10.0.0
|
|
||||||
eslint-visitor-keys: 3.4.3
|
eslint-visitor-keys: 3.4.3
|
||||||
|
|
||||||
'@eslint-community/regexpp@4.12.1': {}
|
'@eslint-community/regexpp@4.12.1': {}
|
||||||
|
|
||||||
'@eslint-community/regexpp@4.12.2': {}
|
'@eslint/compat@1.2.4(eslint@9.21.0)':
|
||||||
|
|
||||||
'@eslint/compat@1.2.4(eslint@10.0.0)':
|
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
eslint: 10.0.0
|
eslint: 9.21.0
|
||||||
|
|
||||||
'@eslint/config-array@0.23.1':
|
'@eslint/config-array@0.19.2':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint/object-schema': 3.0.1
|
'@eslint/object-schema': 2.1.6
|
||||||
debug: 4.4.0
|
debug: 4.4.0
|
||||||
minimatch: 10.1.2
|
minimatch: 3.1.2
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@eslint/config-helpers@0.5.2':
|
'@eslint/core@0.12.0':
|
||||||
dependencies:
|
|
||||||
'@eslint/core': 1.1.0
|
|
||||||
|
|
||||||
'@eslint/core@1.1.0':
|
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/json-schema': 7.0.15
|
'@types/json-schema': 7.0.15
|
||||||
|
|
||||||
@@ -2846,13 +2811,29 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
|
'@eslint/eslintrc@3.3.0':
|
||||||
|
dependencies:
|
||||||
|
ajv: 6.12.6
|
||||||
|
debug: 4.4.0
|
||||||
|
espree: 10.3.0
|
||||||
|
globals: 14.0.0
|
||||||
|
ignore: 5.3.2
|
||||||
|
import-fresh: 3.3.1
|
||||||
|
js-yaml: 4.1.0
|
||||||
|
minimatch: 3.1.2
|
||||||
|
strip-json-comments: 3.1.1
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- supports-color
|
||||||
|
|
||||||
'@eslint/js@9.17.0': {}
|
'@eslint/js@9.17.0': {}
|
||||||
|
|
||||||
'@eslint/object-schema@3.0.1': {}
|
'@eslint/js@9.21.0': {}
|
||||||
|
|
||||||
'@eslint/plugin-kit@0.6.0':
|
'@eslint/object-schema@2.1.6': {}
|
||||||
|
|
||||||
|
'@eslint/plugin-kit@0.2.7':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint/core': 1.1.0
|
'@eslint/core': 0.12.0
|
||||||
levn: 0.4.1
|
levn: 0.4.1
|
||||||
|
|
||||||
'@fastify/ajv-compiler@4.0.2':
|
'@fastify/ajv-compiler@4.0.2':
|
||||||
@@ -2891,32 +2872,26 @@ snapshots:
|
|||||||
|
|
||||||
'@humanwhocodes/retry@0.4.2': {}
|
'@humanwhocodes/retry@0.4.2': {}
|
||||||
|
|
||||||
'@isaacs/balanced-match@4.0.1': {}
|
|
||||||
|
|
||||||
'@isaacs/brace-expansion@5.0.1':
|
|
||||||
dependencies:
|
|
||||||
'@isaacs/balanced-match': 4.0.1
|
|
||||||
|
|
||||||
'@jridgewell/sourcemap-codec@1.5.0': {}
|
'@jridgewell/sourcemap-codec@1.5.0': {}
|
||||||
|
|
||||||
'@nhcarrigan/eslint-config@5.2.0(@typescript-eslint/utils@8.26.0(eslint@10.0.0)(typescript@5.8.2))(eslint@10.0.0)(playwright@1.51.0)(react@19.0.0)(typescript@5.8.2)(vitest@3.0.8(@types/node@22.13.9))':
|
'@nhcarrigan/eslint-config@5.2.0(@typescript-eslint/utils@8.26.0(eslint@9.21.0)(typescript@5.8.2))(eslint@9.21.0)(playwright@1.51.0)(react@19.0.0)(typescript@5.8.2)(vitest@3.0.8(@types/node@22.13.9))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@10.0.0)
|
'@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@9.21.0)
|
||||||
'@eslint/compat': 1.2.4(eslint@10.0.0)
|
'@eslint/compat': 1.2.4(eslint@9.21.0)
|
||||||
'@eslint/eslintrc': 3.2.0
|
'@eslint/eslintrc': 3.2.0
|
||||||
'@eslint/js': 9.17.0
|
'@eslint/js': 9.17.0
|
||||||
'@stylistic/eslint-plugin': 2.12.1(eslint@10.0.0)(typescript@5.8.2)
|
'@stylistic/eslint-plugin': 2.12.1(eslint@9.21.0)(typescript@5.8.2)
|
||||||
'@typescript-eslint/eslint-plugin': 8.19.0(@typescript-eslint/parser@8.19.0(eslint@10.0.0)(typescript@5.8.2))(eslint@10.0.0)(typescript@5.8.2)
|
'@typescript-eslint/eslint-plugin': 8.19.0(@typescript-eslint/parser@8.19.0(eslint@9.21.0)(typescript@5.8.2))(eslint@9.21.0)(typescript@5.8.2)
|
||||||
'@typescript-eslint/parser': 8.19.0(eslint@10.0.0)(typescript@5.8.2)
|
'@typescript-eslint/parser': 8.19.0(eslint@9.21.0)(typescript@5.8.2)
|
||||||
'@vitest/eslint-plugin': 1.1.24(@typescript-eslint/utils@8.26.0(eslint@10.0.0)(typescript@5.8.2))(eslint@10.0.0)(typescript@5.8.2)(vitest@3.0.8(@types/node@22.13.9))
|
'@vitest/eslint-plugin': 1.1.24(@typescript-eslint/utils@8.26.0(eslint@9.21.0)(typescript@5.8.2))(eslint@9.21.0)(typescript@5.8.2)(vitest@3.0.8(@types/node@22.13.9))
|
||||||
eslint: 10.0.0
|
eslint: 9.21.0
|
||||||
eslint-plugin-deprecation: 3.0.0(eslint@10.0.0)(typescript@5.8.2)
|
eslint-plugin-deprecation: 3.0.0(eslint@9.21.0)(typescript@5.8.2)
|
||||||
eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.19.0(eslint@10.0.0)(typescript@5.8.2))(eslint@10.0.0)
|
eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.19.0(eslint@9.21.0)(typescript@5.8.2))(eslint@9.21.0)
|
||||||
eslint-plugin-jsdoc: 50.6.1(eslint@10.0.0)
|
eslint-plugin-jsdoc: 50.6.1(eslint@9.21.0)
|
||||||
eslint-plugin-playwright: 2.1.0(eslint@10.0.0)
|
eslint-plugin-playwright: 2.1.0(eslint@9.21.0)
|
||||||
eslint-plugin-react: 7.37.3(eslint@10.0.0)
|
eslint-plugin-react: 7.37.3(eslint@9.21.0)
|
||||||
eslint-plugin-sort-keys-fix: 1.1.2
|
eslint-plugin-sort-keys-fix: 1.1.2
|
||||||
eslint-plugin-unicorn: 56.0.1(eslint@10.0.0)
|
eslint-plugin-unicorn: 56.0.1(eslint@9.21.0)
|
||||||
globals: 15.14.0
|
globals: 15.14.0
|
||||||
playwright: 1.51.0
|
playwright: 1.51.0
|
||||||
react: 19.0.0
|
react: 19.0.0
|
||||||
@@ -3082,10 +3057,10 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- debug
|
- debug
|
||||||
|
|
||||||
'@stylistic/eslint-plugin@2.12.1(eslint@10.0.0)(typescript@5.8.2)':
|
'@stylistic/eslint-plugin@2.12.1(eslint@9.21.0)(typescript@5.8.2)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/utils': 8.26.0(eslint@10.0.0)(typescript@5.8.2)
|
'@typescript-eslint/utils': 8.26.0(eslint@9.21.0)(typescript@5.8.2)
|
||||||
eslint: 10.0.0
|
eslint: 9.21.0
|
||||||
eslint-visitor-keys: 4.2.0
|
eslint-visitor-keys: 4.2.0
|
||||||
espree: 10.3.0
|
espree: 10.3.0
|
||||||
estraverse: 5.3.0
|
estraverse: 5.3.0
|
||||||
@@ -3103,12 +3078,8 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
'@types/node': 22.13.9
|
'@types/node': 22.13.9
|
||||||
|
|
||||||
'@types/esrecurse@4.3.1': {}
|
|
||||||
|
|
||||||
'@types/estree@1.0.6': {}
|
'@types/estree@1.0.6': {}
|
||||||
|
|
||||||
'@types/estree@1.0.8': {}
|
|
||||||
|
|
||||||
'@types/express-serve-static-core@5.0.6':
|
'@types/express-serve-static-core@5.0.6':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/node': 22.13.9
|
'@types/node': 22.13.9
|
||||||
@@ -3169,15 +3140,15 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
'@types/node': 22.13.9
|
'@types/node': 22.13.9
|
||||||
|
|
||||||
'@typescript-eslint/eslint-plugin@8.19.0(@typescript-eslint/parser@8.19.0(eslint@10.0.0)(typescript@5.8.2))(eslint@10.0.0)(typescript@5.8.2)':
|
'@typescript-eslint/eslint-plugin@8.19.0(@typescript-eslint/parser@8.19.0(eslint@9.21.0)(typescript@5.8.2))(eslint@9.21.0)(typescript@5.8.2)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/regexpp': 4.12.1
|
'@eslint-community/regexpp': 4.12.1
|
||||||
'@typescript-eslint/parser': 8.19.0(eslint@10.0.0)(typescript@5.8.2)
|
'@typescript-eslint/parser': 8.19.0(eslint@9.21.0)(typescript@5.8.2)
|
||||||
'@typescript-eslint/scope-manager': 8.19.0
|
'@typescript-eslint/scope-manager': 8.19.0
|
||||||
'@typescript-eslint/type-utils': 8.19.0(eslint@10.0.0)(typescript@5.8.2)
|
'@typescript-eslint/type-utils': 8.19.0(eslint@9.21.0)(typescript@5.8.2)
|
||||||
'@typescript-eslint/utils': 8.19.0(eslint@10.0.0)(typescript@5.8.2)
|
'@typescript-eslint/utils': 8.19.0(eslint@9.21.0)(typescript@5.8.2)
|
||||||
'@typescript-eslint/visitor-keys': 8.19.0
|
'@typescript-eslint/visitor-keys': 8.19.0
|
||||||
eslint: 10.0.0
|
eslint: 9.21.0
|
||||||
graphemer: 1.4.0
|
graphemer: 1.4.0
|
||||||
ignore: 5.3.2
|
ignore: 5.3.2
|
||||||
natural-compare: 1.4.0
|
natural-compare: 1.4.0
|
||||||
@@ -3186,14 +3157,14 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@typescript-eslint/parser@8.19.0(eslint@10.0.0)(typescript@5.8.2)':
|
'@typescript-eslint/parser@8.19.0(eslint@9.21.0)(typescript@5.8.2)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/scope-manager': 8.19.0
|
'@typescript-eslint/scope-manager': 8.19.0
|
||||||
'@typescript-eslint/types': 8.19.0
|
'@typescript-eslint/types': 8.19.0
|
||||||
'@typescript-eslint/typescript-estree': 8.19.0(typescript@5.8.2)
|
'@typescript-eslint/typescript-estree': 8.19.0(typescript@5.8.2)
|
||||||
'@typescript-eslint/visitor-keys': 8.19.0
|
'@typescript-eslint/visitor-keys': 8.19.0
|
||||||
debug: 4.4.0
|
debug: 4.4.0
|
||||||
eslint: 10.0.0
|
eslint: 9.21.0
|
||||||
typescript: 5.8.2
|
typescript: 5.8.2
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
@@ -3213,12 +3184,12 @@ snapshots:
|
|||||||
'@typescript-eslint/types': 8.26.0
|
'@typescript-eslint/types': 8.26.0
|
||||||
'@typescript-eslint/visitor-keys': 8.26.0
|
'@typescript-eslint/visitor-keys': 8.26.0
|
||||||
|
|
||||||
'@typescript-eslint/type-utils@8.19.0(eslint@10.0.0)(typescript@5.8.2)':
|
'@typescript-eslint/type-utils@8.19.0(eslint@9.21.0)(typescript@5.8.2)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/typescript-estree': 8.19.0(typescript@5.8.2)
|
'@typescript-eslint/typescript-estree': 8.19.0(typescript@5.8.2)
|
||||||
'@typescript-eslint/utils': 8.19.0(eslint@10.0.0)(typescript@5.8.2)
|
'@typescript-eslint/utils': 8.19.0(eslint@9.21.0)(typescript@5.8.2)
|
||||||
debug: 4.4.0
|
debug: 4.4.0
|
||||||
eslint: 10.0.0
|
eslint: 9.21.0
|
||||||
ts-api-utils: 1.4.3(typescript@5.8.2)
|
ts-api-utils: 1.4.3(typescript@5.8.2)
|
||||||
typescript: 5.8.2
|
typescript: 5.8.2
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
@@ -3273,35 +3244,35 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@typescript-eslint/utils@7.18.0(eslint@10.0.0)(typescript@5.8.2)':
|
'@typescript-eslint/utils@7.18.0(eslint@9.21.0)(typescript@5.8.2)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/eslint-utils': 4.9.1(eslint@10.0.0)
|
'@eslint-community/eslint-utils': 4.4.1(eslint@9.21.0)
|
||||||
'@typescript-eslint/scope-manager': 7.18.0
|
'@typescript-eslint/scope-manager': 7.18.0
|
||||||
'@typescript-eslint/types': 7.18.0
|
'@typescript-eslint/types': 7.18.0
|
||||||
'@typescript-eslint/typescript-estree': 7.18.0(typescript@5.8.2)
|
'@typescript-eslint/typescript-estree': 7.18.0(typescript@5.8.2)
|
||||||
eslint: 10.0.0
|
eslint: 9.21.0
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
- typescript
|
- typescript
|
||||||
|
|
||||||
'@typescript-eslint/utils@8.19.0(eslint@10.0.0)(typescript@5.8.2)':
|
'@typescript-eslint/utils@8.19.0(eslint@9.21.0)(typescript@5.8.2)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/eslint-utils': 4.9.1(eslint@10.0.0)
|
'@eslint-community/eslint-utils': 4.4.1(eslint@9.21.0)
|
||||||
'@typescript-eslint/scope-manager': 8.19.0
|
'@typescript-eslint/scope-manager': 8.19.0
|
||||||
'@typescript-eslint/types': 8.19.0
|
'@typescript-eslint/types': 8.19.0
|
||||||
'@typescript-eslint/typescript-estree': 8.19.0(typescript@5.8.2)
|
'@typescript-eslint/typescript-estree': 8.19.0(typescript@5.8.2)
|
||||||
eslint: 10.0.0
|
eslint: 9.21.0
|
||||||
typescript: 5.8.2
|
typescript: 5.8.2
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@typescript-eslint/utils@8.26.0(eslint@10.0.0)(typescript@5.8.2)':
|
'@typescript-eslint/utils@8.26.0(eslint@9.21.0)(typescript@5.8.2)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/eslint-utils': 4.9.1(eslint@10.0.0)
|
'@eslint-community/eslint-utils': 4.4.1(eslint@9.21.0)
|
||||||
'@typescript-eslint/scope-manager': 8.26.0
|
'@typescript-eslint/scope-manager': 8.26.0
|
||||||
'@typescript-eslint/types': 8.26.0
|
'@typescript-eslint/types': 8.26.0
|
||||||
'@typescript-eslint/typescript-estree': 8.26.0(typescript@5.8.2)
|
'@typescript-eslint/typescript-estree': 8.26.0(typescript@5.8.2)
|
||||||
eslint: 10.0.0
|
eslint: 9.21.0
|
||||||
typescript: 5.8.2
|
typescript: 5.8.2
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
@@ -3314,17 +3285,17 @@ snapshots:
|
|||||||
'@typescript-eslint/visitor-keys@8.19.0':
|
'@typescript-eslint/visitor-keys@8.19.0':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/types': 8.19.0
|
'@typescript-eslint/types': 8.19.0
|
||||||
eslint-visitor-keys: 4.2.1
|
eslint-visitor-keys: 4.2.0
|
||||||
|
|
||||||
'@typescript-eslint/visitor-keys@8.26.0':
|
'@typescript-eslint/visitor-keys@8.26.0':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/types': 8.26.0
|
'@typescript-eslint/types': 8.26.0
|
||||||
eslint-visitor-keys: 4.2.1
|
eslint-visitor-keys: 4.2.0
|
||||||
|
|
||||||
'@vitest/eslint-plugin@1.1.24(@typescript-eslint/utils@8.26.0(eslint@10.0.0)(typescript@5.8.2))(eslint@10.0.0)(typescript@5.8.2)(vitest@3.0.8(@types/node@22.13.9))':
|
'@vitest/eslint-plugin@1.1.24(@typescript-eslint/utils@8.26.0(eslint@9.21.0)(typescript@5.8.2))(eslint@9.21.0)(typescript@5.8.2)(vitest@3.0.8(@types/node@22.13.9))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/utils': 8.26.0(eslint@10.0.0)(typescript@5.8.2)
|
'@typescript-eslint/utils': 8.26.0(eslint@9.21.0)(typescript@5.8.2)
|
||||||
eslint: 10.0.0
|
eslint: 9.21.0
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
typescript: 5.8.2
|
typescript: 5.8.2
|
||||||
vitest: 3.0.8(@types/node@22.13.9)
|
vitest: 3.0.8(@types/node@22.13.9)
|
||||||
@@ -3382,13 +3353,13 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
acorn: 7.4.1
|
acorn: 7.4.1
|
||||||
|
|
||||||
acorn-jsx@5.3.2(acorn@8.15.0):
|
acorn-jsx@5.3.2(acorn@8.14.1):
|
||||||
dependencies:
|
dependencies:
|
||||||
acorn: 8.15.0
|
acorn: 8.14.1
|
||||||
|
|
||||||
acorn@7.4.1: {}
|
acorn@7.4.1: {}
|
||||||
|
|
||||||
acorn@8.15.0: {}
|
acorn@8.14.1: {}
|
||||||
|
|
||||||
ajv-formats@3.0.1(ajv@8.17.1):
|
ajv-formats@3.0.1(ajv@8.17.1):
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
@@ -3408,6 +3379,10 @@ snapshots:
|
|||||||
json-schema-traverse: 1.0.0
|
json-schema-traverse: 1.0.0
|
||||||
require-from-string: 2.0.2
|
require-from-string: 2.0.2
|
||||||
|
|
||||||
|
ansi-styles@4.3.0:
|
||||||
|
dependencies:
|
||||||
|
color-convert: 2.0.1
|
||||||
|
|
||||||
are-docs-informative@0.0.2: {}
|
are-docs-informative@0.0.2: {}
|
||||||
|
|
||||||
argparse@2.0.1: {}
|
argparse@2.0.1: {}
|
||||||
@@ -3578,6 +3553,11 @@ snapshots:
|
|||||||
loupe: 3.1.3
|
loupe: 3.1.3
|
||||||
pathval: 2.0.0
|
pathval: 2.0.0
|
||||||
|
|
||||||
|
chalk@4.1.2:
|
||||||
|
dependencies:
|
||||||
|
ansi-styles: 4.3.0
|
||||||
|
supports-color: 7.2.0
|
||||||
|
|
||||||
check-error@2.1.1: {}
|
check-error@2.1.1: {}
|
||||||
|
|
||||||
ci-info@4.1.0: {}
|
ci-info@4.1.0: {}
|
||||||
@@ -3586,6 +3566,12 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
escape-string-regexp: 1.0.5
|
escape-string-regexp: 1.0.5
|
||||||
|
|
||||||
|
color-convert@2.0.1:
|
||||||
|
dependencies:
|
||||||
|
color-name: 1.1.4
|
||||||
|
|
||||||
|
color-name@1.1.4: {}
|
||||||
|
|
||||||
combined-stream@1.0.8:
|
combined-stream@1.0.8:
|
||||||
dependencies:
|
dependencies:
|
||||||
delayed-stream: 1.0.0
|
delayed-stream: 1.0.0
|
||||||
@@ -3866,27 +3852,27 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
eslint-module-utils@2.12.0(@typescript-eslint/parser@8.19.0(eslint@10.0.0)(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint@10.0.0):
|
eslint-module-utils@2.12.0(@typescript-eslint/parser@8.19.0(eslint@9.21.0)(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint@9.21.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
debug: 3.2.7
|
debug: 3.2.7
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@typescript-eslint/parser': 8.19.0(eslint@10.0.0)(typescript@5.8.2)
|
'@typescript-eslint/parser': 8.19.0(eslint@9.21.0)(typescript@5.8.2)
|
||||||
eslint: 10.0.0
|
eslint: 9.21.0
|
||||||
eslint-import-resolver-node: 0.3.9
|
eslint-import-resolver-node: 0.3.9
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
eslint-plugin-deprecation@3.0.0(eslint@10.0.0)(typescript@5.8.2):
|
eslint-plugin-deprecation@3.0.0(eslint@9.21.0)(typescript@5.8.2):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/utils': 7.18.0(eslint@10.0.0)(typescript@5.8.2)
|
'@typescript-eslint/utils': 7.18.0(eslint@9.21.0)(typescript@5.8.2)
|
||||||
eslint: 10.0.0
|
eslint: 9.21.0
|
||||||
ts-api-utils: 1.4.3(typescript@5.8.2)
|
ts-api-utils: 1.4.3(typescript@5.8.2)
|
||||||
tslib: 2.8.1
|
tslib: 2.8.1
|
||||||
typescript: 5.8.2
|
typescript: 5.8.2
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.19.0(eslint@10.0.0)(typescript@5.8.2))(eslint@10.0.0):
|
eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.19.0(eslint@9.21.0)(typescript@5.8.2))(eslint@9.21.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@rtsao/scc': 1.1.0
|
'@rtsao/scc': 1.1.0
|
||||||
array-includes: 3.1.8
|
array-includes: 3.1.8
|
||||||
@@ -3895,9 +3881,9 @@ snapshots:
|
|||||||
array.prototype.flatmap: 1.3.3
|
array.prototype.flatmap: 1.3.3
|
||||||
debug: 3.2.7
|
debug: 3.2.7
|
||||||
doctrine: 2.1.0
|
doctrine: 2.1.0
|
||||||
eslint: 10.0.0
|
eslint: 9.21.0
|
||||||
eslint-import-resolver-node: 0.3.9
|
eslint-import-resolver-node: 0.3.9
|
||||||
eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.19.0(eslint@10.0.0)(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint@10.0.0)
|
eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.19.0(eslint@9.21.0)(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint@9.21.0)
|
||||||
hasown: 2.0.2
|
hasown: 2.0.2
|
||||||
is-core-module: 2.16.1
|
is-core-module: 2.16.1
|
||||||
is-glob: 4.0.3
|
is-glob: 4.0.3
|
||||||
@@ -3909,20 +3895,20 @@ snapshots:
|
|||||||
string.prototype.trimend: 1.0.9
|
string.prototype.trimend: 1.0.9
|
||||||
tsconfig-paths: 3.15.0
|
tsconfig-paths: 3.15.0
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@typescript-eslint/parser': 8.19.0(eslint@10.0.0)(typescript@5.8.2)
|
'@typescript-eslint/parser': 8.19.0(eslint@9.21.0)(typescript@5.8.2)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- eslint-import-resolver-typescript
|
- eslint-import-resolver-typescript
|
||||||
- eslint-import-resolver-webpack
|
- eslint-import-resolver-webpack
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
eslint-plugin-jsdoc@50.6.1(eslint@10.0.0):
|
eslint-plugin-jsdoc@50.6.1(eslint@9.21.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@es-joy/jsdoccomment': 0.49.0
|
'@es-joy/jsdoccomment': 0.49.0
|
||||||
are-docs-informative: 0.0.2
|
are-docs-informative: 0.0.2
|
||||||
comment-parser: 1.4.1
|
comment-parser: 1.4.1
|
||||||
debug: 4.4.0
|
debug: 4.4.0
|
||||||
escape-string-regexp: 4.0.0
|
escape-string-regexp: 4.0.0
|
||||||
eslint: 10.0.0
|
eslint: 9.21.0
|
||||||
espree: 10.3.0
|
espree: 10.3.0
|
||||||
esquery: 1.6.0
|
esquery: 1.6.0
|
||||||
parse-imports: 2.2.1
|
parse-imports: 2.2.1
|
||||||
@@ -3932,12 +3918,12 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
eslint-plugin-playwright@2.1.0(eslint@10.0.0):
|
eslint-plugin-playwright@2.1.0(eslint@9.21.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
eslint: 10.0.0
|
eslint: 9.21.0
|
||||||
globals: 13.24.0
|
globals: 13.24.0
|
||||||
|
|
||||||
eslint-plugin-react@7.37.3(eslint@10.0.0):
|
eslint-plugin-react@7.37.3(eslint@9.21.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
array-includes: 3.1.8
|
array-includes: 3.1.8
|
||||||
array.prototype.findlast: 1.2.5
|
array.prototype.findlast: 1.2.5
|
||||||
@@ -3945,7 +3931,7 @@ snapshots:
|
|||||||
array.prototype.tosorted: 1.1.4
|
array.prototype.tosorted: 1.1.4
|
||||||
doctrine: 2.1.0
|
doctrine: 2.1.0
|
||||||
es-iterator-helpers: 1.2.1
|
es-iterator-helpers: 1.2.1
|
||||||
eslint: 10.0.0
|
eslint: 9.21.0
|
||||||
estraverse: 5.3.0
|
estraverse: 5.3.0
|
||||||
hasown: 2.0.2
|
hasown: 2.0.2
|
||||||
jsx-ast-utils: 3.3.5
|
jsx-ast-utils: 3.3.5
|
||||||
@@ -3966,14 +3952,14 @@ snapshots:
|
|||||||
natural-compare: 1.4.0
|
natural-compare: 1.4.0
|
||||||
requireindex: 1.2.0
|
requireindex: 1.2.0
|
||||||
|
|
||||||
eslint-plugin-unicorn@56.0.1(eslint@10.0.0):
|
eslint-plugin-unicorn@56.0.1(eslint@9.21.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/helper-validator-identifier': 7.25.9
|
'@babel/helper-validator-identifier': 7.25.9
|
||||||
'@eslint-community/eslint-utils': 4.4.1(eslint@10.0.0)
|
'@eslint-community/eslint-utils': 4.4.1(eslint@9.21.0)
|
||||||
ci-info: 4.1.0
|
ci-info: 4.1.0
|
||||||
clean-regexp: 1.0.0
|
clean-regexp: 1.0.0
|
||||||
core-js-compat: 3.41.0
|
core-js-compat: 3.41.0
|
||||||
eslint: 10.0.0
|
eslint: 9.21.0
|
||||||
esquery: 1.6.0
|
esquery: 1.6.0
|
||||||
globals: 15.14.0
|
globals: 15.14.0
|
||||||
indent-string: 4.0.0
|
indent-string: 4.0.0
|
||||||
@@ -3986,10 +3972,8 @@ snapshots:
|
|||||||
semver: 7.7.1
|
semver: 7.7.1
|
||||||
strip-indent: 3.0.0
|
strip-indent: 3.0.0
|
||||||
|
|
||||||
eslint-scope@9.1.0:
|
eslint-scope@8.2.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/esrecurse': 4.3.1
|
|
||||||
'@types/estree': 1.0.8
|
|
||||||
esrecurse: 4.3.0
|
esrecurse: 4.3.0
|
||||||
estraverse: 5.3.0
|
estraverse: 5.3.0
|
||||||
|
|
||||||
@@ -3999,30 +3983,29 @@ snapshots:
|
|||||||
|
|
||||||
eslint-visitor-keys@4.2.0: {}
|
eslint-visitor-keys@4.2.0: {}
|
||||||
|
|
||||||
eslint-visitor-keys@4.2.1: {}
|
eslint@9.21.0:
|
||||||
|
|
||||||
eslint-visitor-keys@5.0.0: {}
|
|
||||||
|
|
||||||
eslint@10.0.0:
|
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/eslint-utils': 4.9.1(eslint@10.0.0)
|
'@eslint-community/eslint-utils': 4.4.1(eslint@9.21.0)
|
||||||
'@eslint-community/regexpp': 4.12.2
|
'@eslint-community/regexpp': 4.12.1
|
||||||
'@eslint/config-array': 0.23.1
|
'@eslint/config-array': 0.19.2
|
||||||
'@eslint/config-helpers': 0.5.2
|
'@eslint/core': 0.12.0
|
||||||
'@eslint/core': 1.1.0
|
'@eslint/eslintrc': 3.3.0
|
||||||
'@eslint/plugin-kit': 0.6.0
|
'@eslint/js': 9.21.0
|
||||||
|
'@eslint/plugin-kit': 0.2.7
|
||||||
'@humanfs/node': 0.16.6
|
'@humanfs/node': 0.16.6
|
||||||
'@humanwhocodes/module-importer': 1.0.1
|
'@humanwhocodes/module-importer': 1.0.1
|
||||||
'@humanwhocodes/retry': 0.4.2
|
'@humanwhocodes/retry': 0.4.2
|
||||||
'@types/estree': 1.0.6
|
'@types/estree': 1.0.6
|
||||||
|
'@types/json-schema': 7.0.15
|
||||||
ajv: 6.12.6
|
ajv: 6.12.6
|
||||||
|
chalk: 4.1.2
|
||||||
cross-spawn: 7.0.6
|
cross-spawn: 7.0.6
|
||||||
debug: 4.4.0
|
debug: 4.4.0
|
||||||
escape-string-regexp: 4.0.0
|
escape-string-regexp: 4.0.0
|
||||||
eslint-scope: 9.1.0
|
eslint-scope: 8.2.0
|
||||||
eslint-visitor-keys: 5.0.0
|
eslint-visitor-keys: 4.2.0
|
||||||
espree: 11.1.0
|
espree: 10.3.0
|
||||||
esquery: 1.7.0
|
esquery: 1.6.0
|
||||||
esutils: 2.0.3
|
esutils: 2.0.3
|
||||||
fast-deep-equal: 3.1.3
|
fast-deep-equal: 3.1.3
|
||||||
file-entry-cache: 8.0.0
|
file-entry-cache: 8.0.0
|
||||||
@@ -4032,7 +4015,8 @@ snapshots:
|
|||||||
imurmurhash: 0.1.4
|
imurmurhash: 0.1.4
|
||||||
is-glob: 4.0.3
|
is-glob: 4.0.3
|
||||||
json-stable-stringify-without-jsonify: 1.0.1
|
json-stable-stringify-without-jsonify: 1.0.1
|
||||||
minimatch: 10.1.2
|
lodash.merge: 4.6.2
|
||||||
|
minimatch: 3.1.2
|
||||||
natural-compare: 1.4.0
|
natural-compare: 1.4.0
|
||||||
optionator: 0.9.4
|
optionator: 0.9.4
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
@@ -4040,15 +4024,9 @@ snapshots:
|
|||||||
|
|
||||||
espree@10.3.0:
|
espree@10.3.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
acorn: 8.15.0
|
acorn: 8.14.1
|
||||||
acorn-jsx: 5.3.2(acorn@8.15.0)
|
acorn-jsx: 5.3.2(acorn@8.14.1)
|
||||||
eslint-visitor-keys: 4.2.1
|
eslint-visitor-keys: 4.2.0
|
||||||
|
|
||||||
espree@11.1.0:
|
|
||||||
dependencies:
|
|
||||||
acorn: 8.15.0
|
|
||||||
acorn-jsx: 5.3.2(acorn@8.15.0)
|
|
||||||
eslint-visitor-keys: 5.0.0
|
|
||||||
|
|
||||||
espree@6.2.1:
|
espree@6.2.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -4060,10 +4038,6 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
estraverse: 5.3.0
|
estraverse: 5.3.0
|
||||||
|
|
||||||
esquery@1.7.0:
|
|
||||||
dependencies:
|
|
||||||
estraverse: 5.3.0
|
|
||||||
|
|
||||||
esrecurse@4.3.0:
|
esrecurse@4.3.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
estraverse: 5.3.0
|
estraverse: 5.3.0
|
||||||
@@ -4316,6 +4290,8 @@ snapshots:
|
|||||||
|
|
||||||
has-bigints@1.1.0: {}
|
has-bigints@1.1.0: {}
|
||||||
|
|
||||||
|
has-flag@4.0.0: {}
|
||||||
|
|
||||||
has-property-descriptors@1.0.2:
|
has-property-descriptors@1.0.2:
|
||||||
dependencies:
|
dependencies:
|
||||||
es-define-property: 1.0.1
|
es-define-property: 1.0.1
|
||||||
@@ -4605,6 +4581,8 @@ snapshots:
|
|||||||
|
|
||||||
lodash.isstring@4.0.1: {}
|
lodash.isstring@4.0.1: {}
|
||||||
|
|
||||||
|
lodash.merge@4.6.2: {}
|
||||||
|
|
||||||
lodash.once@4.1.1: {}
|
lodash.once@4.1.1: {}
|
||||||
|
|
||||||
lodash.snakecase@4.1.1: {}
|
lodash.snakecase@4.1.1: {}
|
||||||
@@ -4656,10 +4634,6 @@ snapshots:
|
|||||||
|
|
||||||
min-indent@1.0.1: {}
|
min-indent@1.0.1: {}
|
||||||
|
|
||||||
minimatch@10.1.2:
|
|
||||||
dependencies:
|
|
||||||
'@isaacs/brace-expansion': 5.0.1
|
|
||||||
|
|
||||||
minimatch@3.1.2:
|
minimatch@3.1.2:
|
||||||
dependencies:
|
dependencies:
|
||||||
brace-expansion: 1.1.11
|
brace-expansion: 1.1.11
|
||||||
@@ -5237,6 +5211,10 @@ snapshots:
|
|||||||
|
|
||||||
strip-json-comments@3.1.1: {}
|
strip-json-comments@3.1.1: {}
|
||||||
|
|
||||||
|
supports-color@7.2.0:
|
||||||
|
dependencies:
|
||||||
|
has-flag: 4.0.0
|
||||||
|
|
||||||
supports-preserve-symlinks-flag@1.0.0: {}
|
supports-preserve-symlinks-flag@1.0.0: {}
|
||||||
|
|
||||||
synckit@0.9.2:
|
synckit@0.9.2:
|
||||||
|
|||||||
@@ -0,0 +1,62 @@
|
|||||||
|
/**
|
||||||
|
* @copyright nhcarrigan
|
||||||
|
* @license Naomi's Public License
|
||||||
|
* @author Naomi Carrigan
|
||||||
|
*/
|
||||||
|
import { AtpAgent } from "@atproto/api";
|
||||||
|
import pkg from "@slack/bolt";
|
||||||
|
import { Client, Events } from "discord.js";
|
||||||
|
import { scheduleJob } from "node-schedule";
|
||||||
|
import { serve } from "./server/serve.js";
|
||||||
|
import { getMommy } from "./utils/getMommy.js";
|
||||||
|
import { logger } from "./utils/logger.js";
|
||||||
|
const { App, FileInstallationStore } = pkg;
|
||||||
|
const discord = new Client({ intents: [] });
|
||||||
|
discord.on(Events.ClientReady, () => {
|
||||||
|
void logger.log("info", "Connected to Discord!");
|
||||||
|
});
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-misused-promises -- This is intentional.
|
||||||
|
discord.on(Events.InteractionCreate, async (interaction) => {
|
||||||
|
if (!interaction.isChatInputCommand()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
await interaction.deferReply();
|
||||||
|
const name = interaction.options.getString("name");
|
||||||
|
const response = await getMommy(name ?? undefined);
|
||||||
|
await interaction.editReply(response);
|
||||||
|
});
|
||||||
|
const slack = new App({
|
||||||
|
clientId: process.env.SLACK_CLIENT_ID ?? "",
|
||||||
|
clientSecret: process.env.SLACK_CLIENT_SECRET ?? "",
|
||||||
|
installationStore: new FileInstallationStore(),
|
||||||
|
installerOptions: {
|
||||||
|
directInstall: true,
|
||||||
|
},
|
||||||
|
scopes: ["commands", "chat:write"],
|
||||||
|
signingSecret: process.env.SLACK_SIGNING_SECRET ?? "",
|
||||||
|
stateSecret: process.env.SLACK_STATE_SECRET ?? "",
|
||||||
|
});
|
||||||
|
slack.command("/mommy", async ({ ack, body, respond }) => {
|
||||||
|
await ack();
|
||||||
|
const response = await getMommy(body.text);
|
||||||
|
await respond(response);
|
||||||
|
});
|
||||||
|
const bsky = new AtpAgent({
|
||||||
|
service: "https://bsky.social",
|
||||||
|
});
|
||||||
|
await discord.login(process.env.DISCORD_TOKEN);
|
||||||
|
await slack.start(8010);
|
||||||
|
await logger.log("info", "Connected to Slack!");
|
||||||
|
await bsky.login({
|
||||||
|
identifier: "mommy.naomi.party",
|
||||||
|
password: process.env.BSKY_PASSWORD ?? "",
|
||||||
|
});
|
||||||
|
await logger.log("info", "Connected to bsky.social!");
|
||||||
|
scheduleJob("0 9 * * *", async () => {
|
||||||
|
const response = await getMommy();
|
||||||
|
await bsky.post({
|
||||||
|
text: response,
|
||||||
|
});
|
||||||
|
await logger.log("info", "Posted to bsky.social!");
|
||||||
|
});
|
||||||
|
serve();
|
||||||
@@ -0,0 +1,72 @@
|
|||||||
|
/**
|
||||||
|
* @copyright nhcarrigan
|
||||||
|
* @license Naomi's Public License
|
||||||
|
* @author Naomi Carrigan
|
||||||
|
*/
|
||||||
|
import fastify from "fastify";
|
||||||
|
import { logger } from "../utils/logger.js";
|
||||||
|
const html = `<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Mommy Bot</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<meta name="description" content="Mommy loves you~!" />
|
||||||
|
<script src="https://cdn.nhcarrigan.com/headers/index.js" async defer></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<main>
|
||||||
|
<h1>Mommy Bot</h1>
|
||||||
|
<section>
|
||||||
|
<p>Mommy loves you~!</p>
|
||||||
|
<a href="https://slack.com/oauth/v2/authorize?client_id=8569765106322.8554301974567&scope=chat:write,commands&user_scope="><img alt="Add to Slack" height="40" width="139" src="https://platform.slack-edge.com/img/add_to_slack.png" srcSet="https://platform.slack-edge.com/img/add_to_slack.png 1x, https://platform.slack-edge.com/img/add_to_slack@2x.png 2x" /></a>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<h2>Links</h2>
|
||||||
|
<p>
|
||||||
|
<a href="https://git.nhcarrigan.com/nhcarrigan/mommy-bot">
|
||||||
|
<i class="fa-solid fa-code"></i> Source Code
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<a href="https://docs.nhcarrigan.com/">
|
||||||
|
<i class="fa-solid fa-book"></i> Documentation
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<a href="https://chat.nhcarrigan.com">
|
||||||
|
<i class="fa-solid fa-circle-info"></i> Support
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
</body>
|
||||||
|
</html>`;
|
||||||
|
/**
|
||||||
|
* Starts up a web server for health monitoring.
|
||||||
|
*/
|
||||||
|
export const serve = () => {
|
||||||
|
try {
|
||||||
|
const server = fastify({
|
||||||
|
logger: false,
|
||||||
|
});
|
||||||
|
server.get("/", (_request, response) => {
|
||||||
|
response.header("Content-Type", "text/html");
|
||||||
|
response.send(html);
|
||||||
|
});
|
||||||
|
server.listen({ port: 8009 }, (error) => {
|
||||||
|
if (error) {
|
||||||
|
void logger.error("instantiate server", error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
void logger.log("debug", "Server listening on port 8009.");
|
||||||
|
});
|
||||||
|
}
|
||||||
|
catch (error) {
|
||||||
|
if (error instanceof Error) {
|
||||||
|
void logger.error("instantiate server", error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
void logger.error("instantiate server", new Error("Unknown error"));
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
/**
|
||||||
|
* @copyright nhcarrigan
|
||||||
|
* @license Naomi's Public License
|
||||||
|
* @author Naomi Carrigan
|
||||||
|
*/
|
||||||
|
import { isProfane } from "no-profanity";
|
||||||
|
/**
|
||||||
|
* Fetches a mommy quote from the API.
|
||||||
|
* @param name - The user's name, if provided.
|
||||||
|
* @returns The mommy quote.
|
||||||
|
*/
|
||||||
|
export const getMommy = async (name = "dear") => {
|
||||||
|
const finalName = isProfane(name)
|
||||||
|
? "dear"
|
||||||
|
: name;
|
||||||
|
const url = `https://mommy.nhcarrigan.com/api?name=${finalName}`;
|
||||||
|
const request = await fetch(url);
|
||||||
|
const response = await request.text();
|
||||||
|
return response;
|
||||||
|
};
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
/**
|
||||||
|
* @copyright nhcarrigan
|
||||||
|
* @license Naomi's Public License
|
||||||
|
* @author Naomi Carrigan
|
||||||
|
*/
|
||||||
|
import { Logger } from "@nhcarrigan/logger";
|
||||||
|
export const logger = new Logger("Mommy", process.env.LOG_TOKEN ?? "");
|
||||||
+6
-7
@@ -6,13 +6,12 @@
|
|||||||
|
|
||||||
import { AtpAgent } from "@atproto/api";
|
import { AtpAgent } from "@atproto/api";
|
||||||
import pkg from "@slack/bolt";
|
import pkg from "@slack/bolt";
|
||||||
import { Client, Events, MessageFlags } from "discord.js";
|
import { Client, Events } from "discord.js";
|
||||||
import { scheduleJob } from "node-schedule";
|
import { scheduleJob } from "node-schedule";
|
||||||
import { serve } from "./server/serve.js";
|
import { serve } from "./server/serve.js";
|
||||||
import { getMommy } from "./utils/getMommy.js";
|
import { getMommy } from "./utils/getMommy.js";
|
||||||
import { logger } from "./utils/logger.js";
|
import { logger } from "./utils/logger.js";
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/naming-convention -- Classes.
|
|
||||||
const { App, FileInstallationStore } = pkg;
|
const { App, FileInstallationStore } = pkg;
|
||||||
|
|
||||||
const discord = new Client({ intents: [ ] });
|
const discord = new Client({ intents: [ ] });
|
||||||
@@ -26,7 +25,7 @@ discord.on(Events.InteractionCreate, async(interaction) => {
|
|||||||
if (!interaction.isChatInputCommand()) {
|
if (!interaction.isChatInputCommand()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
await interaction.deferReply({ flags: MessageFlags.Ephemeral });
|
await interaction.deferReply();
|
||||||
const name = interaction.options.getString("name");
|
const name = interaction.options.getString("name");
|
||||||
const response = await getMommy(name ?? undefined);
|
const response = await getMommy(name ?? undefined);
|
||||||
await interaction.editReply(response);
|
await interaction.editReply(response);
|
||||||
@@ -39,19 +38,19 @@ const slack = new App({
|
|||||||
installerOptions: {
|
installerOptions: {
|
||||||
directInstall: true,
|
directInstall: true,
|
||||||
},
|
},
|
||||||
scopes: [ "commands" ],
|
scopes: [ "commands", "chat:write" ],
|
||||||
signingSecret: process.env.SLACK_SIGNING_SECRET ?? "",
|
signingSecret: process.env.SLACK_SIGNING_SECRET ?? "",
|
||||||
stateSecret: process.env.SLACK_STATE_SECRET ?? "",
|
stateSecret: process.env.SLACK_STATE_SECRET ?? "",
|
||||||
});
|
});
|
||||||
|
|
||||||
slack.command("/mommy", async({ ack, body, respond }) => {
|
slack.command("/mommy", async({ ack, body, say }) => {
|
||||||
await ack();
|
await ack();
|
||||||
const trimmed = body.text.trim();
|
const trimmed = body.text.trim();
|
||||||
const name = trimmed.length > 0
|
const name = trimmed.length > 0
|
||||||
? trimmed
|
? trimmed
|
||||||
: undefined;
|
: undefined;
|
||||||
const response = await getMommy(name);
|
const response = await getMommy(name);
|
||||||
await respond(response);
|
await say(response);
|
||||||
});
|
});
|
||||||
|
|
||||||
const bsky = new AtpAgent({
|
const bsky = new AtpAgent({
|
||||||
@@ -74,7 +73,7 @@ scheduleJob("0 9 * * *", async() => {
|
|||||||
await bsky.post({
|
await bsky.post({
|
||||||
text: response,
|
text: response,
|
||||||
});
|
});
|
||||||
await logger.log("info", "Posted to bsky!");
|
await logger.log("info", "Posted to bsky.social!");
|
||||||
});
|
});
|
||||||
|
|
||||||
serve();
|
serve();
|
||||||
|
|||||||
+28
-40
@@ -9,52 +9,40 @@ import { logger } from "../utils/logger.js";
|
|||||||
|
|
||||||
const html = `<!DOCTYPE html>
|
const html = `<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
|
<head>
|
||||||
<head>
|
<title>Mommy Bot</title>
|
||||||
<title>Mommy Bot</title>
|
<meta charset="utf-8" />
|
||||||
<meta charset="utf-8" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="description" content="Mommy loves you~!" />
|
||||||
<meta name="description" content="Mommy loves you~!" />
|
<script src="https://cdn.nhcarrigan.com/headers/index.js" async defer></script>
|
||||||
<script src="https://cdn.nhcarrigan.com/headers/index.js" async defer></script>
|
</head>
|
||||||
</head>
|
<body>
|
||||||
|
<main>
|
||||||
<body>
|
|
||||||
<main>
|
|
||||||
<h1>Mommy Bot</h1>
|
<h1>Mommy Bot</h1>
|
||||||
<img src="https://cdn.nhcarrigan.com/new-avatars/mommy-full.png" width="250" alt="Mommy" />
|
|
||||||
<section>
|
<section>
|
||||||
<p>Mommy loves you~!</p>
|
<p>Mommy loves you~!</p>
|
||||||
<a href="https://mommy-slack.nhcarrigan.com/slack/install" style="display: inline-block; background-color: #ffffff; color: black; padding: 10px 20px; text-decoration: none; border-radius: 4px; margin: 5px;">
|
<a href="https://mommy-slack.nhcarrigan.com/slack/install"><img alt="Add to Slack" height="40" width="139" src="https://platform.slack-edge.com/img/add_to_slack.png" srcSet="https://platform.slack-edge.com/img/add_to_slack.png 1x, https://platform.slack-edge.com/img/add_to_slack@2x.png 2x" /></a>
|
||||||
<i class="fab fa-slack"></i> Add to Slack
|
|
||||||
</a>
|
|
||||||
<a href="https://discord.com/oauth2/authorize?client_id=1347642447643017289" class="social-button discord-button" style="display: inline-block; background-color: #5865F2; color: white; padding: 10px 20px; text-decoration: none; border-radius: 4px; margin: 5px;">
|
|
||||||
<i class="fab fa-discord"></i> Add to Discord
|
|
||||||
</a>
|
|
||||||
<a href="https://bsky.app/profile/mommy.naomi.party" class="social-button bluesky-button" style="display: inline-block; background-color: #0085FF; color: white; padding: 10px 20px; text-decoration: none; border-radius: 4px; margin: 5px;">
|
|
||||||
<i class="fab fa-bluesky"></i> Follow on Bluesky
|
|
||||||
</a>
|
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<h2>Links</h2>
|
<h2>Links</h2>
|
||||||
<p>
|
<p>
|
||||||
<a href="https://git.nhcarrigan.com/nhcarrigan/mommy-bot">
|
<a href="https://git.nhcarrigan.com/nhcarrigan/mommy-bot">
|
||||||
<i class="fa-solid fa-code"></i> Source Code
|
<i class="fa-solid fa-code"></i> Source Code
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<a href="https://docs.nhcarrigan.com/">
|
<a href="https://docs.nhcarrigan.com/">
|
||||||
<i class="fa-solid fa-book"></i> Documentation
|
<i class="fa-solid fa-book"></i> Documentation
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<a href="https://chat.nhcarrigan.com">
|
<a href="https://chat.nhcarrigan.com">
|
||||||
<i class="fa-solid fa-circle-info"></i> Support
|
<i class="fa-solid fa-circle-info"></i> Support
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>`;
|
</html>`;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user