mirror of
https://github.com/dreamhunter2333/cloudflare_temp_email.git
synced 2026-09-05 23:47:50 +08:00
chore: upgrade dependencies (#881)
* chore: upgrade dependencies - dompurify 3.3.1 → 3.3.2 - naive-ui 2.43.2 → 2.44.0 - vue-i18n 11.2.8 → 11.3.0 - @cloudflare/workers-types 4.20260305.1 → 4.20260307.1 - @types/node 25.3.3 → 25.3.5 - wrangler 4.70.0 → 4.71.0 (all subprojects) * feat: upgrade @simplewebauthn packages from v10 to v13 Breaking changes addressed: - [v11] startRegistration/startAuthentication now take object param - [v11] registrationInfo.credential replaces flat destructuring - [v11] authenticator param renamed to credential in verifyAuthenticationResponse - [v13] @simplewebauthn/types removed, types imported from @simplewebauthn/server Packages: - @simplewebauthn/server: 10.0.1 → 13.2.3 - @simplewebauthn/browser: 10.0.0 → 13.2.2 - @simplewebauthn/types: removed (deprecated) * test: add passkey API E2E tests - User registration and login flow - register_request/authenticate_request return valid WebAuthn options - authenticate_response with invalid credential returns 404 - register_response with invalid credential returns error - Passkey list empty for new user - Rename/delete operations with validation * fix: use UI login instead of localStorage injection in browser passkey test The localStorage approach doesn't work with VueUse's useStorage because it doesn't detect external changes during page navigation. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: hash password before registration to match frontend login behavior The frontend hashes passwords with SHA-256 before sending to the API. Registration via API must use the same hashed password so that UI login matches the stored value. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: allow crypto.subtle in Docker browser tests The frontend uses crypto.subtle for password hashing, which requires a secure context (HTTPS or localhost). In Docker, the frontend runs at http://frontend:5173 which is not a secure context. Add Chromium flag to treat this origin as secure. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: serve frontend over HTTPS in Docker for WebAuthn secure context WebAuthn (navigator.credentials) and crypto.subtle both require a secure context (HTTPS or localhost). The Docker frontend was serving over HTTP, making passkey operations impossible. Changes: - Generate self-signed cert in Dockerfile.frontend - Configure Vite to serve over HTTPS - Update FRONTEND_URL to https:// - Add ignoreHTTPSErrors to Playwright browser config - Use localStorage injection for passkey test login Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: add Vite proxy to avoid mixed-content blocking in HTTPS Docker frontend HTTPS pages cannot make HTTP API requests (mixed content). Add a Vite proxy for all API paths so the browser makes same-origin HTTPS requests, which Vite proxies to the HTTP worker server-to-server. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: store userJwt without JSON.stringify in localStorage VueUse's useStorage with a string default uses raw string serialization (no JSON wrapping). Using JSON.stringify added double quotes around the JWT token, causing 401 Unauthorized from the worker. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: clean up passkey API test per review feedback Remove unused variables and rename test to match actual behavior. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.6
parent
5f3762ef58
commit
c5893a2944
+27
-3
@@ -1,5 +1,6 @@
|
|||||||
FROM node:20-slim
|
FROM node:20-slim
|
||||||
|
|
||||||
|
RUN apt-get update && apt-get install -y openssl && rm -rf /var/lib/apt/lists/*
|
||||||
RUN corepack enable && corepack prepare pnpm@10.10.0 --activate
|
RUN corepack enable && corepack prepare pnpm@10.10.0 --activate
|
||||||
|
|
||||||
WORKDIR /app/frontend
|
WORKDIR /app/frontend
|
||||||
@@ -9,14 +10,37 @@ RUN pnpm install --frozen-lockfile || (echo "WARN: frozen-lockfile failed, falli
|
|||||||
|
|
||||||
COPY frontend/ .
|
COPY frontend/ .
|
||||||
|
|
||||||
|
# Generate self-signed cert for HTTPS (required for WebAuthn/crypto.subtle)
|
||||||
|
RUN openssl req -x509 -newkey rsa:2048 -keyout /tmp/key.pem -out /tmp/cert.pem \
|
||||||
|
-days 365 -nodes -subj '/CN=frontend'
|
||||||
|
|
||||||
# Allow Docker internal hostnames (e.g. "frontend") to pass Vite's host check.
|
# Allow Docker internal hostnames (e.g. "frontend") to pass Vite's host check.
|
||||||
# Wrap the original config instead of sed-patching it — survives reformats.
|
# Configure HTTPS with self-signed cert for secure context (WebAuthn/crypto.subtle).
|
||||||
|
# Proxy API paths to the worker to avoid mixed-content (HTTPS->HTTP) blocking.
|
||||||
RUN mv vite.config.js vite.config.original.js && \
|
RUN mv vite.config.js vite.config.original.js && \
|
||||||
echo 'import config from "./vite.config.original.js";\
|
echo 'import config from "./vite.config.original.js";\
|
||||||
config.server = { ...config.server, allowedHosts: true };\
|
import fs from "fs";\
|
||||||
|
const workerTarget = process.env.VITE_WORKER_URL || "http://worker:8787";\
|
||||||
|
config.server = {\
|
||||||
|
...config.server,\
|
||||||
|
allowedHosts: true,\
|
||||||
|
https: {\
|
||||||
|
key: fs.readFileSync("/tmp/key.pem"),\
|
||||||
|
cert: fs.readFileSync("/tmp/cert.pem"),\
|
||||||
|
},\
|
||||||
|
proxy: {\
|
||||||
|
"/api": { target: workerTarget, changeOrigin: true },\
|
||||||
|
"/admin": { target: workerTarget, changeOrigin: true },\
|
||||||
|
"/user_api": { target: workerTarget, changeOrigin: true },\
|
||||||
|
"/open_api": { target: workerTarget, changeOrigin: true },\
|
||||||
|
"/external": { target: workerTarget, changeOrigin: true },\
|
||||||
|
"/health_check": { target: workerTarget, changeOrigin: true },\
|
||||||
|
},\
|
||||||
|
};\
|
||||||
export default config;' > vite.config.js
|
export default config;' > vite.config.js
|
||||||
|
|
||||||
ENV VITE_API_BASE=http://worker:8787
|
# Empty VITE_API_BASE so frontend uses same-origin (proxied through Vite)
|
||||||
|
ENV VITE_API_BASE=
|
||||||
|
|
||||||
EXPOSE 5173
|
EXPOSE 5173
|
||||||
|
|
||||||
|
|||||||
@@ -73,7 +73,7 @@ services:
|
|||||||
dockerfile: e2e/Dockerfile.e2e
|
dockerfile: e2e/Dockerfile.e2e
|
||||||
environment:
|
environment:
|
||||||
WORKER_URL: http://worker:8787
|
WORKER_URL: http://worker:8787
|
||||||
FRONTEND_URL: http://frontend:5173
|
FRONTEND_URL: https://frontend:5173
|
||||||
MAILPIT_API: http://mailpit:8025/api
|
MAILPIT_API: http://mailpit:8025/api
|
||||||
SMTP_PROXY_HOST: smtp-proxy
|
SMTP_PROXY_HOST: smtp-proxy
|
||||||
SMTP_PROXY_SMTP_PORT: "8025"
|
SMTP_PROXY_SMTP_PORT: "8025"
|
||||||
|
|||||||
@@ -29,6 +29,8 @@ export default defineConfig({
|
|||||||
use: {
|
use: {
|
||||||
baseURL: FRONTEND_BASE,
|
baseURL: FRONTEND_BASE,
|
||||||
...devices['Desktop Chrome'],
|
...devices['Desktop Chrome'],
|
||||||
|
// Accept self-signed cert from Docker frontend (HTTPS for WebAuthn)
|
||||||
|
ignoreHTTPSErrors: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ done
|
|||||||
|
|
||||||
echo "==> Waiting for frontend at $FRONTEND_URL ..."
|
echo "==> Waiting for frontend at $FRONTEND_URL ..."
|
||||||
for i in $(seq 1 60); do
|
for i in $(seq 1 60); do
|
||||||
if curl -sf "$FRONTEND_URL" > /dev/null 2>&1; then
|
if curl -skf "$FRONTEND_URL" > /dev/null 2>&1; then
|
||||||
echo " Frontend ready after ${i}s"
|
echo " Frontend ready after ${i}s"
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -0,0 +1,162 @@
|
|||||||
|
import { test, expect } from '@playwright/test';
|
||||||
|
import type { APIRequestContext } from '@playwright/test';
|
||||||
|
import { WORKER_URL } from '../../fixtures/test-helpers';
|
||||||
|
|
||||||
|
const TEST_USER_EMAIL = `passkey-e2e-${Date.now()}@test.example.com`;
|
||||||
|
const TEST_USER_PASSWORD = 'test-password-123';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Enable user registration via admin API, register a user, and login to get JWT.
|
||||||
|
*/
|
||||||
|
async function createTestUser(request: APIRequestContext): Promise<string> {
|
||||||
|
// Enable user registration (KV setting)
|
||||||
|
const enableRes = await request.post(`${WORKER_URL}/admin/user_settings`, {
|
||||||
|
data: {
|
||||||
|
enable: true,
|
||||||
|
enableMailVerify: false,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
expect(enableRes.ok()).toBe(true);
|
||||||
|
|
||||||
|
// Register user
|
||||||
|
const registerRes = await request.post(`${WORKER_URL}/user_api/register`, {
|
||||||
|
data: { email: TEST_USER_EMAIL, password: TEST_USER_PASSWORD },
|
||||||
|
});
|
||||||
|
expect(registerRes.ok()).toBe(true);
|
||||||
|
|
||||||
|
// Login to get JWT
|
||||||
|
const loginRes = await request.post(`${WORKER_URL}/user_api/login`, {
|
||||||
|
data: { email: TEST_USER_EMAIL, password: TEST_USER_PASSWORD },
|
||||||
|
});
|
||||||
|
expect(loginRes.ok()).toBe(true);
|
||||||
|
const { jwt } = await loginRes.json();
|
||||||
|
expect(jwt).toBeTruthy();
|
||||||
|
return jwt;
|
||||||
|
}
|
||||||
|
|
||||||
|
test.describe('Passkey API', () => {
|
||||||
|
let userJwt: string;
|
||||||
|
|
||||||
|
test.beforeAll(async ({ request }) => {
|
||||||
|
userJwt = await createTestUser(request);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('register_request returns valid WebAuthn options', async ({ request }) => {
|
||||||
|
const res = await request.post(`${WORKER_URL}/user_api/passkey/register_request`, {
|
||||||
|
headers: { 'x-user-token': userJwt },
|
||||||
|
data: { domain: 'localhost' },
|
||||||
|
});
|
||||||
|
expect(res.ok()).toBe(true);
|
||||||
|
const options = await res.json();
|
||||||
|
|
||||||
|
// Verify WebAuthn registration options structure
|
||||||
|
expect(options.rp).toBeDefined();
|
||||||
|
expect(options.rp.id).toBe('localhost');
|
||||||
|
expect(options.user).toBeDefined();
|
||||||
|
expect(options.user.name).toBe(TEST_USER_EMAIL);
|
||||||
|
expect(options.challenge).toBeTruthy();
|
||||||
|
expect(options.pubKeyCredParams).toBeInstanceOf(Array);
|
||||||
|
expect(options.pubKeyCredParams.length).toBeGreaterThan(0);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('authenticate_request returns valid WebAuthn options', async ({ request }) => {
|
||||||
|
const res = await request.post(`${WORKER_URL}/user_api/passkey/authenticate_request`, {
|
||||||
|
data: { domain: 'localhost' },
|
||||||
|
});
|
||||||
|
expect(res.ok()).toBe(true);
|
||||||
|
const options = await res.json();
|
||||||
|
|
||||||
|
// Verify WebAuthn authentication options structure
|
||||||
|
expect(options.challenge).toBeTruthy();
|
||||||
|
expect(options.rpId).toBe('localhost');
|
||||||
|
expect(options.allowCredentials).toBeInstanceOf(Array);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('authenticate_response with invalid credential returns error', async ({ request }) => {
|
||||||
|
const res = await request.post(`${WORKER_URL}/user_api/passkey/authenticate_response`, {
|
||||||
|
data: {
|
||||||
|
domain: 'localhost',
|
||||||
|
origin: 'http://localhost',
|
||||||
|
credential: { id: 'nonexistent-passkey-id' },
|
||||||
|
},
|
||||||
|
});
|
||||||
|
expect(res.ok()).toBe(false);
|
||||||
|
expect(res.status()).toBe(404);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('passkey list is empty for new user', async ({ request }) => {
|
||||||
|
const res = await request.get(`${WORKER_URL}/user_api/passkey`, {
|
||||||
|
headers: { 'x-user-token': userJwt },
|
||||||
|
});
|
||||||
|
expect(res.ok()).toBe(true);
|
||||||
|
const passkeys = await res.json();
|
||||||
|
expect(passkeys).toBeInstanceOf(Array);
|
||||||
|
expect(passkeys.length).toBe(0);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('passkey list remains empty without registration', async ({ request }) => {
|
||||||
|
const listRes = await request.get(`${WORKER_URL}/user_api/passkey`, {
|
||||||
|
headers: { 'x-user-token': userJwt },
|
||||||
|
});
|
||||||
|
expect(listRes.ok()).toBe(true);
|
||||||
|
const passkeys = await listRes.json();
|
||||||
|
expect(passkeys).toBeInstanceOf(Array);
|
||||||
|
expect(passkeys.length).toBe(0);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('register_response with invalid credential returns 400', async ({ request }) => {
|
||||||
|
const res = await request.post(`${WORKER_URL}/user_api/passkey/register_response`, {
|
||||||
|
headers: { 'x-user-token': userJwt },
|
||||||
|
data: {
|
||||||
|
credential: {
|
||||||
|
id: 'fake-id',
|
||||||
|
rawId: 'fake-raw-id',
|
||||||
|
type: 'public-key',
|
||||||
|
response: {
|
||||||
|
attestationObject: 'invalid-data',
|
||||||
|
clientDataJSON: 'invalid-data',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
origin: 'http://localhost',
|
||||||
|
passkey_name: 'test-passkey',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
expect(res.ok()).toBe(false);
|
||||||
|
// Should fail verification
|
||||||
|
expect(res.status()).toBeGreaterThanOrEqual(400);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('rename nonexistent passkey succeeds silently', async ({ request }) => {
|
||||||
|
const res = await request.post(`${WORKER_URL}/user_api/passkey/rename`, {
|
||||||
|
headers: { 'x-user-token': userJwt },
|
||||||
|
data: {
|
||||||
|
passkey_id: 'nonexistent-id',
|
||||||
|
passkey_name: 'new-name',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
// The SQL UPDATE just affects 0 rows, still returns success
|
||||||
|
expect(res.ok()).toBe(true);
|
||||||
|
const body = await res.json();
|
||||||
|
expect(body.success).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('rename with invalid name returns 400', async ({ request }) => {
|
||||||
|
const res = await request.post(`${WORKER_URL}/user_api/passkey/rename`, {
|
||||||
|
headers: { 'x-user-token': userJwt },
|
||||||
|
data: {
|
||||||
|
passkey_id: 'any-id',
|
||||||
|
passkey_name: 'x'.repeat(256),
|
||||||
|
},
|
||||||
|
});
|
||||||
|
expect(res.status()).toBe(400);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('delete nonexistent passkey succeeds silently', async ({ request }) => {
|
||||||
|
const res = await request.delete(`${WORKER_URL}/user_api/passkey/nonexistent-id`, {
|
||||||
|
headers: { 'x-user-token': userJwt },
|
||||||
|
});
|
||||||
|
expect(res.ok()).toBe(true);
|
||||||
|
const body = await res.json();
|
||||||
|
expect(body.success).toBe(true);
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -0,0 +1,114 @@
|
|||||||
|
import { test, expect } from '@playwright/test';
|
||||||
|
import { request as apiRequest } from '@playwright/test';
|
||||||
|
import { createHash } from 'crypto';
|
||||||
|
import { WORKER_URL, FRONTEND_URL } from '../../fixtures/test-helpers';
|
||||||
|
|
||||||
|
const TEST_USER_EMAIL = `passkey-browser-${Date.now()}@test.example.com`;
|
||||||
|
const TEST_USER_PASSWORD = 'browser-test-pwd-123';
|
||||||
|
|
||||||
|
// Frontend hashes passwords with SHA-256 before sending to the API.
|
||||||
|
// Register with the hashed password so UI login matches.
|
||||||
|
const HASHED_PASSWORD = createHash('sha256').update(TEST_USER_PASSWORD).digest('hex');
|
||||||
|
|
||||||
|
test.describe('Passkey Browser Flow', () => {
|
||||||
|
let userJwt: string;
|
||||||
|
|
||||||
|
test.beforeAll(async () => {
|
||||||
|
const api = await apiRequest.newContext();
|
||||||
|
try {
|
||||||
|
// Enable user registration
|
||||||
|
await api.post(`${WORKER_URL}/admin/user_settings`, {
|
||||||
|
data: { enable: true, enableMailVerify: false },
|
||||||
|
});
|
||||||
|
// Register user with hashed password (matching frontend behavior)
|
||||||
|
await api.post(`${WORKER_URL}/user_api/register`, {
|
||||||
|
data: { email: TEST_USER_EMAIL, password: HASHED_PASSWORD },
|
||||||
|
});
|
||||||
|
// Login to get JWT for localStorage injection
|
||||||
|
const loginRes = await api.post(`${WORKER_URL}/user_api/login`, {
|
||||||
|
data: { email: TEST_USER_EMAIL, password: HASHED_PASSWORD },
|
||||||
|
});
|
||||||
|
const body = await loginRes.json();
|
||||||
|
userJwt = body.jwt;
|
||||||
|
} finally {
|
||||||
|
await api.dispose();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
test('register passkey, then login with passkey', async ({ page, context }) => {
|
||||||
|
// Set up virtual authenticator via CDP
|
||||||
|
const cdp = await context.newCDPSession(page);
|
||||||
|
await cdp.send('WebAuthn.enable');
|
||||||
|
const { authenticatorId } = await cdp.send('WebAuthn.addVirtualAuthenticator', {
|
||||||
|
options: {
|
||||||
|
protocol: 'ctap2',
|
||||||
|
transport: 'internal',
|
||||||
|
hasResidentKey: true,
|
||||||
|
hasUserVerification: true,
|
||||||
|
isUserVerified: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
try {
|
||||||
|
// === Step 1: Login via localStorage injection ===
|
||||||
|
// Inject JWT into localStorage to skip UI login flow.
|
||||||
|
await page.goto(`${FRONTEND_URL}/en/`);
|
||||||
|
// VueUse's useStorage with string default stores raw strings (no JSON)
|
||||||
|
await page.evaluate((jwt) => {
|
||||||
|
localStorage.setItem('userJwt', jwt);
|
||||||
|
}, userJwt);
|
||||||
|
await page.goto(`${FRONTEND_URL}/en/user`);
|
||||||
|
|
||||||
|
// Wait for user settings to load (shows user email)
|
||||||
|
await expect(page.getByText(TEST_USER_EMAIL)).toBeVisible({ timeout: 15_000 });
|
||||||
|
|
||||||
|
// === Step 2: Click "User Settings" tab ===
|
||||||
|
await page.getByText('User Settings').click();
|
||||||
|
|
||||||
|
// === Step 3: Create a passkey ===
|
||||||
|
await page.getByRole('button', { name: 'Create Passkey' }).click();
|
||||||
|
|
||||||
|
// Fill passkey name in the modal
|
||||||
|
const createModal = page.locator('.n-dialog');
|
||||||
|
await expect(createModal).toBeVisible({ timeout: 5_000 });
|
||||||
|
await createModal.getByRole('textbox').fill('E2E Test Passkey');
|
||||||
|
|
||||||
|
// Click the Create Passkey button inside the modal
|
||||||
|
await createModal.getByRole('button', { name: 'Create Passkey' }).click();
|
||||||
|
|
||||||
|
// Wait for success — modal should close
|
||||||
|
await expect(createModal).not.toBeVisible({ timeout: 10_000 });
|
||||||
|
|
||||||
|
// === Step 4: Verify passkey appears in the list ===
|
||||||
|
await page.getByRole('button', { name: 'Show Passkey List' }).click();
|
||||||
|
|
||||||
|
const listModal = page.locator('.n-card-header:has-text("Show Passkey List")').locator('..');
|
||||||
|
await expect(page.getByText('E2E Test Passkey')).toBeVisible({ timeout: 5_000 });
|
||||||
|
|
||||||
|
// Close the list modal
|
||||||
|
await page.keyboard.press('Escape');
|
||||||
|
|
||||||
|
// === Step 5: Logout ===
|
||||||
|
await page.getByRole('button', { name: 'Logout' }).click();
|
||||||
|
const logoutModal = page.locator('.n-dialog');
|
||||||
|
await expect(logoutModal).toBeVisible({ timeout: 5_000 });
|
||||||
|
await logoutModal.getByRole('button', { name: 'Logout' }).click();
|
||||||
|
|
||||||
|
// Wait for logout to complete and navigate to user page
|
||||||
|
await page.waitForTimeout(2000);
|
||||||
|
await page.goto(`${FRONTEND_URL}/en/user`);
|
||||||
|
|
||||||
|
// === Step 6: Login with passkey ===
|
||||||
|
const passkeyBtn = page.getByRole('button', { name: 'Login with Passkey' });
|
||||||
|
await expect(passkeyBtn).toBeVisible({ timeout: 10_000 });
|
||||||
|
await passkeyBtn.click();
|
||||||
|
|
||||||
|
// Virtual authenticator handles the WebAuthn ceremony automatically
|
||||||
|
// Wait for login to complete — user email should appear
|
||||||
|
await expect(page.getByText(TEST_USER_EMAIL)).toBeVisible({ timeout: 15_000 });
|
||||||
|
} finally {
|
||||||
|
await cdp.send('WebAuthn.removeVirtualAuthenticator', { authenticatorId });
|
||||||
|
await cdp.detach();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -23,7 +23,7 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fingerprintjs/fingerprintjs": "^5.1.0",
|
"@fingerprintjs/fingerprintjs": "^5.1.0",
|
||||||
"@simplewebauthn/browser": "10.0.0",
|
"@simplewebauthn/browser": "13.2.2",
|
||||||
"@unhead/vue": "^2.1.10",
|
"@unhead/vue": "^2.1.10",
|
||||||
"@vueuse/core": "^14.2.1",
|
"@vueuse/core": "^14.2.1",
|
||||||
"@wangeditor/editor": "^5.1.23",
|
"@wangeditor/editor": "^5.1.23",
|
||||||
@@ -32,12 +32,12 @@
|
|||||||
"dompurify": "^3.3.2",
|
"dompurify": "^3.3.2",
|
||||||
"jszip": "^3.10.1",
|
"jszip": "^3.10.1",
|
||||||
"mail-parser-wasm": "^0.2.1",
|
"mail-parser-wasm": "^0.2.1",
|
||||||
"naive-ui": "^2.43.2",
|
"naive-ui": "^2.44.0",
|
||||||
"postal-mime": "^2.7.3",
|
"postal-mime": "^2.7.3",
|
||||||
"vooks": "^0.2.12",
|
"vooks": "^0.2.12",
|
||||||
"vue": "^3.5.29",
|
"vue": "^3.5.29",
|
||||||
"vue-clipboard3": "^2.0.0",
|
"vue-clipboard3": "^2.0.0",
|
||||||
"vue-i18n": "^11.2.8",
|
"vue-i18n": "^11.3.0",
|
||||||
"vue-router": "^4.6.4"
|
"vue-router": "^4.6.4"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
@@ -54,7 +54,7 @@
|
|||||||
"vitest": "^3.2.4",
|
"vitest": "^3.2.4",
|
||||||
"workbox-build": "^7.4.0",
|
"workbox-build": "^7.4.0",
|
||||||
"workbox-window": "^7.4.0",
|
"workbox-window": "^7.4.0",
|
||||||
"wrangler": "^4.70.0"
|
"wrangler": "^4.71.0"
|
||||||
},
|
},
|
||||||
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39"
|
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39"
|
||||||
}
|
}
|
||||||
|
|||||||
Generated
+91
-93
@@ -12,8 +12,8 @@ importers:
|
|||||||
specifier: ^5.1.0
|
specifier: ^5.1.0
|
||||||
version: 5.1.0
|
version: 5.1.0
|
||||||
'@simplewebauthn/browser':
|
'@simplewebauthn/browser':
|
||||||
specifier: 10.0.0
|
specifier: 13.2.2
|
||||||
version: 10.0.0
|
version: 13.2.2
|
||||||
'@unhead/vue':
|
'@unhead/vue':
|
||||||
specifier: ^2.1.10
|
specifier: ^2.1.10
|
||||||
version: 2.1.10(vue@3.5.29(typescript@5.4.5))
|
version: 2.1.10(vue@3.5.29(typescript@5.4.5))
|
||||||
@@ -39,8 +39,8 @@ importers:
|
|||||||
specifier: ^0.2.1
|
specifier: ^0.2.1
|
||||||
version: 0.2.1
|
version: 0.2.1
|
||||||
naive-ui:
|
naive-ui:
|
||||||
specifier: ^2.43.2
|
specifier: ^2.44.0
|
||||||
version: 2.43.2(vue@3.5.29(typescript@5.4.5))
|
version: 2.44.0(vue@3.5.29(typescript@5.4.5))
|
||||||
postal-mime:
|
postal-mime:
|
||||||
specifier: ^2.7.3
|
specifier: ^2.7.3
|
||||||
version: 2.7.3
|
version: 2.7.3
|
||||||
@@ -54,8 +54,8 @@ importers:
|
|||||||
specifier: ^2.0.0
|
specifier: ^2.0.0
|
||||||
version: 2.0.0
|
version: 2.0.0
|
||||||
vue-i18n:
|
vue-i18n:
|
||||||
specifier: ^11.2.8
|
specifier: ^11.3.0
|
||||||
version: 11.2.8(vue@3.5.29(typescript@5.4.5))
|
version: 11.3.0(vue@3.5.29(typescript@5.4.5))
|
||||||
vue-router:
|
vue-router:
|
||||||
specifier: ^4.6.4
|
specifier: ^4.6.4
|
||||||
version: 4.6.4(vue@3.5.29(typescript@5.4.5))
|
version: 4.6.4(vue@3.5.29(typescript@5.4.5))
|
||||||
@@ -100,8 +100,8 @@ importers:
|
|||||||
specifier: ^7.4.0
|
specifier: ^7.4.0
|
||||||
version: 7.4.0
|
version: 7.4.0
|
||||||
wrangler:
|
wrangler:
|
||||||
specifier: ^4.70.0
|
specifier: ^4.71.0
|
||||||
version: 4.70.0
|
version: 4.71.0
|
||||||
|
|
||||||
packages:
|
packages:
|
||||||
|
|
||||||
@@ -160,8 +160,8 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@babel/core': ^7.0.0
|
'@babel/core': ^7.0.0
|
||||||
|
|
||||||
'@babel/helper-define-polyfill-provider@0.6.6':
|
'@babel/helper-define-polyfill-provider@0.6.7':
|
||||||
resolution: {integrity: sha512-mOAsxeeKkUKayvZR3HeTYD/fICpCPLJrU5ZjelT/PA6WHtNDBOE436YiaEUvHN454bRM3CebhDsIpieCc4texA==}
|
resolution: {integrity: sha512-6Fqi8MtQ/PweQ9xvux65emkLQ83uB+qAVtfHkC9UodyHMIZdxNI01HjLCLUtybElp2KY2XNE0nOgyP1E1vXw9w==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
|
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
|
||||||
|
|
||||||
@@ -627,11 +627,11 @@ packages:
|
|||||||
resolution: {integrity: sha512-SIOD2DxrRRwQ+jgzlXCqoEFiKOFqaPjhnNTGKXSRLvp1HiOvapLaFG2kEr9dYQTYe8rKrd9uvDUzmAITeNyaHQ==}
|
resolution: {integrity: sha512-SIOD2DxrRRwQ+jgzlXCqoEFiKOFqaPjhnNTGKXSRLvp1HiOvapLaFG2kEr9dYQTYe8rKrd9uvDUzmAITeNyaHQ==}
|
||||||
engines: {node: '>=18.0.0'}
|
engines: {node: '>=18.0.0'}
|
||||||
|
|
||||||
'@cloudflare/unenv-preset@2.14.0':
|
'@cloudflare/unenv-preset@2.15.0':
|
||||||
resolution: {integrity: sha512-XKAkWhi1nBdNsSEoNG9nkcbyvfUrSjSf+VYVPfOto3gLTZVc3F4g6RASCMh6IixBKCG2yDgZKQIHGKtjcnLnKg==}
|
resolution: {integrity: sha512-EGYmJaGZKWl+X8tXxcnx4v2bOZSjQeNI5dWFeXivgX9+YCT69AkzHHwlNbVpqtEUTbew8eQurpyOpeN8fg00nw==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
unenv: 2.0.0-rc.24
|
unenv: 2.0.0-rc.24
|
||||||
workerd: ^1.20260218.0
|
workerd: 1.20260301.1 || ~1.20260302.1 || ~1.20260303.1 || ~1.20260304.1 || >1.20260305.0 <2.0.0-0
|
||||||
peerDependenciesMeta:
|
peerDependenciesMeta:
|
||||||
workerd:
|
workerd:
|
||||||
optional: true
|
optional: true
|
||||||
@@ -704,8 +704,8 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@csstools/css-tokenizer': ^4.0.0
|
'@csstools/css-tokenizer': ^4.0.0
|
||||||
|
|
||||||
'@csstools/css-syntax-patches-for-csstree@1.0.29':
|
'@csstools/css-syntax-patches-for-csstree@1.1.0':
|
||||||
resolution: {integrity: sha512-jx9GjkkP5YHuTmko2eWAvpPnb0mB4mGRr2U7XwVNwevm8nlpobZEVk+GNmiYMk2VuA75v+plfXWyroWKmICZXg==}
|
resolution: {integrity: sha512-H4tuz2nhWgNKLt1inYpoVCfbJbMwX/lQKp3g69rrrIMIYlFD9+zTykOKhNR8uGrAmbS/kT9n6hTFkmDkxLgeTA==}
|
||||||
|
|
||||||
'@csstools/css-tokenizer@4.0.0':
|
'@csstools/css-tokenizer@4.0.0':
|
||||||
resolution: {integrity: sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==}
|
resolution: {integrity: sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==}
|
||||||
@@ -1022,16 +1022,20 @@ packages:
|
|||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [win32]
|
os: [win32]
|
||||||
|
|
||||||
'@intlify/core-base@11.2.8':
|
'@intlify/core-base@11.3.0':
|
||||||
resolution: {integrity: sha512-nBq6Y1tVkjIUsLsdOjDSJj4AsjvD0UG3zsg9Fyc+OivwlA/oMHSKooUy9tpKj0HqZ+NWFifweHavdljlBLTwdA==}
|
resolution: {integrity: sha512-NNX5jIwF4TJBe7RtSKDMOA6JD9mp2mRcBHAwt2X+Q8PvnZub0yj5YYXlFu2AcESdgQpEv/5Yx2uOCV/yh7YkZg==}
|
||||||
engines: {node: '>= 16'}
|
engines: {node: '>= 16'}
|
||||||
|
|
||||||
'@intlify/message-compiler@11.2.8':
|
'@intlify/devtools-types@11.3.0':
|
||||||
resolution: {integrity: sha512-A5n33doOjmHsBtCN421386cG1tWp5rpOjOYPNsnpjIJbQ4POF0QY2ezhZR9kr0boKwaHjbOifvyQvHj2UTrDFQ==}
|
resolution: {integrity: sha512-G9CNL4WpANWVdUjubOIIS7/D2j/0j+1KJmhBJxHilWNKr9mmt3IjFV3Hq4JoBP23uOoC5ynxz/FHZ42M+YxfGw==}
|
||||||
engines: {node: '>= 16'}
|
engines: {node: '>= 16'}
|
||||||
|
|
||||||
'@intlify/shared@11.2.8':
|
'@intlify/message-compiler@11.3.0':
|
||||||
resolution: {integrity: sha512-l6e4NZyUgv8VyXXH4DbuucFOBmxLF56C/mqh2tvApbzl2Hrhi1aTDcuv5TKdxzfHYmpO3UB0Cz04fgDT9vszfw==}
|
resolution: {integrity: sha512-RAJp3TMsqohg/Wa7bVF3cChRhecSYBLrTCQSj7j0UtWVFLP+6iEJoE2zb7GU5fp+fmG5kCbUdzhmlAUCWXiUJw==}
|
||||||
|
engines: {node: '>= 16'}
|
||||||
|
|
||||||
|
'@intlify/shared@11.3.0':
|
||||||
|
resolution: {integrity: sha512-LC6P/uay7rXL5zZ5+5iRJfLs/iUN8apu9tm8YqQVmW3Uq3X4A0dOFUIDuAmB7gAC29wTHOS3EiN/IosNSz0eNQ==}
|
||||||
engines: {node: '>= 16'}
|
engines: {node: '>= 16'}
|
||||||
|
|
||||||
'@isaacs/cliui@9.0.0':
|
'@isaacs/cliui@9.0.0':
|
||||||
@@ -1258,12 +1262,8 @@ packages:
|
|||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [win32]
|
os: [win32]
|
||||||
|
|
||||||
'@simplewebauthn/browser@10.0.0':
|
'@simplewebauthn/browser@13.2.2':
|
||||||
resolution: {integrity: sha512-hG0JMZD+LiLUbpQcAjS4d+t4gbprE/dLYop/CkE01ugU/9sKXflxV5s0DRjdz3uNMFecatRfb4ZLG3XvF8m5zg==}
|
resolution: {integrity: sha512-FNW1oLQpTJyqG5kkDg5ZsotvWgmBaC6jCHR7Ej0qUNep36Wl9tj2eZu7J5rP+uhXgHaLk+QQ3lqcw2vS5MX1IA==}
|
||||||
|
|
||||||
'@simplewebauthn/types@10.0.0':
|
|
||||||
resolution: {integrity: sha512-SFXke7xkgPRowY2E+8djKbdEznTVnD5R6GO7GPTthpHrokLvNKw8C3lFZypTxLI7KkCfGPfhtqB3d7OVGGa9jQ==}
|
|
||||||
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
|
|
||||||
|
|
||||||
'@sindresorhus/is@7.2.0':
|
'@sindresorhus/is@7.2.0':
|
||||||
resolution: {integrity: sha512-P1Cz1dWaFfR4IR+U13mqqiGsLFf1KbayybWwdd2vfctdV6hDpUkgCY0nKOLLTMSoRd/jJNjtbqzf13K8DCCXQw==}
|
resolution: {integrity: sha512-P1Cz1dWaFfR4IR+U13mqqiGsLFf1KbayybWwdd2vfctdV6hDpUkgCY0nKOLLTMSoRd/jJNjtbqzf13K8DCCXQw==}
|
||||||
@@ -1371,9 +1371,6 @@ packages:
|
|||||||
'@types/event-emitter@0.3.5':
|
'@types/event-emitter@0.3.5':
|
||||||
resolution: {integrity: sha512-zx2/Gg0Eg7gwEiOIIh5w9TrhKKTeQh7CPCOPNc0el4pLSwzebA8SmnHwZs2dWlLONvyulykSwGSQxQHLhjGLvQ==}
|
resolution: {integrity: sha512-zx2/Gg0Eg7gwEiOIIh5w9TrhKKTeQh7CPCOPNc0el4pLSwzebA8SmnHwZs2dWlLONvyulykSwGSQxQHLhjGLvQ==}
|
||||||
|
|
||||||
'@types/katex@0.16.8':
|
|
||||||
resolution: {integrity: sha512-trgaNyfU+Xh2Tc+ABIb44a5AYUpicB3uwirOioeOkNPPbmgRNtcWyDeeFRzjPZENO9Vq8gvVqfhaaXWLlevVwg==}
|
|
||||||
|
|
||||||
'@types/lodash-es@4.17.12':
|
'@types/lodash-es@4.17.12':
|
||||||
resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
|
resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
|
||||||
|
|
||||||
@@ -1633,18 +1630,18 @@ packages:
|
|||||||
axios@1.13.6:
|
axios@1.13.6:
|
||||||
resolution: {integrity: sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==}
|
resolution: {integrity: sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==}
|
||||||
|
|
||||||
babel-plugin-polyfill-corejs2@0.4.15:
|
babel-plugin-polyfill-corejs2@0.4.16:
|
||||||
resolution: {integrity: sha512-hR3GwrRwHUfYwGfrisXPIDP3JcYfBrW7wKE7+Au6wDYl7fm/ka1NEII6kORzxNU556JjfidZeBsO10kYvtV1aw==}
|
resolution: {integrity: sha512-xaVwwSfebXf0ooE11BJovZYKhFjIvQo7TsyVpETuIeH2JHv0k/T6Y5j22pPTvqYqmpkxdlPAJlyJ0tfOJAoMxw==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
|
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
|
||||||
|
|
||||||
babel-plugin-polyfill-corejs3@0.14.0:
|
babel-plugin-polyfill-corejs3@0.14.1:
|
||||||
resolution: {integrity: sha512-AvDcMxJ34W4Wgy4KBIIePQTAOP1Ie2WFwkQp3dB7FQ/f0lI5+nM96zUnYEOE1P9sEg0es5VCP0HxiWu5fUHZAQ==}
|
resolution: {integrity: sha512-ENp89vM9Pw4kv/koBb5N2f9bDZsR0hpf3BdPMOg/pkS3pwO4dzNnQZVXtBbeyAadgm865DmQG2jMMLqmZXvuCw==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
|
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
|
||||||
|
|
||||||
babel-plugin-polyfill-regenerator@0.6.6:
|
babel-plugin-polyfill-regenerator@0.6.7:
|
||||||
resolution: {integrity: sha512-hYm+XLYRMvupxiQzrvXUj7YyvFFVfv5gI0R71AJzudg1g2AI2vyCPPIFEBjk162/wFzti3inBHo7isWFuEVS/A==}
|
resolution: {integrity: sha512-OTYbUlSwXhNgr4g6efMZgsO8//jA61P7ZbRX3iTT53VON8l+WQS8IAUEVo4a4cWknrg2W8Cj4gQhRYNCJ8GkAA==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
|
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
|
||||||
|
|
||||||
@@ -1697,8 +1694,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
|
resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
|
|
||||||
caniuse-lite@1.0.30001776:
|
caniuse-lite@1.0.30001777:
|
||||||
resolution: {integrity: sha512-sg01JDPzZ9jGshqKSckOQthXnYwOEP50jeVFhaSFbZcOy05TiuuaffDOfcwtCisJ9kNQuLBFibYywv2Bgm9osw==}
|
resolution: {integrity: sha512-tmN+fJxroPndC74efCdp12j+0rk0RHwV5Jwa1zWaFVyw2ZxAuPeG8ZgWC3Wz7uSjT3qMRQ5XHZ4COgQmsCMJAQ==}
|
||||||
|
|
||||||
chai@5.3.3:
|
chai@5.3.3:
|
||||||
resolution: {integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==}
|
resolution: {integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==}
|
||||||
@@ -1759,8 +1756,8 @@ packages:
|
|||||||
css-render@0.15.14:
|
css-render@0.15.14:
|
||||||
resolution: {integrity: sha512-9nF4PdUle+5ta4W5SyZdLCCmFd37uVimSjg1evcTqKJCyvCEEj12WKzOSBNak6r4im4J4iYXKH1OWpUV5LBYFg==}
|
resolution: {integrity: sha512-9nF4PdUle+5ta4W5SyZdLCCmFd37uVimSjg1evcTqKJCyvCEEj12WKzOSBNak6r4im4J4iYXKH1OWpUV5LBYFg==}
|
||||||
|
|
||||||
css-tree@3.2.0:
|
css-tree@3.2.1:
|
||||||
resolution: {integrity: sha512-t99A4LolkP0ZX9WUoaHz4YrPT1FKNlV8IDCeCPPpGaWyxegh64tt/BSUqN3u5necrYRon+ddZ6mPMjxIlfpobg==}
|
resolution: {integrity: sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==}
|
||||||
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
|
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
|
||||||
|
|
||||||
cssstyle@6.2.0:
|
cssstyle@6.2.0:
|
||||||
@@ -2403,8 +2400,9 @@ packages:
|
|||||||
ms@2.1.3:
|
ms@2.1.3:
|
||||||
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
||||||
|
|
||||||
naive-ui@2.43.2:
|
naive-ui@2.44.0:
|
||||||
resolution: {integrity: sha512-YlLMnGrwGTOc+zMj90sG3ubaH5/7czsgLgGcjTLA981IUaz8r6t4WIujNt8r9PNr+dqv6XNEr0vxkARgPPjfBQ==}
|
resolution: {integrity: sha512-+2eNNldKOluVu038BhcyJMlj661XxKKt4wBo1BDrCayzNLOkFXX8JHv1XFGSEEdewEic+zPJoFLxkTgTxOxovQ==}
|
||||||
|
engines: {node: '>=20'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
vue: ^3.0.0
|
vue: ^3.0.0
|
||||||
|
|
||||||
@@ -2806,11 +2804,11 @@ packages:
|
|||||||
resolution: {integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==}
|
resolution: {integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==}
|
||||||
engines: {node: '>=14.0.0'}
|
engines: {node: '>=14.0.0'}
|
||||||
|
|
||||||
tldts-core@7.0.24:
|
tldts-core@7.0.25:
|
||||||
resolution: {integrity: sha512-pj7yygNMoMRqG7ML2SDQ0xNIOfN3IBDUcPVM2Sg6hP96oFNN2nqnzHreT3z9xLq85IWJyNTvD38O002DdOrPMw==}
|
resolution: {integrity: sha512-ZjCZK0rppSBu7rjHYDYsEaMOIbbT+nWF57hKkv4IUmZWBNrBWBOjIElc0mKRgLM8bm7x/BBlof6t2gi/Oq/Asw==}
|
||||||
|
|
||||||
tldts@7.0.24:
|
tldts@7.0.25:
|
||||||
resolution: {integrity: sha512-1r6vQTTt1rUiJkI5vX7KG8PR342Ru/5Oh13kEQP2SMbRSZpOey9SrBe27IDxkoWulx8ShWu4K6C0BkctP8Z1bQ==}
|
resolution: {integrity: sha512-keinCnPbwXEUG3ilrWQZU+CqcTTzHq9m2HhoUP2l7Xmi8l1LuijAXLpAJ5zRW+ifKTNscs4NdCkfkDCBYm352w==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
tough-cookie@6.0.0:
|
tough-cookie@6.0.0:
|
||||||
@@ -3065,8 +3063,8 @@ packages:
|
|||||||
vue-clipboard3@2.0.0:
|
vue-clipboard3@2.0.0:
|
||||||
resolution: {integrity: sha512-Q9S7dzWGax7LN5iiSPcu/K1GGm2gcBBlYwmMsUc5/16N6w90cbKow3FnPmPs95sungns4yvd9/+JhbAznECS2A==}
|
resolution: {integrity: sha512-Q9S7dzWGax7LN5iiSPcu/K1GGm2gcBBlYwmMsUc5/16N6w90cbKow3FnPmPs95sungns4yvd9/+JhbAznECS2A==}
|
||||||
|
|
||||||
vue-i18n@11.2.8:
|
vue-i18n@11.3.0:
|
||||||
resolution: {integrity: sha512-vJ123v/PXCZntd6Qj5Jumy7UBmIuE92VrtdX+AXr+1WzdBHojiBxnAxdfctUFL+/JIN+VQH4BhsfTtiGsvVObg==}
|
resolution: {integrity: sha512-1J+xDfDJTLhDxElkd3+XUhT7FYSZd2b8pa7IRKGxhWH/8yt6PTvi3xmWhGwhYT5EaXdatui11pF2R6tL73/zPA==}
|
||||||
engines: {node: '>= 16'}
|
engines: {node: '>= 16'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
vue: ^3.0.0
|
vue: ^3.0.0
|
||||||
@@ -3197,8 +3195,8 @@ packages:
|
|||||||
engines: {node: '>=16'}
|
engines: {node: '>=16'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
wrangler@4.70.0:
|
wrangler@4.71.0:
|
||||||
resolution: {integrity: sha512-PNDZ9o4e+B5x+1bUbz62Hmwz6G9lw+I9pnYe/AguLddJFjfIyt2cmFOUOb3eOZSoXsrhcEPUg2YidYIbVwUkfw==}
|
resolution: {integrity: sha512-j6pSGAncOLNQDRzqtp0EqzYj52CldDP7uz/C9cxVrIgqa5p+cc0b4pIwnapZZAGv9E1Loa3tmPD0aXonH7KTkw==}
|
||||||
engines: {node: '>=20.0.0'}
|
engines: {node: '>=20.0.0'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -3258,7 +3256,7 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
'@asamuzakjp/nwsapi': 2.3.9
|
'@asamuzakjp/nwsapi': 2.3.9
|
||||||
bidi-js: 1.0.3
|
bidi-js: 1.0.3
|
||||||
css-tree: 3.2.0
|
css-tree: 3.2.1
|
||||||
is-potential-custom-element-name: 1.0.1
|
is-potential-custom-element-name: 1.0.1
|
||||||
lru-cache: 11.2.6
|
lru-cache: 11.2.6
|
||||||
|
|
||||||
@@ -3332,7 +3330,7 @@ snapshots:
|
|||||||
regexpu-core: 6.4.0
|
regexpu-core: 6.4.0
|
||||||
semver: 6.3.1
|
semver: 6.3.1
|
||||||
|
|
||||||
'@babel/helper-define-polyfill-provider@0.6.6(@babel/core@7.29.0)':
|
'@babel/helper-define-polyfill-provider@0.6.7(@babel/core@7.29.0)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/core': 7.29.0
|
'@babel/core': 7.29.0
|
||||||
'@babel/helper-compilation-targets': 7.28.6
|
'@babel/helper-compilation-targets': 7.28.6
|
||||||
@@ -3878,9 +3876,9 @@ snapshots:
|
|||||||
'@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.29.0)
|
'@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.29.0)
|
||||||
'@babel/plugin-transform-unicode-sets-regex': 7.28.6(@babel/core@7.29.0)
|
'@babel/plugin-transform-unicode-sets-regex': 7.28.6(@babel/core@7.29.0)
|
||||||
'@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.29.0)
|
'@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.29.0)
|
||||||
babel-plugin-polyfill-corejs2: 0.4.15(@babel/core@7.29.0)
|
babel-plugin-polyfill-corejs2: 0.4.16(@babel/core@7.29.0)
|
||||||
babel-plugin-polyfill-corejs3: 0.14.0(@babel/core@7.29.0)
|
babel-plugin-polyfill-corejs3: 0.14.1(@babel/core@7.29.0)
|
||||||
babel-plugin-polyfill-regenerator: 0.6.6(@babel/core@7.29.0)
|
babel-plugin-polyfill-regenerator: 0.6.7(@babel/core@7.29.0)
|
||||||
core-js-compat: 3.48.0
|
core-js-compat: 3.48.0
|
||||||
semver: 6.3.1
|
semver: 6.3.1
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
@@ -3920,11 +3918,11 @@ snapshots:
|
|||||||
|
|
||||||
'@bramus/specificity@2.4.2':
|
'@bramus/specificity@2.4.2':
|
||||||
dependencies:
|
dependencies:
|
||||||
css-tree: 3.2.0
|
css-tree: 3.2.1
|
||||||
|
|
||||||
'@cloudflare/kv-asset-handler@0.4.2': {}
|
'@cloudflare/kv-asset-handler@0.4.2': {}
|
||||||
|
|
||||||
'@cloudflare/unenv-preset@2.14.0(unenv@2.0.0-rc.24)(workerd@1.20260301.1)':
|
'@cloudflare/unenv-preset@2.15.0(unenv@2.0.0-rc.24)(workerd@1.20260301.1)':
|
||||||
dependencies:
|
dependencies:
|
||||||
unenv: 2.0.0-rc.24
|
unenv: 2.0.0-rc.24
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
@@ -3975,7 +3973,7 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
'@csstools/css-tokenizer': 4.0.0
|
'@csstools/css-tokenizer': 4.0.0
|
||||||
|
|
||||||
'@csstools/css-syntax-patches-for-csstree@1.0.29': {}
|
'@csstools/css-syntax-patches-for-csstree@1.1.0': {}
|
||||||
|
|
||||||
'@csstools/css-tokenizer@4.0.0': {}
|
'@csstools/css-tokenizer@4.0.0': {}
|
||||||
|
|
||||||
@@ -4164,17 +4162,23 @@ snapshots:
|
|||||||
'@img/sharp-win32-x64@0.34.5':
|
'@img/sharp-win32-x64@0.34.5':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@intlify/core-base@11.2.8':
|
'@intlify/core-base@11.3.0':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@intlify/message-compiler': 11.2.8
|
'@intlify/devtools-types': 11.3.0
|
||||||
'@intlify/shared': 11.2.8
|
'@intlify/message-compiler': 11.3.0
|
||||||
|
'@intlify/shared': 11.3.0
|
||||||
|
|
||||||
'@intlify/message-compiler@11.2.8':
|
'@intlify/devtools-types@11.3.0':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@intlify/shared': 11.2.8
|
'@intlify/core-base': 11.3.0
|
||||||
|
'@intlify/shared': 11.3.0
|
||||||
|
|
||||||
|
'@intlify/message-compiler@11.3.0':
|
||||||
|
dependencies:
|
||||||
|
'@intlify/shared': 11.3.0
|
||||||
source-map-js: 1.2.1
|
source-map-js: 1.2.1
|
||||||
|
|
||||||
'@intlify/shared@11.2.8': {}
|
'@intlify/shared@11.3.0': {}
|
||||||
|
|
||||||
'@isaacs/cliui@9.0.0': {}
|
'@isaacs/cliui@9.0.0': {}
|
||||||
|
|
||||||
@@ -4350,11 +4354,7 @@ snapshots:
|
|||||||
'@rollup/rollup-win32-x64-msvc@4.59.0':
|
'@rollup/rollup-win32-x64-msvc@4.59.0':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@simplewebauthn/browser@10.0.0':
|
'@simplewebauthn/browser@13.2.2': {}
|
||||||
dependencies:
|
|
||||||
'@simplewebauthn/types': 10.0.0
|
|
||||||
|
|
||||||
'@simplewebauthn/types@10.0.0': {}
|
|
||||||
|
|
||||||
'@sindresorhus/is@7.2.0': {}
|
'@sindresorhus/is@7.2.0': {}
|
||||||
|
|
||||||
@@ -4436,8 +4436,6 @@ snapshots:
|
|||||||
|
|
||||||
'@types/event-emitter@0.3.5': {}
|
'@types/event-emitter@0.3.5': {}
|
||||||
|
|
||||||
'@types/katex@0.16.8': {}
|
|
||||||
|
|
||||||
'@types/lodash-es@4.17.12':
|
'@types/lodash-es@4.17.12':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/lodash': 4.17.24
|
'@types/lodash': 4.17.24
|
||||||
@@ -4764,27 +4762,27 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- debug
|
- debug
|
||||||
|
|
||||||
babel-plugin-polyfill-corejs2@0.4.15(@babel/core@7.29.0):
|
babel-plugin-polyfill-corejs2@0.4.16(@babel/core@7.29.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/compat-data': 7.29.0
|
'@babel/compat-data': 7.29.0
|
||||||
'@babel/core': 7.29.0
|
'@babel/core': 7.29.0
|
||||||
'@babel/helper-define-polyfill-provider': 0.6.6(@babel/core@7.29.0)
|
'@babel/helper-define-polyfill-provider': 0.6.7(@babel/core@7.29.0)
|
||||||
semver: 6.3.1
|
semver: 6.3.1
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
babel-plugin-polyfill-corejs3@0.14.0(@babel/core@7.29.0):
|
babel-plugin-polyfill-corejs3@0.14.1(@babel/core@7.29.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/core': 7.29.0
|
'@babel/core': 7.29.0
|
||||||
'@babel/helper-define-polyfill-provider': 0.6.6(@babel/core@7.29.0)
|
'@babel/helper-define-polyfill-provider': 0.6.7(@babel/core@7.29.0)
|
||||||
core-js-compat: 3.48.0
|
core-js-compat: 3.48.0
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
babel-plugin-polyfill-regenerator@0.6.6(@babel/core@7.29.0):
|
babel-plugin-polyfill-regenerator@0.6.7(@babel/core@7.29.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/core': 7.29.0
|
'@babel/core': 7.29.0
|
||||||
'@babel/helper-define-polyfill-provider': 0.6.6(@babel/core@7.29.0)
|
'@babel/helper-define-polyfill-provider': 0.6.7(@babel/core@7.29.0)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
@@ -4811,7 +4809,7 @@ snapshots:
|
|||||||
browserslist@4.28.1:
|
browserslist@4.28.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
baseline-browser-mapping: 2.10.0
|
baseline-browser-mapping: 2.10.0
|
||||||
caniuse-lite: 1.0.30001776
|
caniuse-lite: 1.0.30001777
|
||||||
electron-to-chromium: 1.5.307
|
electron-to-chromium: 1.5.307
|
||||||
node-releases: 2.0.36
|
node-releases: 2.0.36
|
||||||
update-browserslist-db: 1.2.3(browserslist@4.28.1)
|
update-browserslist-db: 1.2.3(browserslist@4.28.1)
|
||||||
@@ -4837,7 +4835,7 @@ snapshots:
|
|||||||
call-bind-apply-helpers: 1.0.2
|
call-bind-apply-helpers: 1.0.2
|
||||||
get-intrinsic: 1.3.0
|
get-intrinsic: 1.3.0
|
||||||
|
|
||||||
caniuse-lite@1.0.30001776: {}
|
caniuse-lite@1.0.30001777: {}
|
||||||
|
|
||||||
chai@5.3.3:
|
chai@5.3.3:
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -4896,7 +4894,7 @@ snapshots:
|
|||||||
'@emotion/hash': 0.8.0
|
'@emotion/hash': 0.8.0
|
||||||
csstype: 3.0.11
|
csstype: 3.0.11
|
||||||
|
|
||||||
css-tree@3.2.0:
|
css-tree@3.2.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
mdn-data: 2.27.1
|
mdn-data: 2.27.1
|
||||||
source-map-js: 1.2.1
|
source-map-js: 1.2.1
|
||||||
@@ -4904,8 +4902,8 @@ snapshots:
|
|||||||
cssstyle@6.2.0:
|
cssstyle@6.2.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@asamuzakjp/css-color': 5.0.1
|
'@asamuzakjp/css-color': 5.0.1
|
||||||
'@csstools/css-syntax-patches-for-csstree': 1.0.29
|
'@csstools/css-syntax-patches-for-csstree': 1.1.0
|
||||||
css-tree: 3.2.0
|
css-tree: 3.2.1
|
||||||
lru-cache: 11.2.6
|
lru-cache: 11.2.6
|
||||||
|
|
||||||
csstype@3.0.11: {}
|
csstype@3.0.11: {}
|
||||||
@@ -5620,11 +5618,10 @@ snapshots:
|
|||||||
|
|
||||||
ms@2.1.3: {}
|
ms@2.1.3: {}
|
||||||
|
|
||||||
naive-ui@2.43.2(vue@3.5.29(typescript@5.4.5)):
|
naive-ui@2.44.0(vue@3.5.29(typescript@5.4.5)):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@css-render/plugin-bem': 0.15.14(css-render@0.15.14)
|
'@css-render/plugin-bem': 0.15.14(css-render@0.15.14)
|
||||||
'@css-render/vue3-ssr': 0.15.14(vue@3.5.29(typescript@5.4.5))
|
'@css-render/vue3-ssr': 0.15.14(vue@3.5.29(typescript@5.4.5))
|
||||||
'@types/katex': 0.16.8
|
|
||||||
'@types/lodash': 4.17.24
|
'@types/lodash': 4.17.24
|
||||||
'@types/lodash-es': 4.17.12
|
'@types/lodash-es': 4.17.12
|
||||||
async-validator: 4.2.5
|
async-validator: 4.2.5
|
||||||
@@ -6112,15 +6109,15 @@ snapshots:
|
|||||||
|
|
||||||
tinyspy@4.0.4: {}
|
tinyspy@4.0.4: {}
|
||||||
|
|
||||||
tldts-core@7.0.24: {}
|
tldts-core@7.0.25: {}
|
||||||
|
|
||||||
tldts@7.0.24:
|
tldts@7.0.25:
|
||||||
dependencies:
|
dependencies:
|
||||||
tldts-core: 7.0.24
|
tldts-core: 7.0.25
|
||||||
|
|
||||||
tough-cookie@6.0.0:
|
tough-cookie@6.0.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
tldts: 7.0.24
|
tldts: 7.0.25
|
||||||
|
|
||||||
tr46@1.0.1:
|
tr46@1.0.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -6395,10 +6392,11 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
clipboard: 2.0.11
|
clipboard: 2.0.11
|
||||||
|
|
||||||
vue-i18n@11.2.8(vue@3.5.29(typescript@5.4.5)):
|
vue-i18n@11.3.0(vue@3.5.29(typescript@5.4.5)):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@intlify/core-base': 11.2.8
|
'@intlify/core-base': 11.3.0
|
||||||
'@intlify/shared': 11.2.8
|
'@intlify/devtools-types': 11.3.0
|
||||||
|
'@intlify/shared': 11.3.0
|
||||||
'@vue/devtools-api': 6.6.4
|
'@vue/devtools-api': 6.6.4
|
||||||
vue: 3.5.29(typescript@5.4.5)
|
vue: 3.5.29(typescript@5.4.5)
|
||||||
|
|
||||||
@@ -6627,10 +6625,10 @@ snapshots:
|
|||||||
'@cloudflare/workerd-linux-arm64': 1.20260301.1
|
'@cloudflare/workerd-linux-arm64': 1.20260301.1
|
||||||
'@cloudflare/workerd-windows-64': 1.20260301.1
|
'@cloudflare/workerd-windows-64': 1.20260301.1
|
||||||
|
|
||||||
wrangler@4.70.0:
|
wrangler@4.71.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@cloudflare/kv-asset-handler': 0.4.2
|
'@cloudflare/kv-asset-handler': 0.4.2
|
||||||
'@cloudflare/unenv-preset': 2.14.0(unenv@2.0.0-rc.24)(workerd@1.20260301.1)
|
'@cloudflare/unenv-preset': 2.15.0(unenv@2.0.0-rc.24)(workerd@1.20260301.1)
|
||||||
blake3-wasm: 2.1.5
|
blake3-wasm: 2.1.5
|
||||||
esbuild: 0.27.3
|
esbuild: 0.27.3
|
||||||
miniflare: 4.20260301.1
|
miniflare: 4.20260301.1
|
||||||
|
|||||||
@@ -171,7 +171,7 @@ const passkeyLogin = async () => {
|
|||||||
domain: location.hostname,
|
domain: location.hostname,
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
const credential = await startAuthentication(options)
|
const credential = await startAuthentication({ optionsJSON: options })
|
||||||
|
|
||||||
// Send the result to the server and return the promise.
|
// Send the result to the server and return the promise.
|
||||||
const res = await api.fetch(`/user_api/passkey/authenticate_response`, {
|
const res = await api.fetch(`/user_api/passkey/authenticate_response`, {
|
||||||
|
|||||||
@@ -71,7 +71,7 @@ const createPasskey = async () => {
|
|||||||
domain: location.hostname,
|
domain: location.hostname,
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
const credential = await startRegistration(options)
|
const credential = await startRegistration({ optionsJSON: options })
|
||||||
|
|
||||||
// Send the result to the server and return the promise.
|
// Send the result to the server and return the promise.
|
||||||
await api.fetch(`/user_api/passkey/register_response`, {
|
await api.fetch(`/user_api/passkey/register_response`, {
|
||||||
|
|||||||
+1
-1
@@ -11,7 +11,7 @@
|
|||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"wrangler": "^4.70.0"
|
"wrangler": "^4.71.0"
|
||||||
},
|
},
|
||||||
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39"
|
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,9 +4,9 @@
|
|||||||
"version": "1.5.0",
|
"version": "1.5.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^25.3.3",
|
"@types/node": "^25.3.5",
|
||||||
"vitepress": "^1.6.4",
|
"vitepress": "^1.6.4",
|
||||||
"wrangler": "^4.70.0"
|
"wrangler": "^4.71.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vitepress dev docs",
|
"dev": "vitepress dev docs",
|
||||||
|
|||||||
Generated
+23
-23
@@ -13,14 +13,14 @@ importers:
|
|||||||
version: 3.10.1
|
version: 3.10.1
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@types/node':
|
'@types/node':
|
||||||
specifier: ^25.3.3
|
specifier: ^25.3.5
|
||||||
version: 25.3.3
|
version: 25.3.5
|
||||||
vitepress:
|
vitepress:
|
||||||
specifier: ^1.6.4
|
specifier: ^1.6.4
|
||||||
version: 1.6.4(@algolia/client-search@5.49.1)(@types/node@25.3.3)(postcss@8.5.8)(search-insights@2.13.0)(typescript@5.4.5)
|
version: 1.6.4(@algolia/client-search@5.49.1)(@types/node@25.3.5)(postcss@8.5.8)(search-insights@2.13.0)(typescript@5.4.5)
|
||||||
wrangler:
|
wrangler:
|
||||||
specifier: ^4.70.0
|
specifier: ^4.71.0
|
||||||
version: 4.70.0
|
version: 4.71.0
|
||||||
|
|
||||||
packages:
|
packages:
|
||||||
|
|
||||||
@@ -121,11 +121,11 @@ packages:
|
|||||||
resolution: {integrity: sha512-SIOD2DxrRRwQ+jgzlXCqoEFiKOFqaPjhnNTGKXSRLvp1HiOvapLaFG2kEr9dYQTYe8rKrd9uvDUzmAITeNyaHQ==}
|
resolution: {integrity: sha512-SIOD2DxrRRwQ+jgzlXCqoEFiKOFqaPjhnNTGKXSRLvp1HiOvapLaFG2kEr9dYQTYe8rKrd9uvDUzmAITeNyaHQ==}
|
||||||
engines: {node: '>=18.0.0'}
|
engines: {node: '>=18.0.0'}
|
||||||
|
|
||||||
'@cloudflare/unenv-preset@2.14.0':
|
'@cloudflare/unenv-preset@2.15.0':
|
||||||
resolution: {integrity: sha512-XKAkWhi1nBdNsSEoNG9nkcbyvfUrSjSf+VYVPfOto3gLTZVc3F4g6RASCMh6IixBKCG2yDgZKQIHGKtjcnLnKg==}
|
resolution: {integrity: sha512-EGYmJaGZKWl+X8tXxcnx4v2bOZSjQeNI5dWFeXivgX9+YCT69AkzHHwlNbVpqtEUTbew8eQurpyOpeN8fg00nw==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
unenv: 2.0.0-rc.24
|
unenv: 2.0.0-rc.24
|
||||||
workerd: ^1.20260218.0
|
workerd: 1.20260301.1 || ~1.20260302.1 || ~1.20260303.1 || ~1.20260304.1 || >1.20260305.0 <2.0.0-0
|
||||||
peerDependenciesMeta:
|
peerDependenciesMeta:
|
||||||
workerd:
|
workerd:
|
||||||
optional: true
|
optional: true
|
||||||
@@ -820,8 +820,8 @@ packages:
|
|||||||
'@types/mdurl@2.0.0':
|
'@types/mdurl@2.0.0':
|
||||||
resolution: {integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==}
|
resolution: {integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==}
|
||||||
|
|
||||||
'@types/node@25.3.3':
|
'@types/node@25.3.5':
|
||||||
resolution: {integrity: sha512-DpzbrH7wIcBaJibpKo9nnSQL0MTRdnWttGyE5haGwK86xgMOkFLp7vEyfQPGLOJh5wNYiJ3V9PmUMDhV9u8kkQ==}
|
resolution: {integrity: sha512-oX8xrhvpiyRCQkG1MFchB09f+cXftgIXb3a7UUa4Y3wpmZPw5tyZGTLWhlESOLq1Rq6oDlc8npVU2/9xiCuXMA==}
|
||||||
|
|
||||||
'@types/unist@3.0.3':
|
'@types/unist@3.0.3':
|
||||||
resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
|
resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
|
||||||
@@ -1281,8 +1281,8 @@ packages:
|
|||||||
engines: {node: '>=16'}
|
engines: {node: '>=16'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
wrangler@4.70.0:
|
wrangler@4.71.0:
|
||||||
resolution: {integrity: sha512-PNDZ9o4e+B5x+1bUbz62Hmwz6G9lw+I9pnYe/AguLddJFjfIyt2cmFOUOb3eOZSoXsrhcEPUg2YidYIbVwUkfw==}
|
resolution: {integrity: sha512-j6pSGAncOLNQDRzqtp0EqzYj52CldDP7uz/C9cxVrIgqa5p+cc0b4pIwnapZZAGv9E1Loa3tmPD0aXonH7KTkw==}
|
||||||
engines: {node: '>=20.0.0'}
|
engines: {node: '>=20.0.0'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -1441,7 +1441,7 @@ snapshots:
|
|||||||
|
|
||||||
'@cloudflare/kv-asset-handler@0.4.2': {}
|
'@cloudflare/kv-asset-handler@0.4.2': {}
|
||||||
|
|
||||||
'@cloudflare/unenv-preset@2.14.0(unenv@2.0.0-rc.24)(workerd@1.20260301.1)':
|
'@cloudflare/unenv-preset@2.15.0(unenv@2.0.0-rc.24)(workerd@1.20260301.1)':
|
||||||
dependencies:
|
dependencies:
|
||||||
unenv: 2.0.0-rc.24
|
unenv: 2.0.0-rc.24
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
@@ -1903,7 +1903,7 @@ snapshots:
|
|||||||
|
|
||||||
'@types/mdurl@2.0.0': {}
|
'@types/mdurl@2.0.0': {}
|
||||||
|
|
||||||
'@types/node@25.3.3':
|
'@types/node@25.3.5':
|
||||||
dependencies:
|
dependencies:
|
||||||
undici-types: 7.18.2
|
undici-types: 7.18.2
|
||||||
|
|
||||||
@@ -1913,9 +1913,9 @@ snapshots:
|
|||||||
|
|
||||||
'@ungap/structured-clone@1.3.0': {}
|
'@ungap/structured-clone@1.3.0': {}
|
||||||
|
|
||||||
'@vitejs/plugin-vue@5.2.4(vite@5.4.21(@types/node@25.3.3))(vue@3.5.29(typescript@5.4.5))':
|
'@vitejs/plugin-vue@5.2.4(vite@5.4.21(@types/node@25.3.5))(vue@3.5.29(typescript@5.4.5))':
|
||||||
dependencies:
|
dependencies:
|
||||||
vite: 5.4.21(@types/node@25.3.3)
|
vite: 5.4.21(@types/node@25.3.5)
|
||||||
vue: 3.5.29(typescript@5.4.5)
|
vue: 3.5.29(typescript@5.4.5)
|
||||||
|
|
||||||
'@vue/compiler-core@3.5.29':
|
'@vue/compiler-core@3.5.29':
|
||||||
@@ -2435,16 +2435,16 @@ snapshots:
|
|||||||
'@types/unist': 3.0.3
|
'@types/unist': 3.0.3
|
||||||
vfile-message: 4.0.3
|
vfile-message: 4.0.3
|
||||||
|
|
||||||
vite@5.4.21(@types/node@25.3.3):
|
vite@5.4.21(@types/node@25.3.5):
|
||||||
dependencies:
|
dependencies:
|
||||||
esbuild: 0.21.5
|
esbuild: 0.21.5
|
||||||
postcss: 8.5.8
|
postcss: 8.5.8
|
||||||
rollup: 4.59.0
|
rollup: 4.59.0
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@types/node': 25.3.3
|
'@types/node': 25.3.5
|
||||||
fsevents: 2.3.3
|
fsevents: 2.3.3
|
||||||
|
|
||||||
vitepress@1.6.4(@algolia/client-search@5.49.1)(@types/node@25.3.3)(postcss@8.5.8)(search-insights@2.13.0)(typescript@5.4.5):
|
vitepress@1.6.4(@algolia/client-search@5.49.1)(@types/node@25.3.5)(postcss@8.5.8)(search-insights@2.13.0)(typescript@5.4.5):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@docsearch/css': 3.8.2
|
'@docsearch/css': 3.8.2
|
||||||
'@docsearch/js': 3.8.2(@algolia/client-search@5.49.1)(search-insights@2.13.0)
|
'@docsearch/js': 3.8.2(@algolia/client-search@5.49.1)(search-insights@2.13.0)
|
||||||
@@ -2453,7 +2453,7 @@ snapshots:
|
|||||||
'@shikijs/transformers': 2.5.0
|
'@shikijs/transformers': 2.5.0
|
||||||
'@shikijs/types': 2.5.0
|
'@shikijs/types': 2.5.0
|
||||||
'@types/markdown-it': 14.1.2
|
'@types/markdown-it': 14.1.2
|
||||||
'@vitejs/plugin-vue': 5.2.4(vite@5.4.21(@types/node@25.3.3))(vue@3.5.29(typescript@5.4.5))
|
'@vitejs/plugin-vue': 5.2.4(vite@5.4.21(@types/node@25.3.5))(vue@3.5.29(typescript@5.4.5))
|
||||||
'@vue/devtools-api': 7.7.9
|
'@vue/devtools-api': 7.7.9
|
||||||
'@vue/shared': 3.5.29
|
'@vue/shared': 3.5.29
|
||||||
'@vueuse/core': 12.8.2(typescript@5.4.5)
|
'@vueuse/core': 12.8.2(typescript@5.4.5)
|
||||||
@@ -2462,7 +2462,7 @@ snapshots:
|
|||||||
mark.js: 8.11.1
|
mark.js: 8.11.1
|
||||||
minisearch: 7.2.0
|
minisearch: 7.2.0
|
||||||
shiki: 2.5.0
|
shiki: 2.5.0
|
||||||
vite: 5.4.21(@types/node@25.3.3)
|
vite: 5.4.21(@types/node@25.3.5)
|
||||||
vue: 3.5.29(typescript@5.4.5)
|
vue: 3.5.29(typescript@5.4.5)
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
postcss: 8.5.8
|
postcss: 8.5.8
|
||||||
@@ -2511,10 +2511,10 @@ snapshots:
|
|||||||
'@cloudflare/workerd-linux-arm64': 1.20260301.1
|
'@cloudflare/workerd-linux-arm64': 1.20260301.1
|
||||||
'@cloudflare/workerd-windows-64': 1.20260301.1
|
'@cloudflare/workerd-windows-64': 1.20260301.1
|
||||||
|
|
||||||
wrangler@4.70.0:
|
wrangler@4.71.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@cloudflare/kv-asset-handler': 0.4.2
|
'@cloudflare/kv-asset-handler': 0.4.2
|
||||||
'@cloudflare/unenv-preset': 2.14.0(unenv@2.0.0-rc.24)(workerd@1.20260301.1)
|
'@cloudflare/unenv-preset': 2.15.0(unenv@2.0.0-rc.24)(workerd@1.20260301.1)
|
||||||
blake3-wasm: 2.1.5
|
blake3-wasm: 2.1.5
|
||||||
esbuild: 0.27.3
|
esbuild: 0.27.3
|
||||||
miniflare: 4.20260301.1
|
miniflare: 4.20260301.1
|
||||||
|
|||||||
+4
-5
@@ -11,19 +11,18 @@
|
|||||||
"build": "wrangler deploy --dry-run --outdir dist --minify"
|
"build": "wrangler deploy --dry-run --outdir dist --minify"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@cloudflare/workers-types": "^4.20260305.1",
|
"@cloudflare/workers-types": "^4.20260307.1",
|
||||||
"@eslint/js": "9.39.1",
|
"@eslint/js": "9.39.1",
|
||||||
"@simplewebauthn/types": "10.0.0",
|
"@types/node": "^25.3.5",
|
||||||
"@types/node": "^25.3.3",
|
|
||||||
"eslint": "9.39.1",
|
"eslint": "9.39.1",
|
||||||
"globals": "^16.5.0",
|
"globals": "^16.5.0",
|
||||||
"typescript-eslint": "^8.56.1",
|
"typescript-eslint": "^8.56.1",
|
||||||
"wrangler": "^4.70.0"
|
"wrangler": "^4.71.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@aws-sdk/client-s3": "3.888.0",
|
"@aws-sdk/client-s3": "3.888.0",
|
||||||
"@aws-sdk/s3-request-presigner": "3.888.0",
|
"@aws-sdk/s3-request-presigner": "3.888.0",
|
||||||
"@simplewebauthn/server": "10.0.1",
|
"@simplewebauthn/server": "13.2.3",
|
||||||
"hono": "^4.12.5",
|
"hono": "^4.12.5",
|
||||||
"jsonpath-plus": "^10.4.0",
|
"jsonpath-plus": "^10.4.0",
|
||||||
"mimetext": "^3.0.28",
|
"mimetext": "^3.0.28",
|
||||||
|
|||||||
Generated
+193
-111
@@ -20,8 +20,8 @@ importers:
|
|||||||
specifier: 3.888.0
|
specifier: 3.888.0
|
||||||
version: 3.888.0
|
version: 3.888.0
|
||||||
'@simplewebauthn/server':
|
'@simplewebauthn/server':
|
||||||
specifier: 10.0.1
|
specifier: 13.2.3
|
||||||
version: 10.0.1
|
version: 13.2.3
|
||||||
hono:
|
hono:
|
||||||
specifier: ^4.12.5
|
specifier: ^4.12.5
|
||||||
version: 4.12.5
|
version: 4.12.5
|
||||||
@@ -45,17 +45,14 @@ importers:
|
|||||||
version: 1.2.1
|
version: 1.2.1
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@cloudflare/workers-types':
|
'@cloudflare/workers-types':
|
||||||
specifier: ^4.20260305.1
|
specifier: ^4.20260307.1
|
||||||
version: 4.20260305.1
|
version: 4.20260307.1
|
||||||
'@eslint/js':
|
'@eslint/js':
|
||||||
specifier: 9.39.1
|
specifier: 9.39.1
|
||||||
version: 9.39.1
|
version: 9.39.1
|
||||||
'@simplewebauthn/types':
|
|
||||||
specifier: 10.0.0
|
|
||||||
version: 10.0.0
|
|
||||||
'@types/node':
|
'@types/node':
|
||||||
specifier: ^25.3.3
|
specifier: ^25.3.5
|
||||||
version: 25.3.3
|
version: 25.3.5
|
||||||
eslint:
|
eslint:
|
||||||
specifier: 9.39.1
|
specifier: 9.39.1
|
||||||
version: 9.39.1
|
version: 9.39.1
|
||||||
@@ -66,8 +63,8 @@ importers:
|
|||||||
specifier: ^8.56.1
|
specifier: ^8.56.1
|
||||||
version: 8.56.1(eslint@9.39.1)(typescript@5.4.5)
|
version: 8.56.1(eslint@9.39.1)(typescript@5.4.5)
|
||||||
wrangler:
|
wrangler:
|
||||||
specifier: ^4.70.0
|
specifier: ^4.71.0
|
||||||
version: 4.70.0(@cloudflare/workers-types@4.20260305.1)
|
version: 4.71.0(@cloudflare/workers-types@4.20260307.1)
|
||||||
|
|
||||||
packages:
|
packages:
|
||||||
|
|
||||||
@@ -210,8 +207,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-ABDSP6KsrdD+JC7qwMqUpLXqPidvfgT+Q+W8sGGuk/IBy7smgZDOdYSZLE4VBbQpH3N/zSJuslAWhL2x37Qwww==}
|
resolution: {integrity: sha512-ABDSP6KsrdD+JC7qwMqUpLXqPidvfgT+Q+W8sGGuk/IBy7smgZDOdYSZLE4VBbQpH3N/zSJuslAWhL2x37Qwww==}
|
||||||
engines: {node: '>=18.0.0'}
|
engines: {node: '>=18.0.0'}
|
||||||
|
|
||||||
'@aws-sdk/util-locate-window@3.965.4':
|
'@aws-sdk/util-locate-window@3.965.5':
|
||||||
resolution: {integrity: sha512-H1onv5SkgPBK2P6JR2MjGgbOnttoNzSPIRoeZTNPZYyaplwGg50zS3amXvXqF0/qfXpWEC9rLWU564QTB9bSog==}
|
resolution: {integrity: sha512-WhlJNNINQB+9qtLtZJcpQdgZw3SCDCpXdUJP7cToGwHbCWCnRckGlc6Bx/OhWwIYFNAn+FIydY8SZ0QmVu3xTQ==}
|
||||||
engines: {node: '>=20.0.0'}
|
engines: {node: '>=20.0.0'}
|
||||||
|
|
||||||
'@aws-sdk/util-user-agent-browser@3.887.0':
|
'@aws-sdk/util-user-agent-browser@3.887.0':
|
||||||
@@ -246,11 +243,11 @@ packages:
|
|||||||
resolution: {integrity: sha512-SIOD2DxrRRwQ+jgzlXCqoEFiKOFqaPjhnNTGKXSRLvp1HiOvapLaFG2kEr9dYQTYe8rKrd9uvDUzmAITeNyaHQ==}
|
resolution: {integrity: sha512-SIOD2DxrRRwQ+jgzlXCqoEFiKOFqaPjhnNTGKXSRLvp1HiOvapLaFG2kEr9dYQTYe8rKrd9uvDUzmAITeNyaHQ==}
|
||||||
engines: {node: '>=18.0.0'}
|
engines: {node: '>=18.0.0'}
|
||||||
|
|
||||||
'@cloudflare/unenv-preset@2.14.0':
|
'@cloudflare/unenv-preset@2.15.0':
|
||||||
resolution: {integrity: sha512-XKAkWhi1nBdNsSEoNG9nkcbyvfUrSjSf+VYVPfOto3gLTZVc3F4g6RASCMh6IixBKCG2yDgZKQIHGKtjcnLnKg==}
|
resolution: {integrity: sha512-EGYmJaGZKWl+X8tXxcnx4v2bOZSjQeNI5dWFeXivgX9+YCT69AkzHHwlNbVpqtEUTbew8eQurpyOpeN8fg00nw==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
unenv: 2.0.0-rc.24
|
unenv: 2.0.0-rc.24
|
||||||
workerd: ^1.20260218.0
|
workerd: 1.20260301.1 || ~1.20260302.1 || ~1.20260303.1 || ~1.20260304.1 || >1.20260305.0 <2.0.0-0
|
||||||
peerDependenciesMeta:
|
peerDependenciesMeta:
|
||||||
workerd:
|
workerd:
|
||||||
optional: true
|
optional: true
|
||||||
@@ -285,8 +282,8 @@ packages:
|
|||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [win32]
|
os: [win32]
|
||||||
|
|
||||||
'@cloudflare/workers-types@4.20260305.1':
|
'@cloudflare/workers-types@4.20260307.1':
|
||||||
resolution: {integrity: sha512-835BZaIcgjuYIUqgOWJSpwQxFSJ8g/X1OCZFLO7bmirM6TGmVgIGwiGItBgkjUXXCPrYzJEldsJkuFuK7ePuMw==}
|
resolution: {integrity: sha512-0PvWLVVD6Q64V/XhollYtc8H35Vxm2rZi8bkZbEr3lK+mNgd2FBBVhlZ6A3saAUq3giRF4US/UfU/3a8i1PEcg==}
|
||||||
|
|
||||||
'@cspotcode/source-map-support@0.8.1':
|
'@cspotcode/source-map-support@0.8.1':
|
||||||
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
|
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
|
||||||
@@ -461,8 +458,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
|
resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
|
||||||
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
|
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
|
||||||
|
|
||||||
'@eslint/config-array@0.21.1':
|
'@eslint/config-array@0.21.2':
|
||||||
resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==}
|
resolution: {integrity: sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
'@eslint/config-helpers@0.4.2':
|
'@eslint/config-helpers@0.4.2':
|
||||||
@@ -473,8 +470,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
|
resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
|
||||||
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.4':
|
'@eslint/eslintrc@3.3.5':
|
||||||
resolution: {integrity: sha512-4h4MVF8pmBsncB60r0wSJiIeUKTSD4m7FmTFThG8RHlsg9ajqckLm9OraguFGZE4vVdpiI1Q4+hFnisopmG6gQ==}
|
resolution: {integrity: sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
'@eslint/js@9.39.1':
|
'@eslint/js@9.39.1':
|
||||||
@@ -673,18 +670,40 @@ packages:
|
|||||||
'@peculiar/asn1-android@2.6.0':
|
'@peculiar/asn1-android@2.6.0':
|
||||||
resolution: {integrity: sha512-cBRCKtYPF7vJGN76/yG8VbxRcHLPF3HnkoHhKOZeHpoVtbMYfY9ROKtH3DtYUY9m8uI1Mh47PRhHf2hSK3xcSQ==}
|
resolution: {integrity: sha512-cBRCKtYPF7vJGN76/yG8VbxRcHLPF3HnkoHhKOZeHpoVtbMYfY9ROKtH3DtYUY9m8uI1Mh47PRhHf2hSK3xcSQ==}
|
||||||
|
|
||||||
|
'@peculiar/asn1-cms@2.6.1':
|
||||||
|
resolution: {integrity: sha512-vdG4fBF6Lkirkcl53q6eOdn3XYKt+kJTG59edgRZORlg/3atWWEReRCx5rYE1ZzTTX6vLK5zDMjHh7vbrcXGtw==}
|
||||||
|
|
||||||
|
'@peculiar/asn1-csr@2.6.1':
|
||||||
|
resolution: {integrity: sha512-WRWnKfIocHyzFYQTka8O/tXCiBquAPSrRjXbOkHbO4qdmS6loffCEGs+rby6WxxGdJCuunnhS2duHURhjyio6w==}
|
||||||
|
|
||||||
'@peculiar/asn1-ecc@2.6.1':
|
'@peculiar/asn1-ecc@2.6.1':
|
||||||
resolution: {integrity: sha512-+Vqw8WFxrtDIN5ehUdvlN2m73exS2JVG0UAyfVB31gIfor3zWEAQPD+K9ydCxaj3MLen9k0JhKpu9LqviuCE1g==}
|
resolution: {integrity: sha512-+Vqw8WFxrtDIN5ehUdvlN2m73exS2JVG0UAyfVB31gIfor3zWEAQPD+K9ydCxaj3MLen9k0JhKpu9LqviuCE1g==}
|
||||||
|
|
||||||
|
'@peculiar/asn1-pfx@2.6.1':
|
||||||
|
resolution: {integrity: sha512-nB5jVQy3MAAWvq0KY0R2JUZG8bO/bTLpnwyOzXyEh/e54ynGTatAR+csOnXkkVD9AFZ2uL8Z7EV918+qB1qDvw==}
|
||||||
|
|
||||||
|
'@peculiar/asn1-pkcs8@2.6.1':
|
||||||
|
resolution: {integrity: sha512-JB5iQ9Izn5yGMw3ZG4Nw3Xn/hb/G38GYF3lf7WmJb8JZUydhVGEjK/ZlFSWhnlB7K/4oqEs8HnfFIKklhR58Tw==}
|
||||||
|
|
||||||
|
'@peculiar/asn1-pkcs9@2.6.1':
|
||||||
|
resolution: {integrity: sha512-5EV8nZoMSxeWmcxWmmcolg22ojZRgJg+Y9MX2fnE2bGRo5KQLqV5IL9kdSQDZxlHz95tHvIq9F//bvL1OeNILw==}
|
||||||
|
|
||||||
'@peculiar/asn1-rsa@2.6.1':
|
'@peculiar/asn1-rsa@2.6.1':
|
||||||
resolution: {integrity: sha512-1nVMEh46SElUt5CB3RUTV4EG/z7iYc7EoaDY5ECwganibQPkZ/Y2eMsTKB/LeyrUJ+W/tKoD9WUqIy8vB+CEdA==}
|
resolution: {integrity: sha512-1nVMEh46SElUt5CB3RUTV4EG/z7iYc7EoaDY5ECwganibQPkZ/Y2eMsTKB/LeyrUJ+W/tKoD9WUqIy8vB+CEdA==}
|
||||||
|
|
||||||
'@peculiar/asn1-schema@2.6.0':
|
'@peculiar/asn1-schema@2.6.0':
|
||||||
resolution: {integrity: sha512-xNLYLBFTBKkCzEZIw842BxytQQATQv+lDTCEMZ8C196iJcJJMBUZxrhSTxLaohMyKK8QlzRNTRkUmanucnDSqg==}
|
resolution: {integrity: sha512-xNLYLBFTBKkCzEZIw842BxytQQATQv+lDTCEMZ8C196iJcJJMBUZxrhSTxLaohMyKK8QlzRNTRkUmanucnDSqg==}
|
||||||
|
|
||||||
|
'@peculiar/asn1-x509-attr@2.6.1':
|
||||||
|
resolution: {integrity: sha512-tlW6cxoHwgcQghnJwv3YS+9OO1737zgPogZ+CgWRUK4roEwIPzRH4JEiG770xe5HX2ATfCpmX60gurfWIF9dcQ==}
|
||||||
|
|
||||||
'@peculiar/asn1-x509@2.6.1':
|
'@peculiar/asn1-x509@2.6.1':
|
||||||
resolution: {integrity: sha512-O9jT5F1A2+t3r7C4VT7LYGXqkGLK7Kj1xFpz7U0isPrubwU5PbDoyYtx6MiGst29yq7pXN5vZbQFKRCP+lLZlA==}
|
resolution: {integrity: sha512-O9jT5F1A2+t3r7C4VT7LYGXqkGLK7Kj1xFpz7U0isPrubwU5PbDoyYtx6MiGst29yq7pXN5vZbQFKRCP+lLZlA==}
|
||||||
|
|
||||||
|
'@peculiar/x509@1.14.3':
|
||||||
|
resolution: {integrity: sha512-C2Xj8FZ0uHWeCXXqX5B4/gVFQmtSkiuOolzAgutjTfseNOHT3pUjljDZsTSxXFGgio54bCzVFqmEOUrIVk8RDA==}
|
||||||
|
engines: {node: '>=20.0.0'}
|
||||||
|
|
||||||
'@poppinss/colors@4.1.6':
|
'@poppinss/colors@4.1.6':
|
||||||
resolution: {integrity: sha512-H9xkIdFswbS8n1d6vmRd8+c10t2Qe+rZITbbDHHkQixH5+2x1FDGmi/0K+WgWiqQFKPSlIYB7jlH6Kpfn6Fleg==}
|
resolution: {integrity: sha512-H9xkIdFswbS8n1d6vmRd8+c10t2Qe+rZITbbDHHkQixH5+2x1FDGmi/0K+WgWiqQFKPSlIYB7jlH6Kpfn6Fleg==}
|
||||||
|
|
||||||
@@ -704,14 +723,10 @@ packages:
|
|||||||
'@selderee/plugin-htmlparser2@0.11.0':
|
'@selderee/plugin-htmlparser2@0.11.0':
|
||||||
resolution: {integrity: sha512-P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ==}
|
resolution: {integrity: sha512-P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ==}
|
||||||
|
|
||||||
'@simplewebauthn/server@10.0.1':
|
'@simplewebauthn/server@13.2.3':
|
||||||
resolution: {integrity: sha512-djNWcRn+H+6zvihBFJSpG3fzb0NQS9c/Mw5dYOtZ9H+oDw8qn9Htqxt4cpqRvSOAfwqP7rOvE9rwqVaoGGc3hg==}
|
resolution: {integrity: sha512-ZhcVBOw63birYx9jVfbhK6rTehckVes8PeWV324zpmdxr0BUfylospwMzcrxrdMcOi48MHWj2LCA+S528LnGvg==}
|
||||||
engines: {node: '>=20.0.0'}
|
engines: {node: '>=20.0.0'}
|
||||||
|
|
||||||
'@simplewebauthn/types@10.0.0':
|
|
||||||
resolution: {integrity: sha512-SFXke7xkgPRowY2E+8djKbdEznTVnD5R6GO7GPTthpHrokLvNKw8C3lFZypTxLI7KkCfGPfhtqB3d7OVGGa9jQ==}
|
|
||||||
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
|
|
||||||
|
|
||||||
'@sindresorhus/is@7.2.0':
|
'@sindresorhus/is@7.2.0':
|
||||||
resolution: {integrity: sha512-P1Cz1dWaFfR4IR+U13mqqiGsLFf1KbayybWwdd2vfctdV6hDpUkgCY0nKOLLTMSoRd/jJNjtbqzf13K8DCCXQw==}
|
resolution: {integrity: sha512-P1Cz1dWaFfR4IR+U13mqqiGsLFf1KbayybWwdd2vfctdV6hDpUkgCY0nKOLLTMSoRd/jJNjtbqzf13K8DCCXQw==}
|
||||||
engines: {node: '>=18'}
|
engines: {node: '>=18'}
|
||||||
@@ -732,8 +747,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-IRTkd6ps0ru+lTWnfnsbXzW80A8Od8p3pYiZnW98K2Hb20rqfsX7VTlfUwhrcOeSSy68Gn9WBofwPuw3e5CCsg==}
|
resolution: {integrity: sha512-IRTkd6ps0ru+lTWnfnsbXzW80A8Od8p3pYiZnW98K2Hb20rqfsX7VTlfUwhrcOeSSy68Gn9WBofwPuw3e5CCsg==}
|
||||||
engines: {node: '>=18.0.0'}
|
engines: {node: '>=18.0.0'}
|
||||||
|
|
||||||
'@smithy/core@3.23.8':
|
'@smithy/core@3.23.9':
|
||||||
resolution: {integrity: sha512-f7uPeBi7ehmLT4YF2u9j3qx6lSnurG1DLXOsTtJrIRNDF7VXio4BGHQ+SQteN/BrUVudbkuL4v7oOsRCzq4BqA==}
|
resolution: {integrity: sha512-1Vcut4LEL9HZsdpI0vFiRYIsaoPwZLjAxnVQDUMQK8beMS+EYPLDQCXtbzfxmM5GzSgjfe2Q9M7WaXwIMQllyQ==}
|
||||||
engines: {node: '>=18.0.0'}
|
engines: {node: '>=18.0.0'}
|
||||||
|
|
||||||
'@smithy/credential-provider-imds@4.2.11':
|
'@smithy/credential-provider-imds@4.2.11':
|
||||||
@@ -796,12 +811,12 @@ packages:
|
|||||||
resolution: {integrity: sha512-UvIfKYAKhCzr4p6jFevPlKhQwyQwlJ6IeKLDhmV1PlYfcW3RL4ROjNEDtSik4NYMi9kDkH7eSwyTP3vNJ/u/Dw==}
|
resolution: {integrity: sha512-UvIfKYAKhCzr4p6jFevPlKhQwyQwlJ6IeKLDhmV1PlYfcW3RL4ROjNEDtSik4NYMi9kDkH7eSwyTP3vNJ/u/Dw==}
|
||||||
engines: {node: '>=18.0.0'}
|
engines: {node: '>=18.0.0'}
|
||||||
|
|
||||||
'@smithy/middleware-endpoint@4.4.22':
|
'@smithy/middleware-endpoint@4.4.23':
|
||||||
resolution: {integrity: sha512-sc81w1o4Jy+/MAQlY3sQ8C7CmSpcvIi3TAzXblUv2hjG11BBSJi/Cw8vDx5BxMxapuH2I+Gc+45vWsgU07WZRQ==}
|
resolution: {integrity: sha512-UEFIejZy54T1EJn2aWJ45voB7RP2T+IRzUqocIdM6GFFa5ClZncakYJfcYnoXt3UsQrZZ9ZRauGm77l9UCbBLw==}
|
||||||
engines: {node: '>=18.0.0'}
|
engines: {node: '>=18.0.0'}
|
||||||
|
|
||||||
'@smithy/middleware-retry@4.4.39':
|
'@smithy/middleware-retry@4.4.40':
|
||||||
resolution: {integrity: sha512-MCVCxaCzuZgiHtHGV2Ke44nh6t4+8/tO+rTYOzrr2+G4nMLU/qbzNCWKBX54lyEaVcGQrfOJiG2f8imtiw+nIQ==}
|
resolution: {integrity: sha512-YhEMakG1Ae57FajERdHNZ4ShOPIY7DsgV+ZoAxo/5BT0KIe+f6DDU2rtIymNNFIj22NJfeeI6LWIifrwM0f+rA==}
|
||||||
engines: {node: '>=18.0.0'}
|
engines: {node: '>=18.0.0'}
|
||||||
|
|
||||||
'@smithy/middleware-serde@4.2.12':
|
'@smithy/middleware-serde@4.2.12':
|
||||||
@@ -848,8 +863,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-V1L6N9aKOBAN4wEHLyqjLBnAz13mtILU0SeDrjOaIZEeN6IFa6DxwRt1NNpOdmSpQUfkBj0qeD3m6P77uzMhgQ==}
|
resolution: {integrity: sha512-V1L6N9aKOBAN4wEHLyqjLBnAz13mtILU0SeDrjOaIZEeN6IFa6DxwRt1NNpOdmSpQUfkBj0qeD3m6P77uzMhgQ==}
|
||||||
engines: {node: '>=18.0.0'}
|
engines: {node: '>=18.0.0'}
|
||||||
|
|
||||||
'@smithy/smithy-client@4.12.2':
|
'@smithy/smithy-client@4.12.3':
|
||||||
resolution: {integrity: sha512-HezY3UuG0k4T+4xhFKctLXCA5N2oN+Rtv+mmL8Gt7YmsUY2yhmcLyW75qrSzldfj75IsCW/4UhY3s20KcFnZqA==}
|
resolution: {integrity: sha512-7k4UxjSpHmPN2AxVhvIazRSzFQjWnud3sOsXcFStzagww17j1cFQYqTSiQ8xuYK3vKLR1Ni8FzuT3VlKr3xCNw==}
|
||||||
engines: {node: '>=18.0.0'}
|
engines: {node: '>=18.0.0'}
|
||||||
|
|
||||||
'@smithy/types@4.13.0':
|
'@smithy/types@4.13.0':
|
||||||
@@ -884,12 +899,12 @@ packages:
|
|||||||
resolution: {integrity: sha512-dWU03V3XUprJwaUIFVv4iOnS1FC9HnMHDfUrlNDSh4315v0cWyaIErP8KiqGVbf5z+JupoVpNM7ZB3jFiTejvQ==}
|
resolution: {integrity: sha512-dWU03V3XUprJwaUIFVv4iOnS1FC9HnMHDfUrlNDSh4315v0cWyaIErP8KiqGVbf5z+JupoVpNM7ZB3jFiTejvQ==}
|
||||||
engines: {node: '>=18.0.0'}
|
engines: {node: '>=18.0.0'}
|
||||||
|
|
||||||
'@smithy/util-defaults-mode-browser@4.3.38':
|
'@smithy/util-defaults-mode-browser@4.3.39':
|
||||||
resolution: {integrity: sha512-c8P1mFLNxcsdAMabB8/VUQUbWzFmgujWi4bAXSggcqLYPc8V4U5abqFqOyn+dK4YT+q8UyCVkTO8807t4t2syA==}
|
resolution: {integrity: sha512-ui7/Ho/+VHqS7Km2wBw4/Ab4RktoiSshgcgpJzC4keFPs6tLJS4IQwbeahxQS3E/w98uq6E1mirCH/id9xIXeQ==}
|
||||||
engines: {node: '>=18.0.0'}
|
engines: {node: '>=18.0.0'}
|
||||||
|
|
||||||
'@smithy/util-defaults-mode-node@4.2.41':
|
'@smithy/util-defaults-mode-node@4.2.42':
|
||||||
resolution: {integrity: sha512-/UG+9MT3UZAR0fLzOtMJMfWGcjjHvgggq924x/CRy8vRbL+yFf3Z6vETlvq8vDH92+31P/1gSOFoo7303wN8WQ==}
|
resolution: {integrity: sha512-QDA84CWNe8Akpj15ofLO+1N3Rfg8qa2K5uX0y6HnOp4AnRYRgWrKx/xzbYNbVF9ZsyJUYOfcoaN3y93wA/QJ2A==}
|
||||||
engines: {node: '>=18.0.0'}
|
engines: {node: '>=18.0.0'}
|
||||||
|
|
||||||
'@smithy/util-endpoints@3.3.2':
|
'@smithy/util-endpoints@3.3.2':
|
||||||
@@ -947,8 +962,8 @@ packages:
|
|||||||
'@types/json-schema@7.0.15':
|
'@types/json-schema@7.0.15':
|
||||||
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
|
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
|
||||||
|
|
||||||
'@types/node@25.3.3':
|
'@types/node@25.3.5':
|
||||||
resolution: {integrity: sha512-DpzbrH7wIcBaJibpKo9nnSQL0MTRdnWttGyE5haGwK86xgMOkFLp7vEyfQPGLOJh5wNYiJ3V9PmUMDhV9u8kkQ==}
|
resolution: {integrity: sha512-oX8xrhvpiyRCQkG1MFchB09f+cXftgIXb3a7UUa4Y3wpmZPw5tyZGTLWhlESOLq1Rq6oDlc8npVU2/9xiCuXMA==}
|
||||||
|
|
||||||
'@types/uuid@9.0.8':
|
'@types/uuid@9.0.8':
|
||||||
resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==}
|
resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==}
|
||||||
@@ -1094,9 +1109,6 @@ packages:
|
|||||||
core-js-pure@3.48.0:
|
core-js-pure@3.48.0:
|
||||||
resolution: {integrity: sha512-1slJgk89tWC51HQ1AEqG+s2VuwpTRr8ocu4n20QUcH1v9lAN0RXen0Q0AABa/DK1I7RrNWLucplOHMx8hfTGTw==}
|
resolution: {integrity: sha512-1slJgk89tWC51HQ1AEqG+s2VuwpTRr8ocu4n20QUcH1v9lAN0RXen0Q0AABa/DK1I7RrNWLucplOHMx8hfTGTw==}
|
||||||
|
|
||||||
cross-fetch@4.1.0:
|
|
||||||
resolution: {integrity: sha512-uKm5PU+MHTootlWEY+mZ4vvXoCn4fLQxT9dSc1sXVMSFkINTJVN8cAQROpwcKm8bJ/c7rgZVIBWzH5T78sNZZw==}
|
|
||||||
|
|
||||||
cross-spawn@7.0.6:
|
cross-spawn@7.0.6:
|
||||||
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
|
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
|
||||||
engines: {node: '>= 8'}
|
engines: {node: '>= 8'}
|
||||||
@@ -1476,6 +1488,9 @@ packages:
|
|||||||
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
|
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
|
|
||||||
|
reflect-metadata@0.2.2:
|
||||||
|
resolution: {integrity: sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==}
|
||||||
|
|
||||||
resend@6.9.3:
|
resend@6.9.3:
|
||||||
resolution: {integrity: sha512-GRXjH9XZBJA+daH7bBVDuTShr22iWCxXA8P7t495G4dM/RC+d+3gHBK/6bz9K6Vpcq11zRQKmD+B+jECwQlyGQ==}
|
resolution: {integrity: sha512-GRXjH9XZBJA+daH7bBVDuTShr22iWCxXA8P7t495G4dM/RC+d+3gHBK/6bz9K6Vpcq11zRQKmD+B+jECwQlyGQ==}
|
||||||
engines: {node: '>=20'}
|
engines: {node: '>=20'}
|
||||||
@@ -1558,9 +1573,16 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
typescript: '>=4.8.4'
|
typescript: '>=4.8.4'
|
||||||
|
|
||||||
|
tslib@1.14.1:
|
||||||
|
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
|
||||||
|
|
||||||
tslib@2.8.1:
|
tslib@2.8.1:
|
||||||
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
||||||
|
|
||||||
|
tsyringe@4.10.0:
|
||||||
|
resolution: {integrity: sha512-axr3IdNuVIxnaK5XGEUFTu3YmAQ6lllgrvqfEoR16g/HGnYY/6We4oWENtAnzK6/LpJ2ur9PAb80RBt7/U4ugw==}
|
||||||
|
engines: {node: '>= 6.0.0'}
|
||||||
|
|
||||||
type-check@0.4.0:
|
type-check@0.4.0:
|
||||||
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
||||||
engines: {node: '>= 0.8.0'}
|
engines: {node: '>= 0.8.0'}
|
||||||
@@ -1621,8 +1643,8 @@ packages:
|
|||||||
engines: {node: '>=16'}
|
engines: {node: '>=16'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
wrangler@4.70.0:
|
wrangler@4.71.0:
|
||||||
resolution: {integrity: sha512-PNDZ9o4e+B5x+1bUbz62Hmwz6G9lw+I9pnYe/AguLddJFjfIyt2cmFOUOb3eOZSoXsrhcEPUg2YidYIbVwUkfw==}
|
resolution: {integrity: sha512-j6pSGAncOLNQDRzqtp0EqzYj52CldDP7uz/C9cxVrIgqa5p+cc0b4pIwnapZZAGv9E1Loa3tmPD0aXonH7KTkw==}
|
||||||
engines: {node: '>=20.0.0'}
|
engines: {node: '>=20.0.0'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -1672,7 +1694,7 @@ snapshots:
|
|||||||
'@aws-crypto/supports-web-crypto': 5.2.0
|
'@aws-crypto/supports-web-crypto': 5.2.0
|
||||||
'@aws-crypto/util': 5.2.0
|
'@aws-crypto/util': 5.2.0
|
||||||
'@aws-sdk/types': 3.887.0
|
'@aws-sdk/types': 3.887.0
|
||||||
'@aws-sdk/util-locate-window': 3.965.4
|
'@aws-sdk/util-locate-window': 3.965.5
|
||||||
'@smithy/util-utf8': 2.3.0
|
'@smithy/util-utf8': 2.3.0
|
||||||
tslib: 2.8.1
|
tslib: 2.8.1
|
||||||
|
|
||||||
@@ -1682,7 +1704,7 @@ snapshots:
|
|||||||
'@aws-crypto/supports-web-crypto': 5.2.0
|
'@aws-crypto/supports-web-crypto': 5.2.0
|
||||||
'@aws-crypto/util': 5.2.0
|
'@aws-crypto/util': 5.2.0
|
||||||
'@aws-sdk/types': 3.887.0
|
'@aws-sdk/types': 3.887.0
|
||||||
'@aws-sdk/util-locate-window': 3.965.4
|
'@aws-sdk/util-locate-window': 3.965.5
|
||||||
'@smithy/util-utf8': 2.3.0
|
'@smithy/util-utf8': 2.3.0
|
||||||
tslib: 2.8.1
|
tslib: 2.8.1
|
||||||
|
|
||||||
@@ -1727,7 +1749,7 @@ snapshots:
|
|||||||
'@aws-sdk/util-user-agent-node': 3.888.0
|
'@aws-sdk/util-user-agent-node': 3.888.0
|
||||||
'@aws-sdk/xml-builder': 3.887.0
|
'@aws-sdk/xml-builder': 3.887.0
|
||||||
'@smithy/config-resolver': 4.4.10
|
'@smithy/config-resolver': 4.4.10
|
||||||
'@smithy/core': 3.23.8
|
'@smithy/core': 3.23.9
|
||||||
'@smithy/eventstream-serde-browser': 4.2.11
|
'@smithy/eventstream-serde-browser': 4.2.11
|
||||||
'@smithy/eventstream-serde-config-resolver': 4.3.11
|
'@smithy/eventstream-serde-config-resolver': 4.3.11
|
||||||
'@smithy/eventstream-serde-node': 4.2.11
|
'@smithy/eventstream-serde-node': 4.2.11
|
||||||
@@ -1738,21 +1760,21 @@ snapshots:
|
|||||||
'@smithy/invalid-dependency': 4.2.11
|
'@smithy/invalid-dependency': 4.2.11
|
||||||
'@smithy/md5-js': 4.2.11
|
'@smithy/md5-js': 4.2.11
|
||||||
'@smithy/middleware-content-length': 4.2.11
|
'@smithy/middleware-content-length': 4.2.11
|
||||||
'@smithy/middleware-endpoint': 4.4.22
|
'@smithy/middleware-endpoint': 4.4.23
|
||||||
'@smithy/middleware-retry': 4.4.39
|
'@smithy/middleware-retry': 4.4.40
|
||||||
'@smithy/middleware-serde': 4.2.12
|
'@smithy/middleware-serde': 4.2.12
|
||||||
'@smithy/middleware-stack': 4.2.11
|
'@smithy/middleware-stack': 4.2.11
|
||||||
'@smithy/node-config-provider': 4.3.11
|
'@smithy/node-config-provider': 4.3.11
|
||||||
'@smithy/node-http-handler': 4.4.14
|
'@smithy/node-http-handler': 4.4.14
|
||||||
'@smithy/protocol-http': 5.3.11
|
'@smithy/protocol-http': 5.3.11
|
||||||
'@smithy/smithy-client': 4.12.2
|
'@smithy/smithy-client': 4.12.3
|
||||||
'@smithy/types': 4.13.0
|
'@smithy/types': 4.13.0
|
||||||
'@smithy/url-parser': 4.2.11
|
'@smithy/url-parser': 4.2.11
|
||||||
'@smithy/util-base64': 4.3.2
|
'@smithy/util-base64': 4.3.2
|
||||||
'@smithy/util-body-length-browser': 4.2.2
|
'@smithy/util-body-length-browser': 4.2.2
|
||||||
'@smithy/util-body-length-node': 4.2.3
|
'@smithy/util-body-length-node': 4.2.3
|
||||||
'@smithy/util-defaults-mode-browser': 4.3.38
|
'@smithy/util-defaults-mode-browser': 4.3.39
|
||||||
'@smithy/util-defaults-mode-node': 4.2.41
|
'@smithy/util-defaults-mode-node': 4.2.42
|
||||||
'@smithy/util-endpoints': 3.3.2
|
'@smithy/util-endpoints': 3.3.2
|
||||||
'@smithy/util-middleware': 4.2.11
|
'@smithy/util-middleware': 4.2.11
|
||||||
'@smithy/util-retry': 4.2.11
|
'@smithy/util-retry': 4.2.11
|
||||||
@@ -1780,26 +1802,26 @@ snapshots:
|
|||||||
'@aws-sdk/util-user-agent-browser': 3.887.0
|
'@aws-sdk/util-user-agent-browser': 3.887.0
|
||||||
'@aws-sdk/util-user-agent-node': 3.888.0
|
'@aws-sdk/util-user-agent-node': 3.888.0
|
||||||
'@smithy/config-resolver': 4.4.10
|
'@smithy/config-resolver': 4.4.10
|
||||||
'@smithy/core': 3.23.8
|
'@smithy/core': 3.23.9
|
||||||
'@smithy/fetch-http-handler': 5.3.13
|
'@smithy/fetch-http-handler': 5.3.13
|
||||||
'@smithy/hash-node': 4.2.11
|
'@smithy/hash-node': 4.2.11
|
||||||
'@smithy/invalid-dependency': 4.2.11
|
'@smithy/invalid-dependency': 4.2.11
|
||||||
'@smithy/middleware-content-length': 4.2.11
|
'@smithy/middleware-content-length': 4.2.11
|
||||||
'@smithy/middleware-endpoint': 4.4.22
|
'@smithy/middleware-endpoint': 4.4.23
|
||||||
'@smithy/middleware-retry': 4.4.39
|
'@smithy/middleware-retry': 4.4.40
|
||||||
'@smithy/middleware-serde': 4.2.12
|
'@smithy/middleware-serde': 4.2.12
|
||||||
'@smithy/middleware-stack': 4.2.11
|
'@smithy/middleware-stack': 4.2.11
|
||||||
'@smithy/node-config-provider': 4.3.11
|
'@smithy/node-config-provider': 4.3.11
|
||||||
'@smithy/node-http-handler': 4.4.14
|
'@smithy/node-http-handler': 4.4.14
|
||||||
'@smithy/protocol-http': 5.3.11
|
'@smithy/protocol-http': 5.3.11
|
||||||
'@smithy/smithy-client': 4.12.2
|
'@smithy/smithy-client': 4.12.3
|
||||||
'@smithy/types': 4.13.0
|
'@smithy/types': 4.13.0
|
||||||
'@smithy/url-parser': 4.2.11
|
'@smithy/url-parser': 4.2.11
|
||||||
'@smithy/util-base64': 4.3.2
|
'@smithy/util-base64': 4.3.2
|
||||||
'@smithy/util-body-length-browser': 4.2.2
|
'@smithy/util-body-length-browser': 4.2.2
|
||||||
'@smithy/util-body-length-node': 4.2.3
|
'@smithy/util-body-length-node': 4.2.3
|
||||||
'@smithy/util-defaults-mode-browser': 4.3.38
|
'@smithy/util-defaults-mode-browser': 4.3.39
|
||||||
'@smithy/util-defaults-mode-node': 4.2.41
|
'@smithy/util-defaults-mode-node': 4.2.42
|
||||||
'@smithy/util-endpoints': 3.3.2
|
'@smithy/util-endpoints': 3.3.2
|
||||||
'@smithy/util-middleware': 4.2.11
|
'@smithy/util-middleware': 4.2.11
|
||||||
'@smithy/util-retry': 4.2.11
|
'@smithy/util-retry': 4.2.11
|
||||||
@@ -1812,12 +1834,12 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
'@aws-sdk/types': 3.887.0
|
'@aws-sdk/types': 3.887.0
|
||||||
'@aws-sdk/xml-builder': 3.887.0
|
'@aws-sdk/xml-builder': 3.887.0
|
||||||
'@smithy/core': 3.23.8
|
'@smithy/core': 3.23.9
|
||||||
'@smithy/node-config-provider': 4.3.11
|
'@smithy/node-config-provider': 4.3.11
|
||||||
'@smithy/property-provider': 4.2.11
|
'@smithy/property-provider': 4.2.11
|
||||||
'@smithy/protocol-http': 5.3.11
|
'@smithy/protocol-http': 5.3.11
|
||||||
'@smithy/signature-v4': 5.3.11
|
'@smithy/signature-v4': 5.3.11
|
||||||
'@smithy/smithy-client': 4.12.2
|
'@smithy/smithy-client': 4.12.3
|
||||||
'@smithy/types': 4.13.0
|
'@smithy/types': 4.13.0
|
||||||
'@smithy/util-base64': 4.3.2
|
'@smithy/util-base64': 4.3.2
|
||||||
'@smithy/util-body-length-browser': 4.2.2
|
'@smithy/util-body-length-browser': 4.2.2
|
||||||
@@ -1842,7 +1864,7 @@ snapshots:
|
|||||||
'@smithy/node-http-handler': 4.4.14
|
'@smithy/node-http-handler': 4.4.14
|
||||||
'@smithy/property-provider': 4.2.11
|
'@smithy/property-provider': 4.2.11
|
||||||
'@smithy/protocol-http': 5.3.11
|
'@smithy/protocol-http': 5.3.11
|
||||||
'@smithy/smithy-client': 4.12.2
|
'@smithy/smithy-client': 4.12.3
|
||||||
'@smithy/types': 4.13.0
|
'@smithy/types': 4.13.0
|
||||||
'@smithy/util-stream': 4.5.17
|
'@smithy/util-stream': 4.5.17
|
||||||
tslib: 2.8.1
|
tslib: 2.8.1
|
||||||
@@ -1980,11 +2002,11 @@ snapshots:
|
|||||||
'@aws-sdk/core': 3.888.0
|
'@aws-sdk/core': 3.888.0
|
||||||
'@aws-sdk/types': 3.887.0
|
'@aws-sdk/types': 3.887.0
|
||||||
'@aws-sdk/util-arn-parser': 3.873.0
|
'@aws-sdk/util-arn-parser': 3.873.0
|
||||||
'@smithy/core': 3.23.8
|
'@smithy/core': 3.23.9
|
||||||
'@smithy/node-config-provider': 4.3.11
|
'@smithy/node-config-provider': 4.3.11
|
||||||
'@smithy/protocol-http': 5.3.11
|
'@smithy/protocol-http': 5.3.11
|
||||||
'@smithy/signature-v4': 5.3.11
|
'@smithy/signature-v4': 5.3.11
|
||||||
'@smithy/smithy-client': 4.12.2
|
'@smithy/smithy-client': 4.12.3
|
||||||
'@smithy/types': 4.13.0
|
'@smithy/types': 4.13.0
|
||||||
'@smithy/util-config-provider': 4.2.2
|
'@smithy/util-config-provider': 4.2.2
|
||||||
'@smithy/util-middleware': 4.2.11
|
'@smithy/util-middleware': 4.2.11
|
||||||
@@ -2003,7 +2025,7 @@ snapshots:
|
|||||||
'@aws-sdk/core': 3.888.0
|
'@aws-sdk/core': 3.888.0
|
||||||
'@aws-sdk/types': 3.887.0
|
'@aws-sdk/types': 3.887.0
|
||||||
'@aws-sdk/util-endpoints': 3.887.0
|
'@aws-sdk/util-endpoints': 3.887.0
|
||||||
'@smithy/core': 3.23.8
|
'@smithy/core': 3.23.9
|
||||||
'@smithy/protocol-http': 5.3.11
|
'@smithy/protocol-http': 5.3.11
|
||||||
'@smithy/types': 4.13.0
|
'@smithy/types': 4.13.0
|
||||||
tslib: 2.8.1
|
tslib: 2.8.1
|
||||||
@@ -2023,26 +2045,26 @@ snapshots:
|
|||||||
'@aws-sdk/util-user-agent-browser': 3.887.0
|
'@aws-sdk/util-user-agent-browser': 3.887.0
|
||||||
'@aws-sdk/util-user-agent-node': 3.888.0
|
'@aws-sdk/util-user-agent-node': 3.888.0
|
||||||
'@smithy/config-resolver': 4.4.10
|
'@smithy/config-resolver': 4.4.10
|
||||||
'@smithy/core': 3.23.8
|
'@smithy/core': 3.23.9
|
||||||
'@smithy/fetch-http-handler': 5.3.13
|
'@smithy/fetch-http-handler': 5.3.13
|
||||||
'@smithy/hash-node': 4.2.11
|
'@smithy/hash-node': 4.2.11
|
||||||
'@smithy/invalid-dependency': 4.2.11
|
'@smithy/invalid-dependency': 4.2.11
|
||||||
'@smithy/middleware-content-length': 4.2.11
|
'@smithy/middleware-content-length': 4.2.11
|
||||||
'@smithy/middleware-endpoint': 4.4.22
|
'@smithy/middleware-endpoint': 4.4.23
|
||||||
'@smithy/middleware-retry': 4.4.39
|
'@smithy/middleware-retry': 4.4.40
|
||||||
'@smithy/middleware-serde': 4.2.12
|
'@smithy/middleware-serde': 4.2.12
|
||||||
'@smithy/middleware-stack': 4.2.11
|
'@smithy/middleware-stack': 4.2.11
|
||||||
'@smithy/node-config-provider': 4.3.11
|
'@smithy/node-config-provider': 4.3.11
|
||||||
'@smithy/node-http-handler': 4.4.14
|
'@smithy/node-http-handler': 4.4.14
|
||||||
'@smithy/protocol-http': 5.3.11
|
'@smithy/protocol-http': 5.3.11
|
||||||
'@smithy/smithy-client': 4.12.2
|
'@smithy/smithy-client': 4.12.3
|
||||||
'@smithy/types': 4.13.0
|
'@smithy/types': 4.13.0
|
||||||
'@smithy/url-parser': 4.2.11
|
'@smithy/url-parser': 4.2.11
|
||||||
'@smithy/util-base64': 4.3.2
|
'@smithy/util-base64': 4.3.2
|
||||||
'@smithy/util-body-length-browser': 4.2.2
|
'@smithy/util-body-length-browser': 4.2.2
|
||||||
'@smithy/util-body-length-node': 4.2.3
|
'@smithy/util-body-length-node': 4.2.3
|
||||||
'@smithy/util-defaults-mode-browser': 4.3.38
|
'@smithy/util-defaults-mode-browser': 4.3.39
|
||||||
'@smithy/util-defaults-mode-node': 4.2.41
|
'@smithy/util-defaults-mode-node': 4.2.42
|
||||||
'@smithy/util-endpoints': 3.3.2
|
'@smithy/util-endpoints': 3.3.2
|
||||||
'@smithy/util-middleware': 4.2.11
|
'@smithy/util-middleware': 4.2.11
|
||||||
'@smithy/util-retry': 4.2.11
|
'@smithy/util-retry': 4.2.11
|
||||||
@@ -2065,9 +2087,9 @@ snapshots:
|
|||||||
'@aws-sdk/signature-v4-multi-region': 3.888.0
|
'@aws-sdk/signature-v4-multi-region': 3.888.0
|
||||||
'@aws-sdk/types': 3.887.0
|
'@aws-sdk/types': 3.887.0
|
||||||
'@aws-sdk/util-format-url': 3.887.0
|
'@aws-sdk/util-format-url': 3.887.0
|
||||||
'@smithy/middleware-endpoint': 4.4.22
|
'@smithy/middleware-endpoint': 4.4.23
|
||||||
'@smithy/protocol-http': 5.3.11
|
'@smithy/protocol-http': 5.3.11
|
||||||
'@smithy/smithy-client': 4.12.2
|
'@smithy/smithy-client': 4.12.3
|
||||||
'@smithy/types': 4.13.0
|
'@smithy/types': 4.13.0
|
||||||
tslib: 2.8.1
|
tslib: 2.8.1
|
||||||
|
|
||||||
@@ -2116,7 +2138,7 @@ snapshots:
|
|||||||
'@smithy/types': 4.13.0
|
'@smithy/types': 4.13.0
|
||||||
tslib: 2.8.1
|
tslib: 2.8.1
|
||||||
|
|
||||||
'@aws-sdk/util-locate-window@3.965.4':
|
'@aws-sdk/util-locate-window@3.965.5':
|
||||||
dependencies:
|
dependencies:
|
||||||
tslib: 2.8.1
|
tslib: 2.8.1
|
||||||
|
|
||||||
@@ -2150,7 +2172,7 @@ snapshots:
|
|||||||
|
|
||||||
'@cloudflare/kv-asset-handler@0.4.2': {}
|
'@cloudflare/kv-asset-handler@0.4.2': {}
|
||||||
|
|
||||||
'@cloudflare/unenv-preset@2.14.0(unenv@2.0.0-rc.24)(workerd@1.20260301.1)':
|
'@cloudflare/unenv-preset@2.15.0(unenv@2.0.0-rc.24)(workerd@1.20260301.1)':
|
||||||
dependencies:
|
dependencies:
|
||||||
unenv: 2.0.0-rc.24
|
unenv: 2.0.0-rc.24
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
@@ -2171,7 +2193,7 @@ snapshots:
|
|||||||
'@cloudflare/workerd-windows-64@1.20260301.1':
|
'@cloudflare/workerd-windows-64@1.20260301.1':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@cloudflare/workers-types@4.20260305.1': {}
|
'@cloudflare/workers-types@4.20260307.1': {}
|
||||||
|
|
||||||
'@cspotcode/source-map-support@0.8.1':
|
'@cspotcode/source-map-support@0.8.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -2267,7 +2289,7 @@ snapshots:
|
|||||||
|
|
||||||
'@eslint-community/regexpp@4.12.2': {}
|
'@eslint-community/regexpp@4.12.2': {}
|
||||||
|
|
||||||
'@eslint/config-array@0.21.1':
|
'@eslint/config-array@0.21.2':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint/object-schema': 2.1.7
|
'@eslint/object-schema': 2.1.7
|
||||||
debug: 4.4.3
|
debug: 4.4.3
|
||||||
@@ -2283,7 +2305,7 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
'@types/json-schema': 7.0.15
|
'@types/json-schema': 7.0.15
|
||||||
|
|
||||||
'@eslint/eslintrc@3.3.4':
|
'@eslint/eslintrc@3.3.5':
|
||||||
dependencies:
|
dependencies:
|
||||||
ajv: 6.14.0
|
ajv: 6.14.0
|
||||||
debug: 4.4.3
|
debug: 4.4.3
|
||||||
@@ -2440,6 +2462,21 @@ snapshots:
|
|||||||
asn1js: 3.0.7
|
asn1js: 3.0.7
|
||||||
tslib: 2.8.1
|
tslib: 2.8.1
|
||||||
|
|
||||||
|
'@peculiar/asn1-cms@2.6.1':
|
||||||
|
dependencies:
|
||||||
|
'@peculiar/asn1-schema': 2.6.0
|
||||||
|
'@peculiar/asn1-x509': 2.6.1
|
||||||
|
'@peculiar/asn1-x509-attr': 2.6.1
|
||||||
|
asn1js: 3.0.7
|
||||||
|
tslib: 2.8.1
|
||||||
|
|
||||||
|
'@peculiar/asn1-csr@2.6.1':
|
||||||
|
dependencies:
|
||||||
|
'@peculiar/asn1-schema': 2.6.0
|
||||||
|
'@peculiar/asn1-x509': 2.6.1
|
||||||
|
asn1js: 3.0.7
|
||||||
|
tslib: 2.8.1
|
||||||
|
|
||||||
'@peculiar/asn1-ecc@2.6.1':
|
'@peculiar/asn1-ecc@2.6.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@peculiar/asn1-schema': 2.6.0
|
'@peculiar/asn1-schema': 2.6.0
|
||||||
@@ -2447,6 +2484,33 @@ snapshots:
|
|||||||
asn1js: 3.0.7
|
asn1js: 3.0.7
|
||||||
tslib: 2.8.1
|
tslib: 2.8.1
|
||||||
|
|
||||||
|
'@peculiar/asn1-pfx@2.6.1':
|
||||||
|
dependencies:
|
||||||
|
'@peculiar/asn1-cms': 2.6.1
|
||||||
|
'@peculiar/asn1-pkcs8': 2.6.1
|
||||||
|
'@peculiar/asn1-rsa': 2.6.1
|
||||||
|
'@peculiar/asn1-schema': 2.6.0
|
||||||
|
asn1js: 3.0.7
|
||||||
|
tslib: 2.8.1
|
||||||
|
|
||||||
|
'@peculiar/asn1-pkcs8@2.6.1':
|
||||||
|
dependencies:
|
||||||
|
'@peculiar/asn1-schema': 2.6.0
|
||||||
|
'@peculiar/asn1-x509': 2.6.1
|
||||||
|
asn1js: 3.0.7
|
||||||
|
tslib: 2.8.1
|
||||||
|
|
||||||
|
'@peculiar/asn1-pkcs9@2.6.1':
|
||||||
|
dependencies:
|
||||||
|
'@peculiar/asn1-cms': 2.6.1
|
||||||
|
'@peculiar/asn1-pfx': 2.6.1
|
||||||
|
'@peculiar/asn1-pkcs8': 2.6.1
|
||||||
|
'@peculiar/asn1-schema': 2.6.0
|
||||||
|
'@peculiar/asn1-x509': 2.6.1
|
||||||
|
'@peculiar/asn1-x509-attr': 2.6.1
|
||||||
|
asn1js: 3.0.7
|
||||||
|
tslib: 2.8.1
|
||||||
|
|
||||||
'@peculiar/asn1-rsa@2.6.1':
|
'@peculiar/asn1-rsa@2.6.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@peculiar/asn1-schema': 2.6.0
|
'@peculiar/asn1-schema': 2.6.0
|
||||||
@@ -2460,6 +2524,13 @@ snapshots:
|
|||||||
pvtsutils: 1.3.6
|
pvtsutils: 1.3.6
|
||||||
tslib: 2.8.1
|
tslib: 2.8.1
|
||||||
|
|
||||||
|
'@peculiar/asn1-x509-attr@2.6.1':
|
||||||
|
dependencies:
|
||||||
|
'@peculiar/asn1-schema': 2.6.0
|
||||||
|
'@peculiar/asn1-x509': 2.6.1
|
||||||
|
asn1js: 3.0.7
|
||||||
|
tslib: 2.8.1
|
||||||
|
|
||||||
'@peculiar/asn1-x509@2.6.1':
|
'@peculiar/asn1-x509@2.6.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@peculiar/asn1-schema': 2.6.0
|
'@peculiar/asn1-schema': 2.6.0
|
||||||
@@ -2467,6 +2538,20 @@ snapshots:
|
|||||||
pvtsutils: 1.3.6
|
pvtsutils: 1.3.6
|
||||||
tslib: 2.8.1
|
tslib: 2.8.1
|
||||||
|
|
||||||
|
'@peculiar/x509@1.14.3':
|
||||||
|
dependencies:
|
||||||
|
'@peculiar/asn1-cms': 2.6.1
|
||||||
|
'@peculiar/asn1-csr': 2.6.1
|
||||||
|
'@peculiar/asn1-ecc': 2.6.1
|
||||||
|
'@peculiar/asn1-pkcs9': 2.6.1
|
||||||
|
'@peculiar/asn1-rsa': 2.6.1
|
||||||
|
'@peculiar/asn1-schema': 2.6.0
|
||||||
|
'@peculiar/asn1-x509': 2.6.1
|
||||||
|
pvtsutils: 1.3.6
|
||||||
|
reflect-metadata: 0.2.2
|
||||||
|
tslib: 2.8.1
|
||||||
|
tsyringe: 4.10.0
|
||||||
|
|
||||||
'@poppinss/colors@4.1.6':
|
'@poppinss/colors@4.1.6':
|
||||||
dependencies:
|
dependencies:
|
||||||
kleur: 4.1.5
|
kleur: 4.1.5
|
||||||
@@ -2494,7 +2579,7 @@ snapshots:
|
|||||||
selderee: 0.11.0
|
selderee: 0.11.0
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@simplewebauthn/server@10.0.1':
|
'@simplewebauthn/server@13.2.3':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@hexagon/base64': 1.1.28
|
'@hexagon/base64': 1.1.28
|
||||||
'@levischuck/tiny-cbor': 0.2.11
|
'@levischuck/tiny-cbor': 0.2.11
|
||||||
@@ -2503,12 +2588,7 @@ snapshots:
|
|||||||
'@peculiar/asn1-rsa': 2.6.1
|
'@peculiar/asn1-rsa': 2.6.1
|
||||||
'@peculiar/asn1-schema': 2.6.0
|
'@peculiar/asn1-schema': 2.6.0
|
||||||
'@peculiar/asn1-x509': 2.6.1
|
'@peculiar/asn1-x509': 2.6.1
|
||||||
'@simplewebauthn/types': 10.0.0
|
'@peculiar/x509': 1.14.3
|
||||||
cross-fetch: 4.1.0
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- encoding
|
|
||||||
|
|
||||||
'@simplewebauthn/types@10.0.0': {}
|
|
||||||
|
|
||||||
'@sindresorhus/is@7.2.0': {}
|
'@sindresorhus/is@7.2.0': {}
|
||||||
|
|
||||||
@@ -2535,7 +2615,7 @@ snapshots:
|
|||||||
'@smithy/util-middleware': 4.2.11
|
'@smithy/util-middleware': 4.2.11
|
||||||
tslib: 2.8.1
|
tslib: 2.8.1
|
||||||
|
|
||||||
'@smithy/core@3.23.8':
|
'@smithy/core@3.23.9':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@smithy/middleware-serde': 4.2.12
|
'@smithy/middleware-serde': 4.2.12
|
||||||
'@smithy/protocol-http': 5.3.11
|
'@smithy/protocol-http': 5.3.11
|
||||||
@@ -2639,9 +2719,9 @@ snapshots:
|
|||||||
'@smithy/types': 4.13.0
|
'@smithy/types': 4.13.0
|
||||||
tslib: 2.8.1
|
tslib: 2.8.1
|
||||||
|
|
||||||
'@smithy/middleware-endpoint@4.4.22':
|
'@smithy/middleware-endpoint@4.4.23':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@smithy/core': 3.23.8
|
'@smithy/core': 3.23.9
|
||||||
'@smithy/middleware-serde': 4.2.12
|
'@smithy/middleware-serde': 4.2.12
|
||||||
'@smithy/node-config-provider': 4.3.11
|
'@smithy/node-config-provider': 4.3.11
|
||||||
'@smithy/shared-ini-file-loader': 4.4.6
|
'@smithy/shared-ini-file-loader': 4.4.6
|
||||||
@@ -2650,12 +2730,12 @@ snapshots:
|
|||||||
'@smithy/util-middleware': 4.2.11
|
'@smithy/util-middleware': 4.2.11
|
||||||
tslib: 2.8.1
|
tslib: 2.8.1
|
||||||
|
|
||||||
'@smithy/middleware-retry@4.4.39':
|
'@smithy/middleware-retry@4.4.40':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@smithy/node-config-provider': 4.3.11
|
'@smithy/node-config-provider': 4.3.11
|
||||||
'@smithy/protocol-http': 5.3.11
|
'@smithy/protocol-http': 5.3.11
|
||||||
'@smithy/service-error-classification': 4.2.11
|
'@smithy/service-error-classification': 4.2.11
|
||||||
'@smithy/smithy-client': 4.12.2
|
'@smithy/smithy-client': 4.12.3
|
||||||
'@smithy/types': 4.13.0
|
'@smithy/types': 4.13.0
|
||||||
'@smithy/util-middleware': 4.2.11
|
'@smithy/util-middleware': 4.2.11
|
||||||
'@smithy/util-retry': 4.2.11
|
'@smithy/util-retry': 4.2.11
|
||||||
@@ -2729,10 +2809,10 @@ snapshots:
|
|||||||
'@smithy/util-utf8': 4.2.2
|
'@smithy/util-utf8': 4.2.2
|
||||||
tslib: 2.8.1
|
tslib: 2.8.1
|
||||||
|
|
||||||
'@smithy/smithy-client@4.12.2':
|
'@smithy/smithy-client@4.12.3':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@smithy/core': 3.23.8
|
'@smithy/core': 3.23.9
|
||||||
'@smithy/middleware-endpoint': 4.4.22
|
'@smithy/middleware-endpoint': 4.4.23
|
||||||
'@smithy/middleware-stack': 4.2.11
|
'@smithy/middleware-stack': 4.2.11
|
||||||
'@smithy/protocol-http': 5.3.11
|
'@smithy/protocol-http': 5.3.11
|
||||||
'@smithy/types': 4.13.0
|
'@smithy/types': 4.13.0
|
||||||
@@ -2777,20 +2857,20 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
tslib: 2.8.1
|
tslib: 2.8.1
|
||||||
|
|
||||||
'@smithy/util-defaults-mode-browser@4.3.38':
|
'@smithy/util-defaults-mode-browser@4.3.39':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@smithy/property-provider': 4.2.11
|
'@smithy/property-provider': 4.2.11
|
||||||
'@smithy/smithy-client': 4.12.2
|
'@smithy/smithy-client': 4.12.3
|
||||||
'@smithy/types': 4.13.0
|
'@smithy/types': 4.13.0
|
||||||
tslib: 2.8.1
|
tslib: 2.8.1
|
||||||
|
|
||||||
'@smithy/util-defaults-mode-node@4.2.41':
|
'@smithy/util-defaults-mode-node@4.2.42':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@smithy/config-resolver': 4.4.10
|
'@smithy/config-resolver': 4.4.10
|
||||||
'@smithy/credential-provider-imds': 4.2.11
|
'@smithy/credential-provider-imds': 4.2.11
|
||||||
'@smithy/node-config-provider': 4.3.11
|
'@smithy/node-config-provider': 4.3.11
|
||||||
'@smithy/property-provider': 4.2.11
|
'@smithy/property-provider': 4.2.11
|
||||||
'@smithy/smithy-client': 4.12.2
|
'@smithy/smithy-client': 4.12.3
|
||||||
'@smithy/types': 4.13.0
|
'@smithy/types': 4.13.0
|
||||||
tslib: 2.8.1
|
tslib: 2.8.1
|
||||||
|
|
||||||
@@ -2860,7 +2940,7 @@ snapshots:
|
|||||||
|
|
||||||
'@types/json-schema@7.0.15': {}
|
'@types/json-schema@7.0.15': {}
|
||||||
|
|
||||||
'@types/node@25.3.3':
|
'@types/node@25.3.5':
|
||||||
dependencies:
|
dependencies:
|
||||||
undici-types: 7.18.2
|
undici-types: 7.18.2
|
||||||
|
|
||||||
@@ -3031,12 +3111,6 @@ snapshots:
|
|||||||
|
|
||||||
core-js-pure@3.48.0: {}
|
core-js-pure@3.48.0: {}
|
||||||
|
|
||||||
cross-fetch@4.1.0:
|
|
||||||
dependencies:
|
|
||||||
node-fetch: 2.7.0
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- encoding
|
|
||||||
|
|
||||||
cross-spawn@7.0.6:
|
cross-spawn@7.0.6:
|
||||||
dependencies:
|
dependencies:
|
||||||
path-key: 3.1.1
|
path-key: 3.1.1
|
||||||
@@ -3127,10 +3201,10 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/eslint-utils': 4.9.1(eslint@9.39.1)
|
'@eslint-community/eslint-utils': 4.9.1(eslint@9.39.1)
|
||||||
'@eslint-community/regexpp': 4.12.2
|
'@eslint-community/regexpp': 4.12.2
|
||||||
'@eslint/config-array': 0.21.1
|
'@eslint/config-array': 0.21.2
|
||||||
'@eslint/config-helpers': 0.4.2
|
'@eslint/config-helpers': 0.4.2
|
||||||
'@eslint/core': 0.17.0
|
'@eslint/core': 0.17.0
|
||||||
'@eslint/eslintrc': 3.3.4
|
'@eslint/eslintrc': 3.3.5
|
||||||
'@eslint/js': 9.39.1
|
'@eslint/js': 9.39.1
|
||||||
'@eslint/plugin-kit': 0.4.1
|
'@eslint/plugin-kit': 0.4.1
|
||||||
'@humanfs/node': 0.16.7
|
'@humanfs/node': 0.16.7
|
||||||
@@ -3433,6 +3507,8 @@ snapshots:
|
|||||||
loose-envify: 1.4.0
|
loose-envify: 1.4.0
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
|
reflect-metadata@0.2.2: {}
|
||||||
|
|
||||||
resend@6.9.3(@react-email/render@1.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)):
|
resend@6.9.3(@react-email/render@1.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)):
|
||||||
dependencies:
|
dependencies:
|
||||||
postal-mime: 2.7.3
|
postal-mime: 2.7.3
|
||||||
@@ -3542,8 +3618,14 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
typescript: 5.4.5
|
typescript: 5.4.5
|
||||||
|
|
||||||
|
tslib@1.14.1: {}
|
||||||
|
|
||||||
tslib@2.8.1: {}
|
tslib@2.8.1: {}
|
||||||
|
|
||||||
|
tsyringe@4.10.0:
|
||||||
|
dependencies:
|
||||||
|
tslib: 1.14.1
|
||||||
|
|
||||||
type-check@0.4.0:
|
type-check@0.4.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
prelude-ls: 1.2.1
|
prelude-ls: 1.2.1
|
||||||
@@ -3600,10 +3682,10 @@ snapshots:
|
|||||||
'@cloudflare/workerd-linux-arm64': 1.20260301.1
|
'@cloudflare/workerd-linux-arm64': 1.20260301.1
|
||||||
'@cloudflare/workerd-windows-64': 1.20260301.1
|
'@cloudflare/workerd-windows-64': 1.20260301.1
|
||||||
|
|
||||||
wrangler@4.70.0(@cloudflare/workers-types@4.20260305.1):
|
wrangler@4.71.0(@cloudflare/workers-types@4.20260307.1):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@cloudflare/kv-asset-handler': 0.4.2
|
'@cloudflare/kv-asset-handler': 0.4.2
|
||||||
'@cloudflare/unenv-preset': 2.14.0(unenv@2.0.0-rc.24)(workerd@1.20260301.1)
|
'@cloudflare/unenv-preset': 2.15.0(unenv@2.0.0-rc.24)(workerd@1.20260301.1)
|
||||||
blake3-wasm: 2.1.5
|
blake3-wasm: 2.1.5
|
||||||
esbuild: 0.27.3
|
esbuild: 0.27.3
|
||||||
miniflare: 4.20260301.1
|
miniflare: 4.20260301.1
|
||||||
@@ -3611,7 +3693,7 @@ snapshots:
|
|||||||
unenv: 2.0.0-rc.24
|
unenv: 2.0.0-rc.24
|
||||||
workerd: 1.20260301.1
|
workerd: 1.20260301.1
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@cloudflare/workers-types': 4.20260305.1
|
'@cloudflare/workers-types': 4.20260307.1
|
||||||
fsevents: 2.3.3
|
fsevents: 2.3.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- bufferutil
|
- bufferutil
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import type {
|
|||||||
AuthenticatorTransportFuture,
|
AuthenticatorTransportFuture,
|
||||||
CredentialDeviceType,
|
CredentialDeviceType,
|
||||||
Base64URLString,
|
Base64URLString,
|
||||||
} from '@simplewebauthn/types';
|
} from '@simplewebauthn/server';
|
||||||
|
|
||||||
export type Passkey = {
|
export type Passkey = {
|
||||||
id: Base64URLString;
|
id: Base64URLString;
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import {
|
|||||||
} from '@simplewebauthn/server';
|
} from '@simplewebauthn/server';
|
||||||
|
|
||||||
import { Passkey } from '../models';
|
import { Passkey } from '../models';
|
||||||
import { PublicKeyCredentialRequestOptionsJSON } from '@simplewebauthn/types';
|
import type { PublicKeyCredentialRequestOptionsJSON } from '@simplewebauthn/server';
|
||||||
import { isoBase64URL } from '@simplewebauthn/server/helpers';
|
import { isoBase64URL } from '@simplewebauthn/server/helpers';
|
||||||
import i18n from '../i18n';
|
import i18n from '../i18n';
|
||||||
|
|
||||||
@@ -97,20 +97,21 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const {
|
const {
|
||||||
credentialID, credentialPublicKey,
|
id: credentialID, publicKey,
|
||||||
counter, credentialDeviceType, credentialBackedUp,
|
counter, deviceType, backedUp,
|
||||||
} = registrationInfo;
|
transports,
|
||||||
|
} = registrationInfo.credential;
|
||||||
|
|
||||||
// Base64URL encode ArrayBuffers.
|
// Base64URL encode ArrayBuffers.
|
||||||
const base64PublicKey = isoBase64URL.fromBuffer(credentialPublicKey);
|
const base64PublicKey = isoBase64URL.fromBuffer(publicKey);
|
||||||
|
|
||||||
const newPasskey: Passkey = {
|
const newPasskey: Passkey = {
|
||||||
id: credentialID,
|
id: credentialID,
|
||||||
publicKey: base64PublicKey,
|
publicKey: base64PublicKey,
|
||||||
counter,
|
counter,
|
||||||
deviceType: credentialDeviceType,
|
deviceType,
|
||||||
backedUp: credentialBackedUp,
|
backedUp,
|
||||||
transports: credential?.response?.transports,
|
transports,
|
||||||
};
|
};
|
||||||
|
|
||||||
// Store the credential ID in the database
|
// Store the credential ID in the database
|
||||||
@@ -161,9 +162,9 @@ export default {
|
|||||||
},
|
},
|
||||||
expectedOrigin: origin,
|
expectedOrigin: origin,
|
||||||
expectedRPID: domain,
|
expectedRPID: domain,
|
||||||
authenticator: {
|
credential: {
|
||||||
credentialID: passkeyData.id,
|
id: passkeyData.id,
|
||||||
credentialPublicKey: isoBase64URL.toBuffer(passkeyData.publicKey),
|
publicKey: isoBase64URL.toBuffer(passkeyData.publicKey),
|
||||||
counter: counter || passkeyData.counter,
|
counter: counter || passkeyData.counter,
|
||||||
transports: passkeyData.transports,
|
transports: passkeyData.transports,
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user