diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
index 9f837f6..43c2e72 100644
--- a/.github/FUNDING.yml
+++ b/.github/FUNDING.yml
@@ -1,3 +1,2 @@
# These are supported funding model platforms
-github: [softbeehive]
-custom: ['https://paypal.me/softbeehive']
+custom: ["https://paypal.me/softbeehive"]
diff --git a/README.md b/README.md
index c195aed..758c832 100644
--- a/README.md
+++ b/README.md
@@ -6,20 +6,24 @@
[](https://www.npmjs.com/package/vue-stripe-js)
[](https://vshymanskyy.github.io/StandWithUkraine)
-Vue 3 components for Stripe. Build advanced payment integrations quickly. Easy to start, friendly DX, minimal abstractions, and full control. It's a glue between Stripe.js and Vue component lifecycle. Works with Nuxt 3.
+Vue 3 components for Stripe. Build advanced payment integrations quickly. Easy
+to start, friendly DX, minimal abstractions, and full control. It's a glue
+between Stripe.js and Vue component lifecycle. Works with Nuxt 3.
🟢 **[Live demo](https://vue-stripe-js.netlify.app/)**
## Health 💜
-Consider supporting efforts to make this project healthy and sustainable. Thank you!
-- **[Become a sponsor](https://github.com/sponsors/softbeehive)**
+Consider supporting efforts to make this project healthy and sustainable. Thank
+you!
+
- **[Donate via PayPal](https://paypal.me/softbeehive)**
## Quickstart ⚡️
### Upgrade
-- **[Upgrade guide](docs/UPGRADE_V1_TO_V2.md)**
+
+- **[Upgrade guide](docs/UPGRADE_V1_TO_V2.md)**
- **[Docs v1](https://github.com/ectoflow/vue-stripe-js/tree/v1.0.4)**
### 1. Install
@@ -44,7 +48,8 @@ onBeforeMount(async() => {
```
-Alternatively, include a script tag. Make sure Stripe.js is loaded before you mount Vue components.
+Alternatively, include a script tag. Make sure Stripe.js is loaded before you
+mount Vue components.
```html
@@ -52,7 +57,8 @@ Alternatively, include a script tag. Make sure Stripe.js is loaded before you mo
### 3. Payment Element
-Based on – [deferred payment guide](https://docs.stripe.com/payments/accept-a-payment-deferred?type=payment)
+Based on –
+[deferred payment guide](https://docs.stripe.com/payments/accept-a-payment-deferred?type=payment)
```vue
@@ -150,12 +156,13 @@ async function handleSubmit() {
}
}
-
```
## Examples 🌿
-Thanks to the Provider Pattern used in StripeElements, you get minimalist tools with full access to Stripe.js methods and properties. This results in better developer experience (DX), simpler code, and fewer bugs.
+Thanks to the Provider Pattern used in StripeElements, you get minimalist tools
+with full access to Stripe.js methods and properties. This results in better
+developer experience (DX), simpler code, and fewer bugs.
These examples use Vue Composition API and TypeScript.
@@ -170,7 +177,9 @@ These examples use Vue Composition API and TypeScript.
## Advanced integration 🏗️
-All features of Stripe.js are available in two components. The benefits of Vue solution: element is created and destroyed automatically, options are reactive, event listeners are attached to StripeElement. Simple and future-proof.
+All features of Stripe.js are available in two components. The benefits of Vue
+solution: element is created and destroyed automatically, options are reactive,
+event listeners are attached to StripeElement. Simple and future-proof.
🥇 **Most important property is type** 🥇
@@ -181,33 +190,34 @@ All features of Stripe.js are available in two components. The benefits of Vue s
```
Available types
+
```ts
type StripeElementType =
- | 'address'
- | 'affirmMessage'
- | 'afterpayClearpayMessage'
- | 'auBankAccount'
- | 'card'
- | 'cardNumber'
- | 'cardExpiry'
- | 'cardCvc'
- | 'currencySelector'
- | 'epsBank'
- | 'expressCheckout'
- | 'fpxBank'
- | 'iban'
- | 'idealBank'
- | 'p24Bank'
- | 'payment'
- | 'paymentMethodMessaging'
- | 'paymentRequestButton'
- | 'linkAuthentication'
- | 'shippingAddress'
- | 'issuingCardNumberDisplay'
- | 'issuingCardCvcDisplay'
- | 'issuingCardExpiryDisplay'
- | 'issuingCardPinDisplay'
- | 'issuingCardCopyButton'
+ | "address"
+ | "affirmMessage"
+ | "afterpayClearpayMessage"
+ | "auBankAccount"
+ | "card"
+ | "cardNumber"
+ | "cardExpiry"
+ | "cardCvc"
+ | "currencySelector"
+ | "epsBank"
+ | "expressCheckout"
+ | "fpxBank"
+ | "iban"
+ | "idealBank"
+ | "p24Bank"
+ | "payment"
+ | "paymentMethodMessaging"
+ | "paymentRequestButton"
+ | "linkAuthentication"
+ | "shippingAddress"
+ | "issuingCardNumberDisplay"
+ | "issuingCardCvcDisplay"
+ | "issuingCardExpiryDisplay"
+ | "issuingCardPinDisplay"
+ | "issuingCardCopyButton";
// Check actual element types in @stripe/stripe-js
```
@@ -217,6 +227,7 @@ type StripeElementType =
```html
```
+
Following events are emitted on StripeElement
- change
@@ -228,7 +239,6 @@ Following events are emitted on StripeElement
- loaderror
- loaderstart
-
## Styling
Add classes to components
@@ -239,7 +249,8 @@ Add classes to components
```
-Style element via options - [read documentation](https://stripe.com/docs/js/appendix/style)
+Style element via options -
+[read documentation](https://stripe.com/docs/js/appendix/style)
```ts
const cardOptions = ref({
@@ -251,5 +262,5 @@ const cardOptions = ref({
iconColor: "red",
},
},
-})
+});
```
diff --git a/biome.json b/biome.json
index 789818a..a54c80b 100644
--- a/biome.json
+++ b/biome.json
@@ -1,9 +1,9 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"vcs": {
- "enabled": false,
+ "enabled": true,
"clientKind": "git",
- "useIgnoreFile": false
+ "useIgnoreFile": true
},
"files": {
"ignoreUnknown": false,
diff --git a/examples/README.md b/examples/README.md
index ffd07d5..a185489 100644
--- a/examples/README.md
+++ b/examples/README.md
@@ -1,10 +1,12 @@
# Vue Stripe.js
-Full power of Stripe.js + beauty of Vue. Build advanced payment integrations quickly. Use examples for easy start with Payment, Card, and Express Checkout.
+Full power of Stripe.js + beauty of Vue. Build advanced payment integrations
+quickly. Use examples for easy start with Payment, Card, and Express Checkout.
-## Demo
+## Demo
**1. Clone**
+
```bash
git clone git@github.com:ectoflow/vue-stripe-js.git --depth=1 && cd vue-stripe-js
```
@@ -16,12 +18,15 @@ npm install
```
**3. Run demo**
+
```bash
npm run dev
```
## Donate
-It's an open-source project and completely free to use. Keeping it up-to-date with the Stripe.js API is hard work. Consider supporting my efforts to make vue-stripe-js healthy and sustainable. Thank you!
+It's an open-source project and completely free to use. Keeping it up-to-date
+with the Stripe.js API is hard work. Consider supporting my efforts to make
+vue-stripe-js healthy and sustainable. Thank you!
-[**Become a sponsor** 💜](https://github.com/sponsors/softbeehive)
+**[Donate via PayPal](https://paypal.me/softbeehive)**
diff --git a/package.json b/package.json
index 804ff13..766057a 100644
--- a/package.json
+++ b/package.json
@@ -32,20 +32,20 @@
"url": "https://github.com/ectoflow/vue-stripe-js/issues"
},
"dependencies": {
- "@stripe/stripe-js": "^5.5.0"
+ "@stripe/stripe-js": "^5.6.0"
},
"devDependencies": {
- "@arethetypeswrong/cli": "^0.17.3",
+ "@arethetypeswrong/cli": "^0.17.4",
"@biomejs/biome": "1.9.4",
- "@tailwindcss/vite": "4.0.0",
+ "@tailwindcss/vite": "^4.0.8",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/tsconfig": "0.7.0",
- "publint": "^0.3.2",
- "tailwindcss": "4.0.0",
+ "publint": "^0.3.6",
+ "tailwindcss": "^4.0.8",
"typescript": "^5.7.3",
- "vite": "^6.0.11",
+ "vite": "^6.1.1",
"vite-plugin-dts": "^4.5.0",
"vue": "^3.5.13",
- "vue-tsc": "^2.2.0"
+ "vue-tsc": "^2.2.4"
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index f688d60..ef6783c 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -9,58 +9,58 @@ importers:
.:
dependencies:
'@stripe/stripe-js':
- specifier: ^5.5.0
- version: 5.5.0
+ specifier: ^5.6.0
+ version: 5.6.0
devDependencies:
'@arethetypeswrong/cli':
- specifier: ^0.17.3
- version: 0.17.3
+ specifier: ^0.17.4
+ version: 0.17.4
'@biomejs/biome':
specifier: 1.9.4
version: 1.9.4
'@tailwindcss/vite':
- specifier: 4.0.0
- version: 4.0.0(vite@6.0.11(jiti@2.4.2)(lightningcss@1.29.1))
+ specifier: ^4.0.8
+ version: 4.0.8(vite@6.1.1(jiti@2.4.2)(lightningcss@1.29.1))
'@vitejs/plugin-vue':
specifier: ^5.2.1
- version: 5.2.1(vite@6.0.11(jiti@2.4.2)(lightningcss@1.29.1))(vue@3.5.13(typescript@5.7.3))
+ version: 5.2.1(vite@6.1.1(jiti@2.4.2)(lightningcss@1.29.1))(vue@3.5.13(typescript@5.7.3))
'@vue/tsconfig':
specifier: 0.7.0
version: 0.7.0(typescript@5.7.3)(vue@3.5.13(typescript@5.7.3))
publint:
- specifier: ^0.3.2
- version: 0.3.2
+ specifier: ^0.3.6
+ version: 0.3.6
tailwindcss:
- specifier: 4.0.0
- version: 4.0.0
+ specifier: ^4.0.8
+ version: 4.0.8
typescript:
specifier: ^5.7.3
version: 5.7.3
vite:
- specifier: ^6.0.11
- version: 6.0.11(jiti@2.4.2)(lightningcss@1.29.1)
+ specifier: ^6.1.1
+ version: 6.1.1(jiti@2.4.2)(lightningcss@1.29.1)
vite-plugin-dts:
specifier: ^4.5.0
- version: 4.5.0(rollup@4.30.1)(typescript@5.7.3)(vite@6.0.11(jiti@2.4.2)(lightningcss@1.29.1))
+ version: 4.5.0(rollup@4.34.8)(typescript@5.7.3)(vite@6.1.1(jiti@2.4.2)(lightningcss@1.29.1))
vue:
specifier: ^3.5.13
version: 3.5.13(typescript@5.7.3)
vue-tsc:
- specifier: ^2.2.0
- version: 2.2.0(typescript@5.7.3)
+ specifier: ^2.2.4
+ version: 2.2.4(typescript@5.7.3)
packages:
'@andrewbranch/untar.js@1.0.3':
resolution: {integrity: sha512-Jh15/qVmrLGhkKJBdXlK1+9tY4lZruYjsgkDFj08ZmDiWVBLJcqkok7Z0/R0In+i1rScBpJlSvrTS2Lm41Pbnw==}
- '@arethetypeswrong/cli@0.17.3':
- resolution: {integrity: sha512-wI9ZSTweunmzHboSyYtWRFpba9fM9mpX1g7EUoRr+86zHSd7NR7svb6EmJD2hv1V+SoisB2fERu6EQGGEfQ8oQ==}
+ '@arethetypeswrong/cli@0.17.4':
+ resolution: {integrity: sha512-AeiKxtf67XD/NdOqXgBOE5TZWH3EOCt+0GkbUpekOzngc+Q/cRZ5azjWyMxISxxfp0EItgm5NoSld9p7BAA5xQ==}
engines: {node: '>=18'}
hasBin: true
- '@arethetypeswrong/core@0.17.3':
- resolution: {integrity: sha512-2TB7O5JmC7UX7QHRGGftxRVQjV4Ce6oOIDGIDDERyT9dQ8lK/tRGfFubzO80rWeXm/gSrA8jirlXSWSE1i5ynQ==}
+ '@arethetypeswrong/core@0.17.4':
+ resolution: {integrity: sha512-Izvir8iIoU+X4SKtDAa5kpb+9cpifclzsbA8x/AZY0k0gIfXYQ1fa1B6Epfe6vNA2YfDX8VtrZFgvnXB6aPEoQ==}
engines: {node: '>=18'}
'@babel/helper-string-parser@7.25.9':
@@ -71,13 +71,13 @@ packages:
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.26.5':
- resolution: {integrity: sha512-SRJ4jYmXRqV1/Xc+TIVG84WjHBXKlxO9sHQnA2Pf12QQEAp1LOh6kDzNHXcUnbH1QI0FDoPPVOt+vyUDucxpaw==}
+ '@babel/parser@7.26.9':
+ resolution: {integrity: sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/types@7.26.5':
- resolution: {integrity: sha512-L6mZmwFDK6Cjh1nRCLXpa6no13ZIioJDz7mdkzHv399pThrTa/k0nUlNaenOeh2kWu/iaOQYElEpKPUswUa9Vg==}
+ '@babel/types@7.26.9':
+ resolution: {integrity: sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==}
engines: {node: '>=6.9.0'}
'@biomejs/biome@1.9.4':
@@ -133,6 +133,9 @@ packages:
cpu: [x64]
os: [win32]
+ '@braidai/lang@1.0.0':
+ resolution: {integrity: sha512-Ckpah5j8iAzDfc4YEP4uqnxyUznuAt6hRR093JSEYUgh2trQjCibQ2pfxHxzfz7y9vkUn9/rBxjFpGY+SPudHA==}
+
'@colors/colors@1.5.0':
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
engines: {node: '>=0.1.90'}
@@ -290,11 +293,14 @@ packages:
'@jridgewell/sourcemap-codec@1.5.0':
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
- '@microsoft/api-extractor-model@7.30.2':
- resolution: {integrity: sha512-3/t2F+WhkJgBzSNwlkTIL0tBgUoBqDqL66pT+nh2mPbM0NIDGVGtpqbGWPgHIzn/mn7kGS/Ep8D8po58e8UUIw==}
+ '@loaderkit/resolve@1.0.2':
+ resolution: {integrity: sha512-yTCCjuQapvRz6S30B8DyqHu1WYsbYRCww6uNsmbQU4GQVf5gJzJSB60qUHj+qBSxReLtRL/mhmhYhrIc9jVFTw==}
+
+ '@microsoft/api-extractor-model@7.30.3':
+ resolution: {integrity: sha512-yEAvq0F78MmStXdqz9TTT4PZ05Xu5R8nqgwI5xmUmQjWBQ9E6R2n8HB/iZMRciG4rf9iwI2mtuQwIzDXBvHn1w==}
- '@microsoft/api-extractor@7.49.1':
- resolution: {integrity: sha512-jRTR/XbQF2kb+dYn8hfYSicOGA99+Fo00GrsdMwdfE3eIgLtKdH6Qa2M3wZV9S2XmbgCaGX1OdPtYctbfu5jQg==}
+ '@microsoft/api-extractor@7.50.1':
+ resolution: {integrity: sha512-L18vz0ARLNaBLKwWe0DdEf7eijDsb7ERZspgZK7PxclLoQrc+9hJZo8y4OVfCHxNVyxlwVywY2WdE/3pOFViLQ==}
hasBin: true
'@microsoft/tsdoc-config@0.17.1':
@@ -316,103 +322,103 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.30.1':
- resolution: {integrity: sha512-pSWY+EVt3rJ9fQ3IqlrEUtXh3cGqGtPDH1FQlNZehO2yYxCHEX1SPsz1M//NXwYfbTlcKr9WObLnJX9FsS9K1Q==}
+ '@rollup/rollup-android-arm-eabi@4.34.8':
+ resolution: {integrity: sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.30.1':
- resolution: {integrity: sha512-/NA2qXxE3D/BRjOJM8wQblmArQq1YoBVJjrjoTSBS09jgUisq7bqxNHJ8kjCHeV21W/9WDGwJEWSN0KQ2mtD/w==}
+ '@rollup/rollup-android-arm64@4.34.8':
+ resolution: {integrity: sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.30.1':
- resolution: {integrity: sha512-r7FQIXD7gB0WJ5mokTUgUWPl0eYIH0wnxqeSAhuIwvnnpjdVB8cRRClyKLQr7lgzjctkbp5KmswWszlwYln03Q==}
+ '@rollup/rollup-darwin-arm64@4.34.8':
+ resolution: {integrity: sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.30.1':
- resolution: {integrity: sha512-x78BavIwSH6sqfP2xeI1hd1GpHL8J4W2BXcVM/5KYKoAD3nNsfitQhvWSw+TFtQTLZ9OmlF+FEInEHyubut2OA==}
+ '@rollup/rollup-darwin-x64@4.34.8':
+ resolution: {integrity: sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.30.1':
- resolution: {integrity: sha512-HYTlUAjbO1z8ywxsDFWADfTRfTIIy/oUlfIDmlHYmjUP2QRDTzBuWXc9O4CXM+bo9qfiCclmHk1x4ogBjOUpUQ==}
+ '@rollup/rollup-freebsd-arm64@4.34.8':
+ resolution: {integrity: sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.30.1':
- resolution: {integrity: sha512-1MEdGqogQLccphhX5myCJqeGNYTNcmTyaic9S7CG3JhwuIByJ7J05vGbZxsizQthP1xpVx7kd3o31eOogfEirw==}
+ '@rollup/rollup-freebsd-x64@4.34.8':
+ resolution: {integrity: sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.30.1':
- resolution: {integrity: sha512-PaMRNBSqCx7K3Wc9QZkFx5+CX27WFpAMxJNiYGAXfmMIKC7jstlr32UhTgK6T07OtqR+wYlWm9IxzennjnvdJg==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.34.8':
+ resolution: {integrity: sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.30.1':
- resolution: {integrity: sha512-B8Rcyj9AV7ZlEFqvB5BubG5iO6ANDsRKlhIxySXcF1axXYUyqwBok+XZPgIYGBgs7LDXfWfifxhw0Ik57T0Yug==}
+ '@rollup/rollup-linux-arm-musleabihf@4.34.8':
+ resolution: {integrity: sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.30.1':
- resolution: {integrity: sha512-hqVyueGxAj3cBKrAI4aFHLV+h0Lv5VgWZs9CUGqr1z0fZtlADVV1YPOij6AhcK5An33EXaxnDLmJdQikcn5NEw==}
+ '@rollup/rollup-linux-arm64-gnu@4.34.8':
+ resolution: {integrity: sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.30.1':
- resolution: {integrity: sha512-i4Ab2vnvS1AE1PyOIGp2kXni69gU2DAUVt6FSXeIqUCPIR3ZlheMW3oP2JkukDfu3PsexYRbOiJrY+yVNSk9oA==}
+ '@rollup/rollup-linux-arm64-musl@4.34.8':
+ resolution: {integrity: sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-loongarch64-gnu@4.30.1':
- resolution: {integrity: sha512-fARcF5g296snX0oLGkVxPmysetwUk2zmHcca+e9ObOovBR++9ZPOhqFUM61UUZ2EYpXVPN1redgqVoBB34nTpQ==}
+ '@rollup/rollup-linux-loongarch64-gnu@4.34.8':
+ resolution: {integrity: sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==}
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.30.1':
- resolution: {integrity: sha512-GLrZraoO3wVT4uFXh67ElpwQY0DIygxdv0BNW9Hkm3X34wu+BkqrDrkcsIapAY+N2ATEbvak0XQ9gxZtCIA5Rw==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.34.8':
+ resolution: {integrity: sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.30.1':
- resolution: {integrity: sha512-0WKLaAUUHKBtll0wvOmh6yh3S0wSU9+yas923JIChfxOaaBarmb/lBKPF0w/+jTVozFnOXJeRGZ8NvOxvk/jcw==}
+ '@rollup/rollup-linux-riscv64-gnu@4.34.8':
+ resolution: {integrity: sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.30.1':
- resolution: {integrity: sha512-GWFs97Ruxo5Bt+cvVTQkOJ6TIx0xJDD/bMAOXWJg8TCSTEK8RnFeOeiFTxKniTc4vMIaWvCplMAFBt9miGxgkA==}
+ '@rollup/rollup-linux-s390x-gnu@4.34.8':
+ resolution: {integrity: sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.30.1':
- resolution: {integrity: sha512-UtgGb7QGgXDIO+tqqJ5oZRGHsDLO8SlpE4MhqpY9Llpzi5rJMvrK6ZGhsRCST2abZdBqIBeXW6WPD5fGK5SDwg==}
+ '@rollup/rollup-linux-x64-gnu@4.34.8':
+ resolution: {integrity: sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.30.1':
- resolution: {integrity: sha512-V9U8Ey2UqmQsBT+xTOeMzPzwDzyXmnAoO4edZhL7INkwQcaW1Ckv3WJX3qrrp/VHaDkEWIBWhRwP47r8cdrOow==}
+ '@rollup/rollup-linux-x64-musl@4.34.8':
+ resolution: {integrity: sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.30.1':
- resolution: {integrity: sha512-WabtHWiPaFF47W3PkHnjbmWawnX/aE57K47ZDT1BXTS5GgrBUEpvOzq0FI0V/UYzQJgdb8XlhVNH8/fwV8xDjw==}
+ '@rollup/rollup-win32-arm64-msvc@4.34.8':
+ resolution: {integrity: sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.30.1':
- resolution: {integrity: sha512-pxHAU+Zv39hLUTdQQHUVHf4P+0C47y/ZloorHpzs2SXMRqeAWmGghzAhfOlzFHHwjvgokdFAhC4V+6kC1lRRfw==}
+ '@rollup/rollup-win32-ia32-msvc@4.34.8':
+ resolution: {integrity: sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.30.1':
- resolution: {integrity: sha512-D6qjsXGcvhTjv0kI4fU8tUuBDF/Ueee4SVX79VfNDXZa64TfCW1Slkb6Z7O1p7vflqZjcmOVdZlqf8gvJxc6og==}
+ '@rollup/rollup-win32-x64-msvc@4.34.8':
+ resolution: {integrity: sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==}
cpu: [x64]
os: [win32]
- '@rushstack/node-core-library@5.10.2':
- resolution: {integrity: sha512-xOF/2gVJZTfjTxbo4BDj9RtQq/HFnrrKdtem4JkyRLnwsRz2UDTg8gA1/et10fBx5RxmZD9bYVGST69W8ME5OQ==}
+ '@rushstack/node-core-library@5.11.0':
+ resolution: {integrity: sha512-I8+VzG9A0F3nH2rLpPd7hF8F7l5Xb7D+ldrWVZYegXM6CsKkvWc670RlgK3WX8/AseZfXA/vVrh0bpXe2Y2UDQ==}
peerDependencies:
'@types/node': '*'
peerDependenciesMeta:
@@ -422,100 +428,100 @@ packages:
'@rushstack/rig-package@0.5.3':
resolution: {integrity: sha512-olzSSjYrvCNxUFZowevC3uz8gvKr3WTpHQ7BkpjtRpA3wK+T0ybep/SRUMfr195gBzJm5gaXw0ZMgjIyHqJUow==}
- '@rushstack/terminal@0.14.5':
- resolution: {integrity: sha512-TEOpNwwmsZVrkp0omnuTUTGZRJKTr6n6m4OITiNjkqzLAkcazVpwR1SOtBg6uzpkIBLgrcNHETqI8rbw3uiUfw==}
+ '@rushstack/terminal@0.15.0':
+ resolution: {integrity: sha512-vXQPRQ+vJJn4GVqxkwRe+UGgzNxdV8xuJZY2zem46Y0p3tlahucH9/hPmLGj2i9dQnUBFiRnoM9/KW7PYw8F4Q==}
peerDependencies:
'@types/node': '*'
peerDependenciesMeta:
'@types/node':
optional: true
- '@rushstack/ts-command-line@4.23.3':
- resolution: {integrity: sha512-HazKL8fv4HMQMzrKJCrOrhyBPPdzk7iajUXgsASwjQ8ROo1cmgyqxt/k9+SdmrNLGE1zATgRqMUH3s/6smbRMA==}
+ '@rushstack/ts-command-line@4.23.5':
+ resolution: {integrity: sha512-jg70HfoK44KfSP3MTiL5rxsZH7X1ktX3cZs9Sl8eDu1/LxJSbPsh0MOFRC710lIuYYSgxWjI5AjbCBAl7u3RxA==}
'@sindresorhus/is@4.6.0':
resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==}
engines: {node: '>=10'}
- '@stripe/stripe-js@5.5.0':
- resolution: {integrity: sha512-lkfjyAd34aeMpTKKcEVfy8IUyEsjuAT3t9EXr5yZDtdIUncnZpedl/xLV16Dkd4z+fQwixScsCCDxSMNtBOgpQ==}
+ '@stripe/stripe-js@5.6.0':
+ resolution: {integrity: sha512-w8CEY73X/7tw2KKlL3iOk679V9bWseE4GzNz3zlaYxcTjmcmWOathRb0emgo/QQ3eoNzmq68+2Y2gxluAv3xGw==}
engines: {node: '>=12.16'}
- '@tailwindcss/node@4.0.0':
- resolution: {integrity: sha512-tfG2uBvo6j6kDIPmntxwXggCOZAt7SkpAXJ6pTIYirNdk5FBqh/CZZ9BZPpgcl/tNFLs6zc4yghM76sqiELG9g==}
+ '@tailwindcss/node@4.0.8':
+ resolution: {integrity: sha512-FKArQpbrbwv08TNT0k7ejYXpF+R8knZFAatNc0acOxbgeqLzwb86r+P3LGOjIeI3Idqe9CVkZrh4GlsJLJKkkw==}
- '@tailwindcss/oxide-android-arm64@4.0.0':
- resolution: {integrity: sha512-EAhjU0+FIdyGPR+7MbBWubLLPtmOu+p7c2egTTFBRk/n//zYjNvVK0WhcBK5Y7oUB5mo4EjA2mCbY7dcEMWSRw==}
+ '@tailwindcss/oxide-android-arm64@4.0.8':
+ resolution: {integrity: sha512-We7K79+Sm4mwJHk26Yzu/GAj7C7myemm7PeXvpgMxyxO70SSFSL3uCcqFbz9JA5M5UPkrl7N9fkBe/Y0iazqpA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [android]
- '@tailwindcss/oxide-darwin-arm64@4.0.0':
- resolution: {integrity: sha512-hdz4xnSWS11cIp+7ye+3dGHqs0X33z+BXXTtgPOguDWVa+TdXUzwxonklSzf5wlJFuot3dv5eWzhlNai0oYYQg==}
+ '@tailwindcss/oxide-darwin-arm64@4.0.8':
+ resolution: {integrity: sha512-Lv9Isi2EwkCTG1sRHNDi0uRNN1UGFdEThUAGFrydRmQZnraGLMjN8gahzg2FFnOizDl7LB2TykLUuiw833DSNg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@tailwindcss/oxide-darwin-x64@4.0.0':
- resolution: {integrity: sha512-+dOUUaXTkPKKhtUI9QtVaYg+MpmLh2CN0dHohiYXaBirEyPMkjaT0zbRgzQlNnQWjCVVXPQluIEb0OMEjSTH+Q==}
+ '@tailwindcss/oxide-darwin-x64@4.0.8':
+ resolution: {integrity: sha512-fWfywfYIlSWtKoqWTjukTHLWV3ARaBRjXCC2Eo0l6KVpaqGY4c2y8snUjp1xpxUtpqwMvCvFWFaleMoz1Vhzlw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@tailwindcss/oxide-freebsd-x64@4.0.0':
- resolution: {integrity: sha512-CJhGDhxnrmu4SwyC62fA+wP24MhA/TZlIhRHqg1kRuIHoGoVR2uSSm1qxTxU37tSSZj8Up0q6jsBJCAP4k7rgQ==}
+ '@tailwindcss/oxide-freebsd-x64@4.0.8':
+ resolution: {integrity: sha512-SO+dyvjJV9G94bnmq2288Ke0BIdvrbSbvtPLaQdqjqHR83v5L2fWADyFO+1oecHo9Owsk8MxcXh1agGVPIKIqw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [freebsd]
- '@tailwindcss/oxide-linux-arm-gnueabihf@4.0.0':
- resolution: {integrity: sha512-Wy7Av0xzXfY2ujZBcYy4+7GQm25/J1iHvlQU2CfwdDCuPWfIjYzR6kggz+uVdSJyKV2s64znchBxRE8kV4uXSA==}
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.0.8':
+ resolution: {integrity: sha512-ZSHggWiEblQNV69V0qUK5vuAtHP+I+S2eGrKGJ5lPgwgJeAd6GjLsVBN+Mqn2SPVfYM3BOpS9jX/zVg9RWQVDQ==}
engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
- '@tailwindcss/oxide-linux-arm64-gnu@4.0.0':
- resolution: {integrity: sha512-srwBo2l6pvM0swBntc1ucuhGsfFOLkqPRFQ3dWARRTfSkL1U9nAsob2MKc/n47Eva/W9pZZgMOuf7rDw8pK1Ew==}
+ '@tailwindcss/oxide-linux-arm64-gnu@4.0.8':
+ resolution: {integrity: sha512-xWpr6M0OZLDNsr7+bQz+3X7zcnDJZJ1N9gtBWCtfhkEtDjjxYEp+Lr5L5nc/yXlL4MyCHnn0uonGVXy3fhxaVA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@tailwindcss/oxide-linux-arm64-musl@4.0.0':
- resolution: {integrity: sha512-abhusswkduYWuezkBmgo0K0/erGq3M4Se5xP0fhc/0dKs0X/rJUYYCFWntHb3IGh3aVzdQ0SXJs93P76DbUqtw==}
+ '@tailwindcss/oxide-linux-arm64-musl@4.0.8':
+ resolution: {integrity: sha512-5tz2IL7LN58ssGEq7h/staD7pu/izF/KeMWdlJ86WDe2Ah46LF3ET6ZGKTr5eZMrnEA0M9cVFuSPprKRHNgjeg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@tailwindcss/oxide-linux-x64-gnu@4.0.0':
- resolution: {integrity: sha512-hGtRYIUEx377/HlU49+jvVKKwU1MDSKYSMMs0JFO2Wp7LGxk5+0j5+RBk9NFnmp/lbp32yPTgIOO5m1BmDq36A==}
+ '@tailwindcss/oxide-linux-x64-gnu@4.0.8':
+ resolution: {integrity: sha512-KSzMkhyrxAQyY2o194NKVKU9j/c+NFSoMvnHWFaNHKi3P1lb+Vq1UC19tLHrmxSkKapcMMu69D7+G1+FVGNDXQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@tailwindcss/oxide-linux-x64-musl@4.0.0':
- resolution: {integrity: sha512-7xgQgSAThs0I14VAgmxpJnK6XFSZBxHMGoDXkLyYkEnu+8WRQMbCP93dkCUn2PIv+Q+JulRgc00PJ09uORSLXQ==}
+ '@tailwindcss/oxide-linux-x64-musl@4.0.8':
+ resolution: {integrity: sha512-yFYKG5UtHTRimjtqxUWXBgI4Tc6NJe3USjRIVdlTczpLRxq/SFwgzGl5JbatCxgSRDPBFwRrNPxq+ukfQFGdrw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@tailwindcss/oxide-win32-arm64-msvc@4.0.0':
- resolution: {integrity: sha512-qEcgTIPcWY5ZE7f6VxQ/JPrSFMcehzVIlZj7sGE3mVd5YWreAT+Fl1vSP8q2pjnWXn0avZG3Iw7a2hJQAm+fTQ==}
+ '@tailwindcss/oxide-win32-arm64-msvc@4.0.8':
+ resolution: {integrity: sha512-tndGujmCSba85cRCnQzXgpA2jx5gXimyspsUYae5jlPyLRG0RjXbDshFKOheVXU4TLflo7FSG8EHCBJ0EHTKdQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@tailwindcss/oxide-win32-x64-msvc@4.0.0':
- resolution: {integrity: sha512-bqT0AY8RXb8GMDy28JtngvqaOSB2YixbLPLvUo6I6lkvvUwA6Eqh2Tj60e2Lh7O/k083f8tYiB0WEK4wmTI7Jg==}
+ '@tailwindcss/oxide-win32-x64-msvc@4.0.8':
+ resolution: {integrity: sha512-T77jroAc0p4EHVVgTUiNeFn6Nj3jtD3IeNId2X+0k+N1XxfNipy81BEkYErpKLiOkNhpNFjPee8/ZVas29b2OQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- '@tailwindcss/oxide@4.0.0':
- resolution: {integrity: sha512-W3FjpJgy4VV1JiL7iBYDf2n/WkeDg1Il+0Q7eWnqPyvkPPCo/Mbwc5BiaT7dfBNV6tQKAhVE34rU5xl8pSl50w==}
+ '@tailwindcss/oxide@4.0.8':
+ resolution: {integrity: sha512-KfMcuAu/Iw+DcV1e8twrFyr2yN8/ZDC/odIGta4wuuJOGkrkHZbvJvRNIbQNhGh7erZTYV6Ie0IeD6WC9Y8Hcw==}
engines: {node: '>= 10'}
- '@tailwindcss/vite@4.0.0':
- resolution: {integrity: sha512-4uukMiU9gHui8KMPMdWic5SP1O/tmQ1NFSRNrQWmcop5evAVl/LZ6/LuWL3quEiecp2RBcRWwqJrG+mFXlRlew==}
+ '@tailwindcss/vite@4.0.8':
+ resolution: {integrity: sha512-+SAq44yLzYlzyrb7QTcFCdU8Xa7FOA0jp+Xby7fPMUie+MY9HhJysM7Vp+vL8qIp8ceQJfLD+FjgJuJ4lL6nyg==}
peerDependencies:
vite: ^5.2.0 || ^6
@@ -564,6 +570,14 @@ packages:
typescript:
optional: true
+ '@vue/language-core@2.2.4':
+ resolution: {integrity: sha512-eGGdw7eWUwdIn9Fy/irJ7uavCGfgemuHQABgJ/hU1UgZFnbTg9VWeXvHQdhY+2SPQZWJqWXvRWIg67t4iWEa+Q==}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
'@vue/reactivity@3.5.13':
resolution: {integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==}
@@ -622,6 +636,9 @@ packages:
alien-signals@0.4.14:
resolution: {integrity: sha512-itUAVzhczTmP2U5yX67xVpsbbOiquusbWVyA9N+sy6+r6YVbFkahXvNCeEPWEOMhwDYwbVbGHFkVL03N9I5g+Q==}
+ alien-signals@1.0.4:
+ resolution: {integrity: sha512-DJqqQD3XcsaQcQ1s+iE2jDUZmmQpXwHiR6fCAim/w87luaW+vmLY8fMlrdkmRwzaFXhkxf3rqPCR59tKVv1MDw==}
+
ansi-escapes@7.0.0:
resolution: {integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==}
engines: {node: '>=18'}
@@ -665,8 +682,8 @@ packages:
resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
engines: {node: '>=10'}
- cjs-module-lexer@1.4.1:
- resolution: {integrity: sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==}
+ cjs-module-lexer@1.4.3:
+ resolution: {integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==}
cli-highlight@2.1.11:
resolution: {integrity: sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==}
@@ -726,8 +743,8 @@ packages:
emojilib@2.4.0:
resolution: {integrity: sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==}
- enhanced-resolve@5.18.0:
- resolution: {integrity: sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==}
+ enhanced-resolve@5.18.1:
+ resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==}
engines: {node: '>=10.13.0'}
entities@4.5.0:
@@ -756,9 +773,9 @@ packages:
fflate@0.8.2:
resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==}
- fs-extra@7.0.1:
- resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==}
- engines: {node: '>=6 <7 || >=8'}
+ fs-extra@11.3.0:
+ resolution: {integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==}
+ engines: {node: '>=14.14'}
fsevents@2.3.3:
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
@@ -812,8 +829,8 @@ packages:
json-schema-traverse@1.0.0:
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
- jsonfile@4.0.0:
- resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
+ jsonfile@6.1.0:
+ resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
kolorist@1.8.0:
resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
@@ -899,11 +916,11 @@ packages:
magic-string@0.30.17:
resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
- marked-terminal@7.2.1:
- resolution: {integrity: sha512-rQ1MoMFXZICWNsKMiiHwP/Z+92PLKskTPXj+e7uwXmuMPkNn7iTqC+IvDekVm1MPeC9wYQeLxeFaOvudRR/XbQ==}
+ marked-terminal@7.3.0:
+ resolution: {integrity: sha512-t4rBvPsHc57uE/2nJOLmMbZCQ4tgAccAED3ngXQqW6g+TxA488JzJ+FK3lQkzBQOI1mRV/r/Kq+1ZlJ4D0owQw==}
engines: {node: '>=16.0.0'}
peerDependencies:
- marked: '>=1 <15'
+ marked: '>=1 <16'
marked@9.1.6:
resolution: {integrity: sha512-jcByLnIFkd5gSXZmjNvS1TlmRhCXZjIzHYlaGkPlLIekG55JDR2Z4va9tZwCiP+/RDERiNhMOFu01xd6O5ct1Q==}
@@ -946,8 +963,8 @@ packages:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
- package-manager-detector@0.2.8:
- resolution: {integrity: sha512-ts9KSdroZisdvKMWVAVCXiKqnqNfXz4+IbrBG8/BWx/TR5le+jfenvoBuIZ6UWM9nz47W7AbD9qYfAwfWMIwzA==}
+ package-manager-detector@0.2.9:
+ resolution: {integrity: sha512-+vYvA/Y31l8Zk8dwxHhL3JfTuHPm6tlxM2A3GeQyl7ovYnSp1+mzAxClxaOr0qO1TtPxbQxetI7v5XqKLJZk7Q==}
parse5-htmlparser2-tree-adapter@6.0.1:
resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==}
@@ -964,8 +981,8 @@ packages:
path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- pathe@2.0.1:
- resolution: {integrity: sha512-6jpjMpOth5S9ITVu5clZ7NOgHNsv5vRQdheL9ztp2vZmM6fRbLvyua1tiBIL4lk8SAe3ARzeXEly6siXCjDHDw==}
+ pathe@2.0.3:
+ resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
picocolors@1.1.1:
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
@@ -977,12 +994,12 @@ packages:
pkg-types@1.3.1:
resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
- postcss@8.5.1:
- resolution: {integrity: sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==}
+ postcss@8.5.3:
+ resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
engines: {node: ^10 || ^12 || >=14}
- publint@0.3.2:
- resolution: {integrity: sha512-fPs7QUbUvwixxPYUUTn0Kqp0rbH5rbiAOZwQOXMkIj+4Nopby1AngodSQmzTkJWTJ5R4uVV8oYmgVIjj+tgv1w==}
+ publint@0.3.6:
+ resolution: {integrity: sha512-f6mQw/RsX8GiUaUliYWJsivveYuwIozFLe4wCWE3NGj3vBamr816pxQGN0ycVwFIoTnIeqIJb9wsN7XAS8wRCA==}
engines: {node: '>=18'}
hasBin: true
@@ -1003,8 +1020,8 @@ packages:
engines: {node: '>= 0.4'}
hasBin: true
- rollup@4.30.1:
- resolution: {integrity: sha512-mlJ4glW020fPuLi7DkM/lN97mYEZGWeqBnrljzN0gs7GLctqX3lNWxKQ7Gl712UAX+6fog/L3jh4gb7R6aVi3w==}
+ rollup@4.34.8:
+ resolution: {integrity: sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -1017,8 +1034,8 @@ packages:
engines: {node: '>=10'}
hasBin: true
- semver@7.6.3:
- resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
+ semver@7.7.1:
+ resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
engines: {node: '>=10'}
hasBin: true
@@ -1061,16 +1078,16 @@ packages:
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
engines: {node: '>=10'}
- supports-hyperlinks@3.1.0:
- resolution: {integrity: sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==}
+ supports-hyperlinks@3.2.0:
+ resolution: {integrity: sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig==}
engines: {node: '>=14.18'}
supports-preserve-symlinks-flag@1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- tailwindcss@4.0.0:
- resolution: {integrity: sha512-ULRPI3A+e39T7pSaf1xoi58AqqJxVCLg8F/uM5A3FadUbnyDTgltVnXJvdkTjwCOGA6NazqHVcwPJC5h2vRYVQ==}
+ tailwindcss@4.0.8:
+ resolution: {integrity: sha512-Me7N5CKR+D2A1xdWA5t5+kjjT7bwnxZOE6/yDI/ixJdJokszsn2n++mdU5yJwrsTpqFX2B9ZNMBJDwcqk9C9lw==}
tapable@2.2.1:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
@@ -1088,11 +1105,6 @@ packages:
engines: {node: '>=14.17'}
hasBin: true
- typescript@5.7.2:
- resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==}
- engines: {node: '>=14.17'}
- hasBin: true
-
typescript@5.7.3:
resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==}
engines: {node: '>=14.17'}
@@ -1105,9 +1117,9 @@ packages:
resolution: {integrity: sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==}
engines: {node: '>=4'}
- universalify@0.1.2:
- resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
- engines: {node: '>= 4.0.0'}
+ universalify@2.0.1:
+ resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
+ engines: {node: '>= 10.0.0'}
uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
@@ -1125,8 +1137,8 @@ packages:
vite:
optional: true
- vite@6.0.11:
- resolution: {integrity: sha512-4VL9mQPKoHy4+FE0NnRE/kbY51TOfaknxAjt3fJbGJxhIpBZiqVzlZDEesWWsuREXHwNdAoOFZ9MkPEVXczHwg==}
+ vite@6.1.1:
+ resolution: {integrity: sha512-4GgM54XrwRfrOp297aIYspIti66k56v16ZnqHvrIM7mG+HjDlAwS7p+Srr7J6fGvEdOJ5JcQ/D9T7HhtdXDTzA==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
@@ -1165,11 +1177,11 @@ packages:
yaml:
optional: true
- vscode-uri@3.0.8:
- resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
+ vscode-uri@3.1.0:
+ resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
- vue-tsc@2.2.0:
- resolution: {integrity: sha512-gtmM1sUuJ8aSb0KoAFmK9yMxb8TxjewmxqTJ1aKphD5Cbu0rULFY6+UQT51zW7SpUcenfPUuflKyVwyx9Qdnxg==}
+ vue-tsc@2.2.4:
+ resolution: {integrity: sha512-3EVHlxtpMXcb5bCaK7QDFTbEkMusDfVk0HVRrkv5hEb+Clpu9a96lKUXJAeD/akRlkoA4H8MCHgBDN19S6FnzA==}
hasBin: true
peerDependencies:
typescript: '>=5.0.0'
@@ -1205,23 +1217,24 @@ snapshots:
'@andrewbranch/untar.js@1.0.3': {}
- '@arethetypeswrong/cli@0.17.3':
+ '@arethetypeswrong/cli@0.17.4':
dependencies:
- '@arethetypeswrong/core': 0.17.3
+ '@arethetypeswrong/core': 0.17.4
chalk: 4.1.2
cli-table3: 0.6.5
commander: 10.0.1
marked: 9.1.6
- marked-terminal: 7.2.1(marked@9.1.6)
- semver: 7.6.3
+ marked-terminal: 7.3.0(marked@9.1.6)
+ semver: 7.7.1
- '@arethetypeswrong/core@0.17.3':
+ '@arethetypeswrong/core@0.17.4':
dependencies:
'@andrewbranch/untar.js': 1.0.3
- cjs-module-lexer: 1.4.1
+ '@loaderkit/resolve': 1.0.2
+ cjs-module-lexer: 1.4.3
fflate: 0.8.2
lru-cache: 10.4.3
- semver: 7.6.3
+ semver: 7.7.1
typescript: 5.6.1-rc
validate-npm-package-name: 5.0.1
@@ -1229,11 +1242,11 @@ snapshots:
'@babel/helper-validator-identifier@7.25.9': {}
- '@babel/parser@7.26.5':
+ '@babel/parser@7.26.9':
dependencies:
- '@babel/types': 7.26.5
+ '@babel/types': 7.26.9
- '@babel/types@7.26.5':
+ '@babel/types@7.26.9':
dependencies:
'@babel/helper-string-parser': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
@@ -1273,6 +1286,8 @@ snapshots:
'@biomejs/cli-win32-x64@1.9.4':
optional: true
+ '@braidai/lang@1.0.0': {}
+
'@colors/colors@1.5.0':
optional: true
@@ -1353,29 +1368,33 @@ snapshots:
'@jridgewell/sourcemap-codec@1.5.0': {}
- '@microsoft/api-extractor-model@7.30.2':
+ '@loaderkit/resolve@1.0.2':
+ dependencies:
+ '@braidai/lang': 1.0.0
+
+ '@microsoft/api-extractor-model@7.30.3':
dependencies:
'@microsoft/tsdoc': 0.15.1
'@microsoft/tsdoc-config': 0.17.1
- '@rushstack/node-core-library': 5.10.2
+ '@rushstack/node-core-library': 5.11.0
transitivePeerDependencies:
- '@types/node'
- '@microsoft/api-extractor@7.49.1':
+ '@microsoft/api-extractor@7.50.1':
dependencies:
- '@microsoft/api-extractor-model': 7.30.2
+ '@microsoft/api-extractor-model': 7.30.3
'@microsoft/tsdoc': 0.15.1
'@microsoft/tsdoc-config': 0.17.1
- '@rushstack/node-core-library': 5.10.2
+ '@rushstack/node-core-library': 5.11.0
'@rushstack/rig-package': 0.5.3
- '@rushstack/terminal': 0.14.5
- '@rushstack/ts-command-line': 4.23.3
+ '@rushstack/terminal': 0.15.0
+ '@rushstack/ts-command-line': 4.23.5
lodash: 4.17.21
minimatch: 3.0.8
resolve: 1.22.10
semver: 7.5.4
source-map: 0.6.1
- typescript: 5.7.2
+ typescript: 5.7.3
transitivePeerDependencies:
- '@types/node'
@@ -1390,77 +1409,77 @@ snapshots:
'@publint/pack@0.1.1': {}
- '@rollup/pluginutils@5.1.4(rollup@4.30.1)':
+ '@rollup/pluginutils@5.1.4(rollup@4.34.8)':
dependencies:
'@types/estree': 1.0.6
estree-walker: 2.0.2
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.30.1
+ rollup: 4.34.8
- '@rollup/rollup-android-arm-eabi@4.30.1':
+ '@rollup/rollup-android-arm-eabi@4.34.8':
optional: true
- '@rollup/rollup-android-arm64@4.30.1':
+ '@rollup/rollup-android-arm64@4.34.8':
optional: true
- '@rollup/rollup-darwin-arm64@4.30.1':
+ '@rollup/rollup-darwin-arm64@4.34.8':
optional: true
- '@rollup/rollup-darwin-x64@4.30.1':
+ '@rollup/rollup-darwin-x64@4.34.8':
optional: true
- '@rollup/rollup-freebsd-arm64@4.30.1':
+ '@rollup/rollup-freebsd-arm64@4.34.8':
optional: true
- '@rollup/rollup-freebsd-x64@4.30.1':
+ '@rollup/rollup-freebsd-x64@4.34.8':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.30.1':
+ '@rollup/rollup-linux-arm-gnueabihf@4.34.8':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.30.1':
+ '@rollup/rollup-linux-arm-musleabihf@4.34.8':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.30.1':
+ '@rollup/rollup-linux-arm64-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.30.1':
+ '@rollup/rollup-linux-arm64-musl@4.34.8':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.30.1':
+ '@rollup/rollup-linux-loongarch64-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.30.1':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.30.1':
+ '@rollup/rollup-linux-riscv64-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.30.1':
+ '@rollup/rollup-linux-s390x-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.30.1':
+ '@rollup/rollup-linux-x64-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-x64-musl@4.30.1':
+ '@rollup/rollup-linux-x64-musl@4.34.8':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.30.1':
+ '@rollup/rollup-win32-arm64-msvc@4.34.8':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.30.1':
+ '@rollup/rollup-win32-ia32-msvc@4.34.8':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.30.1':
+ '@rollup/rollup-win32-x64-msvc@4.34.8':
optional: true
- '@rushstack/node-core-library@5.10.2':
+ '@rushstack/node-core-library@5.11.0':
dependencies:
ajv: 8.13.0
ajv-draft-04: 1.0.0(ajv@8.13.0)
ajv-formats: 3.0.1(ajv@8.13.0)
- fs-extra: 7.0.1
+ fs-extra: 11.3.0
import-lazy: 4.0.0
jju: 1.4.0
resolve: 1.22.10
@@ -1471,14 +1490,14 @@ snapshots:
resolve: 1.22.10
strip-json-comments: 3.1.1
- '@rushstack/terminal@0.14.5':
+ '@rushstack/terminal@0.15.0':
dependencies:
- '@rushstack/node-core-library': 5.10.2
+ '@rushstack/node-core-library': 5.11.0
supports-color: 8.1.1
- '@rushstack/ts-command-line@4.23.3':
+ '@rushstack/ts-command-line@4.23.5':
dependencies:
- '@rushstack/terminal': 0.14.5
+ '@rushstack/terminal': 0.15.0
'@types/argparse': 1.0.38
argparse: 1.0.10
string-argv: 0.3.2
@@ -1487,76 +1506,76 @@ snapshots:
'@sindresorhus/is@4.6.0': {}
- '@stripe/stripe-js@5.5.0': {}
+ '@stripe/stripe-js@5.6.0': {}
- '@tailwindcss/node@4.0.0':
+ '@tailwindcss/node@4.0.8':
dependencies:
- enhanced-resolve: 5.18.0
+ enhanced-resolve: 5.18.1
jiti: 2.4.2
- tailwindcss: 4.0.0
+ tailwindcss: 4.0.8
- '@tailwindcss/oxide-android-arm64@4.0.0':
+ '@tailwindcss/oxide-android-arm64@4.0.8':
optional: true
- '@tailwindcss/oxide-darwin-arm64@4.0.0':
+ '@tailwindcss/oxide-darwin-arm64@4.0.8':
optional: true
- '@tailwindcss/oxide-darwin-x64@4.0.0':
+ '@tailwindcss/oxide-darwin-x64@4.0.8':
optional: true
- '@tailwindcss/oxide-freebsd-x64@4.0.0':
+ '@tailwindcss/oxide-freebsd-x64@4.0.8':
optional: true
- '@tailwindcss/oxide-linux-arm-gnueabihf@4.0.0':
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.0.8':
optional: true
- '@tailwindcss/oxide-linux-arm64-gnu@4.0.0':
+ '@tailwindcss/oxide-linux-arm64-gnu@4.0.8':
optional: true
- '@tailwindcss/oxide-linux-arm64-musl@4.0.0':
+ '@tailwindcss/oxide-linux-arm64-musl@4.0.8':
optional: true
- '@tailwindcss/oxide-linux-x64-gnu@4.0.0':
+ '@tailwindcss/oxide-linux-x64-gnu@4.0.8':
optional: true
- '@tailwindcss/oxide-linux-x64-musl@4.0.0':
+ '@tailwindcss/oxide-linux-x64-musl@4.0.8':
optional: true
- '@tailwindcss/oxide-win32-arm64-msvc@4.0.0':
+ '@tailwindcss/oxide-win32-arm64-msvc@4.0.8':
optional: true
- '@tailwindcss/oxide-win32-x64-msvc@4.0.0':
+ '@tailwindcss/oxide-win32-x64-msvc@4.0.8':
optional: true
- '@tailwindcss/oxide@4.0.0':
+ '@tailwindcss/oxide@4.0.8':
optionalDependencies:
- '@tailwindcss/oxide-android-arm64': 4.0.0
- '@tailwindcss/oxide-darwin-arm64': 4.0.0
- '@tailwindcss/oxide-darwin-x64': 4.0.0
- '@tailwindcss/oxide-freebsd-x64': 4.0.0
- '@tailwindcss/oxide-linux-arm-gnueabihf': 4.0.0
- '@tailwindcss/oxide-linux-arm64-gnu': 4.0.0
- '@tailwindcss/oxide-linux-arm64-musl': 4.0.0
- '@tailwindcss/oxide-linux-x64-gnu': 4.0.0
- '@tailwindcss/oxide-linux-x64-musl': 4.0.0
- '@tailwindcss/oxide-win32-arm64-msvc': 4.0.0
- '@tailwindcss/oxide-win32-x64-msvc': 4.0.0
-
- '@tailwindcss/vite@4.0.0(vite@6.0.11(jiti@2.4.2)(lightningcss@1.29.1))':
- dependencies:
- '@tailwindcss/node': 4.0.0
- '@tailwindcss/oxide': 4.0.0
+ '@tailwindcss/oxide-android-arm64': 4.0.8
+ '@tailwindcss/oxide-darwin-arm64': 4.0.8
+ '@tailwindcss/oxide-darwin-x64': 4.0.8
+ '@tailwindcss/oxide-freebsd-x64': 4.0.8
+ '@tailwindcss/oxide-linux-arm-gnueabihf': 4.0.8
+ '@tailwindcss/oxide-linux-arm64-gnu': 4.0.8
+ '@tailwindcss/oxide-linux-arm64-musl': 4.0.8
+ '@tailwindcss/oxide-linux-x64-gnu': 4.0.8
+ '@tailwindcss/oxide-linux-x64-musl': 4.0.8
+ '@tailwindcss/oxide-win32-arm64-msvc': 4.0.8
+ '@tailwindcss/oxide-win32-x64-msvc': 4.0.8
+
+ '@tailwindcss/vite@4.0.8(vite@6.1.1(jiti@2.4.2)(lightningcss@1.29.1))':
+ dependencies:
+ '@tailwindcss/node': 4.0.8
+ '@tailwindcss/oxide': 4.0.8
lightningcss: 1.29.1
- tailwindcss: 4.0.0
- vite: 6.0.11(jiti@2.4.2)(lightningcss@1.29.1)
+ tailwindcss: 4.0.8
+ vite: 6.1.1(jiti@2.4.2)(lightningcss@1.29.1)
'@types/argparse@1.0.38': {}
'@types/estree@1.0.6': {}
- '@vitejs/plugin-vue@5.2.1(vite@6.0.11(jiti@2.4.2)(lightningcss@1.29.1))(vue@3.5.13(typescript@5.7.3))':
+ '@vitejs/plugin-vue@5.2.1(vite@6.1.1(jiti@2.4.2)(lightningcss@1.29.1))(vue@3.5.13(typescript@5.7.3))':
dependencies:
- vite: 6.0.11(jiti@2.4.2)(lightningcss@1.29.1)
+ vite: 6.1.1(jiti@2.4.2)(lightningcss@1.29.1)
vue: 3.5.13(typescript@5.7.3)
'@volar/language-core@2.4.11':
@@ -1569,11 +1588,11 @@ snapshots:
dependencies:
'@volar/language-core': 2.4.11
path-browserify: 1.0.1
- vscode-uri: 3.0.8
+ vscode-uri: 3.1.0
'@vue/compiler-core@3.5.13':
dependencies:
- '@babel/parser': 7.26.5
+ '@babel/parser': 7.26.9
'@vue/shared': 3.5.13
entities: 4.5.0
estree-walker: 2.0.2
@@ -1586,14 +1605,14 @@ snapshots:
'@vue/compiler-sfc@3.5.13':
dependencies:
- '@babel/parser': 7.26.5
+ '@babel/parser': 7.26.9
'@vue/compiler-core': 3.5.13
'@vue/compiler-dom': 3.5.13
'@vue/compiler-ssr': 3.5.13
'@vue/shared': 3.5.13
estree-walker: 2.0.2
magic-string: 0.30.17
- postcss: 8.5.1
+ postcss: 8.5.3
source-map-js: 1.2.1
'@vue/compiler-ssr@3.5.13':
@@ -1619,6 +1638,19 @@ snapshots:
optionalDependencies:
typescript: 5.7.3
+ '@vue/language-core@2.2.4(typescript@5.7.3)':
+ dependencies:
+ '@volar/language-core': 2.4.11
+ '@vue/compiler-dom': 3.5.13
+ '@vue/compiler-vue2': 2.7.16
+ '@vue/shared': 3.5.13
+ alien-signals: 1.0.4
+ minimatch: 9.0.5
+ muggle-string: 0.4.1
+ path-browserify: 1.0.1
+ optionalDependencies:
+ typescript: 5.7.3
+
'@vue/reactivity@3.5.13':
dependencies:
'@vue/shared': 3.5.13
@@ -1674,6 +1706,8 @@ snapshots:
alien-signals@0.4.14: {}
+ alien-signals@1.0.4: {}
+
ansi-escapes@7.0.0:
dependencies:
environment: 1.1.0
@@ -1712,7 +1746,7 @@ snapshots:
char-regex@1.0.2: {}
- cjs-module-lexer@1.4.1: {}
+ cjs-module-lexer@1.4.3: {}
cli-highlight@2.1.11:
dependencies:
@@ -1763,7 +1797,7 @@ snapshots:
emojilib@2.4.0: {}
- enhanced-resolve@5.18.0:
+ enhanced-resolve@5.18.1:
dependencies:
graceful-fs: 4.2.11
tapable: 2.2.1
@@ -1808,11 +1842,11 @@ snapshots:
fflate@0.8.2: {}
- fs-extra@7.0.1:
+ fs-extra@11.3.0:
dependencies:
graceful-fs: 4.2.11
- jsonfile: 4.0.0
- universalify: 0.1.2
+ jsonfile: 6.1.0
+ universalify: 2.0.1
fsevents@2.3.3:
optional: true
@@ -1847,7 +1881,9 @@ snapshots:
json-schema-traverse@1.0.0: {}
- jsonfile@4.0.0:
+ jsonfile@6.1.0:
+ dependencies:
+ universalify: 2.0.1
optionalDependencies:
graceful-fs: 4.2.11
@@ -1915,7 +1951,7 @@ snapshots:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
- marked-terminal@7.2.1(marked@9.1.6):
+ marked-terminal@7.3.0(marked@9.1.6):
dependencies:
ansi-escapes: 7.0.0
ansi-regex: 6.1.0
@@ -1924,7 +1960,7 @@ snapshots:
cli-table3: 0.6.5
marked: 9.1.6
node-emoji: 2.2.0
- supports-hyperlinks: 3.1.0
+ supports-hyperlinks: 3.2.0
marked@9.1.6: {}
@@ -1939,7 +1975,7 @@ snapshots:
mlly@1.7.4:
dependencies:
acorn: 8.14.0
- pathe: 2.0.1
+ pathe: 2.0.3
pkg-types: 1.3.1
ufo: 1.5.4
@@ -1966,7 +2002,7 @@ snapshots:
object-assign@4.1.1: {}
- package-manager-detector@0.2.8: {}
+ package-manager-detector@0.2.9: {}
parse5-htmlparser2-tree-adapter@6.0.1:
dependencies:
@@ -1980,7 +2016,7 @@ snapshots:
path-parse@1.0.7: {}
- pathe@2.0.1: {}
+ pathe@2.0.3: {}
picocolors@1.1.1: {}
@@ -1990,18 +2026,18 @@ snapshots:
dependencies:
confbox: 0.1.8
mlly: 1.7.4
- pathe: 2.0.1
+ pathe: 2.0.3
- postcss@8.5.1:
+ postcss@8.5.3:
dependencies:
nanoid: 3.3.8
picocolors: 1.1.1
source-map-js: 1.2.1
- publint@0.3.2:
+ publint@0.3.6:
dependencies:
'@publint/pack': 0.1.1
- package-manager-detector: 0.2.8
+ package-manager-detector: 0.2.9
picocolors: 1.1.1
sade: 1.8.1
@@ -2017,29 +2053,29 @@ snapshots:
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- rollup@4.30.1:
+ rollup@4.34.8:
dependencies:
'@types/estree': 1.0.6
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.30.1
- '@rollup/rollup-android-arm64': 4.30.1
- '@rollup/rollup-darwin-arm64': 4.30.1
- '@rollup/rollup-darwin-x64': 4.30.1
- '@rollup/rollup-freebsd-arm64': 4.30.1
- '@rollup/rollup-freebsd-x64': 4.30.1
- '@rollup/rollup-linux-arm-gnueabihf': 4.30.1
- '@rollup/rollup-linux-arm-musleabihf': 4.30.1
- '@rollup/rollup-linux-arm64-gnu': 4.30.1
- '@rollup/rollup-linux-arm64-musl': 4.30.1
- '@rollup/rollup-linux-loongarch64-gnu': 4.30.1
- '@rollup/rollup-linux-powerpc64le-gnu': 4.30.1
- '@rollup/rollup-linux-riscv64-gnu': 4.30.1
- '@rollup/rollup-linux-s390x-gnu': 4.30.1
- '@rollup/rollup-linux-x64-gnu': 4.30.1
- '@rollup/rollup-linux-x64-musl': 4.30.1
- '@rollup/rollup-win32-arm64-msvc': 4.30.1
- '@rollup/rollup-win32-ia32-msvc': 4.30.1
- '@rollup/rollup-win32-x64-msvc': 4.30.1
+ '@rollup/rollup-android-arm-eabi': 4.34.8
+ '@rollup/rollup-android-arm64': 4.34.8
+ '@rollup/rollup-darwin-arm64': 4.34.8
+ '@rollup/rollup-darwin-x64': 4.34.8
+ '@rollup/rollup-freebsd-arm64': 4.34.8
+ '@rollup/rollup-freebsd-x64': 4.34.8
+ '@rollup/rollup-linux-arm-gnueabihf': 4.34.8
+ '@rollup/rollup-linux-arm-musleabihf': 4.34.8
+ '@rollup/rollup-linux-arm64-gnu': 4.34.8
+ '@rollup/rollup-linux-arm64-musl': 4.34.8
+ '@rollup/rollup-linux-loongarch64-gnu': 4.34.8
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.34.8
+ '@rollup/rollup-linux-riscv64-gnu': 4.34.8
+ '@rollup/rollup-linux-s390x-gnu': 4.34.8
+ '@rollup/rollup-linux-x64-gnu': 4.34.8
+ '@rollup/rollup-linux-x64-musl': 4.34.8
+ '@rollup/rollup-win32-arm64-msvc': 4.34.8
+ '@rollup/rollup-win32-ia32-msvc': 4.34.8
+ '@rollup/rollup-win32-x64-msvc': 4.34.8
fsevents: 2.3.3
sade@1.8.1:
@@ -2050,7 +2086,7 @@ snapshots:
dependencies:
lru-cache: 6.0.0
- semver@7.6.3: {}
+ semver@7.7.1: {}
skin-tone@2.0.0:
dependencies:
@@ -2084,14 +2120,14 @@ snapshots:
dependencies:
has-flag: 4.0.0
- supports-hyperlinks@3.1.0:
+ supports-hyperlinks@3.2.0:
dependencies:
has-flag: 4.0.0
supports-color: 7.2.0
supports-preserve-symlinks-flag@1.0.0: {}
- tailwindcss@4.0.0: {}
+ tailwindcss@4.0.8: {}
tapable@2.2.1: {}
@@ -2105,15 +2141,13 @@ snapshots:
typescript@5.6.1-rc: {}
- typescript@5.7.2: {}
-
typescript@5.7.3: {}
ufo@1.5.4: {}
unicode-emoji-modifier-base@1.0.0: {}
- universalify@0.1.2: {}
+ universalify@2.0.1: {}
uri-js@4.4.1:
dependencies:
@@ -2121,10 +2155,10 @@ snapshots:
validate-npm-package-name@5.0.1: {}
- vite-plugin-dts@4.5.0(rollup@4.30.1)(typescript@5.7.3)(vite@6.0.11(jiti@2.4.2)(lightningcss@1.29.1)):
+ vite-plugin-dts@4.5.0(rollup@4.34.8)(typescript@5.7.3)(vite@6.1.1(jiti@2.4.2)(lightningcss@1.29.1)):
dependencies:
- '@microsoft/api-extractor': 7.49.1
- '@rollup/pluginutils': 5.1.4(rollup@4.30.1)
+ '@microsoft/api-extractor': 7.50.1
+ '@rollup/pluginutils': 5.1.4(rollup@4.34.8)
'@volar/typescript': 2.4.11
'@vue/language-core': 2.2.0(typescript@5.7.3)
compare-versions: 6.1.1
@@ -2134,28 +2168,28 @@ snapshots:
magic-string: 0.30.17
typescript: 5.7.3
optionalDependencies:
- vite: 6.0.11(jiti@2.4.2)(lightningcss@1.29.1)
+ vite: 6.1.1(jiti@2.4.2)(lightningcss@1.29.1)
transitivePeerDependencies:
- '@types/node'
- rollup
- supports-color
- vite@6.0.11(jiti@2.4.2)(lightningcss@1.29.1):
+ vite@6.1.1(jiti@2.4.2)(lightningcss@1.29.1):
dependencies:
esbuild: 0.24.2
- postcss: 8.5.1
- rollup: 4.30.1
+ postcss: 8.5.3
+ rollup: 4.34.8
optionalDependencies:
fsevents: 2.3.3
jiti: 2.4.2
lightningcss: 1.29.1
- vscode-uri@3.0.8: {}
+ vscode-uri@3.1.0: {}
- vue-tsc@2.2.0(typescript@5.7.3):
+ vue-tsc@2.2.4(typescript@5.7.3):
dependencies:
'@volar/typescript': 2.4.11
- '@vue/language-core': 2.2.0(typescript@5.7.3)
+ '@vue/language-core': 2.2.4(typescript@5.7.3)
typescript: 5.7.3
vue@3.5.13(typescript@5.7.3):