diff --git a/.github/scripts/update_currencies.py b/.github/scripts/update_currencies.py
index 51daf822..a7cd58f1 100644
--- a/.github/scripts/update_currencies.py
+++ b/.github/scripts/update_currencies.py
@@ -4,11 +4,8 @@ import os
def fetch_currencies():
try:
- response = requests.get('https://restcountries.com/v3.1/all')
+ response = requests.get('https://restcountries.com/v3.1/all?fields=name,common,currencies')
response.raise_for_status()
- except requests.exceptions.Timeout:
- print("Request to the API timed out.")
- return []
except requests.exceptions.RequestException as e:
print(f"An error occurred while making the request: {e}")
return []
@@ -35,10 +32,12 @@ def fetch_currencies():
return currencies_list
def save_currencies(currencies, file_path):
+ # Sort the list by the "local" field
+ sorted_currencies = sorted(currencies, key=lambda x: x['local'].lower() if x['local'] else "")
try:
os.makedirs(os.path.dirname(file_path), exist_ok=True)
with open(file_path, 'w', encoding='utf-8') as f:
- json.dump(currencies, f, ensure_ascii=False, indent=4)
+ json.dump(sorted_currencies, f, ensure_ascii=False, indent=4)
except IOError as e:
print(f"An error occurred while writing to the file: {e}")
@@ -62,4 +61,4 @@ def main():
print("Currencies updated and saved.")
if __name__ == "__main__":
- main()
\ No newline at end of file
+ main()
diff --git a/.github/workflows/partial-backend.yaml b/.github/workflows/partial-backend.yaml
index fe4dac23..c534f902 100644
--- a/.github/workflows/partial-backend.yaml
+++ b/.github/workflows/partial-backend.yaml
@@ -34,3 +34,8 @@ jobs:
- name: Test
run: task go:coverage
+
+ - name: Validate OpenAPI definition
+ uses: swaggerexpert/swagger-editor-validate@v1
+ with:
+ definition-file: backend/app/api/static/docs/swagger.json
diff --git a/.gitignore b/.gitignore
index 51a835a4..a1ed69af 100644
--- a/.gitignore
+++ b/.gitignore
@@ -56,4 +56,5 @@ backend/app/api/static/public/*
!backend/app/api/static/public/.gitkeep
backend/api
-docs/.vitepress/cache/
\ No newline at end of file
+docs/.vitepress/cache/
+/.data/
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 52b2a0f8..7006f255 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -44,7 +44,7 @@ start command `task go:run`
### Frontend Development Notes
-start command `task: ui:dev`
+start command `task ui:dev`
1. The frontend is a Vue 3 app with Nuxt.js that uses Tailwind and DaisyUI for styling.
2. We're using Vitest for our automated testing. You can run these with `task ui:watch`.
@@ -54,4 +54,4 @@ start command `task: ui:dev`
Create a new tag in GitHub with the version number vX.X.X. This will trigger a new release to be created.
-Test -> Goreleaser -> Publish Release -> Trigger Docker Builds -> Deploy Docs + Fly.io Demo
\ No newline at end of file
+Test -> Goreleaser -> Publish Release -> Trigger Docker Builds -> Deploy Docs + Fly.io Demo
diff --git a/README.md b/README.md
index e45676f6..abe3195b 100644
--- a/README.md
+++ b/README.md
@@ -21,6 +21,10 @@ Homebox is the inventory and organization system built for the Home User! With a
# Screenshots
Check out screenshots of the project [here](https://imgur.com/a/5gLWt2j).
+You can also try the demo instances of Homebox:
+- [Demo](https://demo.homebox.software)
+- [Nightly](https://nightly.homebox.software)
+- [VNext](https://vnext.homebox.software/)
## Quick Start
diff --git a/Taskfile.yml b/Taskfile.yml
index 4d9c1aa2..7f8abbe6 100644
--- a/Taskfile.yml
+++ b/Taskfile.yml
@@ -28,7 +28,6 @@ tasks:
- "./backend/internal/data/**"
- "./backend/internal/core/services/**/*"
- "./backend/app/tools/typegen/main.go"
-
typescript-types:
desc: Generates typescript types from swagger definition
cmds:
@@ -52,6 +51,8 @@ tasks:
- cp ./backend/app/api/static/docs/swagger.json docs/docs/api/openapi-2.0.json
go:run:
+ env:
+ HBOX_DEMO: true
desc: Starts the backend api server (depends on generate task)
dir: backend
deps:
diff --git a/backend/app/api/handlers/v1/v1_ctrl_auth.go b/backend/app/api/handlers/v1/v1_ctrl_auth.go
index 945c6cfb..bb54a4e1 100644
--- a/backend/app/api/handlers/v1/v1_ctrl_auth.go
+++ b/backend/app/api/handlers/v1/v1_ctrl_auth.go
@@ -28,8 +28,8 @@ type (
}
LoginForm struct {
- Username string `json:"username"`
- Password string `json:"password"`
+ Username string `json:"username" example:"admin@admin.com"`
+ Password string `json:"password" example:"admin"`
StayLoggedIn bool `json:"stayLoggedIn"`
}
)
@@ -79,17 +79,15 @@ type AuthProvider interface {
// HandleAuthLogin godoc
//
-// @Summary User Login
-// @Tags Authentication
-// @Accept x-www-form-urlencoded
-// @Accept application/json
-// @Param username formData string false "string" example(admin@admin.com)
-// @Param password formData string false "string" example(admin)
-// @Param payload body LoginForm true "Login Data"
-// @Param provider query string false "auth provider"
-// @Produce json
-// @Success 200 {object} TokenResponse
-// @Router /v1/users/login [POST]
+// @Summary User Login
+// @Tags Authentication
+// @Accept x-www-form-urlencoded
+// @Accept application/json
+// @Param payload body LoginForm true "Login Data"
+// @Param provider query string false "auth provider"
+// @Produce json
+// @Success 200 {object} TokenResponse
+// @Router /v1/users/login [POST]
func (ctrl *V1Controller) HandleAuthLogin(ps ...AuthProvider) errchain.HandlerFunc {
if len(ps) == 0 {
panic("no auth providers provided")
diff --git a/backend/app/api/handlers/v1/v1_ctrl_items.go b/backend/app/api/handlers/v1/v1_ctrl_items.go
index 45790c90..f3bca420 100644
--- a/backend/app/api/handlers/v1/v1_ctrl_items.go
+++ b/backend/app/api/handlers/v1/v1_ctrl_items.go
@@ -4,10 +4,12 @@ import (
"database/sql"
"encoding/csv"
"errors"
+ "fmt"
"math/big"
"net/http"
"net/url"
"strings"
+ "time"
"github.com/google/uuid"
"github.com/hay-kot/httpkit/errchain"
@@ -290,13 +292,14 @@ func (ctrl *V1Controller) HandleGetAllCustomFieldValues() errchain.HandlerFunc {
// HandleItemsImport godocs
//
-// @Summary Import Items
-// @Tags Items
-// @Produce json
-// @Success 204
-// @Param csv formData file true "Image to upload"
-// @Router /v1/items/import [Post]
-// @Security Bearer
+// @Summary Import Items
+// @Tags Items
+// @Accept multipart/form-data
+// @Produce json
+// @Success 204
+// @Param csv formData file true "Image to upload"
+// @Router /v1/items/import [Post]
+// @Security Bearer
func (ctrl *V1Controller) HandleItemsImport() errchain.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) error {
err := r.ParseMultipartForm(ctrl.maxUploadSize << 20)
@@ -340,8 +343,11 @@ func (ctrl *V1Controller) HandleItemsExport() errchain.HandlerFunc {
return validate.NewRequestError(err, http.StatusInternalServerError)
}
+ timestamp := time.Now().Format("2006-01-02_15-04-05") // YYYY-MM-DD_HH-MM-SS format
+ filename := fmt.Sprintf("homebox-items_%s.csv", timestamp) // add timestamp to filename
+
w.Header().Set("Content-Type", "text/csv")
- w.Header().Set("Content-Disposition", "attachment;filename=homebox-items.csv")
+ w.Header().Set("Content-Disposition", fmt.Sprintf("attachment;filename=%s", filename))
writer := csv.NewWriter(w)
writer.Comma = ','
diff --git a/backend/app/api/handlers/v1/v1_ctrl_items_attachments.go b/backend/app/api/handlers/v1/v1_ctrl_items_attachments.go
index 007f6dde..86192a66 100644
--- a/backend/app/api/handlers/v1/v1_ctrl_items_attachments.go
+++ b/backend/app/api/handlers/v1/v1_ctrl_items_attachments.go
@@ -23,17 +23,18 @@ type (
// HandleItemAttachmentCreate godocs
//
-// @Summary Create Item Attachment
-// @Tags Items Attachments
-// @Produce json
-// @Param id path string true "Item ID"
-// @Param file formData file true "File attachment"
-// @Param type formData string true "Type of file"
-// @Param name formData string true "name of the file including extension"
-// @Success 200 {object} repo.ItemOut
-// @Failure 422 {object} validate.ErrorResponse
-// @Router /v1/items/{id}/attachments [POST]
-// @Security Bearer
+// @Summary Create Item Attachment
+// @Tags Items Attachments
+// @Accept multipart/form-data
+// @Produce json
+// @Param id path string true "Item ID"
+// @Param file formData file true "File attachment"
+// @Param type formData string true "Type of file"
+// @Param name formData string true "name of the file including extension"
+// @Success 200 {object} repo.ItemOut
+// @Failure 422 {object} validate.ErrorResponse
+// @Router /v1/items/{id}/attachments [POST]
+// @Security Bearer
func (ctrl *V1Controller) HandleItemAttachmentCreate() errchain.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) error {
err := r.ParseMultipartForm(ctrl.maxUploadSize << 20)
diff --git a/backend/app/api/handlers/v1/v1_ctrl_maint_entry.go b/backend/app/api/handlers/v1/v1_ctrl_maint_entry.go
index aa1f3bb5..b981405b 100644
--- a/backend/app/api/handlers/v1/v1_ctrl_maint_entry.go
+++ b/backend/app/api/handlers/v1/v1_ctrl_maint_entry.go
@@ -12,13 +12,14 @@ import (
// HandleMaintenanceLogGet godoc
//
-// @Summary Get Maintenance Log
-// @Tags Item Maintenance
-// @Produce json
-// @Param filters query repo.MaintenanceFilters false "which maintenance to retrieve"
-// @Success 200 {array} repo.MaintenanceEntryWithDetails[]
-// @Router /v1/items/{id}/maintenance [GET]
-// @Security Bearer
+// @Summary Get Maintenance Log
+// @Tags Item Maintenance
+// @Produce json
+// @Param id path string true "Item ID"
+// @Param filters query repo.MaintenanceFilters false "which maintenance to retrieve"
+// @Success 200 {array} repo.MaintenanceEntryWithDetails[]
+// @Router /v1/items/{id}/maintenance [GET]
+// @Security Bearer
func (ctrl *V1Controller) HandleMaintenanceLogGet() errchain.HandlerFunc {
fn := func(r *http.Request, ID uuid.UUID, filters repo.MaintenanceFilters) ([]repo.MaintenanceEntryWithDetails, error) {
auth := services.NewContext(r.Context())
@@ -30,13 +31,14 @@ func (ctrl *V1Controller) HandleMaintenanceLogGet() errchain.HandlerFunc {
// HandleMaintenanceEntryCreate godoc
//
-// @Summary Create Maintenance Entry
-// @Tags Item Maintenance
-// @Produce json
-// @Param payload body repo.MaintenanceEntryCreate true "Entry Data"
-// @Success 201 {object} repo.MaintenanceEntry
-// @Router /v1/items/{id}/maintenance [POST]
-// @Security Bearer
+// @Summary Create Maintenance Entry
+// @Tags Item Maintenance
+// @Produce json
+// @Param id path string true "Item ID"
+// @Param payload body repo.MaintenanceEntryCreate true "Entry Data"
+// @Success 201 {object} repo.MaintenanceEntry
+// @Router /v1/items/{id}/maintenance [POST]
+// @Security Bearer
func (ctrl *V1Controller) HandleMaintenanceEntryCreate() errchain.HandlerFunc {
fn := func(r *http.Request, itemID uuid.UUID, body repo.MaintenanceEntryCreate) (repo.MaintenanceEntry, error) {
auth := services.NewContext(r.Context())
diff --git a/backend/app/api/handlers/v1/v1_ctrl_maintenance.go b/backend/app/api/handlers/v1/v1_ctrl_maintenance.go
index 03145b0a..64ba29cc 100644
--- a/backend/app/api/handlers/v1/v1_ctrl_maintenance.go
+++ b/backend/app/api/handlers/v1/v1_ctrl_maintenance.go
@@ -30,13 +30,14 @@ func (ctrl *V1Controller) HandleMaintenanceGetAll() errchain.HandlerFunc {
// HandleMaintenanceEntryUpdate godoc
//
-// @Summary Update Maintenance Entry
-// @Tags Maintenance
-// @Produce json
-// @Param payload body repo.MaintenanceEntryUpdate true "Entry Data"
-// @Success 200 {object} repo.MaintenanceEntry
-// @Router /v1/maintenance/{id} [PUT]
-// @Security Bearer
+// @Summary Update Maintenance Entry
+// @Tags Maintenance
+// @Produce json
+// @Param id path string true "Maintenance ID"
+// @Param payload body repo.MaintenanceEntryUpdate true "Entry Data"
+// @Success 200 {object} repo.MaintenanceEntry
+// @Router /v1/maintenance/{id} [PUT]
+// @Security Bearer
func (ctrl *V1Controller) HandleMaintenanceEntryUpdate() errchain.HandlerFunc {
fn := func(r *http.Request, entryID uuid.UUID, body repo.MaintenanceEntryUpdate) (repo.MaintenanceEntry, error) {
auth := services.NewContext(r.Context())
@@ -48,12 +49,13 @@ func (ctrl *V1Controller) HandleMaintenanceEntryUpdate() errchain.HandlerFunc {
// HandleMaintenanceEntryDelete godoc
//
-// @Summary Delete Maintenance Entry
-// @Tags Maintenance
-// @Produce json
-// @Success 204
-// @Router /v1/maintenance/{id} [DELETE]
-// @Security Bearer
+// @Summary Delete Maintenance Entry
+// @Tags Maintenance
+// @Produce json
+// @Param id path string true "Maintenance ID"
+// @Success 204
+// @Router /v1/maintenance/{id} [DELETE]
+// @Security Bearer
func (ctrl *V1Controller) HandleMaintenanceEntryDelete() errchain.HandlerFunc {
fn := func(r *http.Request, entryID uuid.UUID) (any, error) {
auth := services.NewContext(r.Context())
diff --git a/backend/app/api/handlers/v1/v1_ctrl_notifiers.go b/backend/app/api/handlers/v1/v1_ctrl_notifiers.go
index 3c48aa0c..16072be4 100644
--- a/backend/app/api/handlers/v1/v1_ctrl_notifiers.go
+++ b/backend/app/api/handlers/v1/v1_ctrl_notifiers.go
@@ -83,14 +83,13 @@ func (ctrl *V1Controller) HandleUpdateNotifier() errchain.HandlerFunc {
// HandlerNotifierTest godoc
//
-// @Summary Test Notifier
-// @Tags Notifiers
-// @Produce json
-// @Param id path string true "Notifier ID"
-// @Param url query string true "URL"
-// @Success 204
-// @Router /v1/notifiers/test [POST]
-// @Security Bearer
+// @Summary Test Notifier
+// @Tags Notifiers
+// @Produce json
+// @Param url query string true "URL"
+// @Success 204
+// @Router /v1/notifiers/test [POST]
+// @Security Bearer
func (ctrl *V1Controller) HandlerNotifierTest() errchain.HandlerFunc {
type body struct {
URL string `json:"url" validate:"required"`
diff --git a/backend/app/api/static/docs/docs.go b/backend/app/api/static/docs/docs.go
index 3311227d..f8840104 100644
--- a/backend/app/api/static/docs/docs.go
+++ b/backend/app/api/static/docs/docs.go
@@ -566,6 +566,9 @@ const docTemplate = `{
"Bearer": []
}
],
+ "consumes": [
+ "multipart/form-data"
+ ],
"produces": [
"application/json"
],
@@ -737,6 +740,9 @@ const docTemplate = `{
"Bearer": []
}
],
+ "consumes": [
+ "multipart/form-data"
+ ],
"produces": [
"application/json"
],
@@ -921,6 +927,13 @@ const docTemplate = `{
],
"summary": "Get Maintenance Log",
"parameters": [
+ {
+ "type": "string",
+ "description": "Item ID",
+ "name": "id",
+ "in": "path",
+ "required": true
+ },
{
"enum": [
"scheduled",
@@ -963,6 +976,13 @@ const docTemplate = `{
],
"summary": "Create Maintenance Entry",
"parameters": [
+ {
+ "type": "string",
+ "description": "Item ID",
+ "name": "id",
+ "in": "path",
+ "required": true
+ },
{
"description": "Entry Data",
"name": "payload",
@@ -1434,6 +1454,13 @@ const docTemplate = `{
],
"summary": "Update Maintenance Entry",
"parameters": [
+ {
+ "type": "string",
+ "description": "Maintenance ID",
+ "name": "id",
+ "in": "path",
+ "required": true
+ },
{
"description": "Entry Data",
"name": "payload",
@@ -1466,6 +1493,15 @@ const docTemplate = `{
"Maintenance"
],
"summary": "Delete Maintenance Entry",
+ "parameters": [
+ {
+ "type": "string",
+ "description": "Maintenance ID",
+ "name": "id",
+ "in": "path",
+ "required": true
+ }
+ ],
"responses": {
"204": {
"description": "No Content"
@@ -1548,13 +1584,6 @@ const docTemplate = `{
],
"summary": "Test Notifier",
"parameters": [
- {
- "type": "string",
- "description": "Notifier ID",
- "name": "id",
- "in": "path",
- "required": true
- },
{
"type": "string",
"description": "URL",
@@ -1752,20 +1781,6 @@ const docTemplate = `{
],
"summary": "User Login",
"parameters": [
- {
- "type": "string",
- "example": "admin@admin.com",
- "description": "string",
- "name": "username",
- "in": "formData"
- },
- {
- "type": "string",
- "example": "admin",
- "description": "string",
- "name": "password",
- "in": "formData"
- },
{
"description": "Login Data",
"name": "payload",
@@ -2289,6 +2304,10 @@ const docTemplate = `{
"archived": {
"type": "boolean"
},
+ "assetId": {
+ "type": "string",
+ "example": "0"
+ },
"createdAt": {
"type": "string"
},
@@ -3052,13 +3071,15 @@ const docTemplate = `{
"type": "object",
"properties": {
"password": {
- "type": "string"
+ "type": "string",
+ "example": "admin"
},
"stayLoggedIn": {
"type": "boolean"
},
"username": {
- "type": "string"
+ "type": "string",
+ "example": "admin@admin.com"
}
}
},
diff --git a/backend/app/api/static/docs/swagger.json b/backend/app/api/static/docs/swagger.json
index ddec411c..3077c6cc 100644
--- a/backend/app/api/static/docs/swagger.json
+++ b/backend/app/api/static/docs/swagger.json
@@ -559,6 +559,9 @@
"Bearer": []
}
],
+ "consumes": [
+ "multipart/form-data"
+ ],
"produces": [
"application/json"
],
@@ -730,6 +733,9 @@
"Bearer": []
}
],
+ "consumes": [
+ "multipart/form-data"
+ ],
"produces": [
"application/json"
],
@@ -914,6 +920,13 @@
],
"summary": "Get Maintenance Log",
"parameters": [
+ {
+ "type": "string",
+ "description": "Item ID",
+ "name": "id",
+ "in": "path",
+ "required": true
+ },
{
"enum": [
"scheduled",
@@ -956,6 +969,13 @@
],
"summary": "Create Maintenance Entry",
"parameters": [
+ {
+ "type": "string",
+ "description": "Item ID",
+ "name": "id",
+ "in": "path",
+ "required": true
+ },
{
"description": "Entry Data",
"name": "payload",
@@ -1427,6 +1447,13 @@
],
"summary": "Update Maintenance Entry",
"parameters": [
+ {
+ "type": "string",
+ "description": "Maintenance ID",
+ "name": "id",
+ "in": "path",
+ "required": true
+ },
{
"description": "Entry Data",
"name": "payload",
@@ -1459,6 +1486,15 @@
"Maintenance"
],
"summary": "Delete Maintenance Entry",
+ "parameters": [
+ {
+ "type": "string",
+ "description": "Maintenance ID",
+ "name": "id",
+ "in": "path",
+ "required": true
+ }
+ ],
"responses": {
"204": {
"description": "No Content"
@@ -1541,13 +1577,6 @@
],
"summary": "Test Notifier",
"parameters": [
- {
- "type": "string",
- "description": "Notifier ID",
- "name": "id",
- "in": "path",
- "required": true
- },
{
"type": "string",
"description": "URL",
@@ -1745,20 +1774,6 @@
],
"summary": "User Login",
"parameters": [
- {
- "type": "string",
- "example": "admin@admin.com",
- "description": "string",
- "name": "username",
- "in": "formData"
- },
- {
- "type": "string",
- "example": "admin",
- "description": "string",
- "name": "password",
- "in": "formData"
- },
{
"description": "Login Data",
"name": "payload",
@@ -2282,6 +2297,10 @@
"archived": {
"type": "boolean"
},
+ "assetId": {
+ "type": "string",
+ "example": "0"
+ },
"createdAt": {
"type": "string"
},
@@ -3045,13 +3064,15 @@
"type": "object",
"properties": {
"password": {
- "type": "string"
+ "type": "string",
+ "example": "admin"
},
"stayLoggedIn": {
"type": "boolean"
},
"username": {
- "type": "string"
+ "type": "string",
+ "example": "admin@admin.com"
}
}
},
diff --git a/backend/app/api/static/docs/swagger.yaml b/backend/app/api/static/docs/swagger.yaml
index fa9b7c77..a46b6112 100644
--- a/backend/app/api/static/docs/swagger.yaml
+++ b/backend/app/api/static/docs/swagger.yaml
@@ -219,6 +219,9 @@ definitions:
properties:
archived:
type: boolean
+ assetId:
+ example: "0"
+ type: string
createdAt:
type: string
description:
@@ -730,10 +733,12 @@ definitions:
v1.LoginForm:
properties:
password:
+ example: admin
type: string
stayLoggedIn:
type: boolean
username:
+ example: admin@admin.com
type: string
type: object
v1.TokenResponse:
@@ -1136,6 +1141,8 @@ paths:
- Items
/v1/items/{id}/attachments:
post:
+ consumes:
+ - multipart/form-data
parameters:
- description: Item ID
in: path
@@ -1249,6 +1256,11 @@ paths:
/v1/items/{id}/maintenance:
get:
parameters:
+ - description: Item ID
+ in: path
+ name: id
+ required: true
+ type: string
- enum:
- scheduled
- completed
@@ -1276,6 +1288,11 @@ paths:
- Item Maintenance
post:
parameters:
+ - description: Item ID
+ in: path
+ name: id
+ required: true
+ type: string
- description: Entry Data
in: body
name: payload
@@ -1362,6 +1379,8 @@ paths:
- Items
/v1/items/import:
post:
+ consumes:
+ - multipart/form-data
parameters:
- description: Image to upload
in: formData
@@ -1624,6 +1643,12 @@ paths:
- Maintenance
/v1/maintenance/{id}:
delete:
+ parameters:
+ - description: Maintenance ID
+ in: path
+ name: id
+ required: true
+ type: string
produces:
- application/json
responses:
@@ -1636,6 +1661,11 @@ paths:
- Maintenance
put:
parameters:
+ - description: Maintenance ID
+ in: path
+ name: id
+ required: true
+ type: string
- description: Entry Data
in: body
name: payload
@@ -1732,11 +1762,6 @@ paths:
/v1/notifiers/test:
post:
parameters:
- - description: Notifier ID
- in: path
- name: id
- required: true
- type: string
- description: URL
in: query
name: url
@@ -1820,16 +1845,6 @@ paths:
- application/x-www-form-urlencoded
- application/json
parameters:
- - description: string
- example: admin@admin.com
- in: formData
- name: username
- type: string
- - description: string
- example: admin
- in: formData
- name: password
- type: string
- description: Login Data
in: body
name: payload
diff --git a/backend/go.mod b/backend/go.mod
index b2f2d597..cbe59e72 100644
--- a/backend/go.mod
+++ b/backend/go.mod
@@ -22,7 +22,7 @@ require (
github.com/swaggo/swag v1.16.3
github.com/yeqown/go-qrcode/v2 v2.2.4
github.com/yeqown/go-qrcode/writer/standard v1.2.4
- golang.org/x/crypto v0.28.0
+ golang.org/x/crypto v0.31.0
modernc.org/sqlite v1.33.1
)
@@ -63,8 +63,8 @@ require (
golang.org/x/image v0.18.0 // indirect
golang.org/x/mod v0.20.0 // indirect
golang.org/x/net v0.28.0 // indirect
- golang.org/x/sys v0.26.0 // indirect
- golang.org/x/text v0.19.0 // indirect
+ golang.org/x/sys v0.28.0 // indirect
+ golang.org/x/text v0.21.0 // indirect
golang.org/x/tools v0.24.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
modernc.org/gc/v3 v3.0.0-20240107210532-573471604cb6 // indirect
diff --git a/backend/go.sum b/backend/go.sum
index f9a83abc..d9bc858d 100644
--- a/backend/go.sum
+++ b/backend/go.sum
@@ -1,9 +1,5 @@
ariga.io/atlas v0.19.1 h1:QzBHkakwzEhmPWOzNhw8Yr/Bbicj6Iq5hwEoNI/Jr9A=
ariga.io/atlas v0.19.1/go.mod h1:VPlcXdd4w2KqKnH54yEZcry79UAhpaWaxEsmn5JRNoE=
-ariga.io/atlas v0.28.0 h1:qmn9tUyJypJkIw+X3ECUwDtkMTiFupgstHbjRN4xGH0=
-ariga.io/atlas v0.28.0/go.mod h1:LOOp18LCL9r+VifvVlJqgYJwYl271rrXD9/wIyzJ8sw=
-entgo.io/ent v0.12.5 h1:KREM5E4CSoej4zeGa88Ou/gfturAnpUv0mzAjch1sj4=
-entgo.io/ent v0.12.5/go.mod h1:Y3JVAjtlIk8xVZYSn3t3mf8xlZIn5SAOXZQxD6kKI+Q=
entgo.io/ent v0.14.1 h1:fUERL506Pqr92EPHJqr8EYxbPioflJo6PudkrEA8a/s=
entgo.io/ent v0.14.1/go.mod h1:MH6XLG0KXpkcDQhKiHfANZSzR55TJyPL5IGNpI8wpco=
github.com/DATA-DOG/go-sqlmock v1.5.0 h1:Shsta01QNfFxHCfpW6YH2STWB0MudeXXEWMr20OEh60=
@@ -58,8 +54,6 @@ github.com/go-playground/locales v0.14.1 h1:EWaQ/wswjilfKLTECiXz7Rh+3BjFhfDFKv/o
github.com/go-playground/locales v0.14.1/go.mod h1:hxrqLVvrK65+Rwrd5Fc6F2O76J/NuW9t0sjnWqG1slY=
github.com/go-playground/universal-translator v0.18.1 h1:Bcnm0ZwsGyWbCzImXv+pAJnYK9S473LQFuzCbDbfSFY=
github.com/go-playground/universal-translator v0.18.1/go.mod h1:xekY+UJKNuX9WP91TpwSH2VMlDf28Uj24BCp08ZFTUY=
-github.com/go-playground/validator/v10 v10.22.0 h1:k6HsTZ0sTnROkhS//R0O+55JgM8C4Bx7ia+JlgcnOao=
-github.com/go-playground/validator/v10 v10.22.0/go.mod h1:dbuPbCMFw/DrkbEynArYaCwl3amGuJotoKCe95atGMM=
github.com/go-playground/validator/v10 v10.22.1 h1:40JcKH+bBNGFczGuoBYgX4I6m/i27HYW8P9FDk5PbgA=
github.com/go-playground/validator/v10 v10.22.1/go.mod h1:dbuPbCMFw/DrkbEynArYaCwl3amGuJotoKCe95atGMM=
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 h1:tfuBGBXKqDEevZMzYi5KSi8KkcZtzBcTgAUUtapy0OI=
@@ -116,10 +110,6 @@ github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/
github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
-github.com/mattn/go-runewidth v0.0.9 h1:Lm995f3rfxdpd6TSmuVCHVb/QhupuXlYr8sCI/QdE+0=
-github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI=
-github.com/mattn/go-sqlite3 v1.14.23 h1:gbShiuAP1W5j9UOksQ06aiiqPMxYecovVGwmTxWtuw0=
-github.com/mattn/go-sqlite3 v1.14.23/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y=
github.com/mattn/go-sqlite3 v1.14.24 h1:tpSp2G2KyMnnQu99ngJ47EIkWVmliIizyZBfPrBWDRM=
github.com/mattn/go-sqlite3 v1.14.24/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y=
github.com/mitchellh/go-wordwrap v1.0.1 h1:TLuKupo69TCn6TQSyGxwI1EblZZEsQ0vMlAFQflz0v0=
@@ -129,8 +119,6 @@ github.com/ncruces/go-strftime v0.1.9/go.mod h1:Fwc5htZGVVkseilnfgOVb9mKy6w1naJm
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno=
github.com/olahol/melody v1.2.1 h1:xdwRkzHxf+B0w4TKbGpUSSkV516ZucQZJIWLztOWICQ=
github.com/olahol/melody v1.2.1/go.mod h1:GgkTl6Y7yWj/HtfD48Q5vLKPVoZOH+Qqgfa7CvJgJM4=
-github.com/olekukonko/tablewriter v0.0.5 h1:P2Ga83D34wi1o9J6Wh1mRuqd4mF/x/lgBS7N7AbDhec=
-github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY=
github.com/onsi/ginkgo/v2 v2.9.2 h1:BA2GMJOtfGAfagzYtrAlufIP0lq6QERkFmHLMLPwFSU=
github.com/onsi/ginkgo/v2 v2.9.2/go.mod h1:WHcJJG2dIlcCqVfBAwUCrJxSPFb6v4azBwgxeMeDuts=
github.com/onsi/gomega v1.27.6 h1:ENqfyGeS5AX/rlXDd/ETokDz93u0YufY1Pgxuy/PvWE=
@@ -148,10 +136,6 @@ github.com/rs/zerolog v1.33.0 h1:1cU2KZkvPxNyfgEmhHAz/1A9Bz+llsdYzklWFzgp0r8=
github.com/rs/zerolog v1.33.0/go.mod h1:/7mN4D5sKwJLZQ2b/znpjC3/GQWY/xaDXUM0kKWRHss=
github.com/sergi/go-diff v1.0.0 h1:Kpca3qRNrduNnOQeazBd0ysaKrUJiIuISHxogkT9RPQ=
github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo=
-github.com/spf13/cobra v1.7.0 h1:hyqWnYt1ZQShIddO5kBpj3vu05/++x6tJ6dg8EC572I=
-github.com/spf13/cobra v1.7.0/go.mod h1:uLxZILRyS/50WlhOIKD7W6V5bgeIt+4sICxh6uRMrb0=
-github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
-github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=
@@ -176,37 +160,23 @@ github.com/yeqown/reedsolomon v1.0.0 h1:x1h/Ej/uJnNu8jaX7GLHBWmZKCAWjEJTetkqaabr
github.com/yeqown/reedsolomon v1.0.0/go.mod h1:P76zpcn2TCuL0ul1Fso373qHRc69LKwAw/Iy6g1WiiM=
github.com/zclconf/go-cty v1.14.1 h1:t9fyA35fwjjUMcmL5hLER+e/rEPqrbCK1/OSE4SI9KA=
github.com/zclconf/go-cty v1.14.1/go.mod h1:VvMs5i0vgZdhYawQNq5kePSpLAoz8u1xvZgrPIxfnZE=
-github.com/zclconf/go-cty v1.14.4 h1:uXXczd9QDGsgu0i/QFR/hzI5NYCHLf6NQw/atrbnhq8=
-github.com/zclconf/go-cty v1.14.4/go.mod h1:VvMs5i0vgZdhYawQNq5kePSpLAoz8u1xvZgrPIxfnZE=
-golang.org/x/crypto v0.27.0 h1:GXm2NjJrPaiv/h1tb2UH8QfgC/hOf/+z0p6PT8o1w7A=
-golang.org/x/crypto v0.27.0/go.mod h1:1Xngt8kV6Dvbssa53Ziq6Eqn0HqbZi5Z6R0ZpwQzt70=
-golang.org/x/crypto v0.28.0 h1:GBDwsMXVQi34v5CCYUm2jkJvu4cbtru2U4TN2PSyQnw=
-golang.org/x/crypto v0.28.0/go.mod h1:rmgy+3RHxRZMyY0jjAJShp2zgEdOqj2AO7U0pYmeQ7U=
+golang.org/x/crypto v0.31.0 h1:ihbySMvVjLAeSH1IbfcRTkD/iNscyz8rGzjF/E5hV6U=
+golang.org/x/crypto v0.31.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk=
golang.org/x/image v0.18.0 h1:jGzIakQa/ZXI1I0Fxvaa9W7yP25TqT6cHIHn+6CqvSQ=
golang.org/x/image v0.18.0/go.mod h1:4yyo5vMFQjVjUcVk4jEQcU9MGy/rulF5WvUILseCM2E=
-golang.org/x/mod v0.17.0 h1:zY54UmvipHiNd+pm+m0x9KhZ9hl1/7QNMyxXbc6ICqA=
-golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
golang.org/x/mod v0.20.0 h1:utOm6MM3R3dnawAiJgn0y+xvuYRsm1RKM/4giyfDgV0=
golang.org/x/mod v0.20.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
-golang.org/x/net v0.25.0 h1:d/OCCoBEUq33pjydKrGQhw7IlUPI2Oylr+8qLx49kac=
-golang.org/x/net v0.25.0/go.mod h1:JkAGAh7GEvH74S6FOH42FLoXpXbE/aqXSrIQjXgsiwM=
golang.org/x/net v0.28.0 h1:a9JDOJc5GMUJ0+UDqmLT86WiEy7iWyIhz8gz8E4e5hE=
golang.org/x/net v0.28.0/go.mod h1:yqtgsTWOOnlGLG9GFRrK3++bGOUEkNBoHZc8MEDWPNg=
-golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ=
-golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
+golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ=
+golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.25.0 h1:r+8e+loiHxRqhXVl6ML1nO3l1+oFoWbnlu2Ehimmi34=
-golang.org/x/sys v0.25.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
-golang.org/x/sys v0.26.0 h1:KHjCJyddX0LoSTb3J+vWpupP9p0oznkqVk/IfjymZbo=
-golang.org/x/sys v0.26.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
-golang.org/x/text v0.18.0 h1:XvMDiNzPAl0jr17s6W9lcaIhGUfUORdGCNsuLmPG224=
-golang.org/x/text v0.18.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY=
-golang.org/x/text v0.19.0 h1:kTxAhCbGbxhK0IwgSKiMO5awPoDQ0RpfiVYBfK860YM=
-golang.org/x/text v0.19.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY=
-golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d h1:vU5i/LfpvrRCpgM/VPfJLg5KjxD3E+hfT1SH+d9zLwg=
-golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxbQROHiO6hDPo2LHcIPhhQsa9DLh0yGk=
+golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA=
+golang.org/x/sys v0.28.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
+golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo=
+golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ=
golang.org/x/tools v0.24.0 h1:J1shsA93PJUEVaUSaay7UXAyE8aimq3GW0pjlolpa24=
golang.org/x/tools v0.24.0/go.mod h1:YhNqVBIfWHdzvTLs0d8LCuMhkKUgSUKldakyV7W/WDQ=
google.golang.org/protobuf v1.28.1 h1:d0NfwRgPtno5B1Wa6L2DAG+KivqkdutMf1UhdNx175w=
@@ -223,8 +193,14 @@ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
+modernc.org/cc/v4 v4.21.4 h1:3Be/Rdo1fpr8GrQ7IVw9OHtplU4gWbb+wNgeoBMmGLQ=
+modernc.org/cc/v4 v4.21.4/go.mod h1:HM7VJTZbUCR3rV8EYBi9wxnJ0ZBRiGE5OeGXNA0IsLQ=
+modernc.org/ccgo/v4 v4.19.2 h1:lwQZgvboKD0jBwdaeVCTouxhxAyN6iawF3STraAal8Y=
+modernc.org/ccgo/v4 v4.19.2/go.mod h1:ysS3mxiMV38XGRTTcgo0DQTeTmAO4oCmJl1nX9VFI3s=
modernc.org/fileutil v1.3.0 h1:gQ5SIzK3H9kdfai/5x41oQiKValumqNTDXMvKo62HvE=
modernc.org/fileutil v1.3.0/go.mod h1:XatxS8fZi3pS8/hKG2GH/ArUogfxjpEKs3Ku3aK4JyQ=
+modernc.org/gc/v2 v2.4.1 h1:9cNzOqPyMJBvrUipmynX0ZohMhcxPtMccYgGOJdOiBw=
+modernc.org/gc/v2 v2.4.1/go.mod h1:wzN5dK1AzVGoH6XOzc3YZ+ey/jPgYHLuVckd62P0GYU=
modernc.org/gc/v3 v3.0.0-20240107210532-573471604cb6 h1:5D53IMaUuA5InSeMu9eJtlQXS2NxAhyWQvkKEgXZhHI=
modernc.org/gc/v3 v3.0.0-20240107210532-573471604cb6/go.mod h1:Qz0X07sNOR1jWYCrJMEnbW/X55x206Q7Vt4mz6/wHp4=
modernc.org/libc v1.55.3 h1:AzcW1mhlPNrRtjS5sS+eW2ISCgSOLLNyFzRh/V3Qj/U=
@@ -233,8 +209,10 @@ modernc.org/mathutil v1.6.0 h1:fRe9+AmYlaej+64JsEEhoWuAYBkOtQiMEU7n/XgfYi4=
modernc.org/mathutil v1.6.0/go.mod h1:Ui5Q9q1TR2gFm0AQRqQUaBWFLAhQpCwNcuhBOSedWPo=
modernc.org/memory v1.8.0 h1:IqGTL6eFMaDZZhEWwcREgeMXYwmW83LYW8cROZYkg+E=
modernc.org/memory v1.8.0/go.mod h1:XPZ936zp5OMKGWPqbD3JShgd/ZoQ7899TUuQqxY+peU=
-modernc.org/sqlite v1.33.0 h1:WWkA/T2G17okiLGgKAj4/RMIvgyMT19yQ038160IeYk=
-modernc.org/sqlite v1.33.0/go.mod h1:9uQ9hF/pCZoYZK73D/ud5Z7cIRIILSZI8NdIemVMTX8=
+modernc.org/opt v0.1.3 h1:3XOZf2yznlhC+ibLltsDGzABUGVx8J6pnFMS3E4dcq4=
+modernc.org/opt v0.1.3/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0=
+modernc.org/sortutil v1.2.0 h1:jQiD3PfS2REGJNzNCMMaLSp/wdMNieTbKX920Cqdgqc=
+modernc.org/sortutil v1.2.0/go.mod h1:TKU2s7kJMf1AE84OoiGppNHJwvB753OYfNl2WRb++Ss=
modernc.org/sqlite v1.33.1 h1:trb6Z3YYoeM9eDL1O8do81kP+0ejv+YzgyFo+Gwy0nM=
modernc.org/sqlite v1.33.1/go.mod h1:pXV2xHxhzXZsgT/RtTFAPY6JJDEvOTcTdwADQCCWD4k=
modernc.org/strutil v1.2.0 h1:agBi9dp1I+eOnxXeiZawM8F4LawKv4NzGWSaLfyeNZA=
diff --git a/backend/internal/core/currencies/currencies.json b/backend/internal/core/currencies/currencies.json
index 1af92cc1..2e166e19 100644
--- a/backend/internal/core/currencies/currencies.json
+++ b/backend/internal/core/currencies/currencies.json
@@ -1,124 +1,220 @@
[
{
- "code": "SHP",
- "local": "South Georgia",
- "symbol": "£",
- "name": "Saint Helena pound"
+ "code": "AFN",
+ "local": "Afghanistan",
+ "symbol": "؋",
+ "name": "Afghan afghani"
},
{
- "code": "XCD",
- "local": "Grenada",
- "symbol": "$",
- "name": "Eastern Caribbean dollar"
+ "code": "ALL",
+ "local": "Albania",
+ "symbol": "L",
+ "name": "Albanian lek"
},
{
- "code": "CHF",
- "local": "Switzerland",
- "symbol": "Fr.",
- "name": "Swiss franc"
- },
- {
- "code": "SLL",
- "local": "Sierra Leone",
- "symbol": "Le",
- "name": "Sierra Leonean leone"
- },
- {
- "code": "HUF",
- "local": "Hungary",
- "symbol": "Ft",
- "name": "Hungarian forint"
- },
- {
- "code": "TWD",
- "local": "Taiwan",
- "symbol": "$",
- "name": "New Taiwan dollar"
- },
- {
- "code": "XPF",
- "local": "Wallis and Futuna",
- "symbol": "₣",
- "name": "CFP franc"
- },
- {
- "code": "BBD",
- "local": "Barbados",
- "symbol": "$",
- "name": "Barbadian dollar"
- },
- {
- "code": "NZD",
- "local": "Pitcairn Islands",
- "symbol": "$",
- "name": "New Zealand dollar"
- },
- {
- "code": "XOF",
- "local": "Ivory Coast",
- "symbol": "Fr",
- "name": "West African CFA franc"
- },
- {
- "code": "TND",
- "local": "Tunisia",
- "symbol": "د.ت",
- "name": "Tunisian dinar"
- },
- {
- "code": "EUR",
- "local": "Italy",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "XOF",
- "local": "Benin",
- "symbol": "Fr",
- "name": "West African CFA franc"
- },
- {
- "code": "IDR",
- "local": "Indonesia",
- "symbol": "Rp",
- "name": "Indonesian rupiah"
- },
- {
- "code": "CVE",
- "local": "Cape Verde",
- "symbol": "Esc",
- "name": "Cape Verdean escudo"
- },
- {
- "code": "XCD",
- "local": "Saint Kitts and Nevis",
- "symbol": "$",
- "name": "Eastern Caribbean dollar"
- },
- {
- "code": "LAK",
- "local": "Laos",
- "symbol": "₭",
- "name": "Lao kip"
+ "code": "DZD",
+ "local": "Algeria",
+ "symbol": "د.ج",
+ "name": "Algerian dinar"
},
{
"code": "USD",
- "local": "Caribbean Netherlands",
+ "local": "American Samoa",
"symbol": "$",
"name": "United States dollar"
},
- {
- "code": "UGX",
- "local": "Uganda",
- "symbol": "Sh",
- "name": "Ugandan shilling"
- },
{
"code": "EUR",
"local": "Andorra",
"symbol": "€",
"name": "Euro"
},
+ {
+ "code": "AOA",
+ "local": "Angola",
+ "symbol": "Kz",
+ "name": "Angolan kwanza"
+ },
+ {
+ "code": "XCD",
+ "local": "Anguilla",
+ "symbol": "$",
+ "name": "Eastern Caribbean dollar"
+ },
+ {
+ "code": "XCD",
+ "local": "Antigua and Barbuda",
+ "symbol": "$",
+ "name": "Eastern Caribbean dollar"
+ },
+ {
+ "code": "ARS",
+ "local": "Argentina",
+ "symbol": "$",
+ "name": "Argentine peso"
+ },
+ {
+ "code": "AMD",
+ "local": "Armenia",
+ "symbol": "֏",
+ "name": "Armenian dram"
+ },
+ {
+ "code": "AWG",
+ "local": "Aruba",
+ "symbol": "ƒ",
+ "name": "Aruban florin"
+ },
+ {
+ "code": "AUD",
+ "local": "Australia",
+ "symbol": "$",
+ "name": "Australian dollar"
+ },
+ {
+ "code": "EUR",
+ "local": "Austria",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "AZN",
+ "local": "Azerbaijan",
+ "symbol": "₼",
+ "name": "Azerbaijani manat"
+ },
+ {
+ "code": "BSD",
+ "local": "Bahamas",
+ "symbol": "$",
+ "name": "Bahamian dollar"
+ },
+ {
+ "code": "USD",
+ "local": "Bahamas",
+ "symbol": "$",
+ "name": "United States dollar"
+ },
+ {
+ "code": "BHD",
+ "local": "Bahrain",
+ "symbol": ".د.ب",
+ "name": "Bahraini dinar"
+ },
+ {
+ "code": "BDT",
+ "local": "Bangladesh",
+ "symbol": "৳",
+ "name": "Bangladeshi taka"
+ },
+ {
+ "code": "BBD",
+ "local": "Barbados",
+ "symbol": "$",
+ "name": "Barbadian dollar"
+ },
+ {
+ "code": "BYN",
+ "local": "Belarus",
+ "symbol": "Br",
+ "name": "Belarusian ruble"
+ },
+ {
+ "code": "EUR",
+ "local": "Belgium",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "BZD",
+ "local": "Belize",
+ "symbol": "$",
+ "name": "Belize dollar"
+ },
+ {
+ "code": "XOF",
+ "local": "Benin",
+ "symbol": "Fr",
+ "name": "West African CFA franc"
+ },
+ {
+ "code": "BMD",
+ "local": "Bermuda",
+ "symbol": "$",
+ "name": "Bermudian dollar"
+ },
+ {
+ "code": "BTN",
+ "local": "Bhutan",
+ "symbol": "Nu.",
+ "name": "Bhutanese ngultrum"
+ },
+ {
+ "code": "INR",
+ "local": "Bhutan",
+ "symbol": "₹",
+ "name": "Indian rupee"
+ },
+ {
+ "code": "BOB",
+ "local": "Bolivia",
+ "symbol": "Bs.",
+ "name": "Bolivian boliviano"
+ },
+ {
+ "code": "BAM",
+ "local": "Bosnia and Herzegovina",
+ "symbol": "KM",
+ "name": "Bosnia and Herzegovina convertible mark"
+ },
+ {
+ "code": "BWP",
+ "local": "Botswana",
+ "symbol": "P",
+ "name": "Botswana pula"
+ },
+ {
+ "code": "BRL",
+ "local": "Brazil",
+ "symbol": "R$",
+ "name": "Brazilian real"
+ },
+ {
+ "code": "USD",
+ "local": "British Indian Ocean Territory",
+ "symbol": "$",
+ "name": "United States dollar"
+ },
+ {
+ "code": "USD",
+ "local": "British Virgin Islands",
+ "symbol": "$",
+ "name": "United States dollar"
+ },
+ {
+ "code": "BND",
+ "local": "Brunei",
+ "symbol": "$",
+ "name": "Brunei dollar"
+ },
+ {
+ "code": "SGD",
+ "local": "Brunei",
+ "symbol": "$",
+ "name": "Singapore dollar"
+ },
+ {
+ "code": "BGN",
+ "local": "Bulgaria",
+ "symbol": "лв",
+ "name": "Bulgarian lev"
+ },
+ {
+ "code": "XOF",
+ "local": "Burkina Faso",
+ "symbol": "Fr",
+ "name": "West African CFA franc"
+ },
{
"code": "BIF",
"local": "Burundi",
@@ -126,46 +222,64 @@
"name": "Burundian franc"
},
{
- "code": "ZAR",
- "local": "South Africa",
- "symbol": "R",
- "name": "South African rand"
- },
- {
- "code": "EUR",
- "local": "France",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "LYD",
- "local": "Libya",
- "symbol": "ل.د",
- "name": "Libyan dinar"
- },
- {
- "code": "MXN",
- "local": "Mexico",
- "symbol": "$",
- "name": "Mexican peso"
- },
- {
- "code": "XAF",
- "local": "Gabon",
- "symbol": "Fr",
- "name": "Central African CFA franc"
+ "code": "KHR",
+ "local": "Cambodia",
+ "symbol": "៛",
+ "name": "Cambodian riel"
},
{
"code": "USD",
- "local": "Northern Mariana Islands",
+ "local": "Cambodia",
"symbol": "$",
"name": "United States dollar"
},
{
- "code": "MKD",
- "local": "North Macedonia",
- "symbol": "den",
- "name": "denar"
+ "code": "XAF",
+ "local": "Cameroon",
+ "symbol": "Fr",
+ "name": "Central African CFA franc"
+ },
+ {
+ "code": "CAD",
+ "local": "Canada",
+ "symbol": "$",
+ "name": "Canadian dollar"
+ },
+ {
+ "code": "CVE",
+ "local": "Cape Verde",
+ "symbol": "Esc",
+ "name": "Cape Verdean escudo"
+ },
+ {
+ "code": "USD",
+ "local": "Caribbean Netherlands",
+ "symbol": "$",
+ "name": "United States dollar"
+ },
+ {
+ "code": "KYD",
+ "local": "Cayman Islands",
+ "symbol": "$",
+ "name": "Cayman Islands dollar"
+ },
+ {
+ "code": "XAF",
+ "local": "Central African Republic",
+ "symbol": "Fr",
+ "name": "Central African CFA franc"
+ },
+ {
+ "code": "XAF",
+ "local": "Chad",
+ "symbol": "Fr",
+ "name": "Central African CFA franc"
+ },
+ {
+ "code": "CLP",
+ "local": "Chile",
+ "symbol": "$",
+ "name": "Chilean peso"
},
{
"code": "CNY",
@@ -174,40 +288,172 @@
"name": "Chinese yuan"
},
{
- "code": "YER",
- "local": "Yemen",
- "symbol": "﷼",
- "name": "Yemeni rial"
+ "code": "AUD",
+ "local": "Christmas Island",
+ "symbol": "$",
+ "name": "Australian dollar"
+ },
+ {
+ "code": "AUD",
+ "local": "Cocos (Keeling) Islands",
+ "symbol": "$",
+ "name": "Australian dollar"
+ },
+ {
+ "code": "COP",
+ "local": "Colombia",
+ "symbol": "$",
+ "name": "Colombian peso"
+ },
+ {
+ "code": "KMF",
+ "local": "Comoros",
+ "symbol": "Fr",
+ "name": "Comorian franc"
+ },
+ {
+ "code": "CKD",
+ "local": "Cook Islands",
+ "symbol": "$",
+ "name": "Cook Islands dollar"
+ },
+ {
+ "code": "NZD",
+ "local": "Cook Islands",
+ "symbol": "$",
+ "name": "New Zealand dollar"
+ },
+ {
+ "code": "CRC",
+ "local": "Costa Rica",
+ "symbol": "₡",
+ "name": "Costa Rican colón"
},
{
"code": "EUR",
- "local": "Saint Barthélemy",
+ "local": "Croatia",
"symbol": "€",
"name": "Euro"
},
{
- "code": "GBP",
- "local": "Guernsey",
- "symbol": "£",
- "name": "British pound"
- },
- {
- "code": "GGP",
- "local": "Guernsey",
- "symbol": "£",
- "name": "Guernsey pound"
- },
- {
- "code": "SBD",
- "local": "Solomon Islands",
+ "code": "CUC",
+ "local": "Cuba",
"symbol": "$",
- "name": "Solomon Islands dollar"
+ "name": "Cuban convertible peso"
},
{
- "code": "NOK",
- "local": "Svalbard and Jan Mayen",
+ "code": "CUP",
+ "local": "Cuba",
+ "symbol": "$",
+ "name": "Cuban peso"
+ },
+ {
+ "code": "ANG",
+ "local": "Curaçao",
+ "symbol": "ƒ",
+ "name": "Netherlands Antillean guilder"
+ },
+ {
+ "code": "EUR",
+ "local": "Cyprus",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "CZK",
+ "local": "Czechia",
+ "symbol": "Kč",
+ "name": "Czech koruna"
+ },
+ {
+ "code": "DKK",
+ "local": "Denmark",
"symbol": "kr",
- "name": "krone"
+ "name": "Danish krone"
+ },
+ {
+ "code": "DJF",
+ "local": "Djibouti",
+ "symbol": "Fr",
+ "name": "Djiboutian franc"
+ },
+ {
+ "code": "XCD",
+ "local": "Dominica",
+ "symbol": "$",
+ "name": "Eastern Caribbean dollar"
+ },
+ {
+ "code": "DOP",
+ "local": "Dominican Republic",
+ "symbol": "$",
+ "name": "Dominican peso"
+ },
+ {
+ "code": "CDF",
+ "local": "DR Congo",
+ "symbol": "FC",
+ "name": "Congolese franc"
+ },
+ {
+ "code": "USD",
+ "local": "Ecuador",
+ "symbol": "$",
+ "name": "United States dollar"
+ },
+ {
+ "code": "EGP",
+ "local": "Egypt",
+ "symbol": "£",
+ "name": "Egyptian pound"
+ },
+ {
+ "code": "USD",
+ "local": "El Salvador",
+ "symbol": "$",
+ "name": "United States dollar"
+ },
+ {
+ "code": "XAF",
+ "local": "Equatorial Guinea",
+ "symbol": "Fr",
+ "name": "Central African CFA franc"
+ },
+ {
+ "code": "ERN",
+ "local": "Eritrea",
+ "symbol": "Nfk",
+ "name": "Eritrean nakfa"
+ },
+ {
+ "code": "EUR",
+ "local": "Estonia",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "SZL",
+ "local": "Eswatini",
+ "symbol": "L",
+ "name": "Swazi lilangeni"
+ },
+ {
+ "code": "ZAR",
+ "local": "Eswatini",
+ "symbol": "R",
+ "name": "South African rand"
+ },
+ {
+ "code": "ETB",
+ "local": "Ethiopia",
+ "symbol": "Br",
+ "name": "Ethiopian birr"
+ },
+ {
+ "code": "FKP",
+ "local": "Falkland Islands",
+ "symbol": "£",
+ "name": "Falkland Islands pound"
},
{
"code": "DKK",
@@ -222,28 +468,610 @@
"name": "Faroese króna"
},
{
- "code": "UZS",
- "local": "Uzbekistan",
- "symbol": "so'm",
- "name": "Uzbekistani soʻm"
+ "code": "FJD",
+ "local": "Fiji",
+ "symbol": "$",
+ "name": "Fijian dollar"
},
{
- "code": "EGP",
- "local": "Egypt",
+ "code": "EUR",
+ "local": "Finland",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "EUR",
+ "local": "France",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "EUR",
+ "local": "French Guiana",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "XPF",
+ "local": "French Polynesia",
+ "symbol": "₣",
+ "name": "CFP franc"
+ },
+ {
+ "code": "EUR",
+ "local": "French Southern and Antarctic Lands",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "XAF",
+ "local": "Gabon",
+ "symbol": "Fr",
+ "name": "Central African CFA franc"
+ },
+ {
+ "code": "GMD",
+ "local": "Gambia",
+ "symbol": "D",
+ "name": "dalasi"
+ },
+ {
+ "code": "GEL",
+ "local": "Georgia",
+ "symbol": "₾",
+ "name": "lari"
+ },
+ {
+ "code": "EUR",
+ "local": "Germany",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "GHS",
+ "local": "Ghana",
+ "symbol": "₵",
+ "name": "Ghanaian cedi"
+ },
+ {
+ "code": "GIP",
+ "local": "Gibraltar",
"symbol": "£",
- "name": "Egyptian pound"
+ "name": "Gibraltar pound"
+ },
+ {
+ "code": "EUR",
+ "local": "Greece",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "DKK",
+ "local": "Greenland",
+ "symbol": "kr.",
+ "name": "krone"
+ },
+ {
+ "code": "XCD",
+ "local": "Grenada",
+ "symbol": "$",
+ "name": "Eastern Caribbean dollar"
+ },
+ {
+ "code": "EUR",
+ "local": "Guadeloupe",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "USD",
+ "local": "Guam",
+ "symbol": "$",
+ "name": "United States dollar"
+ },
+ {
+ "code": "GTQ",
+ "local": "Guatemala",
+ "symbol": "Q",
+ "name": "Guatemalan quetzal"
+ },
+ {
+ "code": "GBP",
+ "local": "Guernsey",
+ "symbol": "£",
+ "name": "British pound"
+ },
+ {
+ "code": "GGP",
+ "local": "Guernsey",
+ "symbol": "£",
+ "name": "Guernsey pound"
+ },
+ {
+ "code": "GNF",
+ "local": "Guinea",
+ "symbol": "Fr",
+ "name": "Guinean franc"
},
{
"code": "XOF",
- "local": "Senegal",
+ "local": "Guinea-Bissau",
"symbol": "Fr",
"name": "West African CFA franc"
},
{
- "code": "LKR",
- "local": "Sri Lanka",
- "symbol": "Rs රු",
- "name": "Sri Lankan rupee"
+ "code": "GYD",
+ "local": "Guyana",
+ "symbol": "$",
+ "name": "Guyanese dollar"
+ },
+ {
+ "code": "HTG",
+ "local": "Haiti",
+ "symbol": "G",
+ "name": "Haitian gourde"
+ },
+ {
+ "code": "HNL",
+ "local": "Honduras",
+ "symbol": "L",
+ "name": "Honduran lempira"
+ },
+ {
+ "code": "HKD",
+ "local": "Hong Kong",
+ "symbol": "$",
+ "name": "Hong Kong dollar"
+ },
+ {
+ "code": "HUF",
+ "local": "Hungary",
+ "symbol": "Ft",
+ "name": "Hungarian forint"
+ },
+ {
+ "code": "ISK",
+ "local": "Iceland",
+ "symbol": "kr",
+ "name": "Icelandic króna"
+ },
+ {
+ "code": "INR",
+ "local": "India",
+ "symbol": "₹",
+ "name": "Indian rupee"
+ },
+ {
+ "code": "IDR",
+ "local": "Indonesia",
+ "symbol": "Rp",
+ "name": "Indonesian rupiah"
+ },
+ {
+ "code": "IRR",
+ "local": "Iran",
+ "symbol": "﷼",
+ "name": "Iranian rial"
+ },
+ {
+ "code": "IQD",
+ "local": "Iraq",
+ "symbol": "ع.د",
+ "name": "Iraqi dinar"
+ },
+ {
+ "code": "EUR",
+ "local": "Ireland",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "GBP",
+ "local": "Isle of Man",
+ "symbol": "£",
+ "name": "British pound"
+ },
+ {
+ "code": "IMP",
+ "local": "Isle of Man",
+ "symbol": "£",
+ "name": "Manx pound"
+ },
+ {
+ "code": "ILS",
+ "local": "Israel",
+ "symbol": "₪",
+ "name": "Israeli new shekel"
+ },
+ {
+ "code": "EUR",
+ "local": "Italy",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "XOF",
+ "local": "Ivory Coast",
+ "symbol": "Fr",
+ "name": "West African CFA franc"
+ },
+ {
+ "code": "JMD",
+ "local": "Jamaica",
+ "symbol": "$",
+ "name": "Jamaican dollar"
+ },
+ {
+ "code": "JPY",
+ "local": "Japan",
+ "symbol": "¥",
+ "name": "Japanese yen"
+ },
+ {
+ "code": "GBP",
+ "local": "Jersey",
+ "symbol": "£",
+ "name": "British pound"
+ },
+ {
+ "code": "JEP",
+ "local": "Jersey",
+ "symbol": "£",
+ "name": "Jersey pound"
+ },
+ {
+ "code": "JOD",
+ "local": "Jordan",
+ "symbol": "د.ا",
+ "name": "Jordanian dinar"
+ },
+ {
+ "code": "KZT",
+ "local": "Kazakhstan",
+ "symbol": "₸",
+ "name": "Kazakhstani tenge"
+ },
+ {
+ "code": "KES",
+ "local": "Kenya",
+ "symbol": "Sh",
+ "name": "Kenyan shilling"
+ },
+ {
+ "code": "AUD",
+ "local": "Kiribati",
+ "symbol": "$",
+ "name": "Australian dollar"
+ },
+ {
+ "code": "KID",
+ "local": "Kiribati",
+ "symbol": "$",
+ "name": "Kiribati dollar"
+ },
+ {
+ "code": "EUR",
+ "local": "Kosovo",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "KWD",
+ "local": "Kuwait",
+ "symbol": "د.ك",
+ "name": "Kuwaiti dinar"
+ },
+ {
+ "code": "KGS",
+ "local": "Kyrgyzstan",
+ "symbol": "с",
+ "name": "Kyrgyzstani som"
+ },
+ {
+ "code": "LAK",
+ "local": "Laos",
+ "symbol": "₭",
+ "name": "Lao kip"
+ },
+ {
+ "code": "EUR",
+ "local": "Latvia",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "LBP",
+ "local": "Lebanon",
+ "symbol": "ل.ل",
+ "name": "Lebanese pound"
+ },
+ {
+ "code": "LSL",
+ "local": "Lesotho",
+ "symbol": "L",
+ "name": "Lesotho loti"
+ },
+ {
+ "code": "ZAR",
+ "local": "Lesotho",
+ "symbol": "R",
+ "name": "South African rand"
+ },
+ {
+ "code": "LRD",
+ "local": "Liberia",
+ "symbol": "$",
+ "name": "Liberian dollar"
+ },
+ {
+ "code": "LYD",
+ "local": "Libya",
+ "symbol": "ل.د",
+ "name": "Libyan dinar"
+ },
+ {
+ "code": "CHF",
+ "local": "Liechtenstein",
+ "symbol": "Fr",
+ "name": "Swiss franc"
+ },
+ {
+ "code": "EUR",
+ "local": "Lithuania",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "EUR",
+ "local": "Luxembourg",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "MOP",
+ "local": "Macau",
+ "symbol": "P",
+ "name": "Macanese pataca"
+ },
+ {
+ "code": "MGA",
+ "local": "Madagascar",
+ "symbol": "Ar",
+ "name": "Malagasy ariary"
+ },
+ {
+ "code": "MWK",
+ "local": "Malawi",
+ "symbol": "MK",
+ "name": "Malawian kwacha"
+ },
+ {
+ "code": "MYR",
+ "local": "Malaysia",
+ "symbol": "RM",
+ "name": "Malaysian ringgit"
+ },
+ {
+ "code": "MVR",
+ "local": "Maldives",
+ "symbol": ".ރ",
+ "name": "Maldivian rufiyaa"
+ },
+ {
+ "code": "XOF",
+ "local": "Mali",
+ "symbol": "Fr",
+ "name": "West African CFA franc"
+ },
+ {
+ "code": "EUR",
+ "local": "Malta",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "USD",
+ "local": "Marshall Islands",
+ "symbol": "$",
+ "name": "United States dollar"
+ },
+ {
+ "code": "EUR",
+ "local": "Martinique",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "MRU",
+ "local": "Mauritania",
+ "symbol": "UM",
+ "name": "Mauritanian ouguiya"
+ },
+ {
+ "code": "MUR",
+ "local": "Mauritius",
+ "symbol": "₨",
+ "name": "Mauritian rupee"
+ },
+ {
+ "code": "EUR",
+ "local": "Mayotte",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "MXN",
+ "local": "Mexico",
+ "symbol": "$",
+ "name": "Mexican peso"
+ },
+ {
+ "code": "USD",
+ "local": "Micronesia",
+ "symbol": "$",
+ "name": "United States dollar"
+ },
+ {
+ "code": "MDL",
+ "local": "Moldova",
+ "symbol": "L",
+ "name": "Moldovan leu"
+ },
+ {
+ "code": "EUR",
+ "local": "Monaco",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "MNT",
+ "local": "Mongolia",
+ "symbol": "₮",
+ "name": "Mongolian tögrög"
+ },
+ {
+ "code": "EUR",
+ "local": "Montenegro",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "XCD",
+ "local": "Montserrat",
+ "symbol": "$",
+ "name": "Eastern Caribbean dollar"
+ },
+ {
+ "code": "MAD",
+ "local": "Morocco",
+ "symbol": "د.م.",
+ "name": "Moroccan dirham"
+ },
+ {
+ "code": "MZN",
+ "local": "Mozambique",
+ "symbol": "MT",
+ "name": "Mozambican metical"
+ },
+ {
+ "code": "MMK",
+ "local": "Myanmar",
+ "symbol": "Ks",
+ "name": "Burmese kyat"
+ },
+ {
+ "code": "NAD",
+ "local": "Namibia",
+ "symbol": "$",
+ "name": "Namibian dollar"
+ },
+ {
+ "code": "ZAR",
+ "local": "Namibia",
+ "symbol": "R",
+ "name": "South African rand"
+ },
+ {
+ "code": "AUD",
+ "local": "Nauru",
+ "symbol": "$",
+ "name": "Australian dollar"
+ },
+ {
+ "code": "NPR",
+ "local": "Nepal",
+ "symbol": "₨",
+ "name": "Nepalese rupee"
+ },
+ {
+ "code": "EUR",
+ "local": "Netherlands",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "XPF",
+ "local": "New Caledonia",
+ "symbol": "₣",
+ "name": "CFP franc"
+ },
+ {
+ "code": "NZD",
+ "local": "New Zealand",
+ "symbol": "$",
+ "name": "New Zealand dollar"
+ },
+ {
+ "code": "NIO",
+ "local": "Nicaragua",
+ "symbol": "C$",
+ "name": "Nicaraguan córdoba"
+ },
+ {
+ "code": "XOF",
+ "local": "Niger",
+ "symbol": "Fr",
+ "name": "West African CFA franc"
+ },
+ {
+ "code": "NGN",
+ "local": "Nigeria",
+ "symbol": "₦",
+ "name": "Nigerian naira"
+ },
+ {
+ "code": "NZD",
+ "local": "Niue",
+ "symbol": "$",
+ "name": "New Zealand dollar"
+ },
+ {
+ "code": "AUD",
+ "local": "Norfolk Island",
+ "symbol": "$",
+ "name": "Australian dollar"
+ },
+ {
+ "code": "KPW",
+ "local": "North Korea",
+ "symbol": "₩",
+ "name": "North Korean won"
+ },
+ {
+ "code": "MKD",
+ "local": "North Macedonia",
+ "symbol": "den",
+ "name": "denar"
+ },
+ {
+ "code": "USD",
+ "local": "Northern Mariana Islands",
+ "symbol": "$",
+ "name": "United States dollar"
+ },
+ {
+ "code": "NOK",
+ "local": "Norway",
+ "symbol": "kr",
+ "name": "Norwegian krone"
+ },
+ {
+ "code": "OMR",
+ "local": "Oman",
+ "symbol": "ر.ع.",
+ "name": "Omani rial"
+ },
+ {
+ "code": "PKR",
+ "local": "Pakistan",
+ "symbol": "₨",
+ "name": "Pakistani rupee"
+ },
+ {
+ "code": "USD",
+ "local": "Palau",
+ "symbol": "$",
+ "name": "United States dollar"
},
{
"code": "EGP",
@@ -264,256 +1092,64 @@
"name": "Jordanian dinar"
},
{
- "code": "BDT",
- "local": "Bangladesh",
- "symbol": "৳",
- "name": "Bangladeshi taka"
- },
- {
- "code": "PEN",
- "local": "Peru",
- "symbol": "S/ ",
- "name": "Peruvian sol"
- },
- {
- "code": "SGD",
- "local": "Singapore",
- "symbol": "$",
- "name": "Singapore dollar"
- },
- {
- "code": "TRY",
- "local": "Turkey",
- "symbol": "₺",
- "name": "Turkish lira"
- },
- {
- "code": "AFN",
- "local": "Afghanistan",
- "symbol": "؋",
- "name": "Afghan afghani"
- },
- {
- "code": "AWG",
- "local": "Aruba",
- "symbol": "ƒ",
- "name": "Aruban florin"
- },
- {
- "code": "CKD",
- "local": "Cook Islands",
- "symbol": "$",
- "name": "Cook Islands dollar"
- },
- {
- "code": "NZD",
- "local": "Cook Islands",
- "symbol": "$",
- "name": "New Zealand dollar"
- },
- {
- "code": "GBP",
- "local": "United Kingdom",
- "symbol": "£",
- "name": "British pound"
- },
- {
- "code": "ZMW",
- "local": "Zambia",
- "symbol": "ZK",
- "name": "Zambian kwacha"
- },
- {
- "code": "EUR",
- "local": "Finland",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "XOF",
- "local": "Niger",
- "symbol": "Fr",
- "name": "West African CFA franc"
- },
- {
- "code": "AUD",
- "local": "Christmas Island",
- "symbol": "$",
- "name": "Australian dollar"
- },
- {
- "code": "NZD",
- "local": "Tokelau",
- "symbol": "$",
- "name": "New Zealand dollar"
- },
- {
- "code": "XOF",
- "local": "Guinea-Bissau",
- "symbol": "Fr",
- "name": "West African CFA franc"
- },
- {
- "code": "AZN",
- "local": "Azerbaijan",
- "symbol": "₼",
- "name": "Azerbaijani manat"
- },
- {
- "code": "EUR",
- "local": "Réunion",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "DJF",
- "local": "Djibouti",
- "symbol": "Fr",
- "name": "Djiboutian franc"
- },
- {
- "code": "KPW",
- "local": "North Korea",
- "symbol": "₩",
- "name": "North Korean won"
- },
- {
- "code": "MUR",
- "local": "Mauritius",
- "symbol": "₨",
- "name": "Mauritian rupee"
- },
- {
- "code": "XCD",
- "local": "Montserrat",
- "symbol": "$",
- "name": "Eastern Caribbean dollar"
+ "code": "PAB",
+ "local": "Panama",
+ "symbol": "B/.",
+ "name": "Panamanian balboa"
},
{
"code": "USD",
- "local": "United States Virgin Islands",
+ "local": "Panama",
"symbol": "$",
"name": "United States dollar"
},
- {
- "code": "COP",
- "local": "Colombia",
- "symbol": "$",
- "name": "Colombian peso"
- },
- {
- "code": "EUR",
- "local": "Greece",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "EUR",
- "local": "Croatia",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "MAD",
- "local": "Morocco",
- "symbol": "د.م.",
- "name": "Moroccan dirham"
- },
- {
- "code": "DZD",
- "local": "Algeria",
- "symbol": "د.ج",
- "name": "Algerian dinar"
- },
- {
- "code": "EUR",
- "local": "Netherlands",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "SDG",
- "local": "Sudan",
- "symbol": "ج.س",
- "name": "Sudanese pound"
- },
- {
- "code": "FJD",
- "local": "Fiji",
- "symbol": "$",
- "name": "Fijian dollar"
- },
- {
- "code": "CHF",
- "local": "Liechtenstein",
- "symbol": "Fr",
- "name": "Swiss franc"
- },
- {
- "code": "NPR",
- "local": "Nepal",
- "symbol": "₨",
- "name": "Nepalese rupee"
- },
- {
- "code": "USD",
- "local": "Puerto Rico",
- "symbol": "$",
- "name": "United States dollar"
- },
- {
- "code": "GEL",
- "local": "Georgia",
- "symbol": "₾",
- "name": "lari"
- },
- {
- "code": "PKR",
- "local": "Pakistan",
- "symbol": "₨",
- "name": "Pakistani rupee"
- },
- {
- "code": "EUR",
- "local": "Monaco",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "BWP",
- "local": "Botswana",
- "symbol": "P",
- "name": "Botswana pula"
- },
- {
- "code": "LBP",
- "local": "Lebanon",
- "symbol": "ل.ل",
- "name": "Lebanese pound"
- },
{
"code": "PGK",
"local": "Papua New Guinea",
"symbol": "K",
"name": "Papua New Guinean kina"
},
+ {
+ "code": "PYG",
+ "local": "Paraguay",
+ "symbol": "₲",
+ "name": "Paraguayan guaraní"
+ },
+ {
+ "code": "PEN",
+ "local": "Peru",
+ "symbol": "S/ ",
+ "name": "Peruvian sol"
+ },
+ {
+ "code": "PHP",
+ "local": "Philippines",
+ "symbol": "₱",
+ "name": "Philippine peso"
+ },
+ {
+ "code": "NZD",
+ "local": "Pitcairn Islands",
+ "symbol": "$",
+ "name": "New Zealand dollar"
+ },
+ {
+ "code": "PLN",
+ "local": "Poland",
+ "symbol": "zł",
+ "name": "Polish złoty"
+ },
{
"code": "EUR",
- "local": "Mayotte",
+ "local": "Portugal",
"symbol": "€",
"name": "Euro"
},
{
- "code": "DOP",
- "local": "Dominican Republic",
+ "code": "USD",
+ "local": "Puerto Rico",
"symbol": "$",
- "name": "Dominican peso"
- },
- {
- "code": "AUD",
- "local": "Norfolk Island",
- "symbol": "$",
- "name": "Australian dollar"
+ "name": "United States dollar"
},
{
"code": "QAR",
@@ -522,154 +1158,16 @@
"name": "Qatari riyal"
},
{
- "code": "MGA",
- "local": "Madagascar",
- "symbol": "Ar",
- "name": "Malagasy ariary"
+ "code": "XAF",
+ "local": "Republic of the Congo",
+ "symbol": "Fr",
+ "name": "Central African CFA franc"
},
{
- "code": "INR",
- "local": "India",
- "symbol": "₹",
- "name": "Indian rupee"
- },
- {
- "code": "SYP",
- "local": "Syria",
- "symbol": "£",
- "name": "Syrian pound"
- },
- {
- "code": "EUR",
- "local": "Montenegro",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "SZL",
- "local": "Eswatini",
- "symbol": "L",
- "name": "Swazi lilangeni"
- },
- {
- "code": "ZAR",
- "local": "Eswatini",
- "symbol": "R",
- "name": "South African rand"
- },
- {
- "code": "PYG",
- "local": "Paraguay",
- "symbol": "₲",
- "name": "Paraguayan guaraní"
- },
- {
- "code": "USD",
- "local": "El Salvador",
- "symbol": "$",
- "name": "United States dollar"
- },
- {
- "code": "UAH",
- "local": "Ukraine",
- "symbol": "₴",
- "name": "Ukrainian hryvnia"
- },
- {
- "code": "GBP",
- "local": "Isle of Man",
- "symbol": "£",
- "name": "British pound"
- },
- {
- "code": "IMP",
- "local": "Isle of Man",
- "symbol": "£",
- "name": "Manx pound"
- },
- {
- "code": "NAD",
- "local": "Namibia",
- "symbol": "$",
- "name": "Namibian dollar"
- },
- {
- "code": "ZAR",
- "local": "Namibia",
- "symbol": "R",
- "name": "South African rand"
- },
- {
- "code": "AED",
- "local": "United Arab Emirates",
- "symbol": "د.إ",
- "name": "United Arab Emirates dirham"
- },
- {
- "code": "BGN",
- "local": "Bulgaria",
- "symbol": "лв",
- "name": "Bulgarian lev"
- },
- {
- "code": "DKK",
- "local": "Greenland",
- "symbol": "kr.",
- "name": "krone"
- },
- {
- "code": "EUR",
- "local": "Germany",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "KHR",
- "local": "Cambodia",
- "symbol": "៛",
- "name": "Cambodian riel"
- },
- {
- "code": "USD",
- "local": "Cambodia",
- "symbol": "$",
- "name": "United States dollar"
- },
- {
- "code": "IQD",
- "local": "Iraq",
- "symbol": "ع.د",
- "name": "Iraqi dinar"
- },
- {
- "code": "EUR",
- "local": "French Southern and Antarctic Lands",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "SEK",
- "local": "Sweden",
- "symbol": "kr",
- "name": "Swedish krona"
- },
- {
- "code": "CUC",
- "local": "Cuba",
- "symbol": "$",
- "name": "Cuban convertible peso"
- },
- {
- "code": "CUP",
- "local": "Cuba",
- "symbol": "$",
- "name": "Cuban peso"
- },
- {
- "code": "KGS",
- "local": "Kyrgyzstan",
- "symbol": "с",
- "name": "Kyrgyzstani som"
+ "code": "RON",
+ "local": "Romania",
+ "symbol": "lei",
+ "name": "Romanian leu"
},
{
"code": "RUB",
@@ -678,34 +1176,76 @@
"name": "Russian ruble"
},
{
- "code": "MYR",
- "local": "Malaysia",
- "symbol": "RM",
- "name": "Malaysian ringgit"
- },
- {
- "code": "STN",
- "local": "São Tomé and Príncipe",
- "symbol": "Db",
- "name": "São Tomé and Príncipe dobra"
+ "code": "RWF",
+ "local": "Rwanda",
+ "symbol": "Fr",
+ "name": "Rwandan franc"
},
{
"code": "EUR",
- "local": "Cyprus",
+ "local": "Réunion",
"symbol": "€",
"name": "Euro"
},
{
- "code": "CAD",
- "local": "Canada",
- "symbol": "$",
- "name": "Canadian dollar"
+ "code": "EUR",
+ "local": "Saint Barthélemy",
+ "symbol": "€",
+ "name": "Euro"
},
{
- "code": "MWK",
- "local": "Malawi",
- "symbol": "MK",
- "name": "Malawian kwacha"
+ "code": "GBP",
+ "local": "Saint Helena, Ascension and Tristan da Cunha",
+ "symbol": "£",
+ "name": "Pound sterling"
+ },
+ {
+ "code": "SHP",
+ "local": "Saint Helena, Ascension and Tristan da Cunha",
+ "symbol": "£",
+ "name": "Saint Helena pound"
+ },
+ {
+ "code": "XCD",
+ "local": "Saint Kitts and Nevis",
+ "symbol": "$",
+ "name": "Eastern Caribbean dollar"
+ },
+ {
+ "code": "XCD",
+ "local": "Saint Lucia",
+ "symbol": "$",
+ "name": "Eastern Caribbean dollar"
+ },
+ {
+ "code": "EUR",
+ "local": "Saint Martin",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "EUR",
+ "local": "Saint Pierre and Miquelon",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "XCD",
+ "local": "Saint Vincent and the Grenadines",
+ "symbol": "$",
+ "name": "Eastern Caribbean dollar"
+ },
+ {
+ "code": "WST",
+ "local": "Samoa",
+ "symbol": "T",
+ "name": "Samoan tālā"
+ },
+ {
+ "code": "EUR",
+ "local": "San Marino",
+ "symbol": "€",
+ "name": "Euro"
},
{
"code": "SAR",
@@ -714,20 +1254,44 @@
"name": "Saudi riyal"
},
{
- "code": "BAM",
- "local": "Bosnia and Herzegovina",
- "symbol": "KM",
- "name": "Bosnia and Herzegovina convertible mark"
+ "code": "XOF",
+ "local": "Senegal",
+ "symbol": "Fr",
+ "name": "West African CFA franc"
},
{
- "code": "ETB",
- "local": "Ethiopia",
- "symbol": "Br",
- "name": "Ethiopian birr"
+ "code": "RSD",
+ "local": "Serbia",
+ "symbol": "дин.",
+ "name": "Serbian dinar"
+ },
+ {
+ "code": "SCR",
+ "local": "Seychelles",
+ "symbol": "₨",
+ "name": "Seychellois rupee"
+ },
+ {
+ "code": "SLL",
+ "local": "Sierra Leone",
+ "symbol": "Le",
+ "name": "Sierra Leonean leone"
+ },
+ {
+ "code": "SGD",
+ "local": "Singapore",
+ "symbol": "$",
+ "name": "Singapore dollar"
+ },
+ {
+ "code": "ANG",
+ "local": "Sint Maarten",
+ "symbol": "ƒ",
+ "name": "Netherlands Antillean guilder"
},
{
"code": "EUR",
- "local": "Spain",
+ "local": "Slovakia",
"symbol": "€",
"name": "Euro"
},
@@ -738,70 +1302,166 @@
"name": "Euro"
},
{
- "code": "OMR",
- "local": "Oman",
- "symbol": "ر.ع.",
- "name": "Omani rial"
+ "code": "SBD",
+ "local": "Solomon Islands",
+ "symbol": "$",
+ "name": "Solomon Islands dollar"
},
{
- "code": "EUR",
- "local": "Saint Pierre and Miquelon",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "MOP",
- "local": "Macau",
- "symbol": "P",
- "name": "Macanese pataca"
- },
- {
- "code": "EUR",
- "local": "San Marino",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "LSL",
- "local": "Lesotho",
- "symbol": "L",
- "name": "Lesotho loti"
+ "code": "SOS",
+ "local": "Somalia",
+ "symbol": "Sh",
+ "name": "Somali shilling"
},
{
"code": "ZAR",
- "local": "Lesotho",
+ "local": "South Africa",
"symbol": "R",
"name": "South African rand"
},
{
- "code": "USD",
- "local": "Marshall Islands",
- "symbol": "$",
- "name": "United States dollar"
+ "code": "SHP",
+ "local": "South Georgia",
+ "symbol": "£",
+ "name": "Saint Helena pound"
},
{
- "code": "ANG",
- "local": "Sint Maarten",
- "symbol": "ƒ",
- "name": "Netherlands Antillean guilder"
+ "code": "KRW",
+ "local": "South Korea",
+ "symbol": "₩",
+ "name": "South Korean won"
},
{
- "code": "ISK",
- "local": "Iceland",
- "symbol": "kr",
- "name": "Icelandic króna"
+ "code": "SSP",
+ "local": "South Sudan",
+ "symbol": "£",
+ "name": "South Sudanese pound"
},
{
"code": "EUR",
- "local": "Luxembourg",
+ "local": "Spain",
"symbol": "€",
"name": "Euro"
},
{
- "code": "ARS",
- "local": "Argentina",
+ "code": "LKR",
+ "local": "Sri Lanka",
+ "symbol": "Rs රු",
+ "name": "Sri Lankan rupee"
+ },
+ {
+ "code": "SDG",
+ "local": "Sudan",
+ "symbol": "ج.س",
+ "name": "Sudanese pound"
+ },
+ {
+ "code": "SRD",
+ "local": "Suriname",
"symbol": "$",
- "name": "Argentine peso"
+ "name": "Surinamese dollar"
+ },
+ {
+ "code": "NOK",
+ "local": "Svalbard and Jan Mayen",
+ "symbol": "kr",
+ "name": "krone"
+ },
+ {
+ "code": "SEK",
+ "local": "Sweden",
+ "symbol": "kr",
+ "name": "Swedish krona"
+ },
+ {
+ "code": "CHF",
+ "local": "Switzerland",
+ "symbol": "Fr.",
+ "name": "Swiss franc"
+ },
+ {
+ "code": "SYP",
+ "local": "Syria",
+ "symbol": "£",
+ "name": "Syrian pound"
+ },
+ {
+ "code": "STN",
+ "local": "São Tomé and Príncipe",
+ "symbol": "Db",
+ "name": "São Tomé and Príncipe dobra"
+ },
+ {
+ "code": "TWD",
+ "local": "Taiwan",
+ "symbol": "$",
+ "name": "New Taiwan dollar"
+ },
+ {
+ "code": "TJS",
+ "local": "Tajikistan",
+ "symbol": "ЅМ",
+ "name": "Tajikistani somoni"
+ },
+ {
+ "code": "TZS",
+ "local": "Tanzania",
+ "symbol": "Sh",
+ "name": "Tanzanian shilling"
+ },
+ {
+ "code": "THB",
+ "local": "Thailand",
+ "symbol": "฿",
+ "name": "Thai baht"
+ },
+ {
+ "code": "USD",
+ "local": "Timor-Leste",
+ "symbol": "$",
+ "name": "United States dollar"
+ },
+ {
+ "code": "XOF",
+ "local": "Togo",
+ "symbol": "Fr",
+ "name": "West African CFA franc"
+ },
+ {
+ "code": "NZD",
+ "local": "Tokelau",
+ "symbol": "$",
+ "name": "New Zealand dollar"
+ },
+ {
+ "code": "TOP",
+ "local": "Tonga",
+ "symbol": "T$",
+ "name": "Tongan paʻanga"
+ },
+ {
+ "code": "TTD",
+ "local": "Trinidad and Tobago",
+ "symbol": "$",
+ "name": "Trinidad and Tobago dollar"
+ },
+ {
+ "code": "TND",
+ "local": "Tunisia",
+ "symbol": "د.ت",
+ "name": "Tunisian dinar"
+ },
+ {
+ "code": "TRY",
+ "local": "Turkey",
+ "symbol": "₺",
+ "name": "Turkish lira"
+ },
+ {
+ "code": "TMT",
+ "local": "Turkmenistan",
+ "symbol": "m",
+ "name": "Turkmenistan manat"
},
{
"code": "USD",
@@ -811,15 +1471,99 @@
},
{
"code": "AUD",
- "local": "Nauru",
+ "local": "Tuvalu",
"symbol": "$",
"name": "Australian dollar"
},
{
- "code": "AUD",
- "local": "Cocos (Keeling) Islands",
+ "code": "TVD",
+ "local": "Tuvalu",
"symbol": "$",
- "name": "Australian dollar"
+ "name": "Tuvaluan dollar"
+ },
+ {
+ "code": "UGX",
+ "local": "Uganda",
+ "symbol": "Sh",
+ "name": "Ugandan shilling"
+ },
+ {
+ "code": "UAH",
+ "local": "Ukraine",
+ "symbol": "₴",
+ "name": "Ukrainian hryvnia"
+ },
+ {
+ "code": "AED",
+ "local": "United Arab Emirates",
+ "symbol": "د.إ",
+ "name": "United Arab Emirates dirham"
+ },
+ {
+ "code": "GBP",
+ "local": "United Kingdom",
+ "symbol": "£",
+ "name": "British pound"
+ },
+ {
+ "code": "USD",
+ "local": "United States",
+ "symbol": "$",
+ "name": "United States dollar"
+ },
+ {
+ "code": "USD",
+ "local": "United States Minor Outlying Islands",
+ "symbol": "$",
+ "name": "United States dollar"
+ },
+ {
+ "code": "USD",
+ "local": "United States Virgin Islands",
+ "symbol": "$",
+ "name": "United States dollar"
+ },
+ {
+ "code": "UYU",
+ "local": "Uruguay",
+ "symbol": "$",
+ "name": "Uruguayan peso"
+ },
+ {
+ "code": "UZS",
+ "local": "Uzbekistan",
+ "symbol": "so'm",
+ "name": "Uzbekistani soʻm"
+ },
+ {
+ "code": "VUV",
+ "local": "Vanuatu",
+ "symbol": "Vt",
+ "name": "Vanuatu vatu"
+ },
+ {
+ "code": "EUR",
+ "local": "Vatican City",
+ "symbol": "€",
+ "name": "Euro"
+ },
+ {
+ "code": "VES",
+ "local": "Venezuela",
+ "symbol": "Bs.S.",
+ "name": "Venezuelan bolívar soberano"
+ },
+ {
+ "code": "VND",
+ "local": "Vietnam",
+ "symbol": "₫",
+ "name": "Vietnamese đồng"
+ },
+ {
+ "code": "XPF",
+ "local": "Wallis and Futuna",
+ "symbol": "₣",
+ "name": "CFP franc"
},
{
"code": "DZD",
@@ -840,706 +1584,16 @@
"name": "Mauritanian ouguiya"
},
{
- "code": "XCD",
- "local": "Dominica",
- "symbol": "$",
- "name": "Eastern Caribbean dollar"
- },
- {
- "code": "CRC",
- "local": "Costa Rica",
- "symbol": "₡",
- "name": "Costa Rican colón"
- },
- {
- "code": "AUD",
- "local": "Australia",
- "symbol": "$",
- "name": "Australian dollar"
- },
- {
- "code": "THB",
- "local": "Thailand",
- "symbol": "฿",
- "name": "Thai baht"
- },
- {
- "code": "HTG",
- "local": "Haiti",
- "symbol": "G",
- "name": "Haitian gourde"
- },
- {
- "code": "AUD",
- "local": "Tuvalu",
- "symbol": "$",
- "name": "Australian dollar"
- },
- {
- "code": "TVD",
- "local": "Tuvalu",
- "symbol": "$",
- "name": "Tuvaluan dollar"
- },
- {
- "code": "HNL",
- "local": "Honduras",
- "symbol": "L",
- "name": "Honduran lempira"
- },
- {
- "code": "XAF",
- "local": "Equatorial Guinea",
- "symbol": "Fr",
- "name": "Central African CFA franc"
- },
- {
- "code": "XCD",
- "local": "Saint Lucia",
- "symbol": "$",
- "name": "Eastern Caribbean dollar"
- },
- {
- "code": "XPF",
- "local": "French Polynesia",
- "symbol": "₣",
- "name": "CFP franc"
- },
- {
- "code": "BYN",
- "local": "Belarus",
- "symbol": "Br",
- "name": "Belarusian ruble"
- },
- {
- "code": "EUR",
- "local": "Latvia",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "USD",
- "local": "Palau",
- "symbol": "$",
- "name": "United States dollar"
- },
- {
- "code": "EUR",
- "local": "Guadeloupe",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "PHP",
- "local": "Philippines",
- "symbol": "₱",
- "name": "Philippine peso"
- },
- {
- "code": "GIP",
- "local": "Gibraltar",
- "symbol": "£",
- "name": "Gibraltar pound"
- },
- {
- "code": "DKK",
- "local": "Denmark",
- "symbol": "kr",
- "name": "Danish krone"
- },
- {
- "code": "XAF",
- "local": "Cameroon",
- "symbol": "Fr",
- "name": "Central African CFA franc"
- },
- {
- "code": "GNF",
- "local": "Guinea",
- "symbol": "Fr",
- "name": "Guinean franc"
- },
- {
- "code": "BHD",
- "local": "Bahrain",
- "symbol": ".د.ب",
- "name": "Bahraini dinar"
- },
- {
- "code": "SRD",
- "local": "Suriname",
- "symbol": "$",
- "name": "Surinamese dollar"
- },
- {
- "code": "CDF",
- "local": "DR Congo",
- "symbol": "FC",
- "name": "Congolese franc"
- },
- {
- "code": "SOS",
- "local": "Somalia",
- "symbol": "Sh",
- "name": "Somali shilling"
- },
- {
- "code": "CZK",
- "local": "Czechia",
- "symbol": "Kč",
- "name": "Czech koruna"
- },
- {
- "code": "XPF",
- "local": "New Caledonia",
- "symbol": "₣",
- "name": "CFP franc"
- },
- {
- "code": "VUV",
- "local": "Vanuatu",
- "symbol": "Vt",
- "name": "Vanuatu vatu"
- },
- {
- "code": "GBP",
- "local": "Saint Helena, Ascension and Tristan da Cunha",
- "symbol": "£",
- "name": "Pound sterling"
- },
- {
- "code": "SHP",
- "local": "Saint Helena, Ascension and Tristan da Cunha",
- "symbol": "£",
- "name": "Saint Helena pound"
- },
- {
- "code": "XOF",
- "local": "Togo",
- "symbol": "Fr",
- "name": "West African CFA franc"
- },
- {
- "code": "USD",
- "local": "British Virgin Islands",
- "symbol": "$",
- "name": "United States dollar"
- },
- {
- "code": "KES",
- "local": "Kenya",
- "symbol": "Sh",
- "name": "Kenyan shilling"
- },
- {
- "code": "NZD",
- "local": "Niue",
- "symbol": "$",
- "name": "New Zealand dollar"
- },
- {
- "code": "RWF",
- "local": "Rwanda",
- "symbol": "Fr",
- "name": "Rwandan franc"
- },
- {
- "code": "EUR",
- "local": "Estonia",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "RON",
- "local": "Romania",
- "symbol": "lei",
- "name": "Romanian leu"
- },
- {
- "code": "TTD",
- "local": "Trinidad and Tobago",
- "symbol": "$",
- "name": "Trinidad and Tobago dollar"
- },
- {
- "code": "GYD",
- "local": "Guyana",
- "symbol": "$",
- "name": "Guyanese dollar"
- },
- {
- "code": "USD",
- "local": "Timor-Leste",
- "symbol": "$",
- "name": "United States dollar"
- },
- {
- "code": "VND",
- "local": "Vietnam",
- "symbol": "₫",
- "name": "Vietnamese đồng"
- },
- {
- "code": "UYU",
- "local": "Uruguay",
- "symbol": "$",
- "name": "Uruguayan peso"
- },
- {
- "code": "EUR",
- "local": "Vatican City",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "HKD",
- "local": "Hong Kong",
- "symbol": "$",
- "name": "Hong Kong dollar"
- },
- {
- "code": "EUR",
- "local": "Austria",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "XCD",
- "local": "Antigua and Barbuda",
- "symbol": "$",
- "name": "Eastern Caribbean dollar"
- },
- {
- "code": "TMT",
- "local": "Turkmenistan",
- "symbol": "m",
- "name": "Turkmenistan manat"
- },
- {
- "code": "MZN",
- "local": "Mozambique",
- "symbol": "MT",
- "name": "Mozambican metical"
- },
- {
- "code": "PAB",
- "local": "Panama",
- "symbol": "B/.",
- "name": "Panamanian balboa"
- },
- {
- "code": "USD",
- "local": "Panama",
- "symbol": "$",
- "name": "United States dollar"
- },
- {
- "code": "USD",
- "local": "Micronesia",
- "symbol": "$",
- "name": "United States dollar"
- },
- {
- "code": "EUR",
- "local": "Ireland",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "ANG",
- "local": "Curaçao",
- "symbol": "ƒ",
- "name": "Netherlands Antillean guilder"
- },
- {
- "code": "EUR",
- "local": "French Guiana",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "NOK",
- "local": "Norway",
- "symbol": "kr",
- "name": "Norwegian krone"
- },
- {
- "code": "EUR",
- "local": "Åland Islands",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "XAF",
- "local": "Central African Republic",
- "symbol": "Fr",
- "name": "Central African CFA franc"
- },
- {
- "code": "XOF",
- "local": "Burkina Faso",
- "symbol": "Fr",
- "name": "West African CFA franc"
- },
- {
- "code": "ERN",
- "local": "Eritrea",
- "symbol": "Nfk",
- "name": "Eritrean nakfa"
- },
- {
- "code": "TZS",
- "local": "Tanzania",
- "symbol": "Sh",
- "name": "Tanzanian shilling"
- },
- {
- "code": "KRW",
- "local": "South Korea",
- "symbol": "₩",
- "name": "South Korean won"
- },
- {
- "code": "JOD",
- "local": "Jordan",
- "symbol": "د.ا",
- "name": "Jordanian dinar"
- },
- {
- "code": "MRU",
- "local": "Mauritania",
- "symbol": "UM",
- "name": "Mauritanian ouguiya"
- },
- {
- "code": "EUR",
- "local": "Lithuania",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "USD",
- "local": "United States Minor Outlying Islands",
- "symbol": "$",
- "name": "United States dollar"
- },
- {
- "code": "EUR",
- "local": "Slovakia",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "AOA",
- "local": "Angola",
- "symbol": "Kz",
- "name": "Angolan kwanza"
- },
- {
- "code": "KZT",
- "local": "Kazakhstan",
- "symbol": "₸",
- "name": "Kazakhstani tenge"
- },
- {
- "code": "MDL",
- "local": "Moldova",
- "symbol": "L",
- "name": "Moldovan leu"
- },
- {
- "code": "XOF",
- "local": "Mali",
- "symbol": "Fr",
- "name": "West African CFA franc"
- },
- {
- "code": "FKP",
- "local": "Falkland Islands",
- "symbol": "£",
- "name": "Falkland Islands pound"
- },
- {
- "code": "AMD",
- "local": "Armenia",
- "symbol": "֏",
- "name": "Armenian dram"
- },
- {
- "code": "WST",
- "local": "Samoa",
- "symbol": "T",
- "name": "Samoan tālā"
- },
- {
- "code": "GBP",
- "local": "Jersey",
- "symbol": "£",
- "name": "British pound"
- },
- {
- "code": "JEP",
- "local": "Jersey",
- "symbol": "£",
- "name": "Jersey pound"
- },
- {
- "code": "JPY",
- "local": "Japan",
- "symbol": "¥",
- "name": "Japanese yen"
- },
- {
- "code": "BOB",
- "local": "Bolivia",
- "symbol": "Bs.",
- "name": "Bolivian boliviano"
- },
- {
- "code": "CLP",
- "local": "Chile",
- "symbol": "$",
- "name": "Chilean peso"
- },
- {
- "code": "USD",
- "local": "United States",
- "symbol": "$",
- "name": "United States dollar"
- },
- {
- "code": "XCD",
- "local": "Saint Vincent and the Grenadines",
- "symbol": "$",
- "name": "Eastern Caribbean dollar"
- },
- {
- "code": "BMD",
- "local": "Bermuda",
- "symbol": "$",
- "name": "Bermudian dollar"
- },
- {
- "code": "SCR",
- "local": "Seychelles",
- "symbol": "₨",
- "name": "Seychellois rupee"
- },
- {
- "code": "USD",
- "local": "British Indian Ocean Territory",
- "symbol": "$",
- "name": "United States dollar"
- },
- {
- "code": "GTQ",
- "local": "Guatemala",
- "symbol": "Q",
- "name": "Guatemalan quetzal"
- },
- {
- "code": "USD",
- "local": "Ecuador",
- "symbol": "$",
- "name": "United States dollar"
- },
- {
- "code": "EUR",
- "local": "Martinique",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "TJS",
- "local": "Tajikistan",
- "symbol": "ЅМ",
- "name": "Tajikistani somoni"
- },
- {
- "code": "EUR",
- "local": "Malta",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "GMD",
- "local": "Gambia",
- "symbol": "D",
- "name": "dalasi"
- },
- {
- "code": "NGN",
- "local": "Nigeria",
- "symbol": "₦",
- "name": "Nigerian naira"
- },
- {
- "code": "BSD",
- "local": "Bahamas",
- "symbol": "$",
- "name": "Bahamian dollar"
- },
- {
- "code": "USD",
- "local": "Bahamas",
- "symbol": "$",
- "name": "United States dollar"
- },
- {
- "code": "EUR",
- "local": "Kosovo",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "KWD",
- "local": "Kuwait",
- "symbol": "د.ك",
- "name": "Kuwaiti dinar"
- },
- {
- "code": "MVR",
- "local": "Maldives",
- "symbol": ".ރ",
- "name": "Maldivian rufiyaa"
- },
- {
- "code": "SSP",
- "local": "South Sudan",
- "symbol": "£",
- "name": "South Sudanese pound"
- },
- {
- "code": "IRR",
- "local": "Iran",
+ "code": "YER",
+ "local": "Yemen",
"symbol": "﷼",
- "name": "Iranian rial"
+ "name": "Yemeni rial"
},
{
- "code": "ALL",
- "local": "Albania",
- "symbol": "L",
- "name": "Albanian lek"
- },
- {
- "code": "BRL",
- "local": "Brazil",
- "symbol": "R$",
- "name": "Brazilian real"
- },
- {
- "code": "RSD",
- "local": "Serbia",
- "symbol": "дин.",
- "name": "Serbian dinar"
- },
- {
- "code": "BZD",
- "local": "Belize",
- "symbol": "$",
- "name": "Belize dollar"
- },
- {
- "code": "MMK",
- "local": "Myanmar",
- "symbol": "Ks",
- "name": "Burmese kyat"
- },
- {
- "code": "BTN",
- "local": "Bhutan",
- "symbol": "Nu.",
- "name": "Bhutanese ngultrum"
- },
- {
- "code": "INR",
- "local": "Bhutan",
- "symbol": "₹",
- "name": "Indian rupee"
- },
- {
- "code": "VES",
- "local": "Venezuela",
- "symbol": "Bs.S.",
- "name": "Venezuelan bolívar soberano"
- },
- {
- "code": "LRD",
- "local": "Liberia",
- "symbol": "$",
- "name": "Liberian dollar"
- },
- {
- "code": "JMD",
- "local": "Jamaica",
- "symbol": "$",
- "name": "Jamaican dollar"
- },
- {
- "code": "PLN",
- "local": "Poland",
- "symbol": "zł",
- "name": "Polish złoty"
- },
- {
- "code": "KYD",
- "local": "Cayman Islands",
- "symbol": "$",
- "name": "Cayman Islands dollar"
- },
- {
- "code": "BND",
- "local": "Brunei",
- "symbol": "$",
- "name": "Brunei dollar"
- },
- {
- "code": "SGD",
- "local": "Brunei",
- "symbol": "$",
- "name": "Singapore dollar"
- },
- {
- "code": "KMF",
- "local": "Comoros",
- "symbol": "Fr",
- "name": "Comorian franc"
- },
- {
- "code": "USD",
- "local": "Guam",
- "symbol": "$",
- "name": "United States dollar"
- },
- {
- "code": "TOP",
- "local": "Tonga",
- "symbol": "T$",
- "name": "Tongan paʻanga"
- },
- {
- "code": "AUD",
- "local": "Kiribati",
- "symbol": "$",
- "name": "Australian dollar"
- },
- {
- "code": "KID",
- "local": "Kiribati",
- "symbol": "$",
- "name": "Kiribati dollar"
- },
- {
- "code": "GHS",
- "local": "Ghana",
- "symbol": "₵",
- "name": "Ghanaian cedi"
- },
- {
- "code": "XAF",
- "local": "Chad",
- "symbol": "Fr",
- "name": "Central African CFA franc"
+ "code": "ZMW",
+ "local": "Zambia",
+ "symbol": "ZK",
+ "name": "Zambian kwacha"
},
{
"code": "ZWL",
@@ -1549,62 +1603,8 @@
},
{
"code": "EUR",
- "local": "Saint Martin",
+ "local": "Åland Islands",
"symbol": "€",
"name": "Euro"
- },
- {
- "code": "MNT",
- "local": "Mongolia",
- "symbol": "₮",
- "name": "Mongolian tögrög"
- },
- {
- "code": "EUR",
- "local": "Portugal",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "USD",
- "local": "American Samoa",
- "symbol": "$",
- "name": "United States dollar"
- },
- {
- "code": "XAF",
- "local": "Republic of the Congo",
- "symbol": "Fr",
- "name": "Central African CFA franc"
- },
- {
- "code": "EUR",
- "local": "Belgium",
- "symbol": "€",
- "name": "Euro"
- },
- {
- "code": "ILS",
- "local": "Israel",
- "symbol": "₪",
- "name": "Israeli new shekel"
- },
- {
- "code": "NZD",
- "local": "New Zealand",
- "symbol": "$",
- "name": "New Zealand dollar"
- },
- {
- "code": "NIO",
- "local": "Nicaragua",
- "symbol": "C$",
- "name": "Nicaraguan córdoba"
- },
- {
- "code": "XCD",
- "local": "Anguilla",
- "symbol": "$",
- "name": "Eastern Caribbean dollar"
}
]
\ No newline at end of file
diff --git a/backend/internal/data/repo/repo_items.go b/backend/internal/data/repo/repo_items.go
index 7cb91553..33b37b56 100644
--- a/backend/internal/data/repo/repo_items.go
+++ b/backend/internal/data/repo/repo_items.go
@@ -116,6 +116,7 @@ type (
ItemSummary struct {
ImportRef string `json:"-"`
ID uuid.UUID `json:"id"`
+ AssetID AssetID `json:"assetId,string"`
Name string `json:"name"`
Description string `json:"description"`
Quantity int `json:"quantity"`
@@ -193,6 +194,7 @@ func mapItemSummary(item *ent.Item) ItemSummary {
return ItemSummary{
ID: item.ID,
+ AssetID: AssetID(item.AssetID),
Name: item.Name,
Description: item.Description,
ImportRef: item.ImportRef,
@@ -426,6 +428,8 @@ func (e *ItemsRepository) QueryByGroup(ctx context.Context, gid uuid.UUID, q Ite
qb = qb.Order(ent.Desc(item.FieldCreatedAt))
case "updatedAt":
qb = qb.Order(ent.Desc(item.FieldUpdatedAt))
+ case "assetId":
+ qb = qb.Order(ent.Asc(item.FieldAssetID))
default: // "name"
qb = qb.Order(ent.Asc(item.FieldName))
}
diff --git a/backend/internal/data/repo/repo_maintenance_entry.go b/backend/internal/data/repo/repo_maintenance_entry.go
index 6f5c135b..ed3a06c4 100644
--- a/backend/internal/data/repo/repo_maintenance_entry.go
+++ b/backend/internal/data/repo/repo_maintenance_entry.go
@@ -5,6 +5,7 @@ import (
"errors"
"time"
+ "entgo.io/ent/dialect/sql"
"github.com/google/uuid"
"github.com/sysadminsmedia/homebox/backend/internal/data/ent"
"github.com/sysadminsmedia/homebox/backend/internal/data/ent/group"
@@ -130,19 +131,36 @@ func (r *MaintenanceEntryRepository) GetMaintenanceByItemID(ctx context.Context,
item.HasGroupWith(group.IDEQ(groupID)),
),
)
- if filters.Status == MaintenanceFilterStatusScheduled {
+ switch filters.Status {
+ case MaintenanceFilterStatusScheduled:
query = query.Where(maintenanceentry.Or(
maintenanceentry.DateIsNil(),
maintenanceentry.DateEQ(time.Time{}),
+ maintenanceentry.DateGT(time.Now()),
))
- } else if filters.Status == MaintenanceFilterStatusCompleted {
+ // Sort scheduled entries by ascending scheduled date
+ query = query.Order(
+ maintenanceentry.ByScheduledDate(sql.OrderAsc()),
+ )
+ case MaintenanceFilterStatusCompleted:
query = query.Where(
maintenanceentry.Not(maintenanceentry.Or(
maintenanceentry.DateIsNil(),
- maintenanceentry.DateEQ(time.Time{})),
- ))
+ maintenanceentry.DateEQ(time.Time{}),
+ maintenanceentry.DateGT(time.Now()),
+ )))
+ // Sort completed entries by descending completion date
+ query = query.Order(
+ maintenanceentry.ByDate(sql.OrderDesc()),
+ )
+ default:
+ // Sort entries by default by scheduled and maintenance date in descending order
+ query = query.Order(
+ maintenanceentry.ByScheduledDate(sql.OrderDesc()),
+ maintenanceentry.ByDate(sql.OrderDesc()),
+ )
}
- entries, err := query.WithItem().Order(maintenanceentry.ByScheduledDate()).All(ctx)
+ entries, err := query.WithItem().All(ctx)
if err != nil {
return []MaintenanceEntryWithDetails{}, err
diff --git a/backend/internal/data/repo/repo_maintenance_entry_test.go b/backend/internal/data/repo/repo_maintenance_entry_test.go
index 6f6bc0fd..d9e96078 100644
--- a/backend/internal/data/repo/repo_maintenance_entry_test.go
+++ b/backend/internal/data/repo/repo_maintenance_entry_test.go
@@ -32,8 +32,8 @@ func getPrevMonth(now time.Time) time.Time {
func TestMaintenanceEntryRepository_GetLog(t *testing.T) {
item := useItems(t, 1)[0]
- // Create 10 maintenance entries for the item
- created := make([]MaintenanceEntryCreate, 10)
+ // Create 11 maintenance entries for the item
+ created := make([]MaintenanceEntryCreate, 11)
thisMonth := time.Now()
lastMonth := getPrevMonth(thisMonth)
@@ -52,6 +52,14 @@ func TestMaintenanceEntryRepository_GetLog(t *testing.T) {
}
}
+ // Add an entry completed in the future
+ created[10] = MaintenanceEntryCreate{
+ CompletedDate: types.DateFromTime(time.Now().AddDate(0, 0, 1)),
+ Name: "Maintenance",
+ Description: "Maintenance description",
+ Cost: 10,
+ }
+
for _, entry := range created {
_, err := tRepos.MaintEntry.Create(context.Background(), item.ID, entry)
if err != nil {
diff --git a/docs/docs/api/openapi-2.0.json b/docs/docs/api/openapi-2.0.json
index 532020b8..4b84c8ed 100644
--- a/docs/docs/api/openapi-2.0.json
+++ b/docs/docs/api/openapi-2.0.json
@@ -2279,6 +2279,10 @@
"archived": {
"type": "boolean"
},
+ "assetId": {
+ "type": "string",
+ "example": "0"
+ },
"createdAt": {
"type": "string"
},
diff --git a/frontend/components/Form/DatePicker.vue b/frontend/components/Form/DatePicker.vue
index 725a6074..7422b603 100644
--- a/frontend/components/Form/DatePicker.vue
+++ b/frontend/components/Form/DatePicker.vue
@@ -3,13 +3,27 @@
-
+
-
+
@@ -38,6 +52,8 @@
const isDark = useIsDark();
+ const formatDate = (date: Date | string | number) => fmtDate(date, "human", "date");
+
const selected = computed({
get() {
// String
diff --git a/frontend/components/Item/Card.vue b/frontend/components/Item/Card.vue
index 30751c4b..4b8997a7 100644
--- a/frontend/components/Item/Card.vue
+++ b/frontend/components/Item/Card.vue
@@ -14,7 +14,7 @@
:to="`/location/${item.location.id}`"
loading="lazy"
>
- {{ item.location.name }}
+ {{ locationString }}
@@ -67,7 +67,16 @@
type: Object as () => ItemOut | ItemSummary,
required: true,
},
+ locationFlatTree: {
+ type: Array as () => FlatTreeItem[],
+ required: false,
+ default: () => [],
+ },
});
+
+ const locationString = computed(
+ () => props.locationFlatTree.find(l => l.id === props.item.location?.id)?.treeString || props.item.location?.name
+ );
diff --git a/frontend/components/Maintenance/ListView.vue b/frontend/components/Maintenance/ListView.vue
index da87230a..71664321 100644
--- a/frontend/components/Maintenance/ListView.vue
+++ b/frontend/components/Maintenance/ListView.vue
@@ -131,7 +131,7 @@
-
+
{{ (e as MaintenanceEntryWithDetails).itemName }}
-
diff --git a/frontend/components/global/DateTime.vue b/frontend/components/global/DateTime.vue
index b23cac2b..b82cf5c6 100644
--- a/frontend/components/global/DateTime.vue
+++ b/frontend/components/global/DateTime.vue
@@ -22,6 +22,6 @@
return "";
}
- return fmtDate(props.date, props.format);
+ return fmtDate(props.date, props.format, props.datetimeType);
});
diff --git a/frontend/composables/use-formatters.ts b/frontend/composables/use-formatters.ts
index 602a7108..91cf9bf1 100644
--- a/frontend/composables/use-formatters.ts
+++ b/frontend/composables/use-formatters.ts
@@ -1,5 +1,6 @@
-import { useI18n } from "vue-i18n";
-import { type UseTimeAgoMessages, type UseTimeAgoUnitNamesDefault } from "@vueuse/core";
+import { format, formatDistance } from "date-fns";
+/* eslint import/namespace: ['error', { allowComputed: true }] */
+import * as Locales from "date-fns/locale";
const cache = {
currency: "",
@@ -20,105 +21,63 @@ export async function useFormatCurrency() {
}
}
- return (value: number | string) => fmtCurrency(value, cache.currency);
+ return (value: number | string) => fmtCurrency(value, cache.currency, getLocaleCode());
}
export type DateTimeFormat = "relative" | "long" | "short" | "human";
export type DateTimeType = "date" | "time" | "datetime";
-function ordinalIndicator(num: number) {
- if (num > 3 && num < 21) return "th";
- switch (num % 10) {
- case 1:
- return "st";
- case 2:
- return "nd";
- case 3:
- return "rd";
- default:
- return "th";
- }
+export function getLocaleCode() {
+ const { $i18nGlobal } = useNuxtApp();
+ return ($i18nGlobal?.locale?.value as string) ?? "en-US";
}
-export function useLocaleTimeAgo(date: Date) {
- const { t } = useI18n();
-
- const I18N_MESSAGES: UseTimeAgoMessages = {
- justNow: t("components.global.date_time.just-now"),
- past: n => (n.match(/\d/) ? t("components.global.date_time.ago", [n]) : n),
- future: n => (n.match(/\d/) ? t("components.global.date_time.in", [n]) : n),
- month: (n, past) =>
- n === 1
- ? past
- ? t("components.global.date_time.last-month")
- : t("components.global.date_time.next-month")
- : `${n} ${t(`components.global.date_time.months`)}`,
- year: (n, past) =>
- n === 1
- ? past
- ? t("components.global.date_time.last-year")
- : t("components.global.date_time.next-year")
- : `${n} ${t(`components.global.date_time.years`)}`,
- day: (n, past) =>
- n === 1
- ? past
- ? t("components.global.date_time.yesterday")
- : t("components.global.date_time.tomorrow")
- : `${n} ${t(`components.global.date_time.days`)}`,
- week: (n, past) =>
- n === 1
- ? past
- ? t("components.global.date_time.last-week")
- : t("components.global.date_time.next-week")
- : `${n} ${t(`components.global.date_time.weeks`)}`,
- hour: n => `${n} ${n === 1 ? t("components.global.date_time.hour") : t("components.global.date_time.hours")}`,
- minute: n => `${n} ${n === 1 ? t("components.global.date_time.minute") : t("components.global.date_time.minutes")}`,
- second: n => `${n} ${n === 1 ? t("components.global.date_time.second") : t("components.global.date_time.seconds")}`,
- invalid: "",
- };
-
- return useTimeAgo(date, {
- fullDateFormatter: (date: Date) => date.toLocaleDateString(),
- messages: I18N_MESSAGES,
- });
+function getLocaleForDate() {
+ const localeCode = getLocaleCode();
+ const lang = localeCode.length > 1 ? localeCode.substring(0, 2) : localeCode;
+ const region = localeCode.length > 2 ? localeCode.substring(3) : "";
+ return Locales[(lang + region) as keyof typeof Locales] ?? Locales[lang as keyof typeof Locales] ?? Locales.enUS;
}
-export function fmtDate(value: string | Date, fmt: DateTimeFormat = "human"): string {
- const months = [
- "January",
- "February",
- "March",
- "April",
- "May",
- "June",
- "July",
- "August",
- "September",
- "October",
- "November",
- "December",
- ];
+export function fmtDate(
+ value: string | Date | number,
+ fmt: DateTimeFormat = "human",
+ type: DateTimeType = "date"
+): string {
+ const dt = typeof value === "string" || typeof value === "number" ? new Date(value) : value;
- const dt = typeof value === "string" ? new Date(value) : value;
- if (!dt) {
+ if (!dt || !validDate(dt)) {
return "";
}
- if (!validDate(dt)) {
- return "";
+ const localeOptions = { locale: getLocaleForDate() };
+
+ if (fmt === "relative") {
+ return `${formatDistance(dt, new Date(), { ...localeOptions, addSuffix: true })} (${fmtDate(dt, "short", "date")})`;
}
+ if (type === "time") {
+ return format(dt, "p", localeOptions);
+ }
+
+ let formatStr = "";
+
switch (fmt) {
- case "relative":
- return useLocaleTimeAgo(dt).value + useDateFormat(dt, " (YYYY-MM-DD)").value;
- case "long":
- return useDateFormat(dt, "YYYY-MM-DD (dddd)").value;
- case "short":
- return useDateFormat(dt, "YYYY-MM-DD").value;
case "human":
- // January 1st, 2021
- return `${months[dt.getMonth()]} ${dt.getDate()}${ordinalIndicator(dt.getDate())}, ${dt.getFullYear()}`;
+ formatStr = "PPP";
+ break;
+ case "long":
+ formatStr = "PP";
+ break;
+ case "short":
+ formatStr = "P";
+ break;
default:
return "";
}
+ if (type === "datetime") {
+ formatStr += "p";
+ }
+
+ return format(dt, formatStr, localeOptions);
}
diff --git a/frontend/lib/api/types/data-contracts.ts b/frontend/lib/api/types/data-contracts.ts
index 6cfda968..bac152df 100644
--- a/frontend/lib/api/types/data-contracts.ts
+++ b/frontend/lib/api/types/data-contracts.ts
@@ -135,6 +135,8 @@ export interface ItemPath {
export interface ItemSummary {
archived: boolean;
+ /** @example "0" */
+ assetId: string;
createdAt: Date | string;
description: string;
id: string;
diff --git a/frontend/lib/datelib/datelib.ts b/frontend/lib/datelib/datelib.ts
index c70dbf9e..b87922c1 100644
--- a/frontend/lib/datelib/datelib.ts
+++ b/frontend/lib/datelib/datelib.ts
@@ -11,7 +11,9 @@ export function format(date: Date | string): string {
}
export function zeroTime(date: Date): Date {
- return new Date(date.getFullYear(), date.getMonth(), date.getDate());
+ return new Date(
+ new Date(date.getFullYear(), date.getMonth(), date.getDate()).getTime() - date.getTimezoneOffset() * 60000
+ );
}
export function factorRange(offset: number = 7): [Date, Date] {
diff --git a/frontend/locales/ca.json b/frontend/locales/ca.json
index be0677c3..9807bb61 100644
--- a/frontend/locales/ca.json
+++ b/frontend/locales/ca.json
@@ -9,6 +9,30 @@
}
},
"global": {
+ "date_time": {
+ "ago": "fa {0}",
+ "days": "dies",
+ "hour": "hora",
+ "hours": "hores",
+ "in": "a {0}",
+ "just-now": "ara mateix",
+ "last-month": "el mes passat",
+ "last-week": "la setmana passada",
+ "last-year": "darrer any",
+ "minute": "minut",
+ "minutes": "minuts",
+ "months": "mesos",
+ "next-month": "Mes següent",
+ "next-week": "la setmana vinent",
+ "next-year": "Any següent",
+ "second": "segon",
+ "seconds": "segons",
+ "tomorrow": "demà",
+ "week": "setmana",
+ "weeks": "setmanes",
+ "years": "anys",
+ "yesterday": "ahir"
+ },
"page_qr_code": {
"page_url": "URL de la pàgina"
},
@@ -18,6 +42,8 @@
},
"item": {
"create_modal": {
+ "item_description": "Descripció de l'article",
+ "item_name": "Nom de l'article",
"photo_button": "Foto 📷",
"title": "Crea un article"
},
@@ -27,26 +53,45 @@
"items": "Articles",
"no_items": "No hi ha articles a mostrar",
"table": "Taula"
+ },
+ "table": {
+ "page": "Pàgina",
+ "rows_per_page": "Files per pàgina"
}
}
},
"label": {
"create_modal": {
+ "label_description": "Descripció de l'etiqueta",
+ "label_name": "Nom de l'etiqueta",
"title": "Crea una etiqueta"
}
},
"location": {
"create_modal": {
+ "location_description": "Descripció de la ubicació",
+ "location_name": "Nom de la ubicació",
"title": "Crea una ubicació"
+ },
+ "selector": {
+ "parent_location": "Ubicació pare"
+ },
+ "tree": {
+ "no_locations": "No hi ha ubicacions disponibles. Afegiu ubicacions amb el botó\n `<`span class=\"link-primary\"`>`Crea`<`/span`>` a la barra de navegació."
}
}
},
"global": {
+ "add": "Afegeix",
"build": "Construcció: { build }",
"confirm": "Confirma",
"create": "Crea",
"create_and_add": "Crea i afegeix-ne un altre",
"created": "Creat",
+ "delete": "Esborra",
+ "details": "Detalls",
+ "duplicate": "Duplica",
+ "edit": "Edita",
"email": "Correu electrònic",
"follow_dev": "Segueix al desenvolupador",
"github": "Projecte de GitHub",
@@ -54,15 +99,29 @@
"join_discord": "Uniu-vos a Discord",
"labels": "Etiquetes",
"locations": "Ubicacions",
+ "maintenance": "Manteniment",
"name": "Nom",
"password": "Contrasenya",
"read_docs": "Llegiu la documentació",
+ "save": "Desa",
"search": "Cerca",
"sign_out": "Tanca la sessió",
"submit": "Envia",
+ "update": "Actualitza",
+ "value": "Valor",
"version": "Versió {version}",
"welcome": "Us donem la benvinguda, { username }"
},
+ "home": {
+ "labels": "Etiquetes",
+ "quick_statistics": "Estadístiques ràpides",
+ "recently_added": "Afegit recentment",
+ "storage_locations": "Ubicacions d'emmagatzematge",
+ "total_items": "Articles totals",
+ "total_labels": "Total d'etiquetes",
+ "total_locations": "Ubicacions totals",
+ "total_value": "Valor total"
+ },
"index": {
"disabled_registration": "El registre és desactivat",
"dont_join_group": "Voleu unir-vos al grup?",
@@ -77,32 +136,71 @@
},
"items": {
"add": "Afegeix",
+ "advanced": "Mode avançat",
+ "archived": "Arxivat",
+ "asset_id": "ID de l'actiu",
+ "attachment": "Adjunt",
+ "attachments": "Documents adjunts",
+ "changes_persisted_immediately": "Els canvis als fitxers adjunts es desaran immediatament",
"created_at": "Creat a",
"custom_fields": "Camps personalitzats",
+ "description": "Descripció",
+ "details": "Detalls",
+ "drag_and_drop": "Arrossegueu i deixeu anar fitxers aquí o feu clic per seleccionar fitxers",
+ "edit_details": "Edita els detalls",
"field_selector": "Selector del camp",
"field_value": "Valor del camp",
"first": "Primer",
"include_archive": "Inclou els articles arxivats",
+ "insured": "Assegurat",
"last": "Últim",
+ "lifetime_warranty": "Garantia de per vida",
+ "location": "Ubicació",
+ "manual": "Manual",
+ "manuals": "Manuals",
+ "manufacturer": "Fabricant",
+ "model_number": "Número de model",
+ "name": "Nom",
"negate_labels": "Nega les etiquetes seleccionades",
"next_page": "Pàgina següent",
"no_results": "No s'ha trobat cap element",
+ "notes": "Notes",
"options": "Opcions",
"order_by": "Ordena per",
"pages": "Pàgina { page } de { totalPages }",
+ "parent_item": "Article pare",
+ "photo": "Foto",
+ "photos": "Fotos",
"prev_page": "Pàgina anterior",
+ "purchase_date": "Data de compra",
+ "purchase_details": "Detalls de la compra",
+ "purchase_price": "Preu de compra",
+ "purchased_from": "Comprat a",
+ "quantity": "Quantitat",
"query_id": "S'està consultant el número d'identificació de l'actiu: { id }",
+ "receipt": "Tiquet",
+ "receipts": "Factures",
"reset_search": "Reinicia la cerca",
"results": "{ total } resultats",
+ "serial_number": "Número de sèrie",
+ "show_advanced_view_options": "Mostra les opcions avançades de visualització",
+ "sold_at": "Venut a (lloc)",
+ "sold_details": "Detalls de la venda",
+ "sold_price": "Preu de venda",
+ "sold_to": "Venut a",
"tip_1": "Els filtres d'ubicació i etiquetes utilitzen l'operació «O». Si se'n selecciona més d'un, \nnomés se'n requerirà un per a coincidència.",
"tip_2": "Les cerques amb el prefix «#» sol·licitaran un ID d'un actiu (per exemple, «#000-001»)",
"tip_3": "Els filtres de camp utilitzen l'operació «O». Si se'n selecciona més d'un, \nnomés se'n requerirà un per a coincidència.",
"tips": "Consells",
"tips_sub": "Consells de cerca",
- "updated_at": "Actualitzat a"
+ "updated_at": "Actualitzat a",
+ "warranty": "Garantia",
+ "warranty_details": "Detalls de la garantia",
+ "warranty_expires": "La garantia caduca"
},
"labels": {
- "no_results": "No s'han trobat etiquetes"
+ "no_results": "No s'han trobat etiquetes",
+ "update_label": "Actualitza l'etiqueta"
},
"languages": {
"ca": "Català",
@@ -112,29 +210,70 @@
"fr": "Francès",
"hu": "Hongarès",
"it": "Italià",
+ "ja-JP": "Japonès",
"nl": "Neerlandès",
"pl": "Polonès",
"pt-BR": "Portuguès (Brasil)",
+ "pt-PT": "Portuguès (Portugal)",
"ru": "Rus",
"sl": "Eslovè",
"sv": "Suec",
"tr": "Turc",
+ "uk-UA": "Ucraïnès",
"zh-CN": "Xinès (simplificat)",
"zh-HK": "Xinès (Hong Kong)",
"zh-MO": "Xinès (Macau)",
"zh-TW": "Xinès (tradicional)"
},
+ "languages.da-DK": "Danès",
+ "languages.fi.FI": "Finès",
+ "languages.ro-RO": "Romanès",
+ "languages.sk-SK": "Eslovac",
"locations": {
- "no_results": "No s'han trobat ubicacions"
+ "child_locations": "Ubicacions infantils",
+ "collapse_tree": "Col·lapsa l'arbre",
+ "no_results": "No s'han trobat ubicacions",
+ "update_location": "Actualitza ubicació"
},
"maintenance": {
"filter": {
- "both": "Ambdós"
+ "both": "Ambdós",
+ "completed": "Acabat",
+ "scheduled": "Programat"
+ },
+ "list": {
+ "complete": "Acabar",
+ "create_first": "Creeu la vostra primera entrada",
+ "delete": "Esborra",
+ "duplicate": "Duplica",
+ "edit": "Edita",
+ "new": "Nou"
+ },
+ "modal": {
+ "completed_date": "Data de finalització",
+ "cost": "Preu",
+ "delete_confirmation": "Esteu segur que voleu suprimir aquest registre?",
+ "edit_action": "Actualitza",
+ "edit_title": "Edita l'entrada",
+ "entry_name": "Nom de l'entrada",
+ "new_action": "Crea",
+ "new_title": "Nova entrada",
+ "notes": "Notes",
+ "scheduled_date": "Data programada"
+ },
+ "monthly_average": "Mitjana mensual",
+ "toast": {
+ "failed_to_create": "No s'ha pogut crear l'entrada",
+ "failed_to_delete": "No s'ha pogut suprimir l'entrada",
+ "failed_to_update": "No s'ha pogut actualitzar l'entrada"
},
"total_cost": "Cost total",
- "total_entries": "Nombre d' entrades"
+ "total_entries": "Nombre d'entrades"
},
"menu": {
+ "create_item": "Article / Actiu",
+ "create_label": "Etiqueta",
+ "create_location": "Ubicació",
"home": "Inici",
"locations": "Ubicacions",
"maintenance": "Manteniment",
@@ -151,6 +290,7 @@
"delete_account_sub": "Elimina el compte i totes les dades associades. Aquesta acció no es pot desfer.",
"display_header": "{ currentValue, select, true {Amaga la capçalera} false {Mostra la capçalera} other {Desconegut}}",
"enabled": "Habilitat",
+ "example": "Exemple",
"gen_invite": "Genera un enllaç d'invitació",
"group_settings": "Configuració del grup",
"group_settings_sub": "Configuració del grup compartit. És possible que hàgiu d'actualitzar la pàgina per aplicar la configuració.",
@@ -175,8 +315,27 @@
"actions_set": {
"ensure_ids": "Assegura els identificadors de recursos",
"ensure_ids_button": "Assegura els identificadors de recursos",
+ "ensure_import_refs": "Assegureu-vos d'importar les referències",
+ "ensure_import_refs_button": "Assegureu-vos d'importar les referències",
"set_primary_photo": "Defineix la foto principal",
"set_primary_photo_button": "Defineix la foto principal"
- }
+ },
+ "import_export": "Importa / Exporta",
+ "import_export_set": {
+ "export": "Exporta inventari",
+ "export_button": "Exporta inventari",
+ "export_sub": "Exporta el format CSV estàndard per a Homebox. S'exportaran tots els articles de l'inventari.",
+ "import": "Importa inventari",
+ "import_button": "Importa inventari"
+ },
+ "import_export_sub": "Importa i exporta l'inventari amb un fitxer CSV. És útil per a migracions d'inventari a una nova instància de Homebox.",
+ "reports": "Informes",
+ "reports_set": {
+ "asset_labels": "Etiquetes d'identificador de recurs",
+ "asset_labels_button": "Generador d'etiquetes",
+ "bill_of_materials": "Llista de materials",
+ "bill_of_materials_button": "Genera llista de materials"
+ },
+ "reports_sub": "Genera informes per a l'inventari"
}
}
diff --git a/frontend/locales/da-DK.json b/frontend/locales/da-DK.json
index 50c9b351..803bfef4 100644
--- a/frontend/locales/da-DK.json
+++ b/frontend/locales/da-DK.json
@@ -1,12 +1,49 @@
{
"components": {
+ "app": {
+ "import_dialog": {
+ "change_warning": "Adfærd for imports med eksisterende import_refs har ændret sig. Hvis en import_ref er tilstede i CSV filen,\nvil genstanden blive opdateret med værdierne fra CSV filen.",
+ "description": "Importer en CSV fil som indeholder dine genstande, etiketter, og lokationer. Se dokumentation for mere information vedrørende\nden korrekte format.",
+ "title": "Importer CSV Fil",
+ "upload": "Upload"
+ }
+ },
"global": {
+ "date_time": {
+ "ago": "{0} siden",
+ "days": "dage",
+ "hour": "time",
+ "hours": "timer",
+ "in": "om {0}",
+ "just-now": "lige nu",
+ "last-month": "sidste måned",
+ "last-week": "sidste uge",
+ "last-year": "sidste år",
+ "minute": "minut",
+ "minutes": "minutter",
+ "months": "måneder",
+ "next-month": "næste måned",
+ "next-week": "næste uge",
+ "next-year": "næste år",
+ "second": "sekund",
+ "seconds": "sekunder",
+ "tomorrow": "i morgen",
+ "week": "uge",
+ "weeks": "uger",
+ "years": "år",
+ "yesterday": "i går"
+ },
+ "page_qr_code": {
+ "page_url": "Side URL"
+ },
"password_score": {
"password_strength": "Adgangskodestyrke"
}
},
"item": {
"create_modal": {
+ "item_description": "Genstandsbeskrivelse",
+ "item_name": "Genstandsnavn",
"photo_button": "Foto 📷",
"title": "Opret genstand"
},
@@ -16,31 +53,89 @@
"items": "Genstande",
"no_items": "Ingen genstande at vise",
"table": "Tabel"
+ },
+ "table": {
+ "page": "Side",
+ "rows_per_page": "Rækker per side"
}
}
},
"label": {
"create_modal": {
+ "label_description": "Etiketbeskrivelse",
+ "label_name": "Etiketnavn",
"title": "Opret label"
}
},
"location": {
"create_modal": {
+ "location_description": "Lokationsbeskrivelse",
+ "location_name": "Lokationsnavn",
"title": "Opret lokation"
},
+ "selector": {
+ "parent_location": "Forældrelokation"
+ },
"tree": {
"no_locations": "Ingen tilgængelige lokationer. Opret nye lokationer gennem\n`<`span class=\"link-primary\">`Opret`<`/span`>` knappen i navigationslinjen."
}
}
},
"global": {
+ "add": "Tilføj",
+ "build": "Build: { build }",
"confirm": "Bekræft",
"create": "Opret",
"create_and_add": "Opret og tilføj ny",
"created": "Oprettet",
+ "delete": "Slet",
+ "details": "Detaljer",
+ "duplicate": "Dupliker",
+ "edit": "Rediger",
"email": "Email",
"follow_dev": "Følg udvikleren",
- "github": "GitHub projekt"
+ "github": "GitHub projekt",
+ "items": "Genstande",
+ "join_discord": "Deltag i vores Discord",
+ "labels": "Etiketter",
+ "locations": "Lokationer",
+ "maintenance": "Opretholdelse",
+ "name": "Navn",
+ "password": "Adgangskode",
+ "read_docs": "Læs Docs",
+ "save": "Gem",
+ "search": "Søg",
+ "sign_out": "Log ud",
+ "submit": "Indsend",
+ "update": "Opdater",
+ "value": "Værdi",
+ "version": "Version: { version }",
+ "welcome": "Velkommen, { username }"
+ },
+ "home": {
+ "labels": "Etiketter",
+ "quick_statistics": "Hurtige Statistikker",
+ "recently_added": "Nyligt Tilføjet",
+ "storage_locations": "Opbevaringslokationer",
+ "total_items": "Totale Genstande",
+ "total_labels": "Totale Etiketter",
+ "total_locations": "Totale Lokationer",
+ "total_value": "Total Værdi"
+ },
+ "index": {
+ "disabled_registration": "Registrering slået fra",
+ "dont_join_group": "Ikke lyst til at deltage i en gruppe?",
+ "joining_group": "Du deltager i en eksisterende gruppe!",
+ "login": "Log ind",
+ "register": "Registrer",
+ "remember_me": "Husk mig",
+ "set_email": "Hvad er din E-Mail?",
+ "set_name": "Hvad hedder du?",
+ "set_password": "Opret din adgangskode",
+ "tagline": "Følg, Organiser, og Håndter dine Ting."
+ },
+ "items": {
+ "add": "Tilføj"
},
"tools": {
"import_export": "Importer/Eksporter",
diff --git a/frontend/locales/de.json b/frontend/locales/de.json
index 7a0bfe8b..30363820 100644
--- a/frontend/locales/de.json
+++ b/frontend/locales/de.json
@@ -2,7 +2,7 @@
"components": {
"app": {
"import_dialog": {
- "change_warning": "Das Verhalten beim Importieren vorhandener import_refs hat sich geändert. Wenn ein import_ref in der CSV-Datei vorhanden ist, \nwird der Gegenstand mit den Werten in der CSV-Datei aktualisiert.",
+ "change_warning": "Das Verhalten beim Importieren mit bestehenden import_refs hat sich geändert. Wenn ein import_ref in der CSV-Datei vorhanden ist, \nwird der Gegenstand mit den Werten in der CSV-Datei aktualisiert.",
"description": "Importiere eine CSV-Datei, die deine Gegenstände, Etiketten und Standorte enthält. Schau in die Dokumentation für weitere Informationen\nzum erforderlichen Format.",
"title": "CSV-Datei importieren",
"upload": "Hochladen"
@@ -11,7 +11,7 @@
"global": {
"date_time": {
"ago": "vor {0}",
- "days": "Tage",
+ "days": "Tagen",
"hour": "Stunde",
"hours": "Stunden",
"in": "in {0}",
@@ -21,13 +21,13 @@
"last-year": "letztes Jahr",
"minute": "Minute",
"minutes": "Minuten",
- "months": "Monate",
+ "months": "Monaten",
"next-month": "nächster Monat",
- "next-week": "Nächste Woche",
+ "next-week": "nächste Woche",
"next-year": "nächstes Jahr",
"second": "Sekunde",
"seconds": "Sekunden",
- "tomorrow": "Morgen",
+ "tomorrow": "morgen",
"week": "Woche",
"weeks": "Wochen",
"years": "Jahre",
@@ -42,8 +42,8 @@
},
"item": {
"create_modal": {
- "item_description": "Artikelbezeichnung",
- "item_name": "Artikelname",
+ "item_description": "Gegenstandsbezeichnung",
+ "item_name": "Gegenstandsname",
"photo_button": "Foto 📷",
"title": "Gegenstand erstellen"
},
@@ -62,15 +62,15 @@
},
"label": {
"create_modal": {
- "label_description": "Label Beschreibung",
- "label_name": "Name Etikett",
+ "label_description": "Label-Beschreibung",
+ "label_name": "Label-Name",
"title": "Label erstellen"
}
},
"location": {
"create_modal": {
"location_description": "Standortbeschreibung",
- "location_name": "Standortnamen",
+ "location_name": "Standortname",
"title": "Standort erstellen"
},
"selector": {
@@ -177,7 +177,7 @@
"purchase_price": "Einkaufspreis",
"purchased_from": "Eingekauft von",
"quantity": "Menge",
- "query_id": "Abfrage der Anlagen-ID-Nummer: { id }",
+ "query_id": "Abfrage der Asset-ID-Nummer: { id }",
"receipt": "Beleg",
"receipts": "Quittungen",
"reset_search": "Suche zurücksetzen",
@@ -225,6 +225,10 @@
"zh-MO": "Chinesisch (Macao)",
"zh-TW": "Chinesisch (Traditionell)"
},
+ "languages.da-DK": "Dänisch",
+ "languages.fi.FI": "Finnisch",
+ "languages.ro-RO": "Rumänisch",
+ "languages.sk-SK": "Slowakisch",
"locations": {
"child_locations": "Unter-Standorte",
"collapse_tree": "Baum einklappen",
@@ -295,7 +299,7 @@
"new_password": "Neues Passwort",
"no_notifiers": "Keine Benachrichtigungen konfiguriert",
"notifier_modal": "{ type, select, true {Bearbeiten} false {Erstellen} other {Andere}} Notifier",
- "notifiers": "Melder",
+ "notifiers": "Benachrichtigungen",
"notifiers_sub": "Erhalte Benachrichtigungen über bevorstehende Wartungserinnerungen",
"test": "Test",
"theme_settings": "Themes",
@@ -307,7 +311,7 @@
"user_profile_sub": "Lade Benutzer ein und verwalte dein Konto."
},
"tools": {
- "actions": "Inventar Aktionen",
+ "actions": "Inventar-Aktionen",
"actions_set": {
"ensure_ids": "Sicherstellen von Asset-IDs",
"ensure_ids_button": "Sicherstellen von Asset-IDs",
@@ -319,7 +323,7 @@
"set_primary_photo_button": "Primäres Foto festlegen",
"set_primary_photo_sub": "In Homebox Version v0.10.0 wurde die Auswahl des Primärbilds von angehängten Bildern hinzugefügt. Mit dieser Funktion wird für jeden Artikel ohne Primärbild das erste angehängt Bild als solches definiert. ''See GitHub PR #576''",
"zero_datetimes": "Leeren der Datum & Zeiten der Elemente",
- "zero_datetimes_button": "Null-Punkt-Datum-Zeiten",
+ "zero_datetimes_button": "Gegenstands-Datum/Zeit zurücksetzen",
"zero_datetimes_sub": "Setzt den Zeitwert für alle Datums-Zeit-Felder in Ihrem Inventar auf den Anfang des Datums zurück. Damit wird ein Fehler behoben, der zu Beginn der Entwicklung der Website eingeführt wurde und dazu führte, dass das Datum zusammen mit der Uhrzeit gespeichert wurde, was zu Problemen bei der Anzeige von genauen Werten in Datumsfeldern führte. ''See Github Issue #236 for more details.''"
},
"actions_sub": "Aktionen in großen Mengen auf das Inventar anwenden. Diese Aktionen sind unumkehrbar. ''Sei vorsichtig.''",
diff --git a/frontend/locales/es.json b/frontend/locales/es.json
index 7894399c..b5c38dd4 100644
--- a/frontend/locales/es.json
+++ b/frontend/locales/es.json
@@ -10,7 +10,7 @@
},
"global": {
"date_time": {
- "ago": "hace {0}",
+ "ago": "Hace {0}",
"days": "días",
"hour": "hora",
"hours": "horas",
@@ -56,25 +56,25 @@
},
"table": {
"page": "Página",
- "rows_per_page": "Renglones por página"
+ "rows_per_page": "Filas por página"
}
}
},
"label": {
"create_modal": {
"label_description": "Descripción de la etiqueta",
- "label_name": "Nombre de la etiqueta",
+ "label_name": "Nombre de la Etiqueta",
"title": "Crear Etiqueta"
}
},
"location": {
"create_modal": {
- "location_description": "Descripción de la ubicación",
- "location_name": "Nombre de la ubicación",
+ "location_description": "Descripción de la Ubicación",
+ "location_name": "Nombre de la Ubicación",
"title": "Crear Ubicación"
},
"selector": {
- "parent_location": "Ubicación padre"
+ "parent_location": "Ubicación Padre"
},
"tree": {
"no_locations": "No hay ubicaciones disponibles. Añade nuevas ubicaciones mediante el botón de\n`<`span class=\"link-primary\"`>`Crear`<`/span`>` en la barra de navegación."
@@ -82,7 +82,7 @@
}
},
"global": {
- "add": "Agregar",
+ "add": "Añadir",
"build": "Compilación: { build }",
"confirm": "Confirmar",
"create": "Crear",
@@ -115,12 +115,12 @@
"home": {
"labels": "Etiquetas",
"quick_statistics": "Estadísticas rápidas",
- "recently_added": "Añadidos recientemente",
+ "recently_added": "Añadidos Recientemente",
"storage_locations": "Ubicaciones de almacenamiento",
- "total_items": "Total artículos",
- "total_labels": "Total étiquetas",
- "total_locations": "Total ubicaciónes",
- "total_value": "Valor total"
+ "total_items": "Artículos Totales",
+ "total_labels": "Etiquetas Totales",
+ "total_locations": "Ubicaciones Totales",
+ "total_value": "Valor Total"
},
"index": {
"disabled_registration": "Registro Desactivado",
@@ -141,7 +141,7 @@
"asset_id": "Activo ID",
"attachment": "Adjunto",
"attachments": "Adjuntos",
- "changes_persisted_immediately": "Los cambios a los archivos adjuntos se guardaran inmediatamente",
+ "changes_persisted_immediately": "Los cambios en los archivos adjuntos se guardarán inmediatamente",
"created_at": "Creado El",
"custom_fields": "Campos Personalizados",
"description": "Descripción",
@@ -154,12 +154,12 @@
"include_archive": "Incluir Elementos Archivados",
"insured": "Asegurado",
"last": "Último",
- "lifetime_warranty": "Garantia de por vida",
+ "lifetime_warranty": "Garantía Permanente",
"location": "Ubicación",
"manual": "Manual",
"manuals": "Manuales",
"manufacturer": "Fabricante",
- "model_number": "Número de modelo",
+ "model_number": "Número de Modelo",
"name": "Nombre",
"negate_labels": "Negar Etiquetas Seleccionadas",
"next_page": "Siguiente Página",
@@ -168,13 +168,13 @@
"options": "Opciones",
"order_by": "Ordenar Por",
"pages": "Página { page } de { totalPages }",
- "parent_item": "Articulo Padre",
+ "parent_item": "Artículo Padre",
"photo": "Foto",
"photos": "Fotos",
"prev_page": "Anterior Página",
- "purchase_date": "Fecha de compra",
- "purchase_details": "Detalles de compra",
- "purchase_price": "Precio de compra",
+ "purchase_date": "Fecha de Compra",
+ "purchase_details": "Detalles de Compra",
+ "purchase_price": "Precio de Compra",
"purchased_from": "Comprado de",
"quantity": "Cantidad",
"query_id": "Consultar Número ID del Activo: { id }",
@@ -183,9 +183,9 @@
"reset_search": "Restablecer Búsqueda",
"results": "{ total } Resultados",
"serial_number": "Número de serie",
- "show_advanced_view_options": "Mostrar opciones avanzadas de vista",
+ "show_advanced_view_options": "Mostrar Opciones Avanzadas de Vista",
"sold_at": "Vendido el",
- "sold_details": "Detalles de venta",
+ "sold_details": "Detalles de Venta",
"sold_price": "Precio de venta",
"sold_to": "Vendido a",
"tip_1": "Los filtros de ubicación y etiquetas utilizan el operador \"OR\". Si se selecciona más de uno, sólo uno será\n necesario para obtener una coincidencia.",
@@ -194,13 +194,13 @@
"tips": "Sugerencias",
"tips_sub": "Sugerencias de Búsqueda",
"updated_at": "Actualizado El",
- "warranty": "Garantia",
- "warranty_details": "Detalles de garantía",
- "warranty_expires": "La garantia expira"
+ "warranty": "Garantía",
+ "warranty_details": "Detalles de Garantía",
+ "warranty_expires": "Expiración Garantía"
},
"labels": {
"no_results": "Etiquetas No Encontradas",
- "update_label": "Actualizar etiqueta"
+ "update_label": "Actualizar Etiqueta"
},
"languages": {
"ca": "Catalán",
@@ -210,11 +210,11 @@
"fr": "Francés",
"hu": "Húngaro",
"it": "Italiano",
- "ja-JP": "Japones",
+ "ja-JP": "Japonés",
"nl": "Holandés",
"pl": "Polaco",
"pt-BR": "Portugués (Brasil)",
- "pt-PT": "Portugués",
+ "pt-PT": "Portugués (Portugal)",
"ru": "Ruso",
"sl": "Esloveno",
"sv": "Sueco",
@@ -225,11 +225,15 @@
"zh-MO": "Chino (Macao)",
"zh-TW": "Chino (Tradicional)"
},
+ "languages.da-DK": "Danés",
+ "languages.fi.FI": "Finlandés",
+ "languages.ro-RO": "Rumano",
+ "languages.sk-SK": "Eslovaco",
"locations": {
- "child_locations": "Ubicaciones hijas",
- "collapse_tree": "Colapsar árbol",
+ "child_locations": "Ubicaciones Hijas",
+ "collapse_tree": "Colapsar Árbol",
"no_results": "Ubicaciones No Encontradas",
- "update_location": "Actualizar ubicación"
+ "update_location": "Actualizar Ubicación"
},
"maintenance": {
"filter": {
@@ -267,7 +271,7 @@
"total_entries": "Total de Entradas"
},
"menu": {
- "create_item": "Articulo / Activo",
+ "create_item": "Artículo / Activo",
"create_label": "Etiqueta",
"create_location": "Ubicación",
"home": "Inicio",
diff --git a/frontend/locales/fr.json b/frontend/locales/fr.json
index d743c87b..3cb2c609 100644
--- a/frontend/locales/fr.json
+++ b/frontend/locales/fr.json
@@ -82,11 +82,16 @@
}
},
"global": {
+ "add": "Ajouter",
"build": "Version : { build }",
"confirm": "Confirmer",
"create": "Créer",
"create_and_add": "Créer et en ajouter un autre",
"created": "Créé",
+ "delete": "Supprimer",
+ "details": "Détails",
+ "duplicate": "Dupliquer",
+ "edit": "Modifier",
"email": "Courriel",
"follow_dev": "Suivre le développeur",
"github": "Projet GitHub",
@@ -94,9 +99,11 @@
"join_discord": "Rejoindre le Discord",
"labels": "Étiquettes",
"locations": "Emplacements",
+ "maintenance": "Maintenance",
"name": "Nom",
"password": "Mot de passe",
"read_docs": "Lire la documentation",
+ "save": "Lire plus tard",
"search": "Rechercher",
"sign_out": "Se déconnecter",
"submit": "Soumettre",
@@ -164,6 +171,10 @@
"zh-MO": "Chinois (Macao)",
"zh-TW": "Chinois (traditionnel)"
},
+ "languages.da-DK": "Danois",
+ "languages.fi.FI": "Finnois",
+ "languages.ro-RO": "Roumain",
+ "languages.sk-SK": "Slovaque",
"locations": {
"no_results": "Aucun emplacement trouvé"
},
@@ -195,8 +206,8 @@
},
"monthly_average": "Moyenne mensuelle",
"toast": {
- "failed_to_create": "Échec de suppression de l'entrée",
- "failed_to_delete": "Échec de création de l'entrée",
+ "failed_to_create": "Échec de création de l'entrée",
+ "failed_to_delete": "Échec de suppression de l'entrée",
"failed_to_update": "Échec de mise à jour de l'entrée"
},
"total_cost": "Coût total",
diff --git a/frontend/locales/hu.json b/frontend/locales/hu.json
index 50e0cc9d..f422be99 100644
--- a/frontend/locales/hu.json
+++ b/frontend/locales/hu.json
@@ -9,6 +9,19 @@
}
},
"global": {
+ "date_time": {
+ "ago": "{0} ezelőtt",
+ "in": "{0} múlva",
+ "just-now": "épp most",
+ "last-month": "múlt hónapban",
+ "last-week": "múlt héten",
+ "last-year": "tavaly",
+ "next-month": "jövő hónapban",
+ "next-week": "jövő héten",
+ "next-year": "jövőre",
+ "tomorrow": "holnap",
+ "yesterday": "tegnap"
+ },
"page_qr_code": {
"page_url": "Oldal URL-je"
},
@@ -18,6 +31,8 @@
},
"item": {
"create_modal": {
+ "item_description": "Tétel leírása",
+ "item_name": "Tétel neve",
"photo_button": "Fénykép 📷",
"title": "Új elem létrehozása"
},
@@ -27,29 +42,45 @@
"items": "Tételek",
"no_items": "Nincs megjeleníthető elem",
"table": "Táblázat"
+ },
+ "table": {
+ "page": "Oldal",
+ "rows_per_page": "Sorok oldalanként"
}
}
},
"label": {
"create_modal": {
+ "label_description": "Címke leírása",
+ "label_name": "Címke neve",
"title": "Címke létrehozása"
}
},
"location": {
"create_modal": {
+ "location_description": "Hely leírása",
+ "location_name": "Hely neve",
"title": "Új hely létrehozása"
},
+ "selector": {
+ "parent_location": "Ezt tartalmazó hely"
+ },
"tree": {
"no_locations": "Nincs elérhető hely. Adj hozzá új helyet a\n `<`span class=\"link-primary\"`>`Létrehozás`<`/span`>` gombbal a navigációs sávon."
}
}
},
"global": {
+ "add": "Hozzáadás",
"build": "Build: { build }",
"confirm": "Megerősítés",
"create": "Létrehozás",
"create_and_add": "Létrehozás és újabb hozzáadása",
"created": "Létrehozva",
+ "delete": "Törlés",
+ "details": "Részletek",
+ "duplicate": "Másolás",
+ "edit": "Szerkesztés",
"email": "Email",
"follow_dev": "Kövesd a fejlesztőt",
"github": "Github projekt",
@@ -57,15 +88,29 @@
"join_discord": "Csatlakozz a Discordhoz",
"labels": "Címkék",
"locations": "Helyek",
+ "maintenance": "Karbantartás",
"name": "Név",
"password": "Jelszó",
"read_docs": "Olvasd el a dokumentációt",
+ "save": "Mentés",
"search": "Keresés",
"sign_out": "Kijelentkezés",
"submit": "Elküldés",
+ "update": "Módosítás",
+ "value": "Érték",
"version": "Verzió: { version }",
"welcome": "Üdv, { username }"
},
+ "home": {
+ "labels": "Címkék",
+ "quick_statistics": "Gyors statisztika",
+ "recently_added": "Nemrég hozzáadott",
+ "storage_locations": "Tárolási helyek",
+ "total_items": "Összes tétel",
+ "total_labels": "Összes címke",
+ "total_locations": "Összes hely",
+ "total_value": "Teljes érték"
+ },
"index": {
"disabled_registration": "Regisztráció kikapcsolva",
"dont_join_group": "Nem szeretnél csatlakozni egy csoporthoz?",
@@ -80,32 +125,71 @@
},
"items": {
"add": "Hozzáadás",
+ "advanced": "Haladó",
+ "archived": "Archivált",
+ "asset_id": "Eszközazonosító",
+ "attachment": "Melléklet",
+ "attachments": "Mellékletek",
+ "changes_persisted_immediately": "A mellékletek módosításai azonnal mentésre kerülnek",
"created_at": "Létrehozás dátuma",
"custom_fields": "Egyedi mezők",
+ "description": "Leírás",
+ "details": "Részletek",
+ "drag_and_drop": "Húzd ide a fájlokat, vagy kattints a fájlok kiválasztásához",
+ "edit_details": "Részletek szerkesztése",
"field_selector": "Mezőválasztó",
"field_value": "Mező értéke",
"first": "Első",
"include_archive": "Archivált elemek belefoglalása",
+ "insured": "Biztosítva",
"last": "Utolsó",
+ "lifetime_warranty": "Élettartam garancia",
+ "location": "Hely",
+ "manual": "Kézikönyv",
+ "manuals": "Kézikönyvek",
+ "manufacturer": "Gyártó",
+ "model_number": "Modellszám",
+ "name": "Név",
"negate_labels": "Címkeválasztás negálása",
"next_page": "Következő oldal",
"no_results": "Egy elem sem található",
+ "notes": "Megjegyzések",
"options": "Opciók",
"order_by": "Rendezés",
"pages": "{page}/{totalPages} oldal",
+ "parent_item": "Szülő tétel",
+ "photo": "Fénykép",
+ "photos": "Fényképek",
"prev_page": "Előző oldal",
+ "purchase_date": "Vásárlás dátuma",
+ "purchase_details": "Vásárlás részletei",
+ "purchase_price": "Beszerzési ár",
+ "purchased_from": "Beszerzési hely",
+ "quantity": "Mennyiség",
"query_id": "Eszközazonosító szám lekérdezése: { id }",
+ "receipt": "Számla",
+ "receipts": "Számlák",
"reset_search": "Alaphelyzet",
"results": "{total} találat",
+ "serial_number": "Sorozatszám",
+ "show_advanced_view_options": "További beállítások megjelenítése",
+ "sold_at": "Eladás dátuma",
+ "sold_details": "Eladás részletei",
+ "sold_price": "Eladási ár",
+ "sold_to": "Vevő",
"tip_1": "A hely- és címkeszűrők a „vagy” műveletet használják. Ha egynél többet választasz ki,\n bármelyik egyezése esetén megjelenik a tétel.",
"tip_2": "A '#' előtaggal ellátott keresések egy eszközazonosítót fognak lekérdezni (például '#000-001')",
"tip_3": "A mezőszűrők a „vagy” műveletet használják. Ha egynél többet választasz ki,\n bármelyik egyezése esetén megjelenik a tétel.",
"tips": "Tippek",
"tips_sub": "Tippek a kereséshez",
- "updated_at": "Változtatás dátuma"
+ "updated_at": "Változtatás dátuma",
+ "warranty": "Garancia",
+ "warranty_details": "Garancia részletei",
+ "warranty_expires": "Garancia vége"
},
"labels": {
- "no_results": "Nem található címke"
+ "no_results": "Nem található címke",
+ "update_label": "Címke módosítása"
},
"languages": {
"ca": "Katalán",
@@ -115,20 +199,30 @@
"fr": "Francia",
"hu": "Magyar",
"it": "Olasz",
+ "ja-JP": "Japán",
"nl": "Holland",
"pl": "Lengyel",
"pt-BR": "Portugál (brazíliai)",
+ "pt-PT": "Portugál (Portugália)",
"ru": "Orosz",
"sl": "Szlovén",
"sv": "Svéd",
"tr": "Török",
+ "uk-UA": "Ukrán",
"zh-CN": "Kínai (egyszerűsített)",
"zh-HK": "Kínai (hongkongi)",
"zh-MO": "Kínai (makaói)",
"zh-TW": "Kínai (hagyományos)"
},
+ "languages.da-DK": "Dán",
+ "languages.fi.FI": "Finn",
+ "languages.ro-RO": "Román",
+ "languages.sk-SK": "Szlovák",
"locations": {
- "no_results": "Nem található hely"
+ "child_locations": "Tartalmazott helyek",
+ "collapse_tree": "Fanézet becsukása",
+ "no_results": "Nem található hely",
+ "update_location": "Hely módosítása"
},
"maintenance": {
"filter": {
@@ -166,6 +260,9 @@
"total_entries": "Összes bejegyzés"
},
"menu": {
+ "create_item": "Tétel / Eszköz",
+ "create_label": "Címke",
+ "create_location": "Hely",
"home": "Kezdőlap",
"locations": "Helyek",
"maintenance": "Karbantartás",
@@ -182,6 +279,7 @@
"delete_account_sub": "Törlöd a fiókodat és az összes kapcsolódó adatot. Ezt a műveletet nem lehet visszavonni.",
"display_header": "{ currentValue, select, true {Fejléc elrejtése} false {Fejléc megjelenítése} other{Nincs találat}}",
"enabled": "Engedélyezve",
+ "example": "Példa",
"gen_invite": "Meghívó link létrehozása",
"group_settings": "Csoport beállításai",
"group_settings_sub": "Ezek a csoport közös beállításai. Lehet hogy frissítened kell az oldalt a böngésződben a beállítások megváltoztatása után.",
diff --git a/frontend/locales/it.json b/frontend/locales/it.json
index 76c8bdd0..6345e112 100644
--- a/frontend/locales/it.json
+++ b/frontend/locales/it.json
@@ -225,6 +225,10 @@
"zh-MO": "Cinese (Macao)",
"zh-TW": "Cinese (tradizionale)"
},
+ "languages.da-DK": "Danese",
+ "languages.fi.FI": "Finlandese",
+ "languages.ro-RO": "Rumeno",
+ "languages.sk-SK": "Slovacco",
"locations": {
"child_locations": "Ubicazione figlia",
"collapse_tree": "Contrai albero",
diff --git a/frontend/locales/nb-NO.json b/frontend/locales/nb-NO.json
new file mode 100644
index 00000000..c64819a2
--- /dev/null
+++ b/frontend/locales/nb-NO.json
@@ -0,0 +1,351 @@
+{
+ "components": {
+ "app": {
+ "import_dialog": {
+ "change_warning": "Oppførsel for importjobber med eksisterende import_refs har blitt endret. Hvis en import_ref eksisterer i CSV-filen,\nvil objektet oppdateres med verdiene fra CSV-filen.",
+ "description": "Importer en CSV-fil som inneholder alle objekter, merkelapper og lokasjoner. Konsulter dokumentasjonen for mer\ninformasjon om påkrevd format.",
+ "title": "Importer CSV-fil",
+ "upload": "Last opp"
+ }
+ },
+ "global": {
+ "date_time": {
+ "ago": "{0} siden",
+ "days": "dager",
+ "hour": "time",
+ "hours": "timer",
+ "in": "om {0}",
+ "just-now": "akkurat nå",
+ "last-month": "forrige måned",
+ "last-week": "forrige uke",
+ "last-year": "i fjor",
+ "minute": "minutt",
+ "minutes": "minutter",
+ "months": "måneder",
+ "next-month": "neste måned",
+ "next-week": "neste uke",
+ "next-year": "neste år",
+ "second": "sekund",
+ "seconds": "sekunder",
+ "tomorrow": "i morgen",
+ "week": "uke",
+ "weeks": "uker",
+ "years": "år",
+ "yesterday": "i går"
+ },
+ "page_qr_code": {
+ "page_url": "Side-URL"
+ },
+ "password_score": {
+ "password_strength": "Passordstyrke"
+ }
+ },
+ "item": {
+ "create_modal": {
+ "item_description": "Objektbeskrivelse",
+ "item_name": "Objektnavn",
+ "photo_button": "Foto 📷",
+ "title": "Opprett objekt"
+ },
+ "view": {
+ "selectable": {
+ "card": "Kort",
+ "items": "Objekter",
+ "no_items": "Ingenting å vise",
+ "table": "Tabell"
+ },
+ "table": {
+ "page": "Side",
+ "rows_per_page": "Rader pr. Side"
+ }
+ }
+ },
+ "label": {
+ "create_modal": {
+ "label_description": "Merkelappbeskrivelse",
+ "label_name": "Merkelappnavn",
+ "title": "Opprett merkelapp"
+ }
+ },
+ "location": {
+ "create_modal": {
+ "location_description": "Lokasjonsbeskrivelse",
+ "location_name": "Lokasjonsnavn",
+ "title": "Opprett lokasjon"
+ },
+ "selector": {
+ "parent_location": "Overordnet lokasjon"
+ },
+ "tree": {
+ "no_locations": "Ingen tilgjengelige lokasjoner. Legg til en ny lokasjon via\n `<`span class=\"link-primary\"`>`Opprett`<`/span`>`-knappen på navigasjonslinjen."
+ }
+ }
+ },
+ "global": {
+ "add": "Legg til",
+ "build": "Byggnummer: { build }",
+ "confirm": "Bekreft",
+ "create": "Opprett",
+ "create_and_add": "Opprett og legg til ny",
+ "created": "Opprettet",
+ "delete": "Slett",
+ "details": "Detaljer",
+ "duplicate": "Dupliser",
+ "edit": "Rediger",
+ "email": "E-post",
+ "follow_dev": "Følg utvikleren",
+ "github": "GitHub-prosjekt",
+ "items": "Objekter",
+ "join_discord": "Bli med på Discord",
+ "labels": "Merkelapper",
+ "locations": "Lokasjoner",
+ "maintenance": "Vedlikehold",
+ "name": "Navn",
+ "password": "Passord",
+ "read_docs": "Les dokumentasjonen",
+ "save": "Lagre",
+ "search": "Søk",
+ "sign_out": "Logg ut",
+ "submit": "Send",
+ "update": "Oppdater",
+ "value": "Verdi",
+ "version": "Versjon: { version }",
+ "welcome": "Velkommen, { username }"
+ },
+ "home": {
+ "labels": "Merkelapper",
+ "quick_statistics": "Rask statistikk",
+ "recently_added": "Nylig lagt til",
+ "storage_locations": "Oppbevaringslokasjoner",
+ "total_items": "Antall objekter",
+ "total_labels": "Antall merkelapper",
+ "total_locations": "Antall lokasjoner",
+ "total_value": "Total verdi"
+ },
+ "index": {
+ "disabled_registration": "Registrering deaktivert",
+ "dont_join_group": "Vil du ikke bli med i en gruppe?",
+ "joining_group": "Du holder på å bli med i en eksisterende gruppe!",
+ "login": "Logg inn",
+ "register": "Registrer",
+ "remember_me": "Husk meg",
+ "set_email": "Hva er e-postadressen din?",
+ "set_name": "Hva er navnet ditt?",
+ "set_password": "Angi passord",
+ "tagline": "Spor, organiser og hold styr på tingene dine."
+ },
+ "items": {
+ "add": "Legg til",
+ "advanced": "Avansert",
+ "archived": "Arkivert",
+ "asset_id": "Asset-ID",
+ "attachment": "Vedlegg",
+ "attachments": "Vedlegg",
+ "changes_persisted_immediately": "Endringer til vedlegg blir lagret umiddelbart",
+ "created_at": "Lagt til den",
+ "custom_fields": "Egendefinerte felt",
+ "description": "Beskrivelse",
+ "details": "Detaljer",
+ "drag_and_drop": "Dra og slipp filer her, eller klikk for å bla gjennom",
+ "edit_details": "Rediger detaljer",
+ "field_selector": "Feltvelger",
+ "field_value": "Feltverdi",
+ "first": "Først",
+ "include_archive": "Inkluder arkiverte objekter",
+ "insured": "Forsikret",
+ "last": "Sist",
+ "lifetime_warranty": "Livetidsgaranti",
+ "location": "Lokasjon",
+ "manual": "Bruksanvisning",
+ "manuals": "Bruksanvisninger",
+ "manufacturer": "Produsent",
+ "model_number": "Modellnummer",
+ "name": "Navn",
+ "negate_labels": "Se bort fra valgte merkelapper",
+ "next_page": "Neste side",
+ "no_results": "Ingenting funnet",
+ "notes": "Notater",
+ "options": "Alternativer",
+ "order_by": "Sorter etter",
+ "pages": "Side { page } av { totalPages }",
+ "parent_item": "Overordnet objekt",
+ "photo": "Bilde",
+ "photos": "Bilder",
+ "prev_page": "Forrige side",
+ "purchase_date": "Innkjøpsdato",
+ "purchase_details": "Kjkøpsdetaljer",
+ "purchase_price": "Innkjøpspris",
+ "purchased_from": "Kjøpt fra",
+ "quantity": "Antall",
+ "query_id": "Spørring for Asset ID-nummer: { id }",
+ "receipt": "Kvittering",
+ "receipts": "Kvitteringer",
+ "reset_search": "Nullstill søk",
+ "results": "{ total } resultater",
+ "serial_number": "Serienummer",
+ "show_advanced_view_options": "Vis avansert Vis alternativer",
+ "sold_at": "Salgskanal",
+ "sold_details": "Salgsdetaljer",
+ "sold_price": "Salgspris",
+ "sold_to": "Solgt til",
+ "tip_1": "Lokasjon og merkelappfiltere bruker ’OR’-operand. Hvis mer enn én er valgt, er bare en\n påkrevd for å få et søketreff.",
+ "tip_2": "Søk med ’#’-prefix vil søke etter en asset-ID (f.eks. ’#000-001’)",
+ "tip_3": "Feltet filtrer med ’OR’-operand. Hvis mer enn én er valgt vil bare en være påkrevd for å få et\nsøketreff.",
+ "tips": "Tips",
+ "tips_sub": "Søketips",
+ "updated_at": "Oppdatert den",
+ "warranty": "Garanti",
+ "warranty_details": "Garantidetaljer",
+ "warranty_expires": "Garanti upløper"
+ },
+ "labels": {
+ "no_results": "Ingen merkelapper funnet",
+ "update_label": "Oppdater merkelapp"
+ },
+ "languages": {
+ "ca": "Katalansk",
+ "de": "Tysk",
+ "en": "Engelsk",
+ "es": "Spansk",
+ "fr": "Fransk",
+ "hu": "Ungarsk",
+ "it": "Italiensk",
+ "ja-JP": "Japansk",
+ "nl": "Nederlandsk",
+ "pl": "Polsk",
+ "pt-BR": "Portugisisk (Brasil)",
+ "pt-PT": "Portugisisk (Portugal)",
+ "ru": "Russisk",
+ "sl": "Slovensk",
+ "sv": "Svensk",
+ "tr": "Tyrkisk",
+ "uk-UA": "Ukrainsk",
+ "zh-CN": "Kinesisk (forenklet)",
+ "zh-HK": "Kinesisk (Hong Kong)",
+ "zh-MO": "Kinesisk (Macau)",
+ "zh-TW": "Kinesisk (tradisjonell)"
+ },
+ "languages.da-DK": "Dansk",
+ "languages.fi.FI": "Finsk",
+ "languages.ro-RO": "Rumensk",
+ "languages.sk-SK": "Slovakisk",
+ "locations": {
+ "child_locations": "Underlokasjoner",
+ "collapse_tree": "Slå sammen mappetre",
+ "no_results": "Ingen lokasjoner funnet",
+ "update_location": "Oppdater lokasjon"
+ },
+ "maintenance": {
+ "filter": {
+ "both": "Begge",
+ "completed": "Fullført",
+ "scheduled": "Planlagt"
+ },
+ "list": {
+ "complete": "Ferdig",
+ "create_first": "Opprett ditt første innlegg",
+ "delete": "Slett",
+ "duplicate": "Dupliser",
+ "edit": "Rediger",
+ "new": "Ny"
+ },
+ "modal": {
+ "completed_date": "Fullført dato",
+ "cost": "Kostnad",
+ "delete_confirmation": "Er du sikker på at du vil slette denne oppføringen?",
+ "edit_action": "Oppdater",
+ "edit_title": "Rediger oppføring",
+ "entry_name": "Oppføringsnavn",
+ "new_action": "Opprett",
+ "new_title": "Ny oppføring",
+ "notes": "Notater",
+ "scheduled_date": "Planlagt dato"
+ },
+ "monthly_average": "Månedlig gjennomsnitt",
+ "toast": {
+ "failed_to_create": "Kunne ikke opprette oppføring",
+ "failed_to_delete": "Kunne ikke slette oppføring",
+ "failed_to_update": "Kunne ikke oppdatere oppføring"
+ },
+ "total_cost": "Totalkostnad",
+ "total_entries": "Antall oppføringer"
+ },
+ "menu": {
+ "create_item": "Objekt",
+ "create_label": "Merkelapp",
+ "create_location": "Lokasjon",
+ "home": "Hjem",
+ "locations": "Lokasjoner",
+ "maintenance": "Vedlikehold",
+ "profile": "Profil",
+ "search": "Søk",
+ "tools": "Verktøy"
+ },
+ "profile": {
+ "active": "Aktiv",
+ "change_password": "Endre passord",
+ "currency_format": "Valutaformat",
+ "current_password": "Nåværende passord",
+ "delete_account": "Slett konto",
+ "delete_account_sub": "Slett kontoen din og alle data knyttet til den. Denne handlingen kan ikke angres.",
+ "display_header": "{ currentValue, select, true {Skjul overskrift} false {Vis overskrift} other {Ingen treff}}",
+ "enabled": "Aktivert",
+ "example": "Eksempel",
+ "gen_invite": "Opprett invitasjonslenke",
+ "group_settings": "Gruppeinnstillinger",
+ "group_settings_sub": "Delte gruppeinnstillinger. Du må muligens laste inn siden på nytt for at noen endringer skal aktiveres.",
+ "inactive": "Inaktiv",
+ "language": "Språk",
+ "new_password": "Nytt passord",
+ "no_notifiers": "Ingen varslingsmekanismer satt opp",
+ "notifier_modal": "{ type, select, true {Rediger} false {Opprett} other {Annen}} varsling",
+ "notifiers": "Varslingsmekanismer",
+ "notifiers_sub": "Få varslinger for kommende vedlikeholdspåminnelser",
+ "test": "Test",
+ "theme_settings": "Temainnstillinger",
+ "theme_settings_sub": "Temainnstillinger lagres i nettleseren din sin midlertidige lagring. Du kan endre temaet når som helst. Hvis du\n har problemer, last inn siden på nytt.",
+ "update_group": "Oppdater gruppe",
+ "update_language": "Oppdater språk",
+ "url": "URL",
+ "user_profile": "Brukerprofil",
+ "user_profile_sub": "Inviter brukere og behandle kontoen din."
+ },
+ "tools": {
+ "actions": "Inventarhandlinger",
+ "actions_set": {
+ "ensure_ids": "Sikre Asset IDer",
+ "ensure_ids_button": "Sikre Asset IDer",
+ "ensure_ids_sub": "Sikrer at alle objekter i inventarlisten har et gyldig asset_id-felt. Dette gjøres ved å finne den høyeste asset_iden i databasen og legge til neste tilgjengelige verdi til hvert objekt som ikke har en asset_id. Dette gjøres i rekkefølgen til verdien fra created_at-feltet.",
+ "ensure_import_refs": "Sikre import-referanser",
+ "ensure_import_refs_button": "Sikre import-referanser",
+ "ensure_import_refs_sub": "Sikrer at alle objektene i inventaret har et gyldig import_ref-felt. Dette gjøres ved å opprette en tilfeldig 8-tegns tekststreng for hvert objekt som har et tomt import_ref-felt.",
+ "set_primary_photo": "Angi primærbilde",
+ "set_primary_photo_button": "Angi primærbilde",
+ "set_primary_photo_sub": "I versjon v0.10.0 av Homebox ble det primære bildefeltet lagt til vedlegg som type foto. Denne handlingen vil sette verdien for det primære bildefeltet til det første bildet lagret i databasen, hvis det ikke allerede er angitt. ''Jfr. GitHub PR #576''",
+ "zero_datetimes": "Null ut objektdatotider",
+ "zero_datetimes_button": "Null ut objektdatotider",
+ "zero_datetimes_sub": "Nullstiller tidsverdien for alle datotid-felter i inventaret til starten av datoen. Dette er for å fikse en bug som ble tidlig introdusert i utviklingen av siden, og forårsaket at tidsverdien ble lagret sammen med tidspunktet, noe som skapte problemer for datofelt som skulle vise korrekte verdier. ''Jfr. Github Issue #236 for flere detaljer.''"
+ },
+ "actions_sub": "Utfør massehandlinger for inventaret ditt. Disse handlingene er irreversible. ''Vær forsiktig.''",
+ "import_export": "Importer/Eksporter",
+ "import_export_set": {
+ "export": "Eksporter inventar",
+ "export_button": "Eksporter inventar",
+ "export_sub": "Eksporterer standard CSV-format for Homebox. Dette vil eksportere alle objektene i inventaret ditt.",
+ "import": "Importer inventar",
+ "import_button": "Importer inventar",
+ "import_sub": "Importerer standard CSV-format for Homebox. Uten en ''HB.import_ref''-kolonne vil dette ''ikke'' overskrive noen eksisterende objekter i inventaret ditt, bare legge til nye. Rader med en ''HB.import_ref''-kolonne slås sammen med eksisterende objekter med samme import_ref, hvis en eksisterer."
+ },
+ "import_export_sub": "Importer og eksporter inventaret ditt til og fra CSV-format. Dette er nyttig for å flytte inventaret ditt til en ny instans av Homebox.",
+ "reports": "Rapporter",
+ "reports_set": {
+ "asset_labels": "Asset-ID-merkelapper",
+ "asset_labels_button": "Merkelappgenerator",
+ "asset_labels_sub": "Genererer en utskrivbar PDF-fil for merkelapper for en serie Asset-Ider. Disse er ikke spesifikke for ditt inventar, så du kan lage og skrive ut merkelapper før de trengs og feste dem til inventaret ditt når det kommer.",
+ "bill_of_materials": "Liste over materialer",
+ "bill_of_materials_button": "Opprett liste over materialer",
+ "bill_of_materials_sub": "Genererer en CSV (kommaseparerte verdier)-fil som kan importeres til et regnearkprogram. Dette er et sammendrag av inventaret ditt med grunnleggende objekt- og prisinformasjon."
+ },
+ "reports_sub": "Genererer forskjellige rapporter for inventaret ditt."
+ }
+}
diff --git a/frontend/locales/nl.json b/frontend/locales/nl.json
index 95bcbc08..b09d61d0 100644
--- a/frontend/locales/nl.json
+++ b/frontend/locales/nl.json
@@ -225,6 +225,10 @@
"zh-MO": "Chinees (Macau)",
"zh-TW": "Chinees (traditioneel)"
},
+ "languages.da-DK": "Deens",
+ "languages.fi.FI": "Fins",
+ "languages.ro-RO": "Roemeens",
+ "languages.sk-SK": "Slowaaks",
"locations": {
"child_locations": "Kind Locaties",
"collapse_tree": "Structuur invouwen",
diff --git a/frontend/locales/pt-BR.json b/frontend/locales/pt-BR.json
index 8757b35a..0dc6bcc1 100644
--- a/frontend/locales/pt-BR.json
+++ b/frontend/locales/pt-BR.json
@@ -9,6 +9,30 @@
}
},
"global": {
+ "date_time": {
+ "ago": "{0} atrás",
+ "days": "dias",
+ "hour": "hora",
+ "hours": "horas",
+ "in": "em {0}",
+ "just-now": "neste momento",
+ "last-month": "último mês",
+ "last-week": "última semana",
+ "last-year": "último ano",
+ "minute": "minuto",
+ "minutes": "minutos",
+ "months": "meses",
+ "next-month": "próximo mês",
+ "next-week": "próxima semana",
+ "next-year": "próximo ano",
+ "second": "segundo",
+ "seconds": "segundos",
+ "tomorrow": "amanhã",
+ "week": "semana",
+ "weeks": "semanas",
+ "years": "anos",
+ "yesterday": "ontem"
+ },
"page_qr_code": {
"page_url": "URL da página"
},
@@ -18,6 +42,8 @@
},
"item": {
"create_modal": {
+ "item_description": "Descrição do Item",
+ "item_name": "Nome do Item",
"photo_button": "Foto📷",
"title": "Criar Item"
},
@@ -27,29 +53,45 @@
"items": "Items",
"no_items": "Nenhum item para exibir",
"table": "Tabela"
+ },
+ "table": {
+ "page": "Página",
+ "rows_per_page": "Linhas por página"
}
}
},
"label": {
"create_modal": {
+ "label_description": "Descrição da Etiqueta",
+ "label_name": "Nome da Etiqueta",
"title": "Criar etiqueta"
}
},
"location": {
"create_modal": {
+ "location_description": "Descrição do Local",
+ "location_name": "Nome do Local",
"title": "Criar Local"
},
+ "selector": {
+ "parent_location": "Local Pai"
+ },
"tree": {
"no_locations": "Não há locais disponíveis. Adicione novos locais\n através do botão \"Criar\" na barra de navegação."
}
}
},
"global": {
+ "add": "Adicionar",
"build": "Compilação: { build }",
"confirm": "Confirmar",
"create": "Criar",
"create_and_add": "Criar e Adicionar Outro",
"created": "Criado",
+ "delete": "Excluir",
+ "details": "Detalhes",
+ "duplicate": "Duplicar",
+ "edit": "Editar",
"email": "Email",
"follow_dev": "Seguir o desenvolvedor",
"github": "Projeto GitHub",
@@ -57,15 +99,29 @@
"join_discord": "Junte-se ao Discord",
"labels": "Etiquetas",
"locations": "Locais",
+ "maintenance": "Manutenção",
"name": "Nome",
"password": "Senha",
"read_docs": "Leia a Documentação",
+ "save": "Salvar",
"search": "Buscar",
"sign_out": "Sair",
"submit": "Enviar",
+ "update": "Atualizar",
+ "value": "Valor",
"version": "Versão: { version }",
"welcome": "Bem-vindo, {username}"
},
+ "home": {
+ "labels": "Etiquetas",
+ "quick_statistics": "Estatísticas Rápidas",
+ "recently_added": "Adicionados Recentemente",
+ "storage_locations": "Locais de Armazenamento",
+ "total_items": "Itens Totais",
+ "total_labels": "Etiquetas Totais",
+ "total_locations": "Locais Totais",
+ "total_value": "Valor Total"
+ },
"index": {
"disabled_registration": "Registro Desativado",
"dont_join_group": "Não quer participar de um grupo?",
@@ -80,32 +136,71 @@
},
"items": {
"add": "Adicionar",
+ "advanced": "Avançada",
+ "archived": "Arquivado",
+ "asset_id": "ID Do Ativo",
+ "attachment": "Anexo",
+ "attachments": "Anexos",
+ "changes_persisted_immediately": "Alterações nos anexos serão salvas imediatamente",
"created_at": "Criado em",
"custom_fields": "Campos Personalizados",
+ "description": "Descrição",
+ "details": "Detalhes",
+ "drag_and_drop": "Arraste e solte os arquivos aqui ou clique para selecionar os arquivos",
+ "edit_details": "Detalhes da Edição",
"field_selector": "Seletor de Campo",
"field_value": "Valor do Campo",
"first": "Primeiro",
"include_archive": "Incluir itens arquivados",
+ "insured": "Segurado",
"last": "Último",
+ "lifetime_warranty": "Garantia Vitalícia",
+ "location": "Local",
+ "manual": "Manual",
+ "manuals": "Manuais",
+ "manufacturer": "Fabricante",
+ "model_number": "Modelo",
+ "name": "Nome",
"negate_labels": "Negar os rótulos selecionados",
"next_page": "Próxima página",
"no_results": "Nenhum Item Encontrado",
+ "notes": "Anotações",
"options": "Opções",
"order_by": "Ordenar Por",
"pages": "Página { page } de { totalPages }",
+ "parent_item": "Item Pai",
+ "photo": "Foto",
+ "photos": "Fotos",
"prev_page": "Página anterior",
+ "purchase_date": "Data de Compra",
+ "purchase_details": "Detalhes da Compra",
+ "purchase_price": "Preço de Compra",
+ "purchased_from": "Comprado De",
+ "quantity": "Quantidade",
"query_id": "Consultando o número de ID do ativo: { id }",
+ "receipt": "Recibo",
+ "receipts": "Recibos",
"reset_search": "Reiniciar Pesquisa",
"results": "{ total } Resultados",
+ "serial_number": "Número Serial",
+ "show_advanced_view_options": "Exibir Opções de Visualização Avançada",
+ "sold_at": "Vendido Em",
+ "sold_details": "Detalhes da Venda",
+ "sold_price": "Preço de Venda",
+ "sold_to": "Vendido Para",
"tip_1": "Os filtros de local e etiqueta usam o operador \"OR\". Se você selecionar mais de um, somente um será\nnecessário para obter um resultado.",
"tip_2": "As pesquisas comprefixo '#'' buscam um ID de ativo (exemplo '#000-001')",
"tip_3": "Os filtros de local e etiqueta usam o operador \"OR\". Se você selecionar mais de um, somente um será\nnecessário para obter um resultado.",
"tips": "Dicas",
"tips_sub": "Dicas de pesquisa",
- "updated_at": "Atualizado em"
+ "updated_at": "Atualizado em",
+ "warranty": "Garantia",
+ "warranty_details": "Detalhes da Garantia",
+ "warranty_expires": "Garantia Expira Em"
},
"labels": {
- "no_results": "Nenhuma etiqueta encontrada"
+ "no_results": "Nenhuma etiqueta encontrada",
+ "update_label": "Atualizar Etiqueta"
},
"languages": {
"ca": "Catalão",
@@ -115,20 +210,30 @@
"fr": "Francês",
"hu": "Húngaro",
"it": "Italiano",
+ "ja-JP": "Japonês",
"nl": "Holandês",
"pl": "Polonês",
"pt-BR": "Português (Brasil)",
+ "pt-PT": "Português (Portugal)",
"ru": "Russo",
"sl": "Esloveno",
"sv": "Sueco",
"tr": "Turco",
+ "uk-UA": "Ucraniano",
"zh-CN": "Chinês (Simplificado)",
"zh-HK": "Chinês (Hong Kong)",
"zh-MO": "Chinês (Macau)",
"zh-TW": "Chinês (Tradicional)"
},
+ "languages.da-DK": "Dinamarquês",
+ "languages.fi.FI": "Finlandês",
+ "languages.ro-RO": "Romeno",
+ "languages.sk-SK": "Eslovaco",
"locations": {
- "no_results": "Nenhum local encontrado"
+ "child_locations": "Locais Filhos",
+ "collapse_tree": "Ocultar Árvore",
+ "no_results": "Nenhum local encontrado",
+ "update_location": "Atualizar Local"
},
"maintenance": {
"filter": {
@@ -166,6 +271,9 @@
"total_entries": "Total de Entradas"
},
"menu": {
+ "create_item": "Item / Ativo",
+ "create_label": "Etiqueta",
+ "create_location": "Local",
"home": "Início",
"locations": "Locais",
"maintenance": "Manutenção",
@@ -182,6 +290,7 @@
"delete_account_sub": "Excluir sua conta e todos os dados associados. Essa ação não pode ser desfeita.",
"display_header": "{ currentValue, select, true {Ocultar cabeçalho} false {Mostrar cabeçalho} other {Não encontrado}}",
"enabled": "Ativado",
+ "example": "Exemplo",
"gen_invite": "Gerar link de convite",
"group_settings": "Definições do grupo",
"group_settings_sub": "Configurações de Grupo Compartilhado. É possível que tenha que recarregar a página para que alguns ajustes sejam aplicados.",
diff --git a/frontend/locales/ro-RO.json b/frontend/locales/ro-RO.json
index 04d89966..cbf26f16 100644
--- a/frontend/locales/ro-RO.json
+++ b/frontend/locales/ro-RO.json
@@ -2,11 +2,37 @@
"components": {
"app": {
"import_dialog": {
+ "change_warning": "Comportamentul pentru importuri cu import_refs existente s-a schimbat. Dacă un import_ref este prezent în fișierul CSV,\nobiectul v-a fi actualizat cu valorile din fișierul CSV.",
+ "description": "Importă un fișier CSV care conține toate obiectele, etichetele și locațiile tale. \nCitește documentația pentru mai multe informații privind format-ul necesar.",
"title": "Importă fișier CSV",
"upload": "Încarcă"
}
},
"global": {
+ "date_time": {
+ "ago": "{0} în urmă",
+ "days": "zile",
+ "hour": "oră",
+ "hours": "ore",
+ "in": "în {0}",
+ "just-now": "chiar acum",
+ "last-month": "luna trecută",
+ "last-week": "săptămâna trecută",
+ "last-year": "anul trecut",
+ "minute": "minut",
+ "minutes": "minute",
+ "months": "luni",
+ "next-month": "luna următoare",
+ "next-week": "săptămâna viitoare",
+ "next-year": "anul acesta",
+ "second": "secundă",
+ "seconds": "secunde",
+ "tomorrow": "Mâine",
+ "week": "săptămâna",
+ "weeks": "săptămâni",
+ "years": "ani",
+ "yesterday": "ieri"
+ },
"page_qr_code": {
"page_url": "URL Pagină"
},
@@ -16,6 +42,8 @@
},
"item": {
"create_modal": {
+ "item_description": "Descriere articol",
+ "item_name": "Denumire articol",
"photo_button": "Imagine 📷",
"title": "Crează articol"
},
@@ -25,29 +53,45 @@
"items": "Articole",
"no_items": "Nu există articole pentru afișare",
"table": "Tabel"
+ },
+ "table": {
+ "page": "Pagină",
+ "rows_per_page": "Rânduri pe pagină"
}
}
},
"label": {
"create_modal": {
+ "label_description": "Descrierea etichetei",
+ "label_name": "Nume eticheta",
"title": "Crează Etichetă"
}
},
"location": {
"create_modal": {
+ "location_description": "Descriere locatie",
+ "location_name": "Nume locație",
"title": "Crează Locație"
},
+ "selector": {
+ "parent_location": "Locație Părinte"
+ },
"tree": {
"no_locations": "Nu există locații disponibile. Adaugă o locație nouă folosind butonul\n`<`span class=\"link-primary\"`>`Crează`<`/span`>` din bara de navigație."
}
}
},
"global": {
+ "add": "Adaugă",
"build": "Build: { build }",
"confirm": "Confirmă",
"create": "Crează",
"create_and_add": "Crează și Adaugă încă un articol",
"created": "Creat",
+ "delete": "Șterge",
+ "details": "Detalii",
+ "duplicate": "Duplicat",
+ "edit": "Redactare",
"email": "Adresă de email",
"follow_dev": "Urmărește developer-ul",
"github": "Proiect GitHub",
@@ -55,15 +99,29 @@
"join_discord": "Vino pe Discord",
"labels": "Etichete",
"locations": "Locații",
+ "maintenance": "Mentenanță",
"name": "Nume",
"password": "Parolă",
"read_docs": "Citește documentația",
+ "save": "Salvare",
"search": "Caută",
"sign_out": "Ieșire",
"submit": "Trimite",
+ "update": "Actualizare",
+ "value": "Valoare",
"version": "Versiune: { version }",
"welcome": "Bun venit, { username }"
},
+ "home": {
+ "labels": "Etichete",
+ "quick_statistics": "Statistici rapide",
+ "recently_added": "Adăugat recent",
+ "storage_locations": "Locații de depozitare",
+ "total_items": "Total articole",
+ "total_labels": "Număr total etichete",
+ "total_locations": "Total locații",
+ "total_value": "Valoare totală"
+ },
"index": {
"disabled_registration": "Înregistrare Dezactivată",
"dont_join_group": "Nu vrei sa te alături unui grup?",
@@ -78,29 +136,71 @@
},
"items": {
"add": "Adaugă",
+ "advanced": "Avansat",
+ "archived": "Arhivate",
+ "asset_id": "ID activ",
+ "attachment": "Atașament",
+ "attachments": "Fișiere atașate",
+ "changes_persisted_immediately": "Modificările atașamentelor vor fi salvate imediat",
"created_at": "Creat la",
"custom_fields": "Câmpuri personalizate",
+ "description": "Descriere",
+ "details": "Detalii",
+ "drag_and_drop": "Trageți și plasați fișierele aici sau faceți clic pentru a selecta fișierele",
+ "edit_details": "Editare detalii",
"field_selector": "Selector Câmp",
"field_value": "Valoare Câmp",
"first": "Primul",
"include_archive": "Include Articole Arhivate",
+ "insured": "Asigurat",
"last": "Ultimul",
+ "lifetime_warranty": "Garanție pe viață",
+ "location": "Locație",
+ "manual": "Manual",
+ "manuals": "Manuale",
+ "manufacturer": "Producător",
+ "model_number": "Număr model",
+ "name": "Nume",
"negate_labels": "Neagă Etichetele Selectate",
"next_page": "Următoarea Pagină",
"no_results": "Nu s-au găsit articole",
+ "notes": "Notițe",
"options": "Opțiuni",
"order_by": "Ordonează După",
"pages": "Pagina { page } din { totalPages }",
+ "parent_item": "Articol Părinte",
+ "photo": "Fotografie",
+ "photos": "Fotografii",
"prev_page": "Pagina Anterioară",
+ "purchase_date": "Data achiziției",
+ "purchase_details": "Detalii achiziție",
+ "purchase_price": "Prețul de Achiziție",
+ "purchased_from": "Achiziționat de la",
+ "quantity": "Cantitate",
+ "query_id": "Interogarea numărului de identificare a activului: { id }",
+ "receipt": "Chitanță",
+ "receipts": "Chitanțe",
"reset_search": "Resetează Căutare",
"results": "{ total } Rezultate",
+ "serial_number": "Număr de serie",
+ "show_advanced_view_options": "Afișează opțiuni avansate",
+ "sold_at": "Vândut la",
+ "sold_details": "Detalii vânzare",
+ "sold_price": "Preț vânzare",
+ "sold_to": "Vândut către",
+ "tip_1": "Filtrele de locație și de etichete folosesc operațiunea \"SAU\". Dacă sunt selectate mai multe,\ndoar unul va fi necesar pentru potrivire.",
"tip_2": "Căutările prefixate cu '#' vor efectua o căutare după ID de activ (exemplu '#000-001')",
+ "tip_3": "Filtrele de câmp folosesc operația \"OR\". Dacă sunt selectate mai multe, doar unul va fi necesar\npentru potrivire.",
"tips": "Sfaturi",
"tips_sub": "Sfaturi Căutare",
- "updated_at": "Actualizat La"
+ "updated_at": "Actualizat La",
+ "warranty": "Garanție",
+ "warranty_details": "Detalii Garanție",
+ "warranty_expires": "Garanția expiră"
},
"labels": {
- "no_results": "Nu s-au găsit Etichete"
+ "no_results": "Nu s-au găsit Etichete",
+ "update_label": "Actualizare etichetă"
},
"languages": {
"ca": "Catalană",
@@ -110,20 +210,30 @@
"fr": "Franceză",
"hu": "Maghiară",
"it": "Italiană",
+ "ja-JP": "Japoneză",
"nl": "Olandeză",
"pl": "Poloneză",
"pt-BR": "Portugheză (Brazilia)",
+ "pt-PT": "Portugheză (Portugalia)",
"ru": "Rusă",
"sl": "Slovenă",
"sv": "Suedeză",
"tr": "Turcă",
+ "uk-UA": "Ucraininană",
"zh-CN": "Chineză (Simplificată)",
"zh-HK": "Chineză (Hong Kong)",
"zh-MO": "Chineză (Macau)",
"zh-TW": "Chineză (Tradițională)"
},
+ "languages.da-DK": "Daneză",
+ "languages.fi.FI": "Finlandeză",
+ "languages.ro-RO": "Română",
+ "languages.sk-SK": "Slovacă",
"locations": {
- "no_results": "Nu s-au găsit Locații"
+ "child_locations": "Locații copii",
+ "collapse_tree": "Contrage arbore",
+ "no_results": "Nu s-au găsit Locații",
+ "update_location": "Actualizare locație"
},
"maintenance": {
"filter": {
@@ -161,6 +271,9 @@
"total_entries": "Înregistrări Totale"
},
"menu": {
+ "create_item": "Articol / Activ",
+ "create_label": "Etichetă",
+ "create_location": "Locație",
"home": "Acasă",
"locations": "Locații",
"maintenance": "Mentenanță",
@@ -174,38 +287,65 @@
"currency_format": "Format monedă",
"current_password": "Parola Actuală",
"delete_account": "Șterge Cont",
+ "delete_account_sub": "Ștergeți contul și toate datele asociate acestuia. Această acțiune nu poate fi revocată.",
+ "display_header": "{ currentValue, select, true {Hide Header} false {Show Header} other {Not Hit}}",
"enabled": "Activat",
+ "example": "Exemplu",
"gen_invite": "Generează Link Invitație",
"group_settings": "Setări Grup",
+ "group_settings_sub": "Setări Grup Partajare. Este posibil să fie nevoie să reîncărcați browser-ul pentru aplicarea unor setări.",
"inactive": "Inactiv",
"language": "Limbă",
"new_password": "Parolă Nouă",
+ "no_notifiers": "Niciun notificator configurat",
+ "notifier_modal": "{ type, select, true {Edit} false {Create} other {Other}} Notifier",
+ "notifiers": "Notificatori",
+ "notifiers_sub": "Primiți notificări pentru mementourile de întreținere viitoare",
"test": "Test",
"theme_settings": "Setări Temă",
+ "theme_settings_sub": "Setările temei sunt stocate în spațiul de stocare local al browserului. Poți schimba tema oricând. Dacă ai \ndificultăți la setarea temei, poți încerca să reîmprospătezi browser-ul.",
"update_group": "Actualizare Grup",
"update_language": "Actualizare Limbă",
"url": "URL",
- "user_profile": "Profil Utilizator"
+ "user_profile": "Profil Utilizator",
+ "user_profile_sub": "Invitați utilizatori și gestionați-vă contul."
},
"tools": {
"actions": "Acțiuni Inventar",
"actions_set": {
+ "ensure_ids": "Garantează ID-urile activelor",
+ "ensure_ids_button": "Garantează ID-urile activelor",
+ "ensure_ids_sub": "Garantează că toate articolele din inventar au un câmp asset_id valid. Acest lucru se face găsind câmpul cu cel mai mare asset_id curent și aplicând următoarea valoare fiecărui articol care nu are câmpul assed_id completat. Acest lucru se face în ordinea dată de câmpul created_at.",
+ "ensure_import_refs": "Garantează Import Refs",
+ "ensure_import_refs_button": "Garantează Import Refs",
+ "ensure_import_refs_sub": "Garantează că toate articolele din inventar au un câmp import_ref valid. Acest lucru se face prin generarea unui șir de 8 caractere aleatoare pentru fiecare articol ce nu are câmp import_ref.",
"set_primary_photo": "Setează ca Imagine Principală",
- "set_primary_photo_button": "Setează ca Imagine Principală"
+ "set_primary_photo_button": "Setează ca Imagine Principală",
+ "set_primary_photo_sub": "În versiunea v0.10.0 a Homebox, câmpul de imagine primară a fost adăugat la atașamentele de tip fotografie. Această acțiune va seta câmpul de imagine primară la prima imagine din matricea de atașamente din baza de date, dacă acest lucru nu este facut deja. ''Vezi GitHub PR #576''",
+ "zero_datetimes": "Zero articol Data Ore",
+ "zero_datetimes_button": "Zero articol Data Ore",
+ "zero_datetimes_sub": "Resetează valoarea de timp pentru toate câmpurile de dată și oră din inventar la începutul datei. Acesta este un fix pentru un bug care a fost introdus la începutul dezvoltării și care a cauzat valoarea timpului să fie stocată cu timpul ceea ce a provocat probleme cu afișarea corectă a câmpurilor de dată. ''Vezi Github Issue #236 pentru mai multe detalii.''"
},
+ "actions_sub": "Aplicați acțiuni în inventar în bloc. Aceste acțiuni sunt ireversibile. ''Procedați cu atenție.''",
"import_export": "Import/Export",
"import_export_set": {
"export": "Exportă Inventar",
"export_button": "Exportă Inventar",
+ "export_sub": "Exportă formatul CSV standard pentru Homebox. Această acțiune ca exporta toate articolele din inventar.",
"import": "Importă Inventar",
- "import_button": "Importă Inventar"
+ "import_button": "Importă Inventar",
+ "import_sub": "Importă formatul CSV standard pentru Homebox. Fără o coloana ''HB.import_ref'', ''nu'' se vor suprascrie articole existente în inventar, doar se vor adăuga articole noi. Câmpurile ce au o coloană ''HB.import_ref'' vor fi contopite cu articole existente care au același import_ref, în cazul în care acesta există."
},
+ "import_export_sub": "Importați și exportați inventarul într-un fișier CSV. Acest lucru este util atunci când se migrează inventarul către o instanță nouă de Homebox.",
"reports": "Rapoarte",
"reports_set": {
"asset_labels": "Etichete de identificare a activului",
"asset_labels_button": "Generator de etichete",
+ "asset_labels_sub": "Generează un PDF imprimabil conținând etichete pentru o serie de ID-uri de activ. Acestea nu sunt specifice inventarului tău așadar etichetele se pot imprima din timp și se pot aplica ulterior.",
"bill_of_materials": "Lista Materialelor",
- "bill_of_materials_button": "Generează BOM"
- }
+ "bill_of_materials_button": "Generează BOM",
+ "bill_of_materials_sub": "Generează un fișier CSV (Valori separate prin virgulă) care poate fi importat într-un program de foi de calcul. Acesta este un sumar ar inventarului cu informații minimale legate de articole și prețuri."
+ },
+ "reports_sub": "Generați rapoarte diferite pentru inventarul tău."
}
}
diff --git a/frontend/locales/ru.json b/frontend/locales/ru.json
index 5e8c5773..67cfcb0c 100644
--- a/frontend/locales/ru.json
+++ b/frontend/locales/ru.json
@@ -15,6 +15,7 @@
"hour": "час",
"hours": "часов",
"in": "через {0}",
+ "just-now": "только что",
"last-month": "предыдущий месяц",
"last-week": "предыдущая неделя",
"last-year": "предыдущий год",
@@ -61,24 +62,36 @@
},
"label": {
"create_modal": {
+ "label_description": "Описание метки",
+ "label_name": "Название метки",
"title": "Создать метку"
}
},
"location": {
"create_modal": {
+ "location_description": "Описание локации",
+ "location_name": "Название локации",
"title": "Создать локацию"
},
+ "selector": {
+ "parent_location": "Родительская локация"
+ },
"tree": {
"no_locations": "Нет доступных локаций. Добавьте новую локацию, \nнажав на кнопку `<`span class=\"link-primary\"`>`Создать`<`/span`>` в навигационном меню."
}
}
},
"global": {
+ "add": "Добавить",
"build": "Сборка: { build }",
"confirm": "Подтвердить",
"create": "Создать",
"create_and_add": "Создать и добавить еще",
"created": "Создано",
+ "delete": "Удалить",
+ "details": "Подробнее",
+ "duplicate": "Дублировать",
+ "edit": "Редактировать",
"email": "Email",
"follow_dev": "Следить за разработчиком",
"github": "Github проект",
@@ -86,15 +99,29 @@
"join_discord": "Присоединяйтесь к Discord",
"labels": "Метки",
"locations": "Локации",
+ "maintenance": "Техническое обслуживание и ремонт",
"name": "Имя",
"password": "Пароль",
"read_docs": "Прочитать документацию",
+ "save": "Сохранить",
"search": "Поиск",
"sign_out": "Выйти",
"submit": "Отправить",
+ "update": "Обновить",
+ "value": "Значение",
"version": "Версия: { version }",
"welcome": "Добро пожаловать, { username }"
},
+ "home": {
+ "labels": "Метки",
+ "quick_statistics": "Быстрая статистика",
+ "recently_added": "Недавно добавлено",
+ "storage_locations": "Места хранения",
+ "total_items": "Всего элементов",
+ "total_labels": "Всего меток",
+ "total_locations": "Общее количество местоположений",
+ "total_value": "Общая стоимость"
+ },
"index": {
"disabled_registration": "Регистрация отключена",
"dont_join_group": "Не хотите ли вступить в группу?",
@@ -109,32 +136,71 @@
},
"items": {
"add": "Добавить",
+ "advanced": "Дополнительно",
+ "archived": "В архиве",
+ "asset_id": "Инвентарный ID",
+ "attachment": "Вложение",
+ "attachments": "Вложения",
+ "changes_persisted_immediately": "Изменения во вложениях будут сохранены сразу же",
"created_at": "Создано в",
"custom_fields": "Настраиваемые поля",
+ "description": "Описание",
+ "details": "Подробнее",
+ "drag_and_drop": "Перетащите файлы сюда или нажмите, чтобы выбрать файлы",
+ "edit_details": "Редактирование деталей",
"field_selector": "Поле выбора",
"field_value": "Значение поля",
"first": "Первый",
"include_archive": "Включая архивированные элементы",
+ "insured": "Застраховано",
"last": "Последний",
+ "lifetime_warranty": "Гарантия на весь срок эксплуатации",
+ "location": "Местоположение",
+ "manual": "Руководство по эксплуатации",
+ "manuals": "Документация",
+ "manufacturer": "Производитель",
+ "model_number": "Номер модели",
+ "name": "Название",
"negate_labels": "Снять выбранные ярлыки",
"next_page": "Следующая страница",
"no_results": "Элементы не найдены",
+ "notes": "Заметки",
"options": "Параметры",
"order_by": "Сортировка по",
"pages": "Страница {page} из {totalPages}",
+ "parent_item": "Родительский элемент",
+ "photo": "Фото",
+ "photos": "Фотографии",
"prev_page": "Предыдущая страница",
+ "purchase_date": "Дата покупки",
+ "purchase_details": "Детали покупки",
+ "purchase_price": "Стоимость покупки",
+ "purchased_from": "Продавец",
+ "quantity": "Количество",
"query_id": "Запрос идентификационного номера актива: { id }",
+ "receipt": "Квитанция",
+ "receipts": "Квитанции",
"reset_search": "Сбросить поиск",
"results": "{ total } Результатов",
+ "serial_number": "Серийный номер",
+ "show_advanced_view_options": "Показать дополнительные параметры",
+ "sold_at": "Место продажи",
+ "sold_details": "Детали продажи",
+ "sold_price": "Цена продажи",
+ "sold_to": "Покупатель",
"tip_1": "При фильтрации по локации и по ярлыкам используется логический оператор «ИЛИ». Если выбрано несколько фильтров, то для срабатывания\n требуется лишь одно совпадение.",
"tip_2": "Поисковые запросы с префиксом \"#\" должны включать в себя ID актива (прим. '#000-001')",
"tip_3": "Фильтры по полю используют операцию «ИЛИ». Если выбрано несколько фильтров, для совпадения\n требуется только один.",
"tips": "Подсказки",
"tips_sub": "Поисковые подсказки",
- "updated_at": "Обновлено в"
+ "updated_at": "Обновлено в",
+ "warranty": "Гарантия",
+ "warranty_details": "Гарантийная информация",
+ "warranty_expires": "Срок гарантии истекает"
},
"labels": {
- "no_results": "Метки не найдены"
+ "no_results": "Метки не найдены",
+ "update_label": "Обновить метку"
},
"languages": {
"ca": "Каталанский",
@@ -144,20 +210,30 @@
"fr": "французский",
"hu": "Венгерский",
"it": "Итальянский",
+ "ja-JP": "Японский",
"nl": "Голландский",
"pl": "Польский",
"pt-BR": "Португальский (Бразилия)",
+ "pt-PT": "Португальский (Португалия)",
"ru": "Русский",
"sl": "Словенский",
"sv": "Шведский",
"tr": "Турецкий",
+ "uk-UA": "Украинский",
"zh-CN": "Китайский (упрощенный)",
"zh-HK": "Китайский (Гонконг)",
"zh-MO": "Китайский (Макао)",
"zh-TW": "китайский (традиционный)"
},
+ "languages.da-DK": "Датский (Дания)",
+ "languages.fi.FI": "Финский",
+ "languages.ro-RO": "Румынский",
+ "languages.sk-SK": "Словацкий",
"locations": {
- "no_results": "Локаций не найдено"
+ "child_locations": "Вложенные локации",
+ "collapse_tree": "Свернуть всё дерево",
+ "no_results": "Локаций не найдено",
+ "update_location": "Обновить локацию"
},
"maintenance": {
"filter": {
@@ -195,6 +271,9 @@
"total_entries": "Всего записей"
},
"menu": {
+ "create_item": "Элемент",
+ "create_label": "Метка",
+ "create_location": "Местоположение",
"home": "Главная",
"locations": "Локации",
"maintenance": "Техническое обслуживание и ремонт",
@@ -211,6 +290,7 @@
"delete_account_sub": "Удалить свой аккаунт и все связанные с ним данные. Это действие невозможно отменить.",
"display_header": "{ currentValue, select, true {Скрыть заголовок} false {Показать заголовок} other {Нет результатов}}",
"enabled": "Активен",
+ "example": "Пример",
"gen_invite": "Сгенерировать ссылку-приглашение",
"group_settings": "Настройки группы",
"group_settings_sub": "Настройки общей группы. Для применения изменений возможно потребуется перезагрузить страницу.",
diff --git a/frontend/locales/sk-SK.json b/frontend/locales/sk-SK.json
index a013d4ad..0b7d9048 100644
--- a/frontend/locales/sk-SK.json
+++ b/frontend/locales/sk-SK.json
@@ -225,6 +225,10 @@
"zh-MO": "Čínština (Macao)",
"zh-TW": "Číština (tradičná)"
},
+ "languages.da-DK": "Dánsko",
+ "languages.fi.FI": "Finsko",
+ "languages.ro-RO": "Rumunsko",
+ "languages.sk-SK": "Slovenčina",
"locations": {
"child_locations": "Umiestnenie dieťaťa",
"collapse_tree": "Zbaliť strom",
diff --git a/frontend/locales/sl.json b/frontend/locales/sl.json
index 43650036..689329e5 100644
--- a/frontend/locales/sl.json
+++ b/frontend/locales/sl.json
@@ -225,6 +225,10 @@
"zh-MO": "Kitajščina (Macau)",
"zh-TW": "Kitajsščina (tradicionalna)"
},
+ "languages.da-DK": "Danščina",
+ "languages.fi.FI": "Finščina",
+ "languages.ro-RO": "Romunščina",
+ "languages.sk-SK": "Slovaščina",
"locations": {
"child_locations": "Podrejene lokacije",
"collapse_tree": "Strni drevo",
diff --git a/frontend/locales/sv.json b/frontend/locales/sv.json
index 5dc1bebf..2eb6c84e 100644
--- a/frontend/locales/sv.json
+++ b/frontend/locales/sv.json
@@ -138,6 +138,7 @@
"add": "Lägg till",
"advanced": "Avancerat",
"archived": "Arkiverad",
+ "asset_id": "Tillgångs-ID",
"attachment": "Bilaga",
"attachments": "Bilagor",
"changes_persisted_immediately": "Ändringar av bilagor sparas omedelbart",
@@ -183,6 +184,7 @@
"results": "{ total } Resultat",
"serial_number": "Serienummer",
"show_advanced_view_options": "Visa avancerade vyalternativ",
+ "sold_at": "Såld den",
"sold_details": "Försäljningsdetaljer",
"sold_price": "Försäljningspris",
"sold_to": "Såld till",
@@ -224,6 +226,8 @@
"zh-TW": "Kinesiska (traditionell)"
},
"locations": {
+ "child_locations": "Underordnade platser",
+ "collapse_tree": "Dra ihop träd",
"no_results": "Inga platser hittades",
"update_location": "Uppdatera plats"
},
@@ -247,14 +251,23 @@
"delete_confirmation": "Är du säker på att du vill radera denna post?",
"edit_action": "Uppdatera",
"edit_title": "Redigera",
+ "entry_name": "Startnamn",
"new_action": "Skapa",
+ "new_title": "Skapa nytt ärende",
"notes": "Anteckningar",
"scheduled_date": "Schemalagt datum"
},
"monthly_average": "Månatligt medelvärde",
- "total_cost": "Total kostnad"
+ "toast": {
+ "failed_to_create": "Det gick inte att skapa posten",
+ "failed_to_delete": "Det gick inte att ta bort posten",
+ "failed_to_update": "Det gick inte att uppdatera posten"
+ },
+ "total_cost": "Total kostnad",
+ "total_entries": "Totalt antal inlämningar"
},
"menu": {
+ "create_item": "Artikel / Tillgång",
"create_label": "Etikett",
"create_location": "Plats",
"home": "Hem",
@@ -271,6 +284,7 @@
"current_password": "Nuvarande lösenord",
"delete_account": "Radera konto",
"delete_account_sub": "Ta bort ditt konto och alla tillhörande data. Detta kan inte ångras.",
+ "display_header": "{ currentValue, select, true {Dölj sidhuvud} false {Visa sidhuvud} other {Inte träff}}",
"enabled": "Aktiverad",
"example": "Exempel",
"gen_invite": "Skapa inbjudningslänk",
@@ -293,6 +307,17 @@
"user_profile_sub": "Bjud in användare och hantera ditt konto."
},
"tools": {
+ "actions": "Lageråtgärder",
+ "actions_set": {
+ "ensure_ids": "Säkerställ tillgångs-ID",
+ "ensure_ids_button": "Säkerställ tillgångs-ID",
+ "ensure_ids_sub": "Säkerställer att alla saker i din inventering har giltiga asset_id fält. Detta är gjort genom att hitta högsta nuvarande asset_id fält i databasen och tilldela nästa värde till varje sak som inte har ett asset_id värde. Detta görs i ordning av created_at fältet.",
+ "ensure_import_refs": "Se till att importera referenser",
+ "ensure_import_refs_button": "Se till att importera referenser",
+ "ensure_import_refs_sub": "Säkerställer att alla saker i din inventering har ett korrekt import_ref fält. Detta görs genom att slumpmässigt skapa en 8 tecken sträng för varje sak som ej har import_ref fältet tilldelat.",
+ "set_primary_photo": "Ställ in primärt foto",
+ "set_primary_photo_button": "Ställ in primärt foto"
+ },
"actions_sub": "Utför åtgärder på dina objekt i bulk. Dessa är oåterkalleliga. ''Var försiktig.''",
"import_export": "Import/Export",
"reports": "Rapporter",
diff --git a/frontend/locales/uk-UA.json b/frontend/locales/uk-UA.json
index 2212d5ef..f571546f 100644
--- a/frontend/locales/uk-UA.json
+++ b/frontend/locales/uk-UA.json
@@ -9,6 +9,30 @@
}
},
"global": {
+ "date_time": {
+ "ago": "{0} тому",
+ "days": "днів",
+ "hour": "година",
+ "hours": "годин",
+ "in": "через {0}",
+ "just-now": "щойно",
+ "last-month": "минулого місяця",
+ "last-week": "минулого тижня",
+ "last-year": "минулого року",
+ "minute": "хвилина",
+ "minutes": "хвилин",
+ "months": "місяців",
+ "next-month": "наступного місяця",
+ "next-week": "наступного тижня",
+ "next-year": "наступного року",
+ "second": "секунда",
+ "seconds": "секунд",
+ "tomorrow": "завтра",
+ "week": "тиждень",
+ "weeks": "тижні",
+ "years": "роки",
+ "yesterday": "вчора"
+ },
"page_qr_code": {
"page_url": "URL сторінки"
},
@@ -18,6 +42,8 @@
},
"item": {
"create_modal": {
+ "item_description": "Опис елемента",
+ "item_name": "Назва елемента",
"photo_button": "Фото📷",
"title": "Додати предмет"
},
@@ -27,29 +53,45 @@
"items": "Предмети",
"no_items": "Предмети відсутні",
"table": "Таблиця"
+ },
+ "table": {
+ "page": "Сторінка",
+ "rows_per_page": "Рядків на сторінці"
}
}
},
"label": {
"create_modal": {
+ "label_description": "Опис мітки",
+ "label_name": "Назва мітки",
"title": "Створити наліпку"
}
},
"location": {
"create_modal": {
+ "location_description": "Опис місця",
+ "location_name": "Назва місця",
"title": "Створити локацію"
},
+ "selector": {
+ "parent_location": "Батьківське місце"
+ },
"tree": {
"no_locations": "Локації відсутні. Додайте нову за допомогою \n<`span class=\"link-primary\"`>`Створити`<`/span`>` клавіші ліворуч."
}
}
},
"global": {
+ "add": "Додати",
"build": "Зібрати: { build }",
"confirm": "Зберегти",
"create": "Створити",
"create_and_add": "Створити і додати ще один",
"created": "Створено",
+ "delete": "Видалити",
+ "details": "Подробиці",
+ "duplicate": "Дублювати",
+ "edit": "Редагувати",
"email": "Email",
"follow_dev": "Підписатись на розробника",
"github": "GitHub проекту",
@@ -57,15 +99,29 @@
"join_discord": "Доєднатися до Discord",
"labels": "Наліпки",
"locations": "Локації",
+ "maintenance": "Технічне обслуговування",
"name": "Ім'я",
"password": "Пароль",
"read_docs": "Переглянути документацію",
+ "save": "Зберегти",
"search": "Пошук",
"sign_out": "Вийти",
"submit": "Підтвердити",
+ "update": "Оновити",
+ "value": "Значення",
"version": "Версія: { version }",
"welcome": "Вітаю, { username }"
},
+ "home": {
+ "labels": "Мітки",
+ "quick_statistics": "Швидка статистика",
+ "recently_added": "Нещодавно додано",
+ "storage_locations": "Місця зберігання",
+ "total_items": "Всього елементів",
+ "total_labels": "Всього міток",
+ "total_locations": "Загальна кількість місць",
+ "total_value": "Загальна вартість"
+ },
"index": {
"disabled_registration": "Реєстрація недоступна",
"dont_join_group": "Не хочете доєднуватись до групи?",
@@ -80,32 +136,71 @@
},
"items": {
"add": "Додати",
+ "advanced": "Розширено",
+ "archived": "Архівовано",
+ "asset_id": "ID активу",
+ "attachment": "Вкладення",
+ "attachments": "Вкладення",
+ "changes_persisted_immediately": "Зміни до вкладень будуть збережені одразу",
"created_at": "Створено о",
"custom_fields": "Власні поля",
+ "description": "Опис",
+ "details": "Подробиці",
+ "drag_and_drop": "Перетягніть файли сюди або клацніть, щоб вибрати файли",
+ "edit_details": "Редагувати деталі",
"field_selector": "Обрати поле",
"field_value": "Значення поля",
"first": "Перший",
"include_archive": "Включити заархівовані предмети",
+ "insured": "Застраховано",
"last": "Останній",
+ "lifetime_warranty": "Довічна гарантія",
+ "location": "Місце",
+ "manual": "Посібник",
+ "manuals": "Посібники",
+ "manufacturer": "Виробник",
+ "model_number": "Номер моделі",
+ "name": "Назва",
"negate_labels": "Відмінити обрані мітки",
"next_page": "Наступна сторінка",
"no_results": "Предметів нема",
+ "notes": "Примітки",
"options": "Налаштування",
"order_by": "Відсортувати за",
"pages": "Сторінка { page } з { totalPages }",
+ "parent_item": "Батьківський елемент",
+ "photo": "Фото",
+ "photos": "Фото",
"prev_page": "Попередня сторінка",
+ "purchase_date": "Дата покупки",
+ "purchase_details": "Деталі купівлі",
+ "purchase_price": "Ціна покупки",
+ "purchased_from": "Куплено у",
+ "quantity": "Кількість",
"query_id": "Шукаю за ID предмета: { id }",
+ "receipt": "Чек",
+ "receipts": "Чеки",
"reset_search": "Скинути пошук",
"results": "{ total } Результатів",
+ "serial_number": "Серійний номер",
+ "show_advanced_view_options": "Показати розширені параметри",
+ "sold_at": "Продано за",
+ "sold_details": "Деталі продажу",
+ "sold_price": "Ціна продажу",
+ "sold_to": "Покупець",
"tip_1": "Фільтри по локації і міткам використовують операцію \"АБО\". Якщо більше одного обрано, тільки один\nз них має співпасти для виводу результату.",
"tip_2": "Пошуки, що починаються з \"#\" будуть шукати за ID предмета (наприклад, \"#000-001\")",
"tip_3": "Пошук в полях використовує операцію \"АБО\". Якщо більше одного задіяно, достатньо буде \nспівпасти лише одному для виводу результату.",
"tips": "Підказки",
"tips_sub": "Підказки щодо пошуку",
- "updated_at": "Оновлено"
+ "updated_at": "Оновлено",
+ "warranty": "Гарантія",
+ "warranty_details": "Деталі гарантії",
+ "warranty_expires": "Гарантія закінчується"
},
"labels": {
- "no_results": "Мітки не знайдено"
+ "no_results": "Мітки не знайдено",
+ "update_label": "Оновити мітку"
},
"languages": {
"ca": "Каталонська",
@@ -115,20 +210,30 @@
"fr": "Французька",
"hu": "Угорська",
"it": "Італійська",
+ "ja-JP": "Японська",
"nl": "Голландський",
"pl": "Польська мова",
"pt-BR": "Португальська (Бразилія)",
+ "pt-PT": "Португальська (Португалія)",
"ru": "Російська",
"sl": "Словенська",
"sv": "Swedish",
"tr": "турецька",
+ "uk-UA": "Українська",
"zh-CN": "Китайська (спрощена)",
"zh-HK": "Китайська (Гонконг)",
"zh-MO": "Китайська (Макао)",
"zh-TW": "Китайська (традиційне письмо)"
},
+ "languages.da-DK": "Данська",
+ "languages.fi.FI": "Фінська",
+ "languages.ro-RO": "Румунська",
+ "languages.sk-SK": "Словацька",
"locations": {
- "no_results": "Локації відсутні"
+ "child_locations": "Вкладені місця",
+ "collapse_tree": "Згорнути дерево",
+ "no_results": "Локації відсутні",
+ "update_location": "Оновити місце"
},
"maintenance": {
"filter": {
@@ -163,9 +268,12 @@
"failed_to_update": "Не вдалося оновити запис"
},
"total_cost": "Загальна сума",
- "total_entries": "Всього елементів"
+ "total_entries": "Всього записів"
},
"menu": {
+ "create_item": "Елемент / Актив",
+ "create_label": "Мітка",
+ "create_location": "Місце",
"home": "Головна",
"locations": "Локації",
"maintenance": "Обслуговування",
@@ -182,6 +290,7 @@
"delete_account_sub": "Видалити акаунт і всі пов'язані дані. Це невідворотна дія.",
"display_header": "{ currentValue, select, true {Приховати заголовок} false {Показати заголовок} other {Відсутнє}}",
"enabled": "Включено",
+ "example": "Приклад",
"gen_invite": "Створити посилання для запрошення",
"group_settings": "Налаштування групи",
"group_settings_sub": "Налаштування спільної групи. Можливо, вам доведеться оновити сторінку для збереження параметрів.",
diff --git a/frontend/locales/zh-CN.json b/frontend/locales/zh-CN.json
index f89aacf8..5681cb8d 100644
--- a/frontend/locales/zh-CN.json
+++ b/frontend/locales/zh-CN.json
@@ -9,6 +9,29 @@
}
},
"global": {
+ "date_time": {
+ "ago": "{0} 之前",
+ "days": "天",
+ "hour": "小时",
+ "hours": "小时",
+ "just-now": "现在",
+ "last-month": "上个月",
+ "last-week": "上周",
+ "last-year": "去年",
+ "minute": "分钟",
+ "minutes": "分钟",
+ "months": "个月",
+ "next-month": "下个月",
+ "next-week": "下周",
+ "next-year": "明年",
+ "second": "秒",
+ "seconds": "秒",
+ "tomorrow": "明天",
+ "week": "周",
+ "weeks": "周",
+ "years": "年",
+ "yesterday": "昨天"
+ },
"page_qr_code": {
"page_url": "页面URL"
},
@@ -18,6 +41,8 @@
},
"item": {
"create_modal": {
+ "item_description": "物品描述",
+ "item_name": "物品名称",
"photo_button": "照片 📷",
"title": "创建物品"
},
@@ -27,29 +52,45 @@
"items": "物品",
"no_items": "没有可展示的物品",
"table": "表格模式"
+ },
+ "table": {
+ "page": "页",
+ "rows_per_page": "每页行数"
}
}
},
"label": {
"create_modal": {
+ "label_description": "标签说明",
+ "label_name": "标签名称",
"title": "创建标签"
}
},
"location": {
"create_modal": {
+ "location_description": "位置描述",
+ "location_name": "位置名称",
"title": "创建位置"
},
+ "selector": {
+ "parent_location": "父位置"
+ },
"tree": {
"no_locations": "没有可用的位置。请添加新的位置\n `<`span class=\"link-primary\"`>`创建`<`/span`>` 按钮在导航栏上"
}
}
},
"global": {
+ "add": "添加",
"build": "编译:{build}",
"confirm": "确认",
"create": "创建",
"create_and_add": "保存并继续创建",
"created": "已创建",
+ "delete": "刪除",
+ "details": "详情",
+ "duplicate": "复制",
+ "edit": "修改",
"email": "邮箱",
"follow_dev": "关注开发者",
"github": "Github项目",
@@ -57,15 +98,29 @@
"join_discord": "加入Discord讨论",
"labels": "标签",
"locations": "位置",
+ "maintenance": "维护",
"name": "名称",
"password": "密码",
"read_docs": "查阅文档",
+ "save": "保存",
"search": "搜索",
"sign_out": "登出",
"submit": "提交",
+ "update": "更新",
+ "value": "值",
"version": "版本:{version}",
"welcome": "欢迎,{username}"
},
+ "home": {
+ "labels": "标签",
+ "quick_statistics": "快速统计",
+ "recently_added": "最近加入",
+ "storage_locations": "存放位置",
+ "total_items": "项目总量",
+ "total_labels": "标签总量",
+ "total_locations": "位置数量",
+ "total_value": "价值总和"
+ },
"index": {
"disabled_registration": "已禁用注册",
"dont_join_group": "不想加入群组?",
@@ -80,32 +135,67 @@
},
"items": {
"add": "添加",
+ "advanced": "进阶",
+ "archived": "已归档",
+ "asset_id": "资产ID",
+ "attachment": "附件",
+ "attachments": "附件",
+ "changes_persisted_immediately": "对附件的更改将会立即保存",
"created_at": "创建于",
"custom_fields": "自定义字段",
+ "description": "说明",
+ "details": "详情",
+ "drag_and_drop": "将文件拖拽到此或点击添加文件",
+ "edit_details": "编辑详情",
"field_selector": "字段选择",
"field_value": "字段值",
"first": "第一页",
"include_archive": "包括已存档的项目",
+ "insured": "保险",
"last": "最后一页",
+ "lifetime_warranty": "包含终身保修",
+ "location": "位置",
+ "manufacturer": "制造商",
+ "model_number": "型号",
+ "name": "名称",
"negate_labels": "取消选中的标签",
"next_page": "下一页",
"no_results": "没有可显示的物品",
+ "notes": "笔记",
"options": "选项",
"order_by": "排序方式",
"pages": "第{page}页,共{totalPages}页",
+ "parent_item": "父项目",
+ "photo": "照片",
+ "photos": "照片",
"prev_page": "上一页",
+ "purchase_date": "购买日期",
+ "purchase_details": "购买详情",
+ "purchase_price": "购买价格",
+ "purchased_from": "购买地址",
+ "quantity": "数量",
"query_id": "查询资产ID: {id}",
"reset_search": "重置搜索",
"results": "{ total } 条结果",
+ "serial_number": "序列号",
+ "show_advanced_view_options": "显示高级选项",
+ "sold_at": "出售日期",
+ "sold_details": "售出详情",
+ "sold_price": "出售价格",
+ "sold_to": "出售对象",
"tip_1": "位置和标签过滤器使用“或”操作。如果选择了多个位置或标签,\n则只需要任意一个匹配上即可。",
"tip_2": "以“#”为前缀的搜索将变成查询资产ID(例如“#000-001” )",
"tip_3": "字段过滤器使用“或”操作。如果选择了多个位置或标签,\n则只需要任意一个匹配上即可。",
"tips": "建议",
"tips_sub": "搜索提示",
- "updated_at": "更新于"
+ "updated_at": "更新于",
+ "warranty": "保修",
+ "warranty_details": "保修详情",
+ "warranty_expires": "保修持续到"
},
"labels": {
- "no_results": "未找到标签。"
+ "no_results": "未找到标签",
+ "update_label": "更新标签"
},
"languages": {
"ca": "加泰罗尼亚语",
@@ -115,20 +205,30 @@
"fr": "法国",
"hu": "匈牙利语",
"it": "意大利语",
+ "ja-JP": "日本語",
"nl": "荷兰语",
"pl": "波兰语",
"pt-BR": "葡萄牙语(巴西)",
+ "pt-PT": "葡萄牙语(葡萄牙)",
"ru": "俄语",
"sl": "斯洛文尼亚语",
"sv": "瑞典语",
"tr": "土耳其语",
+ "uk-UA": "乌克兰语",
"zh-CN": "中文(简体)",
"zh-HK": "中文(香港)",
"zh-MO": "中文(澳门)",
"zh-TW": "中文(繁体)"
},
+ "languages.da-DK": "丹麦语",
+ "languages.fi.FI": "芬兰语",
+ "languages.ro-RO": "罗马尼亚语",
+ "languages.sk-SK": "斯洛伐克语",
"locations": {
- "no_results": "找不到位置"
+ "child_locations": "子位置",
+ "collapse_tree": "折叠树",
+ "no_results": "找不到位置",
+ "update_location": "更新位置"
},
"maintenance": {
"filter": {
@@ -166,6 +266,9 @@
"total_entries": "总项目"
},
"menu": {
+ "create_item": "物品/资产",
+ "create_label": "标签",
+ "create_location": "位置",
"home": "主页",
"locations": "位置",
"maintenance": "维护",
@@ -182,6 +285,7 @@
"delete_account_sub": "删除您的帐户及其所有相关数据。这是无法撤消的。",
"display_header": "{currentValue, select, true {隐藏页眉} false {显示页眉} other {未选中}}",
"enabled": "已启用",
+ "example": "例子",
"gen_invite": "生成邀请链接",
"group_settings": "组设置",
"group_settings_sub": "共享组设置。您可能需要刷新浏览器来让某些设置生效。",
diff --git a/frontend/nuxt.config.ts b/frontend/nuxt.config.ts
index 3febeed7..e9c49bfe 100644
--- a/frontend/nuxt.config.ts
+++ b/frontend/nuxt.config.ts
@@ -3,17 +3,19 @@ import { defineNuxtConfig } from "nuxt/config";
// https://v3.nuxtjs.org/api/configuration/nuxt.config
export default defineNuxtConfig({
ssr: false,
+
build: {
transpile: ["vue-i18n"],
},
+
modules: [
"@nuxtjs/tailwindcss",
"@pinia/nuxt",
"@vueuse/nuxt",
"@vite-pwa/nuxt",
- "./nuxt.proxyoverride.ts",
"unplugin-icons/nuxt",
],
+
nitro: {
devProxy: {
"/api": {
@@ -23,7 +25,9 @@ export default defineNuxtConfig({
},
},
},
+
css: ["@/assets/css/main.css"],
+
pwa: {
workbox: {
navigateFallbackDenylist: [/^\/api/],
@@ -62,4 +66,12 @@ export default defineNuxtConfig({
],
},
},
+ postcss: {
+ plugins: {
+ tailwindcss: {},
+ autoprefixer: {},
+ },
+ },
+
+ compatibilityDate: "2024-11-29",
});
diff --git a/frontend/nuxt.proxyoverride.ts b/frontend/nuxt.proxyoverride.ts
deleted file mode 100644
index 8650dd68..00000000
--- a/frontend/nuxt.proxyoverride.ts
+++ /dev/null
@@ -1,52 +0,0 @@
-// https://gist.github.com/ucw/67f7291c64777fb24341e8eae72bcd24
-import type { IncomingMessage } from "http";
-import type internal from "stream";
-import { defineNuxtModule, logger } from "@nuxt/kit";
-// Related To
-// - https://github.com/nuxt/nuxt/issues/15417
-// - https://github.com/nuxt/cli/issues/107
-//
-// fix from
-// - https://gist.github.com/ucw/67f7291c64777fb24341e8eae72bcd24
-// eslint-disable-next-line
-import { createProxyServer } from "http-proxy";
-
-export default defineNuxtModule({
- defaults: {
- target: "ws://localhost:7745",
- path: "/api/v1/ws",
- },
- meta: {
- configKey: "websocketProxy",
- name: "Websocket proxy",
- },
- setup(resolvedOptions, nuxt) {
- if (!nuxt.options.dev || !resolvedOptions.target) {
- return;
- }
-
- nuxt.hook("listen", server => {
- const proxy = createProxyServer({
- ws: true,
- secure: false,
- changeOrigin: true,
- target: resolvedOptions.target,
- });
-
- const proxyFn = (req: IncomingMessage, socket: internal.Duplex, head: Buffer) => {
- if (req.url && req.url.startsWith(resolvedOptions.path)) {
- proxy.ws(req, socket, head);
- }
- };
-
- server.on("upgrade", proxyFn);
-
- nuxt.hook("close", () => {
- server.off("upgrade", proxyFn);
- proxy.close();
- });
-
- logger.info(`Websocket dev proxy started on ${resolvedOptions.path}`);
- });
- },
-});
diff --git a/frontend/package.json b/frontend/package.json
index 70a145f0..e88066b4 100644
--- a/frontend/package.json
+++ b/frontend/package.json
@@ -8,41 +8,41 @@
"lint": "eslint --ext \".ts,.js,.vue\" --ignore-path ../.gitignore .",
"lint:fix": "eslint --ext \".ts,.js,.vue\" --ignore-path ../.gitignore . --fix",
"lint:ci": "eslint --ext \".ts,.js,.vue\" --ignore-path ../.gitignore . --max-warnings 1",
- "typecheck": "pnpm dlx vue-tsc@2.1.6 --noEmit",
+ "typecheck": "pnpm vue-tsc --noEmit",
"test:ci": "TEST_SHUTDOWN_API_SERVER=true vitest --run --config ./test/vitest.config.ts",
"test:local": "TEST_SHUTDOWN_API_SERVER=false && vitest --run --config ./test/vitest.config.ts",
"test:watch": " TEST_SHUTDOWN_API_SERVER=false vitest --config ./test/vitest.config.ts"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
- "@iconify-json/mdi": "^1.2.0",
+ "@iconify-json/mdi": "^1.2.1",
"@intlify/unplugin-vue-i18n": "^4.0.0",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
- "@types/dompurify": "^3.0.5",
"@types/markdown-it": "^13.0.9",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vite-pwa/nuxt": "^0.5.0",
- "@vue/runtime-core": "^3.5.12",
+ "@vue/runtime-core": "^3.5.13",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
- "eslint-plugin-tailwindcss": "^3.17.4",
- "eslint-plugin-vue": "^9.28.0",
+ "eslint-plugin-tailwindcss": "^3.17.5",
+ "eslint-plugin-vue": "^9.31.0",
"h3": "^1.7.1",
- "intl-messageformat": "^10.5.14",
+ "intl-messageformat": "^10.7.7",
"isomorphic-fetch": "^3.0.0",
- "nuxt": "3.7.4",
- "prettier": "^3.3.3",
- "typescript": "^5.6.2",
+ "nuxt": "3.12.4",
+ "prettier": "^3.4.1",
+ "typescript": "5.6.2",
"unplugin-icons": "^0.18.5",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^1.6.0",
- "vue-i18n": "^9.14.1"
+ "vue-i18n": "^9.14.2",
+ "vue-tsc": "2.1.6"
},
"dependencies": {
"@headlessui/vue": "^1.7.23",
- "@nuxtjs/tailwindcss": "^6.12.1",
+ "@nuxtjs/tailwindcss": "^6.12.2",
"@pinia/nuxt": "^0.5.5",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.9",
@@ -54,15 +54,15 @@
"autoprefixer": "^10.4.20",
"daisyui": "^2.52.0",
"date-fns": "^3.6.0",
- "dompurify": "^3.1.7",
+ "dompurify": "^3.2.2",
"h3": "^1.13.0",
"http-proxy": "^1.18.1",
"lunr": "^2.3.9",
"markdown-it": "^14.1.0",
- "pinia": "^2.2.4",
- "postcss": "^8.4.47",
- "tailwindcss": "^3.4.13",
+ "pinia": "^2.2.8",
+ "postcss": "^8.4.49",
+ "tailwindcss": "^3.4.15",
"vue": "3.4.8",
- "vue-router": "^4.4.5"
+ "vue-router": "^4.5.0"
}
}
diff --git a/frontend/pages/item/[id]/index/edit.vue b/frontend/pages/item/[id]/index/edit.vue
index 27799fc2..47e76474 100644
--- a/frontend/pages/item/[id]/index/edit.vue
+++ b/frontend/pages/item/[id]/index/edit.vue
@@ -99,16 +99,12 @@
let purchasePrice = 0;
let soldPrice = 0;
- let purchaseTime = null;
if (item.value.purchasePrice) {
purchasePrice = item.value.purchasePrice;
}
if (item.value.soldPrice) {
soldPrice = item.value.soldPrice;
}
- if (item.value.purchaseTime && typeof item.value.purchaseTime !== "string") {
- purchaseTime = new Date(item.value.purchaseTime.getTime() - item.value.purchaseTime.getTimezoneOffset() * 60000);
- }
console.log((item.value.purchasePrice ??= 0));
console.log((item.value.soldPrice ??= 0));
@@ -121,7 +117,7 @@
assetId: item.value.assetId,
purchasePrice,
soldPrice,
- purchaseTime: purchaseTime as Date,
+ purchaseTime: item.value.purchaseTime as Date,
};
const { error } = await api.items.update(itemId.value, payload);
diff --git a/frontend/pages/items.vue b/frontend/pages/items.vue
index 8d46c1ee..039626bc 100644
--- a/frontend/pages/items.vue
+++ b/frontend/pages/items.vue
@@ -474,7 +474,7 @@
{{ $t("items.no_results") }}
-
+
diff --git a/frontend/pages/profile.vue b/frontend/pages/profile.vue
index d13301b3..37eb503d 100644
--- a/frontend/pages/profile.vue
+++ b/frontend/pages/profile.vue
@@ -8,6 +8,7 @@
import MdiFill from "~icons/mdi/fill";
import MdiPencil from "~icons/mdi/pencil";
import MdiAccountMultiple from "~icons/mdi/account-multiple";
+ import { getLocaleCode } from "~/composables/use-formatters";
definePageMeta({
middleware: ["auth"],
@@ -52,12 +53,11 @@
});
const currencyExample = computed(() => {
- const formatter = new Intl.NumberFormat("en-US", {
- style: "currency",
- currency: currency.value ? currency.value.code : "USD",
- });
+ return fmtCurrency(1000, currency.value?.code ?? "USD", getLocaleCode());
+ });
- return formatter.format(1000);
+ const dateExample = computed(() => {
+ return fmtDate(new Date(Date.now() - 15 * 60000), "relative");
});
const { data: group } = useAsyncData(async () => {
@@ -389,6 +389,7 @@
{{ $t(`languages.${lang}`) }} ({{ $t(`languages.${lang}`, 1, { locale: lang }) }})
+
{{ $t("profile.example") }}: {{ $t("global.created") }} {{ dateExample }}
diff --git a/frontend/pages/reports/label-generator.vue b/frontend/pages/reports/label-generator.vue
index 2ce40903..e2e6154f 100644
--- a/frontend/pages/reports/label-generator.vue
+++ b/frontend/pages/reports/label-generator.vue
@@ -183,21 +183,20 @@
return route(`/qrcode`, { data: encodeURIComponent(data) });
}
- function getItem(n: number, item: { name: string; location: { name: string } } | null): LabelData {
+ function getItem(n: number, item: { assetId: string; name: string; location: { name: string } } | null): LabelData {
// format n into - seperated string with leading zeros
-
- const assetID = fmtAssetID(n);
+ const assetID = fmtAssetID(n + 1);
return {
url: getQRCodeUrl(assetID),
- assetID,
+ assetID: item?.assetId ?? assetID,
name: item?.name ?? "_______________",
location: item?.location?.name ?? "_______________",
};
}
const { data: allFields } = await useAsyncData(async () => {
- const { data, error } = await api.items.getAll();
+ const { data, error } = await api.items.getAll({ orderBy: "assetId" });
if (error) {
return {
@@ -220,10 +219,10 @@
}
const items: LabelData[] = [];
- for (let i = displayProperties.assetRange; i < displayProperties.assetRangeMax; i++) {
+ for (let i = displayProperties.assetRange - 1; i < displayProperties.assetRangeMax - 1; i++) {
const item = allFields?.value?.items?.[i];
if (item?.location) {
- items.push(getItem(i, item as { location: { name: string }; name: string }));
+ items.push(getItem(i, item as { assetId: string; location: { name: string }; name: string }));
} else {
items.push(getItem(i, null));
}
diff --git a/frontend/plugins/i18n.ts b/frontend/plugins/i18n.ts
index f6994dcb..f563fd13 100644
--- a/frontend/plugins/i18n.ts
+++ b/frontend/plugins/i18n.ts
@@ -30,6 +30,12 @@ export default defineNuxtPlugin(({ vueApp }) => {
messages: messages(),
});
vueApp.use(i18n);
+
+ return {
+ provide: {
+ i18nGlobal: i18n.global,
+ },
+ };
});
export const messages = () => {
diff --git a/frontend/pnpm-lock.yaml b/frontend/pnpm-lock.yaml
index ba4165a8..f1307872 100644
--- a/frontend/pnpm-lock.yaml
+++ b/frontend/pnpm-lock.yaml
@@ -12,20 +12,20 @@ importers:
specifier: ^1.7.23
version: 1.7.23(vue@3.4.8(typescript@5.6.2))
'@nuxtjs/tailwindcss':
- specifier: ^6.12.1
- version: 6.12.1(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
+ specifier: ^6.12.2
+ version: 6.12.2(magicast@0.3.5)(rollup@4.27.4)
'@pinia/nuxt':
specifier: ^0.5.5
- version: 0.5.5(magicast@0.3.5)(rollup@4.24.0)(typescript@5.6.2)(vue@3.4.8(typescript@5.6.2))(webpack-sources@3.2.3)
+ version: 0.5.5(magicast@0.3.5)(rollup@4.27.4)(typescript@5.6.2)(vue@3.4.8(typescript@5.6.2))
'@tailwindcss/aspect-ratio':
specifier: ^0.4.2
- version: 0.4.2(tailwindcss@3.4.13)
+ version: 0.4.2(tailwindcss@3.4.15)
'@tailwindcss/forms':
specifier: ^0.5.9
- version: 0.5.9(tailwindcss@3.4.13)
+ version: 0.5.9(tailwindcss@3.4.15)
'@tailwindcss/typography':
specifier: ^0.5.15
- version: 0.5.15(tailwindcss@3.4.13)
+ version: 0.5.15(tailwindcss@3.4.15)
'@types/lunr':
specifier: ^2.3.7
version: 2.3.7
@@ -34,22 +34,22 @@ importers:
version: 8.8.1(vue@3.4.8(typescript@5.6.2))
'@vueuse/nuxt':
specifier: ^10.11.1
- version: 10.11.1(magicast@0.3.5)(nuxt@3.7.4(@parcel/watcher@2.4.1)(@types/node@22.7.4)(eslint@8.57.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.34.1)(typescript@5.6.2)(webpack-sources@3.2.3))(rollup@4.24.0)(vue@3.4.8(typescript@5.6.2))(webpack-sources@3.2.3)
+ version: 10.11.1(magicast@0.3.5)(nuxt@3.12.4(@parcel/watcher@2.5.0)(@types/node@22.10.1)(eslint@8.57.1)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.27.4)(terser@5.36.0)(typescript@5.6.2)(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))(vue-tsc@2.1.6(typescript@5.6.2)))(rollup@4.27.4)(vue@3.4.8(typescript@5.6.2))
'@vueuse/router':
specifier: ^10.11.1
- version: 10.11.1(vue-router@4.4.5(vue@3.4.8(typescript@5.6.2)))(vue@3.4.8(typescript@5.6.2))
+ version: 10.11.1(vue-router@4.5.0(vue@3.4.8(typescript@5.6.2)))(vue@3.4.8(typescript@5.6.2))
autoprefixer:
specifier: ^10.4.20
- version: 10.4.20(postcss@8.4.47)
+ version: 10.4.20(postcss@8.4.49)
daisyui:
specifier: ^2.52.0
- version: 2.52.0(autoprefixer@10.4.20(postcss@8.4.47))(postcss@8.4.47)
+ version: 2.52.0(autoprefixer@10.4.20(postcss@8.4.49))(postcss@8.4.49)
date-fns:
specifier: ^3.6.0
version: 3.6.0
dompurify:
- specifier: ^3.1.7
- version: 3.1.7
+ specifier: ^3.2.2
+ version: 3.2.2
h3:
specifier: ^1.13.0
version: 1.13.0
@@ -63,36 +63,33 @@ importers:
specifier: ^14.1.0
version: 14.1.0
pinia:
- specifier: ^2.2.4
- version: 2.2.4(typescript@5.6.2)(vue@3.4.8(typescript@5.6.2))
+ specifier: ^2.2.8
+ version: 2.2.8(typescript@5.6.2)(vue@3.4.8(typescript@5.6.2))
postcss:
- specifier: ^8.4.47
- version: 8.4.47
+ specifier: ^8.4.49
+ version: 8.4.49
tailwindcss:
- specifier: ^3.4.13
- version: 3.4.13
+ specifier: ^3.4.15
+ version: 3.4.15
vue:
specifier: 3.4.8
version: 3.4.8(typescript@5.6.2)
vue-router:
- specifier: ^4.4.5
- version: 4.4.5(vue@3.4.8(typescript@5.6.2))
+ specifier: ^4.5.0
+ version: 4.5.0(vue@3.4.8(typescript@5.6.2))
devDependencies:
'@faker-js/faker':
specifier: ^8.4.1
version: 8.4.1
'@iconify-json/mdi':
- specifier: ^1.2.0
- version: 1.2.0
+ specifier: ^1.2.1
+ version: 1.2.1
'@intlify/unplugin-vue-i18n':
specifier: ^4.0.0
- version: 4.0.0(rollup@4.24.0)(vue-i18n@9.14.1(vue@3.4.8(typescript@5.6.2)))(webpack-sources@3.2.3)
+ version: 4.0.0(rollup@4.27.4)(vue-i18n@9.14.2(vue@3.4.8(typescript@5.6.2)))
'@nuxtjs/eslint-config-typescript':
specifier: ^12.1.0
version: 12.1.0(eslint@8.57.1)(typescript@5.6.2)
- '@types/dompurify':
- specifier: ^3.0.5
- version: 3.0.5
'@types/markdown-it':
specifier: ^13.0.9
version: 13.0.9
@@ -104,10 +101,10 @@ importers:
version: 6.21.0(eslint@8.57.1)(typescript@5.6.2)
'@vite-pwa/nuxt':
specifier: ^0.5.0
- version: 0.5.0(magicast@0.3.5)(rollup@4.24.0)(vite@4.5.5(@types/node@22.7.4)(terser@5.34.1))(webpack-sources@3.2.3)(workbox-build@7.1.1)(workbox-window@7.1.0)
+ version: 0.5.0(magicast@0.3.5)(rollup@4.27.4)(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))(workbox-build@7.1.1)(workbox-window@7.1.0)
'@vue/runtime-core':
- specifier: ^3.5.12
- version: 3.5.12
+ specifier: ^3.5.13
+ version: 3.5.13
eslint:
specifier: ^8.57.1
version: 8.57.1
@@ -116,40 +113,43 @@ importers:
version: 9.1.0(eslint@8.57.1)
eslint-plugin-prettier:
specifier: ^5.2.1
- version: 5.2.1(@types/eslint@8.56.12)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)
+ version: 5.2.1(@types/eslint@8.56.12)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.4.1)
eslint-plugin-tailwindcss:
- specifier: ^3.17.4
- version: 3.17.4(tailwindcss@3.4.13)
+ specifier: ^3.17.5
+ version: 3.17.5(tailwindcss@3.4.15)
eslint-plugin-vue:
- specifier: ^9.28.0
- version: 9.28.0(eslint@8.57.1)
+ specifier: ^9.31.0
+ version: 9.31.0(eslint@8.57.1)
intl-messageformat:
- specifier: ^10.5.14
- version: 10.5.14
+ specifier: ^10.7.7
+ version: 10.7.7
isomorphic-fetch:
specifier: ^3.0.0
version: 3.0.0
nuxt:
- specifier: 3.7.4
- version: 3.7.4(@parcel/watcher@2.4.1)(@types/node@22.7.4)(eslint@8.57.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.34.1)(typescript@5.6.2)(webpack-sources@3.2.3)
+ specifier: 3.12.4
+ version: 3.12.4(@parcel/watcher@2.5.0)(@types/node@22.10.1)(eslint@8.57.1)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.27.4)(terser@5.36.0)(typescript@5.6.2)(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))(vue-tsc@2.1.6(typescript@5.6.2))
prettier:
- specifier: ^3.3.3
- version: 3.3.3
+ specifier: ^3.4.1
+ version: 3.4.1
typescript:
- specifier: ^5.6.2
+ specifier: 5.6.2
version: 5.6.2
unplugin-icons:
specifier: ^0.18.5
- version: 0.18.5(@vue/compiler-sfc@3.5.11)(webpack-sources@3.2.3)
+ version: 0.18.5(@vue/compiler-sfc@3.5.13)
vite-plugin-eslint:
specifier: ^1.8.1
- version: 1.8.1(eslint@8.57.1)(vite@4.5.5(@types/node@22.7.4)(terser@5.34.1))
+ version: 1.8.1(eslint@8.57.1)(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))
vitest:
specifier: ^1.6.0
- version: 1.6.0(@types/node@22.7.4)(terser@5.34.1)
+ version: 1.6.0(@types/node@22.10.1)(terser@5.36.0)
vue-i18n:
- specifier: ^9.14.1
- version: 9.14.1(vue@3.4.8(typescript@5.6.2))
+ specifier: ^9.14.2
+ version: 9.14.2(vue@3.4.8(typescript@5.6.2))
+ vue-tsc:
+ specifier: 2.1.6
+ version: 2.1.6(typescript@5.6.2)
packages:
@@ -176,192 +176,174 @@ packages:
peerDependencies:
ajv: '>=8'
- '@babel/code-frame@7.25.7':
- resolution: {integrity: sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==}
+ '@babel/code-frame@7.26.2':
+ resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.25.7':
- resolution: {integrity: sha512-9ickoLz+hcXCeh7jrcin+/SLWm+GkxE2kTvoYyp38p4WkdFXfQJxDFGWp/YHjiKLPx06z2A7W8XKuqbReXDzsw==}
+ '@babel/compat-data@7.26.2':
+ resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.25.7':
- resolution: {integrity: sha512-yJ474Zv3cwiSOO9nXJuqzvwEeM+chDuQ8GJirw+pZ91sCGCyOZ3dJkVE09fTV0VEVzXyLWhh3G/AolYTPX7Mow==}
+ '@babel/core@7.26.0':
+ resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.25.7':
- resolution: {integrity: sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==}
+ '@babel/generator@7.26.2':
+ resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-annotate-as-pure@7.25.7':
- resolution: {integrity: sha512-4xwU8StnqnlIhhioZf1tqnVWeQ9pvH/ujS8hRfw/WOza+/a+1qv69BWNy+oY231maTCWgKWhfBU7kDpsds6zAA==}
+ '@babel/helper-annotate-as-pure@7.25.9':
+ resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
engines: {node: '>=6.9.0'}
- '@babel/helper-builder-binary-assignment-operator-visitor@7.25.7':
- resolution: {integrity: sha512-12xfNeKNH7jubQNm7PAkzlLwEmCs1tfuX3UjIw6vP6QXi+leKh6+LyC/+Ed4EIQermwd58wsyh070yjDHFlNGg==}
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.25.9':
+ resolution: {integrity: sha512-C47lC7LIDCnz0h4vai/tpNOI95tCd5ZT3iBt/DBH5lXKHZsyNQv18yf1wIIg2ntiQNgmAvA+DgZ82iW8Qdym8g==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.25.7':
- resolution: {integrity: sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==}
+ '@babel/helper-compilation-targets@7.25.9':
+ resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.25.7':
- resolution: {integrity: sha512-bD4WQhbkx80mAyj/WCm4ZHcF4rDxkoLFO6ph8/5/mQ3z4vAzltQXAmbc7GvVJx5H+lk5Mi5EmbTeox5nMGCsbw==}
+ '@babel/helper-create-class-features-plugin@7.25.9':
+ resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.25.7':
- resolution: {integrity: sha512-byHhumTj/X47wJ6C6eLpK7wW/WBEcnUeb7D0FNc/jFQnQVw7DOso3Zz5u9x/zLrFVkHa89ZGDbkAa1D54NdrCQ==}
+ '@babel/helper-create-regexp-features-plugin@7.25.9':
+ resolution: {integrity: sha512-ORPNZ3h6ZRkOyAa/SaHU+XsLZr0UQzRwuDQ0cczIA17nAzZ+85G5cVkOJIj7QavLZGSe8QXUmNFxSZzjcZF9bw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-define-polyfill-provider@0.6.2':
- resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
+ '@babel/helper-define-polyfill-provider@0.6.3':
+ resolution: {integrity: sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- '@babel/helper-member-expression-to-functions@7.25.7':
- resolution: {integrity: sha512-O31Ssjd5K6lPbTX9AAYpSKrZmLeagt9uwschJd+Ixo6QiRyfpvgtVQp8qrDR9UNFjZ8+DO34ZkdrN+BnPXemeA==}
+ '@babel/helper-member-expression-to-functions@7.25.9':
+ resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.25.7':
- resolution: {integrity: sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==}
+ '@babel/helper-module-imports@7.25.9':
+ resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.25.7':
- resolution: {integrity: sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==}
+ '@babel/helper-module-transforms@7.26.0':
+ resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-optimise-call-expression@7.25.7':
- resolution: {integrity: sha512-VAwcwuYhv/AT+Vfr28c9y6SHzTan1ryqrydSTFGjU0uDJHw3uZ+PduI8plCLkRsDnqK2DMEDmwrOQRsK/Ykjng==}
+ '@babel/helper-optimise-call-expression@7.25.9':
+ resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.25.7':
- resolution: {integrity: sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==}
+ '@babel/helper-plugin-utils@7.25.9':
+ resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-remap-async-to-generator@7.25.7':
- resolution: {integrity: sha512-kRGE89hLnPfcz6fTrlNU+uhgcwv0mBE4Gv3P9Ke9kLVJYpi4AMVVEElXvB5CabrPZW4nCM8P8UyyjrzCM0O2sw==}
+ '@babel/helper-remap-async-to-generator@7.25.9':
+ resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-replace-supers@7.25.7':
- resolution: {integrity: sha512-iy8JhqlUW9PtZkd4pHM96v6BdJ66Ba9yWSE4z0W4TvSZwLBPkyDsiIU3ENe4SmrzRBs76F7rQXTy1lYC49n6Lw==}
+ '@babel/helper-replace-supers@7.25.9':
+ resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-simple-access@7.25.7':
- resolution: {integrity: sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==}
+ '@babel/helper-simple-access@7.25.9':
+ resolution: {integrity: sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==}
engines: {node: '>=6.9.0'}
- '@babel/helper-skip-transparent-expression-wrappers@7.25.7':
- resolution: {integrity: sha512-pPbNbchZBkPMD50K0p3JGcFMNLVUCuU/ABybm/PGNj4JiHrpmNyqqCphBk4i19xXtNV0JhldQJJtbSW5aUvbyA==}
+ '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
+ resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.25.7':
- resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==}
+ '@babel/helper-string-parser@7.25.9':
+ resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.25.7':
- resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==}
+ '@babel/helper-validator-identifier@7.25.9':
+ resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.25.7':
- resolution: {integrity: sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==}
+ '@babel/helper-validator-option@7.25.9':
+ resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.25.7':
- resolution: {integrity: sha512-MA0roW3JF2bD1ptAaJnvcabsVlNQShUaThyJbCDD4bCp8NEgiFvpoqRI2YS22hHlc2thjO/fTg2ShLMC3jygAg==}
+ '@babel/helper-wrap-function@7.25.9':
+ resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.25.7':
- resolution: {integrity: sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==}
+ '@babel/helpers@7.26.0':
+ resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
engines: {node: '>=6.9.0'}
- '@babel/highlight@7.25.7':
- resolution: {integrity: sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/parser@7.25.7':
- resolution: {integrity: sha512-aZn7ETtQsjjGG5HruveUK06cU3Hljuhd9Iojm4M8WWv3wLE6OkE5PWbDUkItmMgegmccaITudyuW5RPYrYlgWw==}
+ '@babel/parser@7.26.2':
+ resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.7':
- resolution: {integrity: sha512-UV9Lg53zyebzD1DwQoT9mzkEKa922LNUp5YkTJ6Uta0RbyXaQNUgcvSt7qIu1PpPzVb6rd10OVNTzkyBGeVmxQ==}
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9':
+ resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.7':
- resolution: {integrity: sha512-GDDWeVLNxRIkQTnJn2pDOM1pkCgYdSqPeT1a9vh9yIqu2uzzgw1zcqEb+IJOhy+dTBMlNdThrDIksr2o09qrrQ==}
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9':
+ resolution: {integrity: sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.7':
- resolution: {integrity: sha512-wxyWg2RYaSUYgmd9MR0FyRGyeOMQE/Uzr1wzd/g5cf5bwi9A4v6HFdDm7y1MgDtod/fLOSTZY6jDgV0xU9d5bA==}
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9':
+ resolution: {integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.7':
- resolution: {integrity: sha512-Xwg6tZpLxc4iQjorYsyGMyfJE7nP5MV8t/Ka58BgiA7Jw0fRqQNcANlLfdJ/yvBt9z9LD2We+BEkT7vLqZRWng==}
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9':
+ resolution: {integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.7':
- resolution: {integrity: sha512-UVATLMidXrnH+GMUIuxq55nejlj02HP7F5ETyBONzP6G87fPBogG4CH6kxrSrdIuAjdwNO9VzyaYsrZPscWUrw==}
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9':
+ resolution: {integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-proposal-decorators@7.25.9':
+ resolution: {integrity: sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2':
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-async-generators@7.8.4':
- resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-class-properties@7.12.13':
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-class-static-block@7.14.5':
- resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
+ '@babel/plugin-syntax-decorators@7.25.9':
+ resolution: {integrity: sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-dynamic-import@7.8.3':
- resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-export-namespace-from@7.8.3':
- resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-import-assertions@7.25.7':
- resolution: {integrity: sha512-ZvZQRmME0zfJnDQnVBKYzHxXT7lYBB3Revz1GuS7oLXWMgqUPX4G+DDbT30ICClht9WKV34QVrZhSw6WdklwZQ==}
+ '@babel/plugin-syntax-import-assertions@7.26.0':
+ resolution: {integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.25.7':
- resolution: {integrity: sha512-AqVo+dguCgmpi/3mYBdu9lkngOBlQ2w2vnNpa6gfiCxQZLzV4ZbhsXitJ2Yblkoe1VQwtHSaNmIaGll/26YWRw==}
+ '@babel/plugin-syntax-import-attributes@7.26.0':
+ resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -371,61 +353,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-json-strings@7.8.3':
- resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-jsx@7.25.7':
- resolution: {integrity: sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw==}
+ '@babel/plugin-syntax-jsx@7.25.9':
+ resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4':
- resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3':
- resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-numeric-separator@7.10.4':
- resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-object-rest-spread@7.8.3':
- resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-optional-catch-binding@7.8.3':
- resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-optional-chaining@7.8.3':
- resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-private-property-in-object@7.14.5':
- resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-top-level-await@7.14.5':
- resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-typescript@7.25.7':
- resolution: {integrity: sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g==}
+ '@babel/plugin-syntax-typescript@7.25.9':
+ resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -436,308 +371,314 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-arrow-functions@7.25.7':
- resolution: {integrity: sha512-EJN2mKxDwfOUCPxMO6MUI58RN3ganiRAG/MS/S3HfB6QFNjroAMelQo/gybyYq97WerCBAZoyrAoW8Tzdq2jWg==}
+ '@babel/plugin-transform-arrow-functions@7.25.9':
+ resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-generator-functions@7.25.7':
- resolution: {integrity: sha512-4B6OhTrwYKHYYgcwErvZjbmH9X5TxQBsaBHdzEIB4l71gR5jh/tuHGlb9in47udL2+wVUcOz5XXhhfhVJwEpEg==}
+ '@babel/plugin-transform-async-generator-functions@7.25.9':
+ resolution: {integrity: sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-to-generator@7.25.7':
- resolution: {integrity: sha512-ZUCjAavsh5CESCmi/xCpX1qcCaAglzs/7tmuvoFnJgA1dM7gQplsguljoTg+Ru8WENpX89cQyAtWoaE0I3X3Pg==}
+ '@babel/plugin-transform-async-to-generator@7.25.9':
+ resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoped-functions@7.25.7':
- resolution: {integrity: sha512-xHttvIM9fvqW+0a3tZlYcZYSBpSWzGBFIt/sYG3tcdSzBB8ZeVgz2gBP7Df+sM0N1850jrviYSSeUuc+135dmQ==}
+ '@babel/plugin-transform-block-scoped-functions@7.25.9':
+ resolution: {integrity: sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.25.7':
- resolution: {integrity: sha512-ZEPJSkVZaeTFG/m2PARwLZQ+OG0vFIhPlKHK/JdIMy8DbRJ/htz6LRrTFtdzxi9EHmcwbNPAKDnadpNSIW+Aow==}
+ '@babel/plugin-transform-block-scoping@7.25.9':
+ resolution: {integrity: sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-properties@7.25.7':
- resolution: {integrity: sha512-mhyfEW4gufjIqYFo9krXHJ3ElbFLIze5IDp+wQTxoPd+mwFb1NxatNAwmv8Q8Iuxv7Zc+q8EkiMQwc9IhyGf4g==}
+ '@babel/plugin-transform-class-properties@7.25.9':
+ resolution: {integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-static-block@7.25.7':
- resolution: {integrity: sha512-rvUUtoVlkDWtDWxGAiiQj0aNktTPn3eFynBcMC2IhsXweehwgdI9ODe+XjWw515kEmv22sSOTp/rxIRuTiB7zg==}
+ '@babel/plugin-transform-class-static-block@7.26.0':
+ resolution: {integrity: sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
- '@babel/plugin-transform-classes@7.25.7':
- resolution: {integrity: sha512-9j9rnl+YCQY0IGoeipXvnk3niWicIB6kCsWRGLwX241qSXpbA4MKxtp/EdvFxsc4zI5vqfLxzOd0twIJ7I99zg==}
+ '@babel/plugin-transform-classes@7.25.9':
+ resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-computed-properties@7.25.7':
- resolution: {integrity: sha512-QIv+imtM+EtNxg/XBKL3hiWjgdLjMOmZ+XzQwSgmBfKbfxUjBzGgVPklUuE55eq5/uVoh8gg3dqlrwR/jw3ZeA==}
+ '@babel/plugin-transform-computed-properties@7.25.9':
+ resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-destructuring@7.25.7':
- resolution: {integrity: sha512-xKcfLTlJYUczdaM1+epcdh1UGewJqr9zATgrNHcLBcV2QmfvPPEixo/sK/syql9cEmbr7ulu5HMFG5vbbt/sEA==}
+ '@babel/plugin-transform-destructuring@7.25.9':
+ resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dotall-regex@7.25.7':
- resolution: {integrity: sha512-kXzXMMRzAtJdDEgQBLF4oaiT6ZCU3oWHgpARnTKDAqPkDJ+bs3NrZb310YYevR5QlRo3Kn7dzzIdHbZm1VzJdQ==}
+ '@babel/plugin-transform-dotall-regex@7.25.9':
+ resolution: {integrity: sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-keys@7.25.7':
- resolution: {integrity: sha512-by+v2CjoL3aMnWDOyCIg+yxU9KXSRa9tN6MbqggH5xvymmr9p4AMjYkNlQy4brMceBnUyHZ9G8RnpvT8wP7Cfg==}
+ '@babel/plugin-transform-duplicate-keys@7.25.9':
+ resolution: {integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.7':
- resolution: {integrity: sha512-HvS6JF66xSS5rNKXLqkk7L9c/jZ/cdIVIcoPVrnl8IsVpLggTjXs8OWekbLHs/VtYDDh5WXnQyeE3PPUGm22MA==}
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9':
+ resolution: {integrity: sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-dynamic-import@7.25.7':
- resolution: {integrity: sha512-UvcLuual4h7/GfylKm2IAA3aph9rwvAM2XBA0uPKU3lca+Maai4jBjjEVUS568ld6kJcgbouuumCBhMd/Yz17w==}
+ '@babel/plugin-transform-dynamic-import@7.25.9':
+ resolution: {integrity: sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-exponentiation-operator@7.25.7':
- resolution: {integrity: sha512-yjqtpstPfZ0h/y40fAXRv2snciYr0OAoMXY/0ClC7tm4C/nG5NJKmIItlaYlLbIVAWNfrYuy9dq1bE0SbX0PEg==}
+ '@babel/plugin-transform-exponentiation-operator@7.25.9':
+ resolution: {integrity: sha512-KRhdhlVk2nObA5AYa7QMgTMTVJdfHprfpAk4DjZVtllqRg9qarilstTKEhpVjyt+Npi8ThRyiV8176Am3CodPA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-export-namespace-from@7.25.7':
- resolution: {integrity: sha512-h3MDAP5l34NQkkNulsTNyjdaR+OiB0Im67VU//sFupouP8Q6m9Spy7l66DcaAQxtmCqGdanPByLsnwFttxKISQ==}
+ '@babel/plugin-transform-export-namespace-from@7.25.9':
+ resolution: {integrity: sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-for-of@7.25.7':
- resolution: {integrity: sha512-n/TaiBGJxYFWvpJDfsxSj9lEEE44BFM1EPGz4KEiTipTgkoFVVcCmzAL3qA7fdQU96dpo4gGf5HBx/KnDvqiHw==}
+ '@babel/plugin-transform-for-of@7.25.9':
+ resolution: {integrity: sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-function-name@7.25.7':
- resolution: {integrity: sha512-5MCTNcjCMxQ63Tdu9rxyN6cAWurqfrDZ76qvVPrGYdBxIj+EawuuxTu/+dgJlhK5eRz3v1gLwp6XwS8XaX2NiQ==}
+ '@babel/plugin-transform-function-name@7.25.9':
+ resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-json-strings@7.25.7':
- resolution: {integrity: sha512-Ot43PrL9TEAiCe8C/2erAjXMeVSnE/BLEx6eyrKLNFCCw5jvhTHKyHxdI1pA0kz5njZRYAnMO2KObGqOCRDYSA==}
+ '@babel/plugin-transform-json-strings@7.25.9':
+ resolution: {integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-literals@7.25.7':
- resolution: {integrity: sha512-fwzkLrSu2fESR/cm4t6vqd7ebNIopz2QHGtjoU+dswQo/P6lwAG04Q98lliE3jkz/XqnbGFLnUcE0q0CVUf92w==}
+ '@babel/plugin-transform-literals@7.25.9':
+ resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-logical-assignment-operators@7.25.7':
- resolution: {integrity: sha512-iImzbA55BjiovLyG2bggWS+V+OLkaBorNvc/yJoeeDQGztknRnDdYfp2d/UPmunZYEnZi6Lg8QcTmNMHOB0lGA==}
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9':
+ resolution: {integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-member-expression-literals@7.25.7':
- resolution: {integrity: sha512-Std3kXwpXfRV0QtQy5JJcRpkqP8/wG4XL7hSKZmGlxPlDqmpXtEPRmhF7ztnlTCtUN3eXRUJp+sBEZjaIBVYaw==}
+ '@babel/plugin-transform-member-expression-literals@7.25.9':
+ resolution: {integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-amd@7.25.7':
- resolution: {integrity: sha512-CgselSGCGzjQvKzghCvDTxKHP3iooenLpJDO842ehn5D2G5fJB222ptnDwQho0WjEvg7zyoxb9P+wiYxiJX5yA==}
+ '@babel/plugin-transform-modules-amd@7.25.9':
+ resolution: {integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-commonjs@7.25.7':
- resolution: {integrity: sha512-L9Gcahi0kKFYXvweO6n0wc3ZG1ChpSFdgG+eV1WYZ3/dGbJK7vvk91FgGgak8YwRgrCuihF8tE/Xg07EkL5COg==}
+ '@babel/plugin-transform-modules-commonjs@7.25.9':
+ resolution: {integrity: sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-systemjs@7.25.7':
- resolution: {integrity: sha512-t9jZIvBmOXJsiuyOwhrIGs8dVcD6jDyg2icw1VL4A/g+FnWyJKwUfSSU2nwJuMV2Zqui856El9u+ElB+j9fV1g==}
+ '@babel/plugin-transform-modules-systemjs@7.25.9':
+ resolution: {integrity: sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-umd@7.25.7':
- resolution: {integrity: sha512-p88Jg6QqsaPh+EB7I9GJrIqi1Zt4ZBHUQtjw3z1bzEXcLh6GfPqzZJ6G+G1HBGKUNukT58MnKG7EN7zXQBCODw==}
+ '@babel/plugin-transform-modules-umd@7.25.9':
+ resolution: {integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-named-capturing-groups-regex@7.25.7':
- resolution: {integrity: sha512-BtAT9LzCISKG3Dsdw5uso4oV1+v2NlVXIIomKJgQybotJY3OwCwJmkongjHgwGKoZXd0qG5UZ12JUlDQ07W6Ow==}
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9':
+ resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-new-target@7.25.7':
- resolution: {integrity: sha512-CfCS2jDsbcZaVYxRFo2qtavW8SpdzmBXC2LOI4oO0rP+JSRDxxF3inF4GcPsLgfb5FjkhXG5/yR/lxuRs2pySA==}
+ '@babel/plugin-transform-new-target@7.25.9':
+ resolution: {integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-nullish-coalescing-operator@7.25.7':
- resolution: {integrity: sha512-FbuJ63/4LEL32mIxrxwYaqjJxpbzxPVQj5a+Ebrc8JICV6YX8nE53jY+K0RZT3um56GoNWgkS2BQ/uLGTjtwfw==}
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.9':
+ resolution: {integrity: sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-numeric-separator@7.25.7':
- resolution: {integrity: sha512-8CbutzSSh4hmD+jJHIA8vdTNk15kAzOnFLVVgBSMGr28rt85ouT01/rezMecks9pkU939wDInImwCKv4ahU4IA==}
+ '@babel/plugin-transform-numeric-separator@7.25.9':
+ resolution: {integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-rest-spread@7.25.7':
- resolution: {integrity: sha512-1JdVKPhD7Y5PvgfFy0Mv2brdrolzpzSoUq2pr6xsR+m+3viGGeHEokFKsCgOkbeFOQxfB1Vt2F0cPJLRpFI4Zg==}
+ '@babel/plugin-transform-object-rest-spread@7.25.9':
+ resolution: {integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-super@7.25.7':
- resolution: {integrity: sha512-pWT6UXCEW3u1t2tcAGtE15ornCBvopHj9Bps9D2DsH15APgNVOTwwczGckX+WkAvBmuoYKRCFa4DK+jM8vh5AA==}
+ '@babel/plugin-transform-object-super@7.25.9':
+ resolution: {integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-catch-binding@7.25.7':
- resolution: {integrity: sha512-m9obYBA39mDPN7lJzD5WkGGb0GO54PPLXsbcnj1Hyeu8mSRz7Gb4b1A6zxNX32ZuUySDK4G6it8SDFWD1nCnqg==}
+ '@babel/plugin-transform-optional-catch-binding@7.25.9':
+ resolution: {integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-chaining@7.25.7':
- resolution: {integrity: sha512-h39agClImgPWg4H8mYVAbD1qP9vClFbEjqoJmt87Zen8pjqK8FTPUwrOXAvqu5soytwxrLMd2fx2KSCp2CHcNg==}
+ '@babel/plugin-transform-optional-chaining@7.25.9':
+ resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-parameters@7.25.7':
- resolution: {integrity: sha512-FYiTvku63me9+1Nz7TOx4YMtW3tWXzfANZtrzHhUZrz4d47EEtMQhzFoZWESfXuAMMT5mwzD4+y1N8ONAX6lMQ==}
+ '@babel/plugin-transform-parameters@7.25.9':
+ resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-methods@7.25.7':
- resolution: {integrity: sha512-KY0hh2FluNxMLwOCHbxVOKfdB5sjWG4M183885FmaqWWiGMhRZq4DQRKH6mHdEucbJnyDyYiZNwNG424RymJjA==}
+ '@babel/plugin-transform-private-methods@7.25.9':
+ resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-property-in-object@7.25.7':
- resolution: {integrity: sha512-LzA5ESzBy7tqj00Yjey9yWfs3FKy4EmJyKOSWld144OxkTji81WWnUT8nkLUn+imN/zHL8ZQlOu/MTUAhHaX3g==}
+ '@babel/plugin-transform-private-property-in-object@7.25.9':
+ resolution: {integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-property-literals@7.25.7':
- resolution: {integrity: sha512-lQEeetGKfFi0wHbt8ClQrUSUMfEeI3MMm74Z73T9/kuz990yYVtfofjf3NuA42Jy3auFOpbjDyCSiIkTs1VIYw==}
+ '@babel/plugin-transform-property-literals@7.25.9':
+ resolution: {integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regenerator@7.25.7':
- resolution: {integrity: sha512-mgDoQCRjrY3XK95UuV60tZlFCQGXEtMg8H+IsW72ldw1ih1jZhzYXbJvghmAEpg5UVhhnCeia1CkGttUvCkiMQ==}
+ '@babel/plugin-transform-regenerator@7.25.9':
+ resolution: {integrity: sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-reserved-words@7.25.7':
- resolution: {integrity: sha512-3OfyfRRqiGeOvIWSagcwUTVk2hXBsr/ww7bLn6TRTuXnexA+Udov2icFOxFX9abaj4l96ooYkcNN1qi2Zvqwng==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-shorthand-properties@7.25.7':
- resolution: {integrity: sha512-uBbxNwimHi5Bv3hUccmOFlUy3ATO6WagTApenHz9KzoIdn0XeACdB12ZJ4cjhuB2WSi80Ez2FWzJnarccriJeA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-spread@7.25.7':
- resolution: {integrity: sha512-Mm6aeymI0PBh44xNIv/qvo8nmbkpZze1KvR8MkEqbIREDxoiWTi18Zr2jryfRMwDfVZF9foKh060fWgni44luw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-sticky-regex@7.25.7':
- resolution: {integrity: sha512-ZFAeNkpGuLnAQ/NCsXJ6xik7Id+tHuS+NT+ue/2+rn/31zcdnupCdmunOizEaP0JsUmTFSTOPoQY7PkK2pttXw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-template-literals@7.25.7':
- resolution: {integrity: sha512-SI274k0nUsFFmyQupiO7+wKATAmMFf8iFgq2O+vVFXZ0SV9lNfT1NGzBEhjquFmD8I9sqHLguH+gZVN3vww2AA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-typeof-symbol@7.25.7':
- resolution: {integrity: sha512-OmWmQtTHnO8RSUbL0NTdtpbZHeNTnm68Gj5pA4Y2blFNh+V4iZR68V1qL9cI37J21ZN7AaCnkfdHtLExQPf2uA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-typescript@7.25.7':
- resolution: {integrity: sha512-VKlgy2vBzj8AmEzunocMun2fF06bsSWV+FvVXohtL6FGve/+L217qhHxRTVGHEDO/YR8IANcjzgJsd04J8ge5Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-unicode-escapes@7.25.7':
- resolution: {integrity: sha512-BN87D7KpbdiABA+t3HbVqHzKWUDN3dymLaTnPFAMyc8lV+KN3+YzNhVRNdinaCPA4AUqx7ubXbQ9shRjYBl3SQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-unicode-property-regex@7.25.7':
- resolution: {integrity: sha512-IWfR89zcEPQGB/iB408uGtSPlQd3Jpq11Im86vUgcmSTcoWAiQMCTOa2K2yNNqFJEBVICKhayctee65Ka8OB0w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-unicode-regex@7.25.7':
- resolution: {integrity: sha512-8JKfg/hiuA3qXnlLx8qtv5HWRbgyFx2hMMtpDDuU2rTckpKkGu4ycK5yYHwuEa16/quXfoxHBIApEsNyMWnt0g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-unicode-sets-regex@7.25.7':
- resolution: {integrity: sha512-YRW8o9vzImwmh4Q3Rffd09bH5/hvY0pxg+1H1i0f7APoUeg12G7+HhLj9ZFNIrYkgBXhIijPJ+IXypN0hLTIbw==}
+ '@babel/plugin-transform-regexp-modifiers@7.26.0':
+ resolution: {integrity: sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/preset-env@7.25.7':
- resolution: {integrity: sha512-Gibz4OUdyNqqLj+7OAvBZxOD7CklCtMA5/j0JgUEwOnaRULsPDXmic2iKxL2DX2vQduPR5wH2hjZas/Vr/Oc0g==}
+ '@babel/plugin-transform-reserved-words@7.25.9':
+ resolution: {integrity: sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-shorthand-properties@7.25.9':
+ resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-spread@7.25.9':
+ resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-sticky-regex@7.25.9':
+ resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-template-literals@7.25.9':
+ resolution: {integrity: sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-typeof-symbol@7.25.9':
+ resolution: {integrity: sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-typescript@7.25.9':
+ resolution: {integrity: sha512-7PbZQZP50tzv2KGGnhh82GSyMB01yKY9scIjf1a+GfZCtInOWqUH5+1EBU4t9fyR5Oykkkc9vFTs4OHrhHXljQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-unicode-escapes@7.25.9':
+ resolution: {integrity: sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-unicode-property-regex@7.25.9':
+ resolution: {integrity: sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-unicode-regex@7.25.9':
+ resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9':
+ resolution: {integrity: sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/preset-env@7.26.0':
+ resolution: {integrity: sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -747,53 +688,41 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- '@babel/runtime@7.25.7':
- resolution: {integrity: sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==}
+ '@babel/runtime@7.26.0':
+ resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
engines: {node: '>=6.9.0'}
- '@babel/standalone@7.25.7':
- resolution: {integrity: sha512-7H+mK18Ew4C/pIIiZwF1eiVjUEh2Ju/BpwRZwcPeXltF/rIjHjFL0gol7PtGrHocmIq6P6ubJrylmmWQ3lGJPA==}
+ '@babel/standalone@7.26.2':
+ resolution: {integrity: sha512-i2VbegsRfwa9yq3xmfDX3tG2yh9K0cCqwpSyVG2nPxifh0EOnucAZUeO/g4lW2Zfg03aPJNtPfxQbDHzXc7H+w==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.25.7':
- resolution: {integrity: sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==}
+ '@babel/template@7.25.9':
+ resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.25.7':
- resolution: {integrity: sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==}
+ '@babel/traverse@7.25.9':
+ resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.25.7':
- resolution: {integrity: sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==}
+ '@babel/types@7.26.0':
+ resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
engines: {node: '>=6.9.0'}
'@cloudflare/kv-asset-handler@0.3.4':
resolution: {integrity: sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==}
engines: {node: '>=16.13'}
- '@csstools/selector-resolve-nested@1.1.0':
- resolution: {integrity: sha512-uWvSaeRcHyeNenKg8tp17EVDRkpflmdyvbE0DHo6D/GdBb6PDnCYYU6gRpXhtICMGMcahQmj2zGxwFM/WC8hCg==}
- engines: {node: ^14 || ^16 || >=18}
+ '@csstools/selector-resolve-nested@3.0.0':
+ resolution: {integrity: sha512-ZoK24Yku6VJU1gS79a5PFmC8yn3wIapiKmPgun0hZgEI5AOqgH2kiPRsPz1qkGv4HL+wuDLH83yQyk6inMYrJQ==}
+ engines: {node: '>=18'}
peerDependencies:
- postcss-selector-parser: ^6.0.13
+ postcss-selector-parser: ^7.0.0
- '@csstools/selector-specificity@3.1.1':
- resolution: {integrity: sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA==}
- engines: {node: ^14 || ^16 || >=18}
+ '@csstools/selector-specificity@5.0.0':
+ resolution: {integrity: sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==}
+ engines: {node: '>=18'}
peerDependencies:
- postcss-selector-parser: ^6.0.13
-
- '@esbuild/aix-ppc64@0.19.12':
- resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [aix]
-
- '@esbuild/aix-ppc64@0.20.2':
- resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [aix]
+ postcss-selector-parser: ^7.0.0
'@esbuild/aix-ppc64@0.21.5':
resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
@@ -801,23 +730,17 @@ packages:
cpu: [ppc64]
os: [aix]
- '@esbuild/android-arm64@0.18.20':
- resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
+ '@esbuild/aix-ppc64@0.23.1':
+ resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
- '@esbuild/android-arm64@0.19.12':
- resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
-
- '@esbuild/android-arm64@0.20.2':
- resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
+ '@esbuild/aix-ppc64@0.24.0':
+ resolution: {integrity: sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
'@esbuild/android-arm64@0.21.5':
resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
@@ -825,22 +748,16 @@ packages:
cpu: [arm64]
os: [android]
- '@esbuild/android-arm@0.18.20':
- resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
- engines: {node: '>=12'}
- cpu: [arm]
+ '@esbuild/android-arm64@0.23.1':
+ resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [android]
- '@esbuild/android-arm@0.19.12':
- resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
-
- '@esbuild/android-arm@0.20.2':
- resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==}
- engines: {node: '>=12'}
- cpu: [arm]
+ '@esbuild/android-arm64@0.24.0':
+ resolution: {integrity: sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [android]
'@esbuild/android-arm@0.21.5':
@@ -849,22 +766,16 @@ packages:
cpu: [arm]
os: [android]
- '@esbuild/android-x64@0.18.20':
- resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
- engines: {node: '>=12'}
- cpu: [x64]
+ '@esbuild/android-arm@0.23.1':
+ resolution: {integrity: sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==}
+ engines: {node: '>=18'}
+ cpu: [arm]
os: [android]
- '@esbuild/android-x64@0.19.12':
- resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
-
- '@esbuild/android-x64@0.20.2':
- resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==}
- engines: {node: '>=12'}
- cpu: [x64]
+ '@esbuild/android-arm@0.24.0':
+ resolution: {integrity: sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==}
+ engines: {node: '>=18'}
+ cpu: [arm]
os: [android]
'@esbuild/android-x64@0.21.5':
@@ -873,23 +784,17 @@ packages:
cpu: [x64]
os: [android]
- '@esbuild/darwin-arm64@0.18.20':
- resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
+ '@esbuild/android-x64@0.23.1':
+ resolution: {integrity: sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
- '@esbuild/darwin-arm64@0.19.12':
- resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
-
- '@esbuild/darwin-arm64@0.20.2':
- resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
+ '@esbuild/android-x64@0.24.0':
+ resolution: {integrity: sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
'@esbuild/darwin-arm64@0.21.5':
resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
@@ -897,22 +802,16 @@ packages:
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-x64@0.18.20':
- resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
- engines: {node: '>=12'}
- cpu: [x64]
+ '@esbuild/darwin-arm64@0.23.1':
+ resolution: {integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-x64@0.19.12':
- resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
-
- '@esbuild/darwin-x64@0.20.2':
- resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==}
- engines: {node: '>=12'}
- cpu: [x64]
+ '@esbuild/darwin-arm64@0.24.0':
+ resolution: {integrity: sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [darwin]
'@esbuild/darwin-x64@0.21.5':
@@ -921,23 +820,17 @@ packages:
cpu: [x64]
os: [darwin]
- '@esbuild/freebsd-arm64@0.18.20':
- resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
+ '@esbuild/darwin-x64@0.23.1':
+ resolution: {integrity: sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
- '@esbuild/freebsd-arm64@0.19.12':
- resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
-
- '@esbuild/freebsd-arm64@0.20.2':
- resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
+ '@esbuild/darwin-x64@0.24.0':
+ resolution: {integrity: sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
'@esbuild/freebsd-arm64@0.21.5':
resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
@@ -945,22 +838,16 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.18.20':
- resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
- engines: {node: '>=12'}
- cpu: [x64]
+ '@esbuild/freebsd-arm64@0.23.1':
+ resolution: {integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.19.12':
- resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
-
- '@esbuild/freebsd-x64@0.20.2':
- resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==}
- engines: {node: '>=12'}
- cpu: [x64]
+ '@esbuild/freebsd-arm64@0.24.0':
+ resolution: {integrity: sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [freebsd]
'@esbuild/freebsd-x64@0.21.5':
@@ -969,23 +856,17 @@ packages:
cpu: [x64]
os: [freebsd]
- '@esbuild/linux-arm64@0.18.20':
- resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
+ '@esbuild/freebsd-x64@0.23.1':
+ resolution: {integrity: sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
- '@esbuild/linux-arm64@0.19.12':
- resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
-
- '@esbuild/linux-arm64@0.20.2':
- resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
+ '@esbuild/freebsd-x64@0.24.0':
+ resolution: {integrity: sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
'@esbuild/linux-arm64@0.21.5':
resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
@@ -993,22 +874,16 @@ packages:
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm@0.18.20':
- resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
- engines: {node: '>=12'}
- cpu: [arm]
+ '@esbuild/linux-arm64@0.23.1':
+ resolution: {integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm@0.19.12':
- resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
-
- '@esbuild/linux-arm@0.20.2':
- resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==}
- engines: {node: '>=12'}
- cpu: [arm]
+ '@esbuild/linux-arm64@0.24.0':
+ resolution: {integrity: sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [linux]
'@esbuild/linux-arm@0.21.5':
@@ -1017,22 +892,16 @@ packages:
cpu: [arm]
os: [linux]
- '@esbuild/linux-ia32@0.18.20':
- resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
- engines: {node: '>=12'}
- cpu: [ia32]
+ '@esbuild/linux-arm@0.23.1':
+ resolution: {integrity: sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==}
+ engines: {node: '>=18'}
+ cpu: [arm]
os: [linux]
- '@esbuild/linux-ia32@0.19.12':
- resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
-
- '@esbuild/linux-ia32@0.20.2':
- resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==}
- engines: {node: '>=12'}
- cpu: [ia32]
+ '@esbuild/linux-arm@0.24.0':
+ resolution: {integrity: sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==}
+ engines: {node: '>=18'}
+ cpu: [arm]
os: [linux]
'@esbuild/linux-ia32@0.21.5':
@@ -1041,22 +910,16 @@ packages:
cpu: [ia32]
os: [linux]
- '@esbuild/linux-loong64@0.18.20':
- resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
- engines: {node: '>=12'}
- cpu: [loong64]
+ '@esbuild/linux-ia32@0.23.1':
+ resolution: {integrity: sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
os: [linux]
- '@esbuild/linux-loong64@0.19.12':
- resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
-
- '@esbuild/linux-loong64@0.20.2':
- resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==}
- engines: {node: '>=12'}
- cpu: [loong64]
+ '@esbuild/linux-ia32@0.24.0':
+ resolution: {integrity: sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
os: [linux]
'@esbuild/linux-loong64@0.21.5':
@@ -1065,22 +928,16 @@ packages:
cpu: [loong64]
os: [linux]
- '@esbuild/linux-mips64el@0.18.20':
- resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
- engines: {node: '>=12'}
- cpu: [mips64el]
+ '@esbuild/linux-loong64@0.23.1':
+ resolution: {integrity: sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
os: [linux]
- '@esbuild/linux-mips64el@0.19.12':
- resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
-
- '@esbuild/linux-mips64el@0.20.2':
- resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==}
- engines: {node: '>=12'}
- cpu: [mips64el]
+ '@esbuild/linux-loong64@0.24.0':
+ resolution: {integrity: sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
os: [linux]
'@esbuild/linux-mips64el@0.21.5':
@@ -1089,22 +946,16 @@ packages:
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-ppc64@0.18.20':
- resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
- engines: {node: '>=12'}
- cpu: [ppc64]
+ '@esbuild/linux-mips64el@0.23.1':
+ resolution: {integrity: sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
os: [linux]
- '@esbuild/linux-ppc64@0.19.12':
- resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
-
- '@esbuild/linux-ppc64@0.20.2':
- resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==}
- engines: {node: '>=12'}
- cpu: [ppc64]
+ '@esbuild/linux-mips64el@0.24.0':
+ resolution: {integrity: sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
os: [linux]
'@esbuild/linux-ppc64@0.21.5':
@@ -1113,22 +964,16 @@ packages:
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-riscv64@0.18.20':
- resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
- engines: {node: '>=12'}
- cpu: [riscv64]
+ '@esbuild/linux-ppc64@0.23.1':
+ resolution: {integrity: sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
os: [linux]
- '@esbuild/linux-riscv64@0.19.12':
- resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
-
- '@esbuild/linux-riscv64@0.20.2':
- resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==}
- engines: {node: '>=12'}
- cpu: [riscv64]
+ '@esbuild/linux-ppc64@0.24.0':
+ resolution: {integrity: sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
os: [linux]
'@esbuild/linux-riscv64@0.21.5':
@@ -1137,22 +982,16 @@ packages:
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-s390x@0.18.20':
- resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
- engines: {node: '>=12'}
- cpu: [s390x]
+ '@esbuild/linux-riscv64@0.23.1':
+ resolution: {integrity: sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
os: [linux]
- '@esbuild/linux-s390x@0.19.12':
- resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
-
- '@esbuild/linux-s390x@0.20.2':
- resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==}
- engines: {node: '>=12'}
- cpu: [s390x]
+ '@esbuild/linux-riscv64@0.24.0':
+ resolution: {integrity: sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
os: [linux]
'@esbuild/linux-s390x@0.21.5':
@@ -1161,22 +1000,16 @@ packages:
cpu: [s390x]
os: [linux]
- '@esbuild/linux-x64@0.18.20':
- resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
- engines: {node: '>=12'}
- cpu: [x64]
+ '@esbuild/linux-s390x@0.23.1':
+ resolution: {integrity: sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
os: [linux]
- '@esbuild/linux-x64@0.19.12':
- resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
-
- '@esbuild/linux-x64@0.20.2':
- resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==}
- engines: {node: '>=12'}
- cpu: [x64]
+ '@esbuild/linux-s390x@0.24.0':
+ resolution: {integrity: sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
os: [linux]
'@esbuild/linux-x64@0.21.5':
@@ -1185,23 +1018,17 @@ packages:
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-x64@0.18.20':
- resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
- engines: {node: '>=12'}
+ '@esbuild/linux-x64@0.23.1':
+ resolution: {integrity: sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==}
+ engines: {node: '>=18'}
cpu: [x64]
- os: [netbsd]
+ os: [linux]
- '@esbuild/netbsd-x64@0.19.12':
- resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==}
- engines: {node: '>=12'}
+ '@esbuild/linux-x64@0.24.0':
+ resolution: {integrity: sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==}
+ engines: {node: '>=18'}
cpu: [x64]
- os: [netbsd]
-
- '@esbuild/netbsd-x64@0.20.2':
- resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
+ os: [linux]
'@esbuild/netbsd-x64@0.21.5':
resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
@@ -1209,22 +1036,28 @@ packages:
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-x64@0.18.20':
- resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
- engines: {node: '>=12'}
+ '@esbuild/netbsd-x64@0.23.1':
+ resolution: {integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==}
+ engines: {node: '>=18'}
cpu: [x64]
+ os: [netbsd]
+
+ '@esbuild/netbsd-x64@0.24.0':
+ resolution: {integrity: sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
+ '@esbuild/openbsd-arm64@0.23.1':
+ resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.19.12':
- resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
-
- '@esbuild/openbsd-x64@0.20.2':
- resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==}
- engines: {node: '>=12'}
- cpu: [x64]
+ '@esbuild/openbsd-arm64@0.24.0':
+ resolution: {integrity: sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [openbsd]
'@esbuild/openbsd-x64@0.21.5':
@@ -1233,23 +1066,17 @@ packages:
cpu: [x64]
os: [openbsd]
- '@esbuild/sunos-x64@0.18.20':
- resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
- engines: {node: '>=12'}
+ '@esbuild/openbsd-x64@0.23.1':
+ resolution: {integrity: sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==}
+ engines: {node: '>=18'}
cpu: [x64]
- os: [sunos]
+ os: [openbsd]
- '@esbuild/sunos-x64@0.19.12':
- resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==}
- engines: {node: '>=12'}
+ '@esbuild/openbsd-x64@0.24.0':
+ resolution: {integrity: sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==}
+ engines: {node: '>=18'}
cpu: [x64]
- os: [sunos]
-
- '@esbuild/sunos-x64@0.20.2':
- resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
+ os: [openbsd]
'@esbuild/sunos-x64@0.21.5':
resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
@@ -1257,23 +1084,17 @@ packages:
cpu: [x64]
os: [sunos]
- '@esbuild/win32-arm64@0.18.20':
- resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
+ '@esbuild/sunos-x64@0.23.1':
+ resolution: {integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
- '@esbuild/win32-arm64@0.19.12':
- resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
-
- '@esbuild/win32-arm64@0.20.2':
- resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
+ '@esbuild/sunos-x64@0.24.0':
+ resolution: {integrity: sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
'@esbuild/win32-arm64@0.21.5':
resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
@@ -1281,22 +1102,16 @@ packages:
cpu: [arm64]
os: [win32]
- '@esbuild/win32-ia32@0.18.20':
- resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
- engines: {node: '>=12'}
- cpu: [ia32]
+ '@esbuild/win32-arm64@0.23.1':
+ resolution: {integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [win32]
- '@esbuild/win32-ia32@0.19.12':
- resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
-
- '@esbuild/win32-ia32@0.20.2':
- resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==}
- engines: {node: '>=12'}
- cpu: [ia32]
+ '@esbuild/win32-arm64@0.24.0':
+ resolution: {integrity: sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [win32]
'@esbuild/win32-ia32@0.21.5':
@@ -1305,22 +1120,16 @@ packages:
cpu: [ia32]
os: [win32]
- '@esbuild/win32-x64@0.18.20':
- resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
- engines: {node: '>=12'}
- cpu: [x64]
+ '@esbuild/win32-ia32@0.23.1':
+ resolution: {integrity: sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
os: [win32]
- '@esbuild/win32-x64@0.19.12':
- resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
-
- '@esbuild/win32-x64@0.20.2':
- resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==}
- engines: {node: '>=12'}
- cpu: [x64]
+ '@esbuild/win32-ia32@0.24.0':
+ resolution: {integrity: sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
os: [win32]
'@esbuild/win32-x64@0.21.5':
@@ -1329,14 +1138,26 @@ packages:
cpu: [x64]
os: [win32]
- '@eslint-community/eslint-utils@4.4.0':
- resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
+ '@esbuild/win32-x64@0.23.1':
+ resolution: {integrity: sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
+ '@esbuild/win32-x64@0.24.0':
+ resolution: {integrity: sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
+ '@eslint-community/eslint-utils@4.4.1':
+ resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- '@eslint-community/regexpp@4.11.1':
- resolution: {integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==}
+ '@eslint-community/regexpp@4.12.1':
+ resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
'@eslint/eslintrc@2.1.4':
@@ -1351,24 +1172,20 @@ packages:
resolution: {integrity: sha512-XQ3cU+Q8Uqmrbf2e0cIC/QN43sTBSC8KF12u29Mb47tWrt2hAgBXSgpZMj4Ao8Uk0iJcU99QsOCaIL8934obCg==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0, npm: '>=6.14.13'}
- '@fastify/busboy@2.1.1':
- resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==}
- engines: {node: '>=14'}
+ '@formatjs/ecma402-abstract@2.2.4':
+ resolution: {integrity: sha512-lFyiQDVvSbQOpU+WFd//ILolGj4UgA/qXrKeZxdV14uKiAUiPAtX6XAn7WBCRi7Mx6I7EybM9E5yYn4BIpZWYg==}
- '@formatjs/ecma402-abstract@2.0.0':
- resolution: {integrity: sha512-rRqXOqdFmk7RYvj4khklyqzcfQl9vEL/usogncBHRZfZBDOwMGuSRNFl02fu5KGHXdbinju+YXyuR+Nk8xlr/g==}
+ '@formatjs/fast-memoize@2.2.3':
+ resolution: {integrity: sha512-3jeJ+HyOfu8osl3GNSL4vVHUuWFXR03Iz9jjgI7RwjG6ysu/Ymdr0JRCPHfF5yGbTE6JCrd63EpvX1/WybYRbA==}
- '@formatjs/fast-memoize@2.2.0':
- resolution: {integrity: sha512-hnk/nY8FyrL5YxwP9e4r9dqeM6cAbo8PeU9UjyXojZMNvVad2Z06FAVHyR3Ecw6fza+0GH7vdJgiKIVXTMbSBA==}
+ '@formatjs/icu-messageformat-parser@2.9.4':
+ resolution: {integrity: sha512-Tbvp5a9IWuxUcpWNIW6GlMQYEc4rwNHR259uUFoKWNN1jM9obf9Ul0e+7r7MvFOBNcN+13K7NuKCKqQiAn1QEg==}
- '@formatjs/icu-messageformat-parser@2.7.8':
- resolution: {integrity: sha512-nBZJYmhpcSX0WeJ5SDYUkZ42AgR3xiyhNCsQweFx3cz/ULJjym8bHAzWKvG5e2+1XO98dBYC0fWeeAECAVSwLA==}
+ '@formatjs/icu-skeleton-parser@1.8.8':
+ resolution: {integrity: sha512-vHwK3piXwamFcx5YQdCdJxUQ1WdTl6ANclt5xba5zLGDv5Bsur7qz8AD7BevaKxITwpgDeU0u8My3AIibW9ywA==}
- '@formatjs/icu-skeleton-parser@1.8.2':
- resolution: {integrity: sha512-k4ERKgw7aKGWJZgTarIcNEmvyTVD9FYh0mTrrBMHZ1b8hUu6iOJ4SzsZlo3UNAvHYa+PnvntIwRPt1/vy4nA9Q==}
-
- '@formatjs/intl-localematcher@0.5.4':
- resolution: {integrity: sha512-zTwEpWOzZ2CiKcB93BLngUX59hQkuZjT2+SAQEscSm52peDW/getsawMcWF1rGRpMCX6D7nSJA3CzJ8gn13N/g==}
+ '@formatjs/intl-localematcher@0.5.8':
+ resolution: {integrity: sha512-I+WDNWWJFZie+jkfkiK5Mp4hEDyRSEvmyfYadflOno/mmKJKcB17fEpEH0oJu/OWhhCJ8kJBDz2YMd/6cDl7Mg==}
'@headlessui/vue@1.7.23':
resolution: {integrity: sha512-JzdCNqurrtuu0YW6QaDtR2PIYCKPUWq28csDyMvN4zmGccmE7lz40Is6hc3LA4HFeCI7sekZ/PQMTNmn9I/4Wg==}
@@ -1389,8 +1206,8 @@ packages:
resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
deprecated: Use @eslint/object-schema instead
- '@iconify-json/mdi@1.2.0':
- resolution: {integrity: sha512-E9/3l5Syg3wfuarorFodhn4s8YorxhH3U3U20LaNBNiqw1kFNIDWhF6HymuzAD35k7RH0OBasJ+ZUyFtVVV6eg==}
+ '@iconify-json/mdi@1.2.1':
+ resolution: {integrity: sha512-dSkQU78gsZV6Yxnq78+LuX7jzeFC/5NAmz7O3rh558GimGFcwMVY/OtqRowIzjqJBmMmWZft7wkFV4TrwRXjlg==}
'@iconify/types@2.0.0':
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
@@ -1410,16 +1227,16 @@ packages:
vue-i18n:
optional: true
- '@intlify/core-base@9.14.1':
- resolution: {integrity: sha512-rG5/hlNW6Qfve41go37szEf0mVLcfhYuOu83JcY0jZKasnwsrcZYYWDzebCcuO5I/6Sy1JFWo9p+nvkQS1Dy+w==}
+ '@intlify/core-base@9.14.2':
+ resolution: {integrity: sha512-DZyQ4Hk22sC81MP4qiCDuU+LdaYW91A6lCjq8AWPvY3+mGMzhGDfOCzvyR6YBQxtlPjFqMoFk9ylnNYRAQwXtQ==}
engines: {node: '>= 16'}
- '@intlify/message-compiler@9.14.1':
- resolution: {integrity: sha512-MY8hwukJBnXvGAncVKlHsqKDQ5ZcQx4peqEmI8wBUTXn4pezrtTGYXNoz81cLyEEHB+L/zlKWVBSh5TiX4gYoQ==}
+ '@intlify/message-compiler@9.14.2':
+ resolution: {integrity: sha512-YsKKuV4Qv4wrLNsvgWbTf0E40uRv+Qiw1BeLQ0LAxifQuhiMe+hfTIzOMdWj/ZpnTDj4RSZtkXjJM7JDiiB5LQ==}
engines: {node: '>= 16'}
- '@intlify/shared@9.14.1':
- resolution: {integrity: sha512-XjHu6PEQup9MnP1x0W9y0nXXfq9jFftAYSfV11hryjtH4XqXP8HrzMvXI+ZVifF+jZLszaTzIhvukllplxTQTg==}
+ '@intlify/shared@9.14.2':
+ resolution: {integrity: sha512-uRAHAxYPeF+G5DBIboKpPgC/Waecd4Jz8ihtkpJQD5ycb5PwXp0k/+hBGl5dAjwF7w+l74kz/PKA8r8OK//RUw==}
engines: {node: '>= 16'}
'@intlify/unplugin-vue-i18n@4.0.0':
@@ -1477,6 +1294,12 @@ packages:
resolution: {integrity: sha512-sYcHglGKTxGF+hQ6x67xDfkE9o+NhVlRHBqq6gLywaMc6CojK/5vFZByphdonKinYlMLkEkacm+HEse9HzwgTA==}
engines: {node: '>= 12'}
+ '@kwsites/file-exists@1.1.1':
+ resolution: {integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==}
+
+ '@kwsites/promise-deferred@1.1.1':
+ resolution: {integrity: sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==}
+
'@mapbox/node-pre-gyp@1.0.11':
resolution: {integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==}
hasBin: true
@@ -1512,31 +1335,43 @@ packages:
'@nuxt/devalue@2.0.2':
resolution: {integrity: sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==}
- '@nuxt/kit@3.13.2':
- resolution: {integrity: sha512-KvRw21zU//wdz25IeE1E5m/aFSzhJloBRAQtv+evcFeZvuroIxpIQuUqhbzuwznaUwpiWbmwlcsp5uOWmi4vwA==}
+ '@nuxt/devtools-kit@1.6.1':
+ resolution: {integrity: sha512-6pvK5ih4XONVMSABlDbq6q7/TrZ++hyXGn5zdROVU780aYX3EjU8F0sq+1Lmc6ieiJg4tNe/EA+zV1onKRPsrQ==}
+ peerDependencies:
+ vite: '*'
+
+ '@nuxt/devtools-wizard@1.6.1':
+ resolution: {integrity: sha512-MpcKHgXJd4JyhJEvcIMTZqojyDFHLt9Wx2oWbV7YSEnubtHYxUM6p2M+Nb9/3mT+qoOiZQ+0db3xVcMW92oE8Q==}
+ hasBin: true
+
+ '@nuxt/devtools@1.6.1':
+ resolution: {integrity: sha512-s+4msaf8/REaXVbBDzjMgdUmEwR68hpoiQWx4QkH0JHSNQXWCWgNngqlZOM3DSRmPrelS57PJCag+L7gnT1wLw==}
+ hasBin: true
+ peerDependencies:
+ vite: '*'
+
+ '@nuxt/kit@3.12.4':
+ resolution: {integrity: sha512-aNRD1ylzijY0oYolldNcZJXVyxdGzNTl+Xd0UYyFQCu9f4wqUZqQ9l+b7arCEzchr96pMK0xdpvLcS3xo1wDcw==}
engines: {node: ^14.18.0 || >=16.10.0}
- '@nuxt/kit@3.7.4':
- resolution: {integrity: sha512-/S5abZL62BITCvC/TY3KWA6N721U1Osln3cQdBb56XHIeafZCBVqTi92Xb0o7ovl72mMRhrKwRu7elzvz9oT/g==}
+ '@nuxt/kit@3.14.1592':
+ resolution: {integrity: sha512-r9r8bISBBisvfcNgNL3dSIQHSBe0v5YkX5zwNblIC2T0CIEgxEVoM5rq9O5wqgb5OEydsHTtT2hL57vdv6VT2w==}
engines: {node: ^14.18.0 || >=16.10.0}
- '@nuxt/schema@3.13.2':
- resolution: {integrity: sha512-CCZgpm+MkqtOMDEgF9SWgGPBXlQ01hV/6+2reDEpJuqFPGzV8HYKPBcIFvn7/z5ahtgutHLzjP71Na+hYcqSpw==}
+ '@nuxt/schema@3.12.4':
+ resolution: {integrity: sha512-H7FwBV4ChssMaeiLyPdVLOLUa0326ebp3pNbJfGgFt7rSoKh1MmgjorecA8JMxOQZziy3w6EELf4+5cgLh/F1w==}
engines: {node: ^14.18.0 || >=16.10.0}
- '@nuxt/schema@3.7.4':
- resolution: {integrity: sha512-q6js+97vDha4Fa2x2kDVEuokJr+CGIh1TY2wZp2PLZ7NhG3XEeib7x9Hq8XE8B6pD0GKBRy3eRPPOY69gekBCw==}
+ '@nuxt/schema@3.14.1592':
+ resolution: {integrity: sha512-A1d/08ueX8stTXNkvGqnr1eEXZgvKn+vj6s7jXhZNWApUSqMgItU4VK28vrrdpKbjIPwq2SwhnGOHUYvN9HwCQ==}
engines: {node: ^14.18.0 || >=16.10.0}
'@nuxt/telemetry@2.6.0':
resolution: {integrity: sha512-h4YJ1d32cU7tDKjjhjtIIEck4WF/w3DTQBT348E9Pz85YLttnLqktLM0Ez9Xc2LzCeUgBDQv1el7Ob/zT3KUqg==}
hasBin: true
- '@nuxt/ui-templates@1.3.4':
- resolution: {integrity: sha512-zjuslnkj5zboZGis5QpmR5gvRTx5N8Ha/Rll+RRT8YZhXVNBincifhZ9apUQ9f6T0xJE8IHPyVyPx6WokomdYw==}
-
- '@nuxt/vite-builder@3.7.4':
- resolution: {integrity: sha512-EWZlUzYvkSfIZPA0pQoi7P++68Mlvf5s/G3GBPksS5JB/9l3yZTX+ZqGvLeORSBmoEpJ6E2oMn2WvCHV0W5y6Q==}
+ '@nuxt/vite-builder@3.12.4':
+ resolution: {integrity: sha512-5v3y6SkshJurZYJWHtc7+NGeCgptsreCSguBCZVzJxYdsPFdMicLoxjTt8IGAHWjkGVONrX+K8NBSFFgnx40jQ==}
engines: {node: ^14.18.0 || >=16.10.0}
peerDependencies:
vue: ^3.3.4
@@ -1551,89 +1386,95 @@ packages:
peerDependencies:
eslint: ^8.23.0
- '@nuxtjs/tailwindcss@6.12.1':
- resolution: {integrity: sha512-UKmaPRVpxlFqLorhL6neEba2tySlsj6w6yDb7jzS6A0AAjyBQ6k3BQqWO+AaTy2iQLX7eR+1yj3/w43HzY8RtA==}
+ '@nuxtjs/tailwindcss@6.12.2':
+ resolution: {integrity: sha512-qPJiFH67CkTj/2kBGBzqXihOD1rQXMsbVS4vdQvfBxOBLPfGhU1yw7AATdhPl2BBjO2krjJLuZj39t7dnDYOwg==}
- '@parcel/watcher-android-arm64@2.4.1':
- resolution: {integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==}
+ '@parcel/watcher-android-arm64@2.5.0':
+ resolution: {integrity: sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [android]
- '@parcel/watcher-darwin-arm64@2.4.1':
- resolution: {integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==}
+ '@parcel/watcher-darwin-arm64@2.5.0':
+ resolution: {integrity: sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [darwin]
- '@parcel/watcher-darwin-x64@2.4.1':
- resolution: {integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==}
+ '@parcel/watcher-darwin-x64@2.5.0':
+ resolution: {integrity: sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [darwin]
- '@parcel/watcher-freebsd-x64@2.4.1':
- resolution: {integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==}
+ '@parcel/watcher-freebsd-x64@2.5.0':
+ resolution: {integrity: sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [freebsd]
- '@parcel/watcher-linux-arm-glibc@2.4.1':
- resolution: {integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==}
+ '@parcel/watcher-linux-arm-glibc@2.5.0':
+ resolution: {integrity: sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==}
engines: {node: '>= 10.0.0'}
cpu: [arm]
os: [linux]
- '@parcel/watcher-linux-arm64-glibc@2.4.1':
- resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==}
+ '@parcel/watcher-linux-arm-musl@2.5.0':
+ resolution: {integrity: sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm]
+ os: [linux]
+
+ '@parcel/watcher-linux-arm64-glibc@2.5.0':
+ resolution: {integrity: sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
- '@parcel/watcher-linux-arm64-musl@2.4.1':
- resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==}
+ '@parcel/watcher-linux-arm64-musl@2.5.0':
+ resolution: {integrity: sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
- '@parcel/watcher-linux-x64-glibc@2.4.1':
- resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==}
+ '@parcel/watcher-linux-x64-glibc@2.5.0':
+ resolution: {integrity: sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
- '@parcel/watcher-linux-x64-musl@2.4.1':
- resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==}
+ '@parcel/watcher-linux-x64-musl@2.5.0':
+ resolution: {integrity: sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
- '@parcel/watcher-wasm@2.4.1':
- resolution: {integrity: sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==}
+ '@parcel/watcher-wasm@2.5.0':
+ resolution: {integrity: sha512-Z4ouuR8Pfggk1EYYbTaIoxc+Yv4o7cGQnH0Xy8+pQ+HbiW+ZnwhcD2LPf/prfq1nIWpAxjOkQ8uSMFWMtBLiVQ==}
engines: {node: '>= 10.0.0'}
bundledDependencies:
- napi-wasm
- '@parcel/watcher-win32-arm64@2.4.1':
- resolution: {integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==}
+ '@parcel/watcher-win32-arm64@2.5.0':
+ resolution: {integrity: sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [win32]
- '@parcel/watcher-win32-ia32@2.4.1':
- resolution: {integrity: sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==}
+ '@parcel/watcher-win32-ia32@2.5.0':
+ resolution: {integrity: sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==}
engines: {node: '>= 10.0.0'}
cpu: [ia32]
os: [win32]
- '@parcel/watcher-win32-x64@2.4.1':
- resolution: {integrity: sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==}
+ '@parcel/watcher-win32-x64@2.5.0':
+ resolution: {integrity: sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [win32]
- '@parcel/watcher@2.4.1':
- resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==}
+ '@parcel/watcher@2.5.0':
+ resolution: {integrity: sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==}
engines: {node: '>= 10.0.0'}
'@pinia/nuxt@0.5.5':
@@ -1647,6 +1488,19 @@ packages:
resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
+ '@polka/url@1.0.0-next.28':
+ resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==}
+
+ '@redocly/ajv@8.11.2':
+ resolution: {integrity: sha512-io1JpnwtIcvojV7QKDUSIuMN/ikdOUd1ReEnUnMKGfDVridQZ31J0MmIuqwuRjWDZfmvr+Q0MqCcfHM2gTivOg==}
+
+ '@redocly/config@0.17.1':
+ resolution: {integrity: sha512-CEmvaJuG7pm2ylQg53emPmtgm4nW2nxBgwXzbVEHpGas/lGnMyN8Zlkgiz6rPw0unASg6VW3wlz27SOL5XFHYQ==}
+
+ '@redocly/openapi-core@1.25.15':
+ resolution: {integrity: sha512-/dpr5zpGj2t1Bf7EIXEboRZm1hsJZBQfv3Q1pkivtdAEg3if2khv+b9gY68aquC6cM/2aQY2kMLy8LlY2tn+Og==}
+ engines: {node: '>=14.19.0', npm: '>=7.0.0'}
+
'@rollup/plugin-alias@5.1.1':
resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==}
engines: {node: '>=14.0.0'}
@@ -1667,9 +1521,9 @@ packages:
'@types/babel__core':
optional: true
- '@rollup/plugin-commonjs@25.0.8':
- resolution: {integrity: sha512-ZEZWTK5n6Qde0to4vS9Mr5x/0UZoqCxPVR9KRUjU4kA2sO7GEUn1fop0DAwpO6z0Nw/kJON9bDmSxdWxO/TT1A==}
- engines: {node: '>=14.0.0'}
+ '@rollup/plugin-commonjs@28.0.1':
+ resolution: {integrity: sha512-+tNWdlWKbpB3WgBN7ijjYkq9X5uhjmcvyjEght4NmH5fAU++zfQzAJ6wumLS+dNcvwEZhKx2Z+skY8m7v0wGSA==}
+ engines: {node: '>=16.0.0 || 14 >= 14.17'}
peerDependencies:
rollup: ^2.68.0||^3.0.0||^4.0.0
peerDependenciesMeta:
@@ -1717,6 +1571,15 @@ packages:
rollup:
optional: true
+ '@rollup/plugin-replace@6.0.1':
+ resolution: {integrity: sha512-2sPh9b73dj5IxuMmDAsQWVFT7mR+yoHweBaXG2W/R8vQ+IWZlnaI7BR7J6EguVQUp1hd8Z7XuozpDjEKQAAC2Q==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+
'@rollup/plugin-terser@0.4.4':
resolution: {integrity: sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==}
engines: {node: '>=14.0.0'}
@@ -1736,8 +1599,8 @@ packages:
resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
engines: {node: '>= 8.0.0'}
- '@rollup/pluginutils@5.1.2':
- resolution: {integrity: sha512-/FIdS3PyZ39bjZlwqFnWqCOVnW7o963LtKMwQOD0NhQqw22gSr2YY1afu3FxRip4ZCZNsD5jq6Aaz6QV3D/Njw==}
+ '@rollup/pluginutils@5.1.3':
+ resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
@@ -1745,83 +1608,93 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.24.0':
- resolution: {integrity: sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA==}
+ '@rollup/rollup-android-arm-eabi@4.27.4':
+ resolution: {integrity: sha512-2Y3JT6f5MrQkICUyRVCw4oa0sutfAsgaSsb0Lmmy1Wi2y7X5vT9Euqw4gOsCyy0YfKURBg35nhUKZS4mDcfULw==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.24.0':
- resolution: {integrity: sha512-ijLnS1qFId8xhKjT81uBHuuJp2lU4x2yxa4ctFPtG+MqEE6+C5f/+X/bStmxapgmwLwiL3ih122xv8kVARNAZA==}
+ '@rollup/rollup-android-arm64@4.27.4':
+ resolution: {integrity: sha512-wzKRQXISyi9UdCVRqEd0H4cMpzvHYt1f/C3CoIjES6cG++RHKhrBj2+29nPF0IB5kpy9MS71vs07fvrNGAl/iA==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.24.0':
- resolution: {integrity: sha512-bIv+X9xeSs1XCk6DVvkO+S/z8/2AMt/2lMqdQbMrmVpgFvXlmde9mLcbQpztXm1tajC3raFDqegsH18HQPMYtA==}
+ '@rollup/rollup-darwin-arm64@4.27.4':
+ resolution: {integrity: sha512-PlNiRQapift4LNS8DPUHuDX/IdXiLjf8mc5vdEmUR0fF/pyy2qWwzdLjB+iZquGr8LuN4LnUoSEvKRwjSVYz3Q==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.24.0':
- resolution: {integrity: sha512-X6/nOwoFN7RT2svEQWUsW/5C/fYMBe4fnLK9DQk4SX4mgVBiTA9h64kjUYPvGQ0F/9xwJ5U5UfTbl6BEjaQdBQ==}
+ '@rollup/rollup-darwin-x64@4.27.4':
+ resolution: {integrity: sha512-o9bH2dbdgBDJaXWJCDTNDYa171ACUdzpxSZt+u/AAeQ20Nk5x+IhA+zsGmrQtpkLiumRJEYef68gcpn2ooXhSQ==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-linux-arm-gnueabihf@4.24.0':
- resolution: {integrity: sha512-0KXvIJQMOImLCVCz9uvvdPgfyWo93aHHp8ui3FrtOP57svqrF/roSSR5pjqL2hcMp0ljeGlU4q9o/rQaAQ3AYA==}
+ '@rollup/rollup-freebsd-arm64@4.27.4':
+ resolution: {integrity: sha512-NBI2/i2hT9Q+HySSHTBh52da7isru4aAAo6qC3I7QFVsuhxi2gM8t/EI9EVcILiHLj1vfi+VGGPaLOUENn7pmw==}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@rollup/rollup-freebsd-x64@4.27.4':
+ resolution: {integrity: sha512-wYcC5ycW2zvqtDYrE7deary2P2UFmSh85PUpAx+dwTCO9uw3sgzD6Gv9n5X4vLaQKsrfTSZZ7Z7uynQozPVvWA==}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.27.4':
+ resolution: {integrity: sha512-9OwUnK/xKw6DyRlgx8UizeqRFOfi9mf5TYCw1uolDaJSbUmBxP85DE6T4ouCMoN6pXw8ZoTeZCSEfSaYo+/s1w==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.24.0':
- resolution: {integrity: sha512-it2BW6kKFVh8xk/BnHfakEeoLPv8STIISekpoF+nBgWM4d55CZKc7T4Dx1pEbTnYm/xEKMgy1MNtYuoA8RFIWw==}
+ '@rollup/rollup-linux-arm-musleabihf@4.27.4':
+ resolution: {integrity: sha512-Vgdo4fpuphS9V24WOV+KwkCVJ72u7idTgQaBoLRD0UxBAWTF9GWurJO9YD9yh00BzbkhpeXtm6na+MvJU7Z73A==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.24.0':
- resolution: {integrity: sha512-i0xTLXjqap2eRfulFVlSnM5dEbTVque/3Pi4g2y7cxrs7+a9De42z4XxKLYJ7+OhE3IgxvfQM7vQc43bwTgPwA==}
+ '@rollup/rollup-linux-arm64-gnu@4.27.4':
+ resolution: {integrity: sha512-pleyNgyd1kkBkw2kOqlBx+0atfIIkkExOTiifoODo6qKDSpnc6WzUY5RhHdmTdIJXBdSnh6JknnYTtmQyobrVg==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.24.0':
- resolution: {integrity: sha512-9E6MKUJhDuDh604Qco5yP/3qn3y7SLXYuiC0Rpr89aMScS2UAmK1wHP2b7KAa1nSjWJc/f/Lc0Wl1L47qjiyQw==}
+ '@rollup/rollup-linux-arm64-musl@4.27.4':
+ resolution: {integrity: sha512-caluiUXvUuVyCHr5DxL8ohaaFFzPGmgmMvwmqAITMpV/Q+tPoaHZ/PWa3t8B2WyoRcIIuu1hkaW5KkeTDNSnMA==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.24.0':
- resolution: {integrity: sha512-2XFFPJ2XMEiF5Zi2EBf4h73oR1V/lycirxZxHZNc93SqDN/IWhYYSYj8I9381ikUFXZrz2v7r2tOVk2NBwxrWw==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.27.4':
+ resolution: {integrity: sha512-FScrpHrO60hARyHh7s1zHE97u0KlT/RECzCKAdmI+LEoC1eDh/RDji9JgFqyO+wPDb86Oa/sXkily1+oi4FzJQ==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.24.0':
- resolution: {integrity: sha512-M3Dg4hlwuntUCdzU7KjYqbbd+BLq3JMAOhCKdBE3TcMGMZbKkDdJ5ivNdehOssMCIokNHFOsv7DO4rlEOfyKpg==}
+ '@rollup/rollup-linux-riscv64-gnu@4.27.4':
+ resolution: {integrity: sha512-qyyprhyGb7+RBfMPeww9FlHwKkCXdKHeGgSqmIXw9VSUtvyFZ6WZRtnxgbuz76FK7LyoN8t/eINRbPUcvXB5fw==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.24.0':
- resolution: {integrity: sha512-mjBaoo4ocxJppTorZVKWFpy1bfFj9FeCMJqzlMQGjpNPY9JwQi7OuS1axzNIk0nMX6jSgy6ZURDZ2w0QW6D56g==}
+ '@rollup/rollup-linux-s390x-gnu@4.27.4':
+ resolution: {integrity: sha512-PFz+y2kb6tbh7m3A7nA9++eInGcDVZUACulf/KzDtovvdTizHpZaJty7Gp0lFwSQcrnebHOqxF1MaKZd7psVRg==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.24.0':
- resolution: {integrity: sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A==}
+ '@rollup/rollup-linux-x64-gnu@4.27.4':
+ resolution: {integrity: sha512-Ni8mMtfo+o/G7DVtweXXV/Ol2TFf63KYjTtoZ5f078AUgJTmaIJnj4JFU7TK/9SVWTaSJGxPi5zMDgK4w+Ez7Q==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.24.0':
- resolution: {integrity: sha512-w1i+L7kAXZNdYl+vFvzSZy8Y1arS7vMgIy8wusXJzRrPyof5LAb02KGr1PD2EkRcl73kHulIID0M501lN+vobQ==}
+ '@rollup/rollup-linux-x64-musl@4.27.4':
+ resolution: {integrity: sha512-5AeeAF1PB9TUzD+3cROzFTnAJAcVUGLuR8ng0E0WXGkYhp6RD6L+6szYVX+64Rs0r72019KHZS1ka1q+zU/wUw==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.24.0':
- resolution: {integrity: sha512-VXBrnPWgBpVDCVY6XF3LEW0pOU51KbaHhccHw6AS6vBWIC60eqsH19DAeeObl+g8nKAz04QFdl/Cefta0xQtUQ==}
+ '@rollup/rollup-win32-arm64-msvc@4.27.4':
+ resolution: {integrity: sha512-yOpVsA4K5qVwu2CaS3hHxluWIK5HQTjNV4tWjQXluMiiiu4pJj4BN98CvxohNCpcjMeTXk/ZMJBRbgRg8HBB6A==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.24.0':
- resolution: {integrity: sha512-xrNcGDU0OxVcPTH/8n/ShH4UevZxKIO6HJFK0e15XItZP2UcaiLFd5kiX7hJnqCbSztUF8Qot+JWBC/QXRPYWQ==}
+ '@rollup/rollup-win32-ia32-msvc@4.27.4':
+ resolution: {integrity: sha512-KtwEJOaHAVJlxV92rNYiG9JQwQAdhBlrjNRp7P9L8Cb4Rer3in+0A+IPhJC9y68WAi9H0sX4AiG2NTsVlmqJeQ==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.24.0':
- resolution: {integrity: sha512-fbMkAF7fufku0N2dE5TBXcNlg0pt0cJue4xBRE2Qc5Vqikxr4VCgKj/ht6SMdFcOacVA9rqF70APJ8RN/4vMJw==}
+ '@rollup/rollup-win32-x64-msvc@4.27.4':
+ resolution: {integrity: sha512-3j4jx1TppORdTAoBJRd+/wJRGCPC0ETWkXOecJ6PPZLj6SptXkrXcNqdj0oclbKML6FkQltdz7bBA3rUSirZug==}
cpu: [x64]
os: [win32]
@@ -1853,11 +1726,11 @@ packages:
peerDependencies:
tailwindcss: '>=3.0.0 || insiders || >=4.0.0-alpha.20'
- '@tanstack/virtual-core@3.10.8':
- resolution: {integrity: sha512-PBu00mtt95jbKFi6Llk9aik8bnR3tR/oQP1o3TSi+iG//+Q2RTIzCEgKkHG8BB86kxMNW6O8wku+Lmi+QFR6jA==}
+ '@tanstack/virtual-core@3.10.9':
+ resolution: {integrity: sha512-kBknKOKzmeR7lN+vSadaKWXaLS0SZZG+oqpQ/k80Q6g9REn6zRHS/ZYdrIzHnpHgy/eWs00SujveUN/GJT2qTw==}
- '@tanstack/vue-virtual@3.10.8':
- resolution: {integrity: sha512-DB5QA8c/LfqOqIUCpSs3RdOTVroRRdqeHMqBkYrcashSZtOzIv8xbiqHgg7RYxDfkH5F3Y+e0MkuuyGNDVB0BQ==}
+ '@tanstack/vue-virtual@3.10.9':
+ resolution: {integrity: sha512-KU2quiwJQpA0sdflpXw24bhW+x8PG+FlrSJK3Ilobim671HNn4ztLVWUCEz3Inei4dLYq+GW1MK9X6i6ZeirkQ==}
peerDependencies:
vue: ^2.7.0 || ^3.0.0
@@ -1865,9 +1738,6 @@ packages:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
- '@types/dompurify@3.0.5':
- resolution: {integrity: sha512-1Wg0g3BtQF7sSb27fJQAKck1HECM6zV1EB66j8JH9i3LCjYabJa0FSdiSgsD5K/RbrsR0SiraKacLB+T8ZVYAg==}
-
'@types/eslint@8.56.12':
resolution: {integrity: sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==}
@@ -1898,8 +1768,8 @@ packages:
'@types/mdurl@1.0.5':
resolution: {integrity: sha512-6L6VymKTzYSrEf4Nev4Xa1LCHKrlTlYCBMTlQKFuddo1CvQcE52I0mwfOJayueUC7MJuXOeHTcIU683lzd0cUA==}
- '@types/node@22.7.4':
- resolution: {integrity: sha512-y+NPi1rFzDs1NdQHHToqeiX2TIS79SWEAw9GYhkkx8bD0ChpfqC+n2j5OXOCpzfojBEBt6DnEnnG9MY0zk1XLg==}
+ '@types/node@22.10.1':
+ resolution: {integrity: sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ==}
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -1977,43 +1847,43 @@ packages:
'@ungap/structured-clone@1.2.0':
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
- '@unhead/dom@1.11.7':
- resolution: {integrity: sha512-Nj2ulnbY5lvIcxqXwdO5YfdvLm8EYLjcaOje2b2aQnfyPAyOIVeR8iB79DDKk/uZZAPEwkdhSnUdEh9Ny0b3lw==}
+ '@unhead/dom@1.11.13':
+ resolution: {integrity: sha512-8Bpo3e50i49/z0TMiskQk3OqUVJpWOO0cnEEydJeFnjsPczDH76H3mWLvB11cv1B/rjLdBiPgui7yetFta5LCw==}
- '@unhead/schema@1.11.7':
- resolution: {integrity: sha512-j9uN7T63aUXrZ6yx2CfjVT7xZHjn0PZO7TPMaWqMFjneIH/NONKvDVCMEqDlXeqdSIERIYtk/xTHgCUMer5eyw==}
+ '@unhead/schema@1.11.13':
+ resolution: {integrity: sha512-fIpQx6GCpl99l4qJXsPqkXxO7suMccuLADbhaMSkeXnVEi4ZIle+l+Ri0z+GHAEpJj17FMaQdO5n9FMSOMUxkw==}
- '@unhead/shared@1.11.7':
- resolution: {integrity: sha512-5v3PmV1LMyikGyQi/URYS5ilH8dg1Iomtja7iFWke990O8RBDEzAdagJqcsUE/fw+o7cXRSOamyx5wCf5Q1TrA==}
+ '@unhead/shared@1.11.13':
+ resolution: {integrity: sha512-EiJ3nsEtf6dvZ6OwVYrrrrCUl4ZE/9GTjpexEMti8EJXweSuL7SifNNXtIFk7UMoM0ULYxb7K/AKQV/odwoZyQ==}
- '@unhead/ssr@1.11.7':
- resolution: {integrity: sha512-qI1zNFY8fU5S9EhroxlXSA5Q/XKbWAKXrVVNG+6bIh/IRrMOMJrPk4d1GmphF4gmNri3ARqly+OWx4VVaj0scA==}
+ '@unhead/ssr@1.11.13':
+ resolution: {integrity: sha512-LjomDIH8vXbnQQ8UVItmJ52BZBOyK12i1Q4W658X/f0VGtm0z3AulGQIvYla0rFcxAynDygfvWSC7xrlqDtRUw==}
- '@unhead/vue@1.11.7':
- resolution: {integrity: sha512-SLr0eQfznVp63iKi47L4s5Yz+oiQjDA82VBP4jlXi7dM9fSIn1ul1aKvBqle/ZxI2cqY8zVGz60EjhjWeu754A==}
+ '@unhead/vue@1.11.13':
+ resolution: {integrity: sha512-s5++LqsNM01rkMQwtc4W19cP1fXC81o4YMyL+Kaqh9X0OPLeWnjONAh0U/Z2CIXBqhJHI+DoNXmDACXyuWPPxg==}
peerDependencies:
vue: '>=2.7 || >=3'
- '@vercel/nft@0.26.5':
- resolution: {integrity: sha512-NHxohEqad6Ra/r4lGknO52uc/GrWILXAMs1BB4401GTqww0fw1bAqzpG1XHuDO+dprg4GvsD9ZLLSsdo78p9hQ==}
+ '@vercel/nft@0.27.7':
+ resolution: {integrity: sha512-FG6H5YkP4bdw9Ll1qhmbxuE8KwW2E/g8fJpM183fWQLeVDGqzeywMIeJ9h2txdWZ03psgWMn6QymTxaDLmdwUg==}
engines: {node: '>=16'}
hasBin: true
'@vite-pwa/nuxt@0.5.0':
resolution: {integrity: sha512-5Si0Qpj9FGYmgrX52HJtY1OZKNDXJVmx17yULk0Karb7+6GKXhRcWP3DnFTEG7zkctXuzBli5sXjQaEEbEgy6w==}
- '@vitejs/plugin-vue-jsx@3.1.0':
- resolution: {integrity: sha512-w9M6F3LSEU5kszVb9An2/MmXNxocAnUb3WhRr8bHlimhDrXNt6n6D2nJQR3UXpGlZHh/EsgouOHCsM8V3Ln+WA==}
- engines: {node: ^14.18.0 || >=16.0.0}
+ '@vitejs/plugin-vue-jsx@4.1.1':
+ resolution: {integrity: sha512-uMJqv/7u1zz/9NbWAD3XdjaY20tKTf17XVfQ9zq4wY1BjsB/PjpJPMe2xiG39QpP4ZdhYNhm4Hvo66uJrykNLA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
- vite: ^4.0.0 || ^5.0.0
+ vite: ^5.0.0 || ^6.0.0
vue: ^3.0.0
- '@vitejs/plugin-vue@4.6.2':
- resolution: {integrity: sha512-kqf7SGFoG+80aZG6Pf+gsZIVvGSCKE98JbiWqcCV9cThtg91Jav0yvYFC9Zb+jKetNGF6ZKeoaxgZfND21fWKw==}
- engines: {node: ^14.18.0 || >=16.0.0}
+ '@vitejs/plugin-vue@5.2.1':
+ resolution: {integrity: sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ==}
+ engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
- vite: ^4.0.0 || ^5.0.0
+ vite: ^5.0.0 || ^6.0.0
vue: ^3.2.25
'@vitest/expect@1.6.0':
@@ -2031,8 +1901,17 @@ packages:
'@vitest/utils@1.6.0':
resolution: {integrity: sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==}
- '@vue-macros/common@1.14.0':
- resolution: {integrity: sha512-xwQhDoEXRNXobNQmdqOD20yUGdVLVLZe4zhDlT9q/E+z+mvT3wukaAoJG80XRnv/BcgOOCVpxqpkQZ3sNTgjWA==}
+ '@volar/language-core@2.4.10':
+ resolution: {integrity: sha512-hG3Z13+nJmGaT+fnQzAkS0hjJRa2FCeqZt6Bd+oGNhUkQ+mTFsDETg5rqUTxyzIh5pSOGY7FHCWUS8G82AzLCA==}
+
+ '@volar/source-map@2.4.10':
+ resolution: {integrity: sha512-OCV+b5ihV0RF3A7vEvNyHPi4G4kFa6ukPmyVocmqm5QzOd8r5yAtiNvaPEjl8dNvgC/lj4JPryeeHLdXd62rWA==}
+
+ '@volar/typescript@2.4.10':
+ resolution: {integrity: sha512-F8ZtBMhSXyYKuBfGpYwqA5rsONnOwAVvjyE7KPYJ7wgZqo2roASqNWUnianOomJX5u1cxeRooHV59N0PhvEOgw==}
+
+ '@vue-macros/common@1.15.0':
+ resolution: {integrity: sha512-yg5VqW7+HRfJGimdKvFYzx8zorHUYo0hzPwuraoC1DWa7HHazbTMoVsHDvk3JHa1SGfSL87fRnzmlvgjEHhszA==}
engines: {node: '>=16.14.0'}
peerDependencies:
vue: ^2.7.0 || ^3.2.25
@@ -2059,58 +1938,85 @@ packages:
'@vue/compiler-core@3.4.8':
resolution: {integrity: sha512-GjAwOydZV6UyVBi1lYW5v4jjfU6wOeyi3vBATKJOwV7muYF0/nZi4kfdJc0pwdT5lXwbbx57lyA2Y356rFpw1A==}
- '@vue/compiler-core@3.5.11':
- resolution: {integrity: sha512-PwAdxs7/9Hc3ieBO12tXzmTD+Ln4qhT/56S+8DvrrZ4kLDn4Z/AMUr8tXJD0axiJBS0RKIoNaR0yMuQB9v9Udg==}
+ '@vue/compiler-core@3.5.13':
+ resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
'@vue/compiler-dom@3.4.8':
resolution: {integrity: sha512-GsPyji42zmkSJlaDFKXvwB97ukTlHzlFH/iVzPFYz/APnSzuhu/CMFQbsYmrtsnc2yscF39eC4rKzvKR27aBug==}
- '@vue/compiler-dom@3.5.11':
- resolution: {integrity: sha512-pyGf8zdbDDRkBrEzf8p7BQlMKNNF5Fk/Cf/fQ6PiUz9at4OaUfyXW0dGJTo2Vl1f5U9jSLCNf0EZJEogLXoeew==}
+ '@vue/compiler-dom@3.5.13':
+ resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
'@vue/compiler-sfc@3.4.8':
resolution: {integrity: sha512-3ZcurOa6bQdZ6VZLtMqYSUZqpsMqfX0MC3oCxQG0VIJFCqouZAgRYJN1c8QvGs7HW5wW8aXVvUOQU0ILVlYHKA==}
- '@vue/compiler-sfc@3.5.11':
- resolution: {integrity: sha512-gsbBtT4N9ANXXepprle+X9YLg2htQk1sqH/qGJ/EApl+dgpUBdTv3yP7YlR535uHZY3n6XaR0/bKo0BgwwDniw==}
+ '@vue/compiler-sfc@3.5.13':
+ resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==}
'@vue/compiler-ssr@3.4.8':
resolution: {integrity: sha512-nxN79LHeAemhBpIa2PQ6rz57cW7W4C/XIJCOMSn2g49u6q2ekirmJI0osAOTErQPApOR0KwP2QyeTexX4zQCrw==}
- '@vue/compiler-ssr@3.5.11':
- resolution: {integrity: sha512-P4+GPjOuC2aFTk1Z4WANvEhyOykcvEd5bIj2KVNGKGfM745LaXGr++5njpdBTzVz5pZifdlR1kpYSJJpIlSePA==}
+ '@vue/compiler-ssr@3.5.13':
+ resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==}
+
+ '@vue/compiler-vue2@2.7.16':
+ resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
'@vue/devtools-api@6.6.4':
resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
+ '@vue/devtools-core@7.6.4':
+ resolution: {integrity: sha512-blSwGVYpb7b5TALMjjoBiAl5imuBF7WEOAtaJaBMNikR8SQkm6mkUt4YlIKh9874/qoimwmpDOm+GHBZ4Y5m+g==}
+ peerDependencies:
+ vue: ^3.0.0
+
+ '@vue/devtools-kit@7.6.4':
+ resolution: {integrity: sha512-Zs86qIXXM9icU0PiGY09PQCle4TI750IPLmAJzW5Kf9n9t5HzSYf6Rz6fyzSwmfMPiR51SUKJh9sXVZu78h2QA==}
+
+ '@vue/devtools-shared@7.6.7':
+ resolution: {integrity: sha512-QggO6SviAsolrePAXZ/sA1dSicSPt4TueZibCvydfhNDieL1lAuyMTgQDGst7TEvMGb4vgYv2I+1sDkO4jWNnw==}
+
+ '@vue/language-core@2.1.6':
+ resolution: {integrity: sha512-MW569cSky9R/ooKMh6xa2g1D0AtRKbL56k83dzus/bx//RDJk24RHWkMzbAlXjMdDNyxAaagKPRquBIxkxlCkg==}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
'@vue/reactivity@3.4.8':
resolution: {integrity: sha512-UJYMQ3S2rqIGw9IvKomD4Xw2uS5VlcKEEmwcfboGOdrI79oqebxnCgTvXWLMClvg3M5SF0Cyn+9eDQoyGMLu9Q==}
- '@vue/reactivity@3.5.12':
- resolution: {integrity: sha512-UzaN3Da7xnJXdz4Okb/BGbAaomRHc3RdoWqTzlvd9+WBR5m3J39J1fGcHes7U3za0ruYn/iYy/a1euhMEHvTAg==}
+ '@vue/reactivity@3.5.13':
+ resolution: {integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==}
'@vue/runtime-core@3.4.8':
resolution: {integrity: sha512-sMRXOy89KnwY6fWG5epgPOsCWzpo/64FrA0QkjIeNeGnoA2YyZ6bBUxpFUyqhJ8VbrDhXEFH+6LHMOYrpzX/ZQ==}
- '@vue/runtime-core@3.5.12':
- resolution: {integrity: sha512-hrMUYV6tpocr3TL3Ad8DqxOdpDe4zuQY4HPY3X/VRh+L2myQO8MFXPAMarIOSGNu0bFAjh1yBkMPXZBqCk62Uw==}
+ '@vue/runtime-core@3.5.13':
+ resolution: {integrity: sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==}
'@vue/runtime-dom@3.4.8':
resolution: {integrity: sha512-L4gZcYo8f3d7rQqQIHkPvyczkjjQ55cJqz2G0v6Ptmqa1mO2zkqN9F8lBT6aGPYy3hd0RDiINbs4jxhSvvy10Q==}
+ '@vue/runtime-dom@3.5.13':
+ resolution: {integrity: sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==}
+
'@vue/server-renderer@3.4.8':
resolution: {integrity: sha512-pBeHM59Owevr3P0Fl1XOjBmq4DTy5JDcjMG4NuzJEVDlZYzY8fHybx0wdjkY5lK5mCtUyBtw6Mz4d87aosc1Sw==}
peerDependencies:
vue: 3.4.8
+ '@vue/server-renderer@3.5.13':
+ resolution: {integrity: sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==}
+ peerDependencies:
+ vue: 3.5.13
+
'@vue/shared@3.4.8':
resolution: {integrity: sha512-ChLCWzXiJboQ009oVkemhEoUdrxHme7v3ip+Kh+/kDDeF1WtHWGt0knRLGm1Y4YqCRTSs9QxsZIY8paJj5Szrw==}
- '@vue/shared@3.5.11':
- resolution: {integrity: sha512-W8GgysJVnFo81FthhzurdRAWP/byq3q2qIw70e0JWblzVhjgOMiC2GyovXrZTFQJnFVryYaKGP3Tc9vYzYm6PQ==}
-
- '@vue/shared@3.5.12':
- resolution: {integrity: sha512-L2RPSAwUFbgZH20etwrXyVyCBu9OxRSi8T/38QsvnkJyvq2LufW2lDCOzm7t/U9C1mkhJGWYfCuFBCmIuNivrg==}
+ '@vue/shared@3.5.13':
+ resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
'@vuepic/vue-datepicker@8.8.1':
resolution: {integrity: sha512-8ehfUz1m69Vuc16Pm4ukgb3Mg1VT14x4EsG1ag4O/qbSNRWztTo+pUV4JnFt0FGLl5gGb6NXlxIvR7EjLgD7Gg==}
@@ -2161,13 +2067,13 @@ packages:
resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
engines: {node: '>=0.4.0'}
- acorn@8.10.0:
- resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==}
+ acorn@8.12.1:
+ resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
engines: {node: '>=0.4.0'}
hasBin: true
- acorn@8.12.1:
- resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
+ acorn@8.14.0:
+ resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -2175,6 +2081,10 @@ packages:
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
engines: {node: '>= 6.0.0'}
+ agent-base@7.1.1:
+ resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==}
+ engines: {node: '>= 14'}
+
ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
@@ -2197,10 +2107,6 @@ packages:
resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
engines: {node: '>=12'}
- ansi-styles@3.2.1:
- resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
- engines: {node: '>=4'}
-
ansi-styles@4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
@@ -2273,16 +2179,12 @@ packages:
assertion-error@1.1.0:
resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
- ast-kit@0.9.5:
- resolution: {integrity: sha512-kbL7ERlqjXubdDd+szuwdlQ1xUxEz9mCz1+m07ftNVStgwRb2RWw+U6oKo08PAvOishMxiqz1mlJyLl8yQx2Qg==}
+ ast-kit@1.3.1:
+ resolution: {integrity: sha512-3bIRV4s/cNAee2rKjuvYdoG+0CMqtOIgCvWrJL6zG8R0fDyMwYzStspX5JqXPbdMzM+qxHZ6g2rMHKhr3HkPlQ==}
engines: {node: '>=16.14.0'}
- ast-kit@1.2.1:
- resolution: {integrity: sha512-h31wotR7rkFLrlmGPn0kGqOZ/n5EQFvp7dBs400chpHDhHc8BK3gpvyHDluRujuGgeoTAv3dSIMz9BI3JxAWyQ==}
- engines: {node: '>=16.14.0'}
-
- ast-walker-scope@0.5.0:
- resolution: {integrity: sha512-NsyHMxBh4dmdEHjBo1/TBZvCKxffmZxRYhmclfu0PP6Aftre47jOHYaYaNqJcV0bxihxFXhDkzLHUwHc0ocd0Q==}
+ ast-walker-scope@0.6.2:
+ resolution: {integrity: sha512-1UWOyC50xI3QZkRuDj6PqDtpm1oHWtYs+NQGwqL/2R11eN3Q81PHAHPM0SWW3BNQm53UDwS//Jv8L4CCVLM1bQ==}
engines: {node: '>=16.14.0'}
async-sema@3.1.1:
@@ -2312,8 +2214,8 @@ packages:
b4a@1.6.7:
resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
- babel-plugin-polyfill-corejs2@0.4.11:
- resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==}
+ babel-plugin-polyfill-corejs2@0.4.12:
+ resolution: {integrity: sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -2322,8 +2224,8 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-regenerator@0.6.2:
- resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==}
+ babel-plugin-polyfill-regenerator@0.6.3:
+ resolution: {integrity: sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -2343,6 +2245,9 @@ packages:
bindings@1.5.0:
resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
+ birpc@0.2.19:
+ resolution: {integrity: sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==}
+
boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
@@ -2356,8 +2261,8 @@ packages:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
- browserslist@4.24.0:
- resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==}
+ browserslist@4.24.2:
+ resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -2378,6 +2283,10 @@ packages:
builtins@5.1.0:
resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==}
+ bundle-name@4.1.0:
+ resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
+ engines: {node: '>=18'}
+
c12@1.11.2:
resolution: {integrity: sha512-oBs8a4uvSDO9dm8b7OCFW7+dgtVrwmwnrVXYzLm43ta7ep2jCn/0MhoUFygIWtxhyy6+/MG7/agvpY0U1Iemew==}
peerDependencies:
@@ -2386,6 +2295,14 @@ packages:
magicast:
optional: true
+ c12@2.0.1:
+ resolution: {integrity: sha512-Z4JgsKXHG37C6PYUtIxCfLJZvo6FyhHJoClwwb9ftUkLpPSkuYqn6Tr+vnaN8hymm0kIbcg6Ey3kv/Q71k5w/A==}
+ peerDependencies:
+ magicast: ^0.3.5
+ peerDependenciesMeta:
+ magicast:
+ optional: true
+
cac@6.7.14:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
@@ -2412,24 +2329,19 @@ packages:
caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
- caniuse-lite@1.0.30001667:
- resolution: {integrity: sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==}
+ caniuse-lite@1.0.30001684:
+ resolution: {integrity: sha512-G1LRwLIQjBQoyq0ZJGqGIJUXzJ8irpbjHLpVRXDvBEScFJ9b17sgK6vlx0GAJFE21okD7zXl08rRRUfq6HdoEQ==}
chai@4.5.0:
resolution: {integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==}
engines: {node: '>=4'}
- chalk@2.4.2:
- resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
- engines: {node: '>=4'}
-
chalk@4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
- chalk@5.3.0:
- resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
- engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+ change-case@5.4.4:
+ resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==}
check-error@1.0.3:
resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
@@ -2438,6 +2350,10 @@ packages:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
+ chokidar@4.0.1:
+ resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==}
+ engines: {node: '>= 14.16.0'}
+
chownr@2.0.0:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
engines: {node: '>=10'}
@@ -2446,8 +2362,8 @@ packages:
resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
engines: {node: '>=8'}
- ci-info@4.0.0:
- resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==}
+ ci-info@4.1.0:
+ resolution: {integrity: sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==}
engines: {node: '>=8'}
citty@0.1.6:
@@ -2476,16 +2392,10 @@ packages:
resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
- color-convert@1.9.3:
- resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
-
color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
- color-name@1.1.3:
- resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
-
color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
@@ -2503,6 +2413,9 @@ packages:
colord@2.9.3:
resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
+ colorette@1.4.0:
+ resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==}
+
commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
@@ -2536,11 +2449,14 @@ packages:
resolution: {integrity: sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==}
engines: {node: '>= 14'}
+ computeds@0.0.1:
+ resolution: {integrity: sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==}
+
concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
- confbox@0.1.7:
- resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==}
+ confbox@0.1.8:
+ resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
consola@3.2.3:
resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==}
@@ -2567,8 +2483,12 @@ packages:
resolution: {integrity: sha512-TG2hpqe4ELx54QER/S3HQ9SRVnQnGBtKUz5bLQWtYAQ+o6GpgMs6sYUvaiJjVxb+UXwhRhAEP3m7LbsIZ77Hmw==}
engines: {node: '>= 0.8'}
- core-js-compat@3.38.1:
- resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==}
+ copy-anything@3.0.5:
+ resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==}
+ engines: {node: '>=12.13'}
+
+ core-js-compat@3.39.0:
+ resolution: {integrity: sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==}
core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
@@ -2585,21 +2505,17 @@ packages:
create-require@1.1.1:
resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
- croner@8.1.2:
- resolution: {integrity: sha512-ypfPFcAXHuAZRCzo3vJL6ltENzniTjwe/qsLleH1V2/7SRDjgvRQyrLmumFTLmjFax4IuSxfGXEn79fozXcJog==}
+ croner@9.0.0:
+ resolution: {integrity: sha512-onMB0OkDjkXunhdW9htFjEhqrD54+M94i6ackoUkjHKbRnXdyEyKRelp4nJ1kAz32+s27jP1FsebpJCVl0BsvA==}
engines: {node: '>=18.0'}
- cross-spawn@7.0.3:
- resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
- engines: {node: '>= 8'}
+ cronstrue@2.52.0:
+ resolution: {integrity: sha512-NKgHbWkSZXJUcaBHSsyzC8eegD6bBd4O0oCI6XMIJ+y4Bq3v4w7sY3wfWoKPuVlq9pQHRB6od0lmKpIqi8TlKA==}
+ hasBin: true
- crossws@0.2.4:
- resolution: {integrity: sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg==}
- peerDependencies:
- uWebSockets.js: '*'
- peerDependenciesMeta:
- uWebSockets.js:
- optional: true
+ cross-spawn@7.0.6:
+ resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
+ engines: {node: '>= 8'}
crossws@0.3.1:
resolution: {integrity: sha512-HsZgeVYaG+b5zA+9PbIPGq4+J/CJynJuearykPsXx4V/eMhyQ5EDVg3Ak2FBZtVXCiOLu/U7IiwDHTr9MA+IKw==}
@@ -2637,21 +2553,21 @@ packages:
engines: {node: '>=4'}
hasBin: true
- cssnano-preset-default@6.1.2:
- resolution: {integrity: sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==}
- engines: {node: ^14 || ^16 || >=18.0}
+ cssnano-preset-default@7.0.6:
+ resolution: {integrity: sha512-ZzrgYupYxEvdGGuqL+JKOY70s7+saoNlHSCK/OGn1vB2pQK8KSET8jvenzItcY+kA7NoWvfbb/YhlzuzNKjOhQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- cssnano-utils@4.0.2:
- resolution: {integrity: sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==}
- engines: {node: ^14 || ^16 || >=18.0}
+ cssnano-utils@5.0.0:
+ resolution: {integrity: sha512-Uij0Xdxc24L6SirFr25MlwC2rCFX6scyUmuKpzI+JQ7cyqDEwD42fJ0xfB3yLfOnRDU5LKGgjQ9FA6LYh76GWQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- cssnano@6.1.2:
- resolution: {integrity: sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==}
- engines: {node: ^14 || ^16 || >=18.0}
+ cssnano@7.0.6:
+ resolution: {integrity: sha512-54woqx8SCbp8HwvNZYn68ZFAepuouZW4lTwiMVnBErM3VkO7/Sd4oTOt3Zz3bPx3kxQ36aISppyXj2Md4lg8bw==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
@@ -2662,9 +2578,6 @@ packages:
csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
- cuint@0.2.2:
- resolution: {integrity: sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==}
-
daisyui@2.52.0:
resolution: {integrity: sha512-LQTA5/IVXAJHBMFoeaEMfd7/akAFPPcdQPR3O9fzzcFiczneJFM73CFPnScmW2sOgn/D83cvkP854ep2T9OfTg==}
peerDependencies:
@@ -2686,19 +2599,28 @@ packages:
date-fns@3.6.0:
resolution: {integrity: sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==}
- db0@0.1.4:
- resolution: {integrity: sha512-Ft6eCwONYxlwLjBXSJxw0t0RYtA5gW9mq8JfBXn9TtC0nDPlqePAhpv9v4g9aONBi6JI1OXHTKKkUYGd+BOrCA==}
+ db0@0.2.1:
+ resolution: {integrity: sha512-BWSFmLaCkfyqbSEZBQINMVNjCVfrogi7GQ2RSy1tmtfK9OXlsup6lUMwLsqSD7FbAjD04eWFdXowSHHUp6SE/Q==}
peerDependencies:
- '@libsql/client': ^0.5.2
- better-sqlite3: ^9.4.3
- drizzle-orm: ^0.29.4
+ '@electric-sql/pglite': '*'
+ '@libsql/client': '*'
+ better-sqlite3: '*'
+ drizzle-orm: '*'
+ mysql2: '*'
peerDependenciesMeta:
+ '@electric-sql/pglite':
+ optional: true
'@libsql/client':
optional: true
better-sqlite3:
optional: true
drizzle-orm:
optional: true
+ mysql2:
+ optional: true
+
+ de-indent@1.0.2:
+ resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
@@ -2739,6 +2661,14 @@ packages:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
+ default-browser-id@5.0.0:
+ resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==}
+ engines: {node: '>=18'}
+
+ default-browser@5.2.1:
+ resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==}
+ engines: {node: '>=18'}
+
define-data-property@1.1.4:
resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
engines: {node: '>= 0.4'}
@@ -2747,6 +2677,10 @@ packages:
resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
engines: {node: '>=8'}
+ define-lazy-prop@3.0.0:
+ resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
+ engines: {node: '>=12'}
+
define-properties@1.2.1:
resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
engines: {node: '>= 0.4'}
@@ -2785,8 +2719,8 @@ packages:
resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
engines: {node: '>=8'}
- devalue@4.3.3:
- resolution: {integrity: sha512-UH8EL6H2ifcY8TbD2QsxwCC/pr5xSwPvv85LrLXVihmHVC3T3YqTCIwnR5ak0yO1KYqlxrPVOA/JVZJYPy2ATg==}
+ devalue@5.1.1:
+ resolution: {integrity: sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==}
didyoumean@1.2.2:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
@@ -2795,6 +2729,10 @@ packages:
resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ diff@7.0.0:
+ resolution: {integrity: sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==}
+ engines: {node: '>=0.3.1'}
+
dir-glob@3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
@@ -2820,15 +2758,15 @@ packages:
resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
engines: {node: '>= 4'}
- dompurify@3.1.7:
- resolution: {integrity: sha512-VaTstWtsneJY8xzy7DekmYWEOZcmzIe3Qb3zPd4STve1OBTa+e+WmS1ITQec1fZYXI3HCsOZZiSMpG6oxoWMWQ==}
+ dompurify@3.2.2:
+ resolution: {integrity: sha512-YMM+erhdZ2nkZ4fTNRTSI94mb7VG7uVF5vj5Zde7tImgnhZE3R6YW/IACGIHb2ux+QkEXMhe591N+5jWOmL4Zw==}
domutils@3.1.0:
resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==}
- dot-prop@8.0.2:
- resolution: {integrity: sha512-xaBe6ZT4DHPkg0k4Ytbvn5xoxgpG0jOS1dYxSOwAHPuNLjP3/OzN0gH55SrLqpx8cBfSaVt91lXYkApjb+nYdQ==}
- engines: {node: '>=16'}
+ dot-prop@9.0.0:
+ resolution: {integrity: sha512-1gxPBJpI/pcjQhKgIU91II6Wkay+dLcN3M6rf2uwP8hRur3HtQXjVrdAK3sjC0piaEuxzMwjXChcETiJl47lAQ==}
+ engines: {node: '>=18'}
dotenv@16.4.5:
resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
@@ -2848,8 +2786,8 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
- electron-to-chromium@1.5.32:
- resolution: {integrity: sha512-M+7ph0VGBQqqpTT2YrabjNKSQ2fEl9PVx6AK3N558gDH9NO8O6XN9SXXFWRo9u9PbEg/bWq+tjXQr+eXmxubCw==}
+ electron-to-chromium@1.5.67:
+ resolution: {integrity: sha512-nz88NNBsD7kQSAGGJyp8hS6xSPtWwqNogA0mjtc2nUYeEf3nURK9qpV18TuBdDmEDgVWotS8Wkzf+V52dSQ/LQ==}
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -2865,10 +2803,6 @@ packages:
resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
engines: {node: '>= 0.8'}
- enhanced-resolve@4.5.0:
- resolution: {integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==}
- engines: {node: '>=6.9.0'}
-
enhanced-resolve@5.17.1:
resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
engines: {node: '>=10.13.0'}
@@ -2877,15 +2811,17 @@ packages:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
- errno@0.1.8:
- resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
- hasBin: true
-
error-ex@1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
- es-abstract@1.23.3:
- resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
+ error-stack-parser-es@0.1.5:
+ resolution: {integrity: sha512-xHku1X40RO+fO8yJ8Wh2f2rZWVjqyhb1zgq1yZ8aZRQkv6OOKhKWRUaht3eSCUbAOBaKIgM+ykwFLE+QUxgGeg==}
+
+ errx@0.1.0:
+ resolution: {integrity: sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q==}
+
+ es-abstract@1.23.5:
+ resolution: {integrity: sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==}
engines: {node: '>= 0.4'}
es-define-property@1.0.0:
@@ -2896,6 +2832,9 @@ packages:
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
+ es-module-lexer@1.5.4:
+ resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==}
+
es-object-atoms@1.0.0:
resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
engines: {node: '>= 0.4'}
@@ -2907,30 +2846,25 @@ packages:
es-shim-unscopables@1.0.2:
resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
- es-to-primitive@1.2.1:
- resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
+ es-to-primitive@1.3.0:
+ resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
engines: {node: '>= 0.4'}
- esbuild@0.18.20:
- resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
- engines: {node: '>=12'}
- hasBin: true
-
- esbuild@0.19.12:
- resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==}
- engines: {node: '>=12'}
- hasBin: true
-
- esbuild@0.20.2:
- resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==}
- engines: {node: '>=12'}
- hasBin: true
-
esbuild@0.21.5:
resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
engines: {node: '>=12'}
hasBin: true
+ esbuild@0.23.1:
+ resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==}
+ engines: {node: '>=18'}
+ hasBin: true
+
+ esbuild@0.24.0:
+ resolution: {integrity: sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==}
+ engines: {node: '>=18'}
+ hasBin: true
+
escalade@3.2.0:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
@@ -3061,8 +2995,8 @@ packages:
peerDependencies:
eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
- eslint-plugin-tailwindcss@3.17.4:
- resolution: {integrity: sha512-gJAEHmCq2XFfUP/+vwEfEJ9igrPeZFg+skeMtsxquSQdxba9XRk5bn0Bp9jxG1VV9/wwPKi1g3ZjItu6MIjhNg==}
+ eslint-plugin-tailwindcss@3.17.5:
+ resolution: {integrity: sha512-8Mi7p7dm+mO1dHgRHHFdPu4RDTBk69Cn4P0B40vRQR+MrguUpwmKwhZy1kqYe3Km8/4nb+cyrCF+5SodOEmaow==}
engines: {node: '>=18.12.0'}
peerDependencies:
tailwindcss: ^3.4.0
@@ -3073,8 +3007,8 @@ packages:
peerDependencies:
eslint: '>=8.23.1'
- eslint-plugin-vue@9.28.0:
- resolution: {integrity: sha512-ShrihdjIhOTxs+MfWun6oJWuk+g/LAhN+CiuOl/jjkG3l0F2AuK5NMTaWqyvBgkFtpYmyks6P4603mLmhNJW8g==}
+ eslint-plugin-vue@9.31.0:
+ resolution: {integrity: sha512-aYMUCgivhz1o4tLkRHj5oq9YgYPM4/EJc0M7TAKRLCUA5OYxRLAhYEVD2nLtTwLyixEFI+/QXSvKU9ESZFgqjQ==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
@@ -3108,6 +3042,7 @@ packages:
eslint@8.57.1:
resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
hasBin: true
espree@9.6.1:
@@ -3159,6 +3094,10 @@ packages:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'}
+ execa@7.2.0:
+ resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==}
+ engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
+
execa@8.0.1:
resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
engines: {node: '>=16.17'}
@@ -3185,8 +3124,11 @@ packages:
fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
- fast-uri@3.0.2:
- resolution: {integrity: sha512-GR6f0hD7XXyNJa25Tb9BuIdN0tdr+0BMi6/CJPH3wJO1JjNG3n/VsSw38AwRdKZABm8lGbPfakLRkYzx2V9row==}
+ fast-npm-meta@0.2.2:
+ resolution: {integrity: sha512-E+fdxeaOQGo/CMWc9f4uHFfgUPJRAu7N3uB8GBvB3SDPAIWJK4GKyYhkAGFq+GYrcbKNfQIz5VVQyJnDuPPCrg==}
+
+ fast-uri@3.0.3:
+ resolution: {integrity: sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==}
fastparse@1.1.2:
resolution: {integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==}
@@ -3194,8 +3136,8 @@ packages:
fastq@1.17.1:
resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
- fdir@6.4.0:
- resolution: {integrity: sha512-3oB133prH1o4j/L5lLW7uOCF1PlD+/It2L0eL/iAqWMB91RBbqTewABqxhj0ibBd90EEmWZq7ntIWzVaWcXTGQ==}
+ fdir@6.4.2:
+ resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==}
peerDependencies:
picomatch: ^3 || ^4
peerDependenciesMeta:
@@ -3228,8 +3170,8 @@ packages:
resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
engines: {node: ^10.12.0 || >=12.0.0}
- flatted@3.3.1:
- resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
+ flatted@3.3.2:
+ resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==}
follow-redirects@1.15.9:
resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
@@ -3310,6 +3252,10 @@ packages:
get-port-please@3.1.2:
resolution: {integrity: sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==}
+ get-stream@6.0.1:
+ resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
+ engines: {node: '>=10'}
+
get-stream@8.0.1:
resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
engines: {node: '>=16'}
@@ -3351,10 +3297,9 @@ packages:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
deprecated: Glob versions prior to v9 are no longer supported
- glob@8.1.0:
- resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==}
- engines: {node: '>=12'}
- deprecated: Glob versions prior to v9 are no longer supported
+ global-directory@4.0.1:
+ resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==}
+ engines: {node: '>=18'}
globals@11.12.0:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
@@ -3372,10 +3317,6 @@ packages:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
- globby@13.2.2:
- resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
globby@14.0.2:
resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==}
engines: {node: '>=18'}
@@ -3399,10 +3340,6 @@ packages:
has-bigints@1.0.2:
resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
- has-flag@3.0.0:
- resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
- engines: {node: '>=4'}
-
has-flag@4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
@@ -3432,6 +3369,10 @@ packages:
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
engines: {node: '>= 0.4'}
+ he@1.2.0:
+ resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
+ hasBin: true
+
hookable@5.5.3:
resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
@@ -3470,9 +3411,17 @@ packages:
resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
engines: {node: '>= 6'}
+ https-proxy-agent@7.0.5:
+ resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==}
+ engines: {node: '>= 14'}
+
httpxy@0.1.5:
resolution: {integrity: sha512-hqLDO+rfststuyEUTWObQK6zHEEmZ/kaIP2/zclGGZn6X8h/ESTWg+WKecQ/e5k4nPswjzZD+q2VqZIbr15CoQ==}
+ human-signals@4.3.1:
+ resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==}
+ engines: {node: '>=14.18.0'}
+
human-signals@5.0.0:
resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
engines: {node: '>=16.17.0'}
@@ -3487,6 +3436,13 @@ packages:
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
+ ignore@6.0.2:
+ resolution: {integrity: sha512-InwqeHHN2XpumIkMvpl/DCJVrAHgCsG5+cn1XlnLWGwtZBm8QJfSusItfrwx81CTp5agNZqpKU2J/ccC5nGT4A==}
+ engines: {node: '>= 4'}
+
+ image-meta@0.2.1:
+ resolution: {integrity: sha512-K6acvFaelNxx8wc2VjbIzXKDVB0Khs0QT35U6NkGfTdCmjLNcO2945m7RFNR9/RPVFm48hq7QPzK8uGH18HCGw==}
+
import-fresh@3.3.0:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
@@ -3499,6 +3455,10 @@ packages:
resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
engines: {node: '>=8'}
+ index-to-position@0.1.2:
+ resolution: {integrity: sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==}
+ engines: {node: '>=18'}
+
inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
@@ -3512,12 +3472,16 @@ packages:
ini@1.3.8:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
+ ini@4.1.1:
+ resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
internal-slot@1.0.7:
resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
engines: {node: '>= 0.4'}
- intl-messageformat@10.5.14:
- resolution: {integrity: sha512-IjC6sI0X7YRjjyVH9aUgdftcmZK7WXdHeil4KwbjDnRWjnVitKpAx3rr6t6di1joFp5188VqKcobOPA6mCLG/w==}
+ intl-messageformat@10.7.7:
+ resolution: {integrity: sha512-F134jIoeYMro/3I0h08D0Yt4N9o9pjddU/4IIxMMURqbAtI2wu70X8hvG1V48W49zXHXv3RKSF/po+0fDfsGjA==}
ioredis@5.4.1:
resolution: {integrity: sha512-2YZsvl7jopIa1gaePkeMtd9rAcSjOOjPtpcLlOeusyO+XH2SK5ZcT+UCrElPP+WVIInh2TzeI4XW9ENaSLVVHA==}
@@ -3536,6 +3500,10 @@ packages:
is-arrayish@0.3.2:
resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
+ is-async-function@2.0.0:
+ resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
+ engines: {node: '>= 0.4'}
+
is-bigint@1.0.4:
resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
@@ -3551,8 +3519,8 @@ packages:
resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==}
engines: {node: '>=6'}
- is-bun-module@1.2.1:
- resolution: {integrity: sha512-AmidtEM6D6NmUiLOvvU7+IePxjEjOzra2h0pSrsfSAcXwl/83zLLXDByafUJy9k/rKK0pvXMLdwKwGHlX2Ke6Q==}
+ is-bun-module@1.3.0:
+ resolution: {integrity: sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==}
is-callable@1.2.7:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
@@ -3584,6 +3552,10 @@ packages:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
+ is-finalizationregistry@1.1.0:
+ resolution: {integrity: sha512-qfMdqbAQEwBw78ZyReKnlA8ezmPdb9BemzIIip/JkjaZUhitfXDkkr+3QTboW0JrSXT1QWyYShpvnNHGZ4c4yA==}
+ engines: {node: '>= 0.4'}
+
is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
@@ -3601,6 +3573,14 @@ packages:
engines: {node: '>=14.16'}
hasBin: true
+ is-installed-globally@1.0.0:
+ resolution: {integrity: sha512-K55T22lfpQ63N4KEN57jZUAaAYqYHEe8veb/TycJRk9DdSCLLcovXz/mL6mOnhQaZsQGwPhuFopdQIlqGSEjiQ==}
+ engines: {node: '>=18'}
+
+ is-map@2.0.3:
+ resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
+ engines: {node: '>= 0.4'}
+
is-module@1.0.0:
resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
@@ -3624,6 +3604,10 @@ packages:
resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
engines: {node: '>=8'}
+ is-path-inside@4.0.0:
+ resolution: {integrity: sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==}
+ engines: {node: '>=12'}
+
is-reference@1.2.1:
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
@@ -3635,6 +3619,10 @@ packages:
resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==}
engines: {node: '>=0.10.0'}
+ is-set@2.0.3:
+ resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
+ engines: {node: '>= 0.4'}
+
is-shared-array-buffer@1.0.3:
resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
engines: {node: '>= 0.4'}
@@ -3662,9 +3650,21 @@ packages:
resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
engines: {node: '>= 0.4'}
+ is-weakmap@2.0.2:
+ resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
+ engines: {node: '>= 0.4'}
+
is-weakref@1.0.2:
resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
+ is-weakset@2.0.3:
+ resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
+ engines: {node: '>= 0.4'}
+
+ is-what@4.1.16:
+ resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==}
+ engines: {node: '>=12.13'}
+
is-wsl@2.2.0:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
engines: {node: '>=8'}
@@ -3701,15 +3701,19 @@ packages:
resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
hasBin: true
- jiti@2.2.1:
- resolution: {integrity: sha512-weIl/Bv3G0J3UKamLxEA2G+FfQ33Z1ZkQJGPjKFV21zQdKWu2Pi6o4elpj2uEl5XdFJZ9xzn1fsanWTFSt45zw==}
+ jiti@2.4.1:
+ resolution: {integrity: sha512-yPBThwecp1wS9DmoA4x4KR2h3QoslacnDR8ypuFM962kI4/456Iy1oHx2RAgh4jfZNdn0bctsdadceiBUgpU1g==}
hasBin: true
+ js-levenshtein@1.1.6:
+ resolution: {integrity: sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==}
+ engines: {node: '>=0.10.0'}
+
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
- js-tokens@9.0.0:
- resolution: {integrity: sha512-WriZw1luRMlmV3LGJaR6QOJjWwgLUTf89OwT2lUOyjX2dJGBwgmIkbcz+7WFZjrZM635JOIR517++e/67CP9dQ==}
+ js-tokens@9.0.1:
+ resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
js-yaml@4.1.0:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
@@ -3765,6 +3769,10 @@ packages:
keyv@4.5.4:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
+ kleur@3.0.3:
+ resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
+ engines: {node: '>=6'}
+
klona@2.0.6:
resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
engines: {node: '>= 8'}
@@ -3794,6 +3802,9 @@ packages:
kolorist@1.8.0:
resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
+ launch-editor@2.9.1:
+ resolution: {integrity: sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w==}
+
lazystream@1.0.1:
resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
engines: {node: '>= 0.6.3'}
@@ -3828,8 +3839,8 @@ packages:
resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==}
engines: {node: '>=14'}
- local-pkg@0.5.0:
- resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==}
+ local-pkg@0.5.1:
+ resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==}
engines: {node: '>=14'}
locate-path@5.0.0:
@@ -3852,6 +3863,9 @@ packages:
lodash.isarguments@3.1.0:
resolution: {integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==}
+ lodash.isequal@4.5.0:
+ resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
+
lodash.isplainobject@4.0.6:
resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
@@ -3882,15 +3896,15 @@ packages:
lunr@2.3.9:
resolution: {integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==}
- magic-string-ast@0.6.2:
- resolution: {integrity: sha512-oN3Bcd7ZVt+0VGEs7402qR/tjgjbM7kPlH/z7ufJnzTLVBzXJITRHOJiwMmmYMgZfdoWQsfQcY+iKlxiBppnMA==}
+ magic-string-ast@0.6.3:
+ resolution: {integrity: sha512-C9sgUzVZtUtzCBoMdYtwrIRQ4IucGRFGgdhkjL7PXsVfPYmTuWtewqzk7dlipaCMWH/gOYehW9rgMoa4Oebtpw==}
engines: {node: '>=16.14.0'}
magic-string@0.25.9:
resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
- magic-string@0.30.11:
- resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==}
+ magic-string@0.30.14:
+ resolution: {integrity: sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==}
magicast@0.3.5:
resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==}
@@ -3916,10 +3930,6 @@ packages:
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
engines: {node: '>= 0.6'}
- memory-fs@0.5.0:
- resolution: {integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==}
- engines: {node: '>=4.3.0 <5.0.0 || >=5.10'}
-
merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
@@ -3948,11 +3958,6 @@ packages:
engines: {node: '>=4'}
hasBin: true
- mime@2.5.2:
- resolution: {integrity: sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==}
- engines: {node: '>=4.0.0'}
- hasBin: true
-
mime@3.0.0:
resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==}
engines: {node: '>=10.0.0'}
@@ -3975,9 +3980,6 @@ packages:
resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==}
hasBin: true
- minimatch@3.0.8:
- resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==}
-
minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
@@ -4012,6 +4014,9 @@ packages:
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
engines: {node: '>= 8'}
+ mitt@3.0.1:
+ resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
+
mkdirp@0.5.6:
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
@@ -4021,29 +4026,36 @@ packages:
engines: {node: '>=10'}
hasBin: true
- mlly@1.7.1:
- resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==}
+ mlly@1.7.3:
+ resolution: {integrity: sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==}
mri@1.2.0:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
engines: {node: '>=4'}
+ mrmime@2.0.0:
+ resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
+ engines: {node: '>=10'}
+
ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
+ muggle-string@0.4.1:
+ resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
+
mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
- nanoid@3.3.7:
- resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
+ nanoid@3.3.8:
+ resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- nanoid@5.0.7:
- resolution: {integrity: sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ==}
+ nanoid@5.0.9:
+ resolution: {integrity: sha512-Aooyr6MXU6HpvvWXKoVoXwKMs/KyVakWwg7xQfv5/S/RIgJMy0Ifa45H9qqYy7pTCszrHzP21Uk4PZq2HpEM8Q==}
engines: {node: ^18 || >=20}
hasBin: true
@@ -4054,8 +4066,8 @@ packages:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
- nitropack@2.9.7:
- resolution: {integrity: sha512-aKXvtNrWkOCMsQbsk4A0qQdBjrJ1ZcvwlTQevI/LAgLWLYc5L7Q/YiYxGLal4ITyNSlzir1Cm1D2ZxnYhmpMEw==}
+ nitropack@2.10.4:
+ resolution: {integrity: sha512-sJiG/MIQlZCVSw2cQrFG1H6mLeSqHlYfFerRjLKz69vUfdu0EL2l0WdOxlQbzJr3mMv/l4cOlCCLzVRzjzzF/g==}
engines: {node: ^16.11.0 || >=17.0.0}
hasBin: true
peerDependencies:
@@ -4083,8 +4095,8 @@ packages:
resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
engines: {node: '>= 6.13.0'}
- node-gyp-build@4.8.2:
- resolution: {integrity: sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==}
+ node-gyp-build@4.8.4:
+ resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==}
hasBin: true
node-releases@2.0.18:
@@ -4121,13 +4133,13 @@ packages:
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
- nuxi@3.14.0:
- resolution: {integrity: sha512-MhG4QR6D95jQxhnwKfdKXulZ8Yqy1nbpwbotbxY5IcabOzpEeTB8hYn2BFkmYdMUB0no81qpv2ldZmVCT9UsnQ==}
+ nuxi@3.16.0:
+ resolution: {integrity: sha512-t9m4zTq44R0/icuzQXJHEyPRM3YbgTPMpytyb6YW2LOL/3mwZ3Bmte1FIlCoigzDvxBJRbcchZGc689+Syyu8w==}
engines: {node: ^16.10.0 || >=18.0.0}
hasBin: true
- nuxt@3.7.4:
- resolution: {integrity: sha512-voXN2kheEpi7DJd0hkikfLuA41UiP9IwDDol65dvoJiHnRseWfaw1MyJl6FLHHDHwRzisX9QXWIyMfa9YF4nGg==}
+ nuxt@3.12.4:
+ resolution: {integrity: sha512-/ddvyc2kgYYIN2UEjP8QIz48O/W3L0lZm7wChIDbOCj0vF/yLLeZHBaTb3aNvS9Hwp269nfjrm8j/mVxQK4RhA==}
engines: {node: ^14.18.0 || >=16.10.0}
hasBin: true
peerDependencies:
@@ -4152,8 +4164,8 @@ packages:
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
engines: {node: '>= 6'}
- object-inspect@1.13.2:
- resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==}
+ object-inspect@1.13.3:
+ resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==}
engines: {node: '>= 0.4'}
object-keys@1.1.1:
@@ -4176,8 +4188,8 @@ packages:
resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==}
engines: {node: '>= 0.4'}
- ofetch@1.4.0:
- resolution: {integrity: sha512-MuHgsEhU6zGeX+EMh+8mSMrYTnsqJQQrpM00Q6QHMKNqQ0bKy0B43tk8tL1wg+CnsSTy1kg4Ir2T5Ig6rD+dfQ==}
+ ofetch@1.4.1:
+ resolution: {integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==}
ohash@1.1.4:
resolution: {integrity: sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==}
@@ -4196,6 +4208,10 @@ packages:
only@0.0.2:
resolution: {integrity: sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==}
+ open@10.1.0:
+ resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==}
+ engines: {node: '>=18'}
+
open@7.4.2:
resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==}
engines: {node: '>=8'}
@@ -4204,9 +4220,11 @@ packages:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
- openapi-typescript@6.7.6:
- resolution: {integrity: sha512-c/hfooPx+RBIOPM09GSxABOZhYPblDoyaGhqBkD/59vtpN21jEuWKDlM0KYTvqJVlSYjKs0tBcIdeXKChlSPtw==}
+ openapi-typescript@7.4.3:
+ resolution: {integrity: sha512-xTIjMIIOv9kNhsr8JxaC00ucbIY/6ZwuJPJBZMSh5FA2dicZN5uM805DWVJojXdom8YI4AQTavPDPHMx/3g0vQ==}
hasBin: true
+ peerDependencies:
+ typescript: ^5.x
optionator@0.9.4:
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
@@ -4239,8 +4257,8 @@ packages:
package-json-from-dist@1.0.1:
resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
- package-manager-detector@0.2.0:
- resolution: {integrity: sha512-E385OSk9qDcXhcM9LNSe4sdhx8a9mAPrZ4sMLW+tmxl5ZuGtPUcdFu+MPP2jbgiWAZ6Pfe5soGFMd+0Db5Vrog==}
+ package-manager-detector@0.2.5:
+ resolution: {integrity: sha512-3dS7y28uua+UDbRCLBqltMBrbI+A5U2mI9YuxHRxIWYmLj3DwntEBmERYzIAQ4DMeuCUOBSak7dBHHoXKpOTYQ==}
parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
@@ -4254,6 +4272,10 @@ packages:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
+ parse-json@8.1.0:
+ resolution: {integrity: sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==}
+ engines: {node: '>=18'}
+
parse-path@7.0.0:
resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==}
@@ -4264,6 +4286,9 @@ packages:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
+ path-browserify@1.0.1:
+ resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
+
path-exists@4.0.0:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'}
@@ -4307,8 +4332,8 @@ packages:
perfect-debounce@1.0.0:
resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
- picocolors@1.1.0:
- resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==}
+ picocolors@1.1.1:
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
@@ -4322,12 +4347,12 @@ packages:
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
engines: {node: '>=0.10.0'}
- pinia@2.2.4:
- resolution: {integrity: sha512-K7ZhpMY9iJ9ShTC0cR2+PnxdQRuwVIsXDO/WIEV/RnMC/vmSoKDTKW/exNQYPI+4ij10UjXqdNiEHwn47McANQ==}
+ pinia@2.2.8:
+ resolution: {integrity: sha512-NRTYy2g+kju5tBRe0oNlriZIbMNvma8ZJrpHsp3qudyiMEA8jMmPPKQ2QMHg0Oc4BkUyQYWagACabrwriCK9HQ==}
peerDependencies:
'@vue/composition-api': ^1.4.0
typescript: '>=4.4.4'
- vue: ^2.6.14 || ^3.3.0
+ vue: ^2.6.14 || ^3.5.11
peerDependenciesMeta:
'@vue/composition-api':
optional: true
@@ -4338,8 +4363,8 @@ packages:
resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
engines: {node: '>= 6'}
- pkg-types@1.2.0:
- resolution: {integrity: sha512-+ifYuSSqOQ8CqP4MbZA5hDpb97n3E8SVWdJe+Wms9kj745lmd3b7EZJiqvmLwAlmRfjrI7Hi5z3kdBJ93lFNPA==}
+ pkg-types@1.2.1:
+ resolution: {integrity: sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==}
pluralize@8.0.0:
resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
@@ -4353,51 +4378,48 @@ packages:
resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
engines: {node: '>= 0.4'}
- postcss-calc@9.0.1:
- resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-calc@10.0.2:
+ resolution: {integrity: sha512-DT/Wwm6fCKgpYVI7ZEWuPJ4az8hiEHtCUeYjZXqU7Ou4QqYh1Df2yCQ7Ca6N7xqKPFkxN3fhf+u9KSoOCJNAjg==}
+ engines: {node: ^18.12 || ^20.9 || >=22.0}
peerDependencies:
- postcss: ^8.2.2
+ postcss: ^8.4.38
- postcss-colormin@6.1.0:
- resolution: {integrity: sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-colormin@7.0.2:
+ resolution: {integrity: sha512-YntRXNngcvEvDbEjTdRWGU606eZvB5prmHG4BF0yLmVpamXbpsRJzevyy6MZVyuecgzI2AWAlvFi8DAeCqwpvA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-convert-values@6.1.0:
- resolution: {integrity: sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-convert-values@7.0.4:
+ resolution: {integrity: sha512-e2LSXPqEHVW6aoGbjV9RsSSNDO3A0rZLCBxN24zvxF25WknMPpX8Dm9UxxThyEbaytzggRuZxaGXqaOhxQ514Q==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-discard-comments@6.0.2:
- resolution: {integrity: sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-discard-comments@7.0.3:
+ resolution: {integrity: sha512-q6fjd4WU4afNhWOA2WltHgCbkRhZPgQe7cXF74fuVB/ge4QbM9HEaOIzGSiMvM+g/cOsNAUGdf2JDzqA2F8iLA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-discard-duplicates@6.0.3:
- resolution: {integrity: sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-discard-duplicates@7.0.1:
+ resolution: {integrity: sha512-oZA+v8Jkpu1ct/xbbrntHRsfLGuzoP+cpt0nJe5ED2FQF8n8bJtn7Bo28jSmBYwqgqnqkuSXJfSUEE7if4nClQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-discard-empty@6.0.3:
- resolution: {integrity: sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-discard-empty@7.0.0:
+ resolution: {integrity: sha512-e+QzoReTZ8IAwhnSdp/++7gBZ/F+nBq9y6PomfwORfP7q9nBpK5AMP64kOt0bA+lShBFbBDcgpJ3X4etHg4lzA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-discard-overridden@6.0.2:
- resolution: {integrity: sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-discard-overridden@7.0.0:
+ resolution: {integrity: sha512-GmNAzx88u3k2+sBTZrJSDauR0ccpE24omTQCVmaTTZFz1du6AasspjaUPMJ2ud4RslZpoFKyf+6MSPETLojc6w==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-import-resolver@2.0.0:
- resolution: {integrity: sha512-y001XYgGvVwgxyxw9J1a5kqM/vtmIQGzx34g0A0Oy44MFcy/ZboZw1hu/iN3VYFjSTRzbvd7zZJJz0Kh0AGkTw==}
-
postcss-import@15.1.0:
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
engines: {node: '>=14.0.0'}
@@ -4422,39 +4444,39 @@ packages:
ts-node:
optional: true
- postcss-merge-longhand@6.0.5:
- resolution: {integrity: sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-merge-longhand@7.0.4:
+ resolution: {integrity: sha512-zer1KoZA54Q8RVHKOY5vMke0cCdNxMP3KBfDerjH/BYHh4nCIh+1Yy0t1pAEQF18ac/4z3OFclO+ZVH8azjR4A==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-merge-rules@6.1.1:
- resolution: {integrity: sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-merge-rules@7.0.4:
+ resolution: {integrity: sha512-ZsaamiMVu7uBYsIdGtKJ64PkcQt6Pcpep/uO90EpLS3dxJi6OXamIobTYcImyXGoW0Wpugh7DSD3XzxZS9JCPg==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-minify-font-values@6.1.0:
- resolution: {integrity: sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-minify-font-values@7.0.0:
+ resolution: {integrity: sha512-2ckkZtgT0zG8SMc5aoNwtm5234eUx1GGFJKf2b1bSp8UflqaeFzR50lid4PfqVI9NtGqJ2J4Y7fwvnP/u1cQog==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-minify-gradients@6.0.3:
- resolution: {integrity: sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-minify-gradients@7.0.0:
+ resolution: {integrity: sha512-pdUIIdj/C93ryCHew0UgBnL2DtUS3hfFa5XtERrs4x+hmpMYGhbzo6l/Ir5de41O0GaKVpK1ZbDNXSY6GkXvtg==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-minify-params@6.1.0:
- resolution: {integrity: sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-minify-params@7.0.2:
+ resolution: {integrity: sha512-nyqVLu4MFl9df32zTsdcLqCFfE/z2+f8GE1KHPxWOAmegSo6lpV2GNy5XQvrzwbLmiU7d+fYay4cwto1oNdAaQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-minify-selectors@6.0.4:
- resolution: {integrity: sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-minify-selectors@7.0.4:
+ resolution: {integrity: sha512-JG55VADcNb4xFCf75hXkzc1rNeURhlo7ugf6JjiiKRfMsKlDzN9CXHZDyiG6x/zGchpjQS+UAgb1d4nqXqOpmA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
@@ -4464,81 +4486,81 @@ packages:
peerDependencies:
postcss: ^8.2.14
- postcss-nesting@12.1.5:
- resolution: {integrity: sha512-N1NgI1PDCiAGWPTYrwqm8wpjv0bgDmkYHH72pNsqTCv9CObxjxftdYu6AKtGN+pnJa7FQjMm3v4sp8QJbFsYdQ==}
- engines: {node: ^14 || ^16 || >=18}
+ postcss-nesting@13.0.1:
+ resolution: {integrity: sha512-VbqqHkOBOt4Uu3G8Dm8n6lU5+9cJFxiuty9+4rcoyRPO9zZS1JIs6td49VIoix3qYqELHlJIn46Oih9SAKo+yQ==}
+ engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
- postcss-normalize-charset@6.0.2:
- resolution: {integrity: sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-charset@7.0.0:
+ resolution: {integrity: sha512-ABisNUXMeZeDNzCQxPxBCkXexvBrUHV+p7/BXOY+ulxkcjUZO0cp8ekGBwvIh2LbCwnWbyMPNJVtBSdyhM2zYQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-normalize-display-values@6.0.2:
- resolution: {integrity: sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-display-values@7.0.0:
+ resolution: {integrity: sha512-lnFZzNPeDf5uGMPYgGOw7v0BfB45+irSRz9gHQStdkkhiM0gTfvWkWB5BMxpn0OqgOQuZG/mRlZyJxp0EImr2Q==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-normalize-positions@6.0.2:
- resolution: {integrity: sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-positions@7.0.0:
+ resolution: {integrity: sha512-I0yt8wX529UKIGs2y/9Ybs2CelSvItfmvg/DBIjTnoUSrPxSV7Z0yZ8ShSVtKNaV/wAY+m7bgtyVQLhB00A1NQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-normalize-repeat-style@6.0.2:
- resolution: {integrity: sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-repeat-style@7.0.0:
+ resolution: {integrity: sha512-o3uSGYH+2q30ieM3ppu9GTjSXIzOrRdCUn8UOMGNw7Af61bmurHTWI87hRybrP6xDHvOe5WlAj3XzN6vEO8jLw==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-normalize-string@6.0.2:
- resolution: {integrity: sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-string@7.0.0:
+ resolution: {integrity: sha512-w/qzL212DFVOpMy3UGyxrND+Kb0fvCiBBujiaONIihq7VvtC7bswjWgKQU/w4VcRyDD8gpfqUiBQ4DUOwEJ6Qg==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-normalize-timing-functions@6.0.2:
- resolution: {integrity: sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-timing-functions@7.0.0:
+ resolution: {integrity: sha512-tNgw3YV0LYoRwg43N3lTe3AEWZ66W7Dh7lVEpJbHoKOuHc1sLrzMLMFjP8SNULHaykzsonUEDbKedv8C+7ej6g==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-normalize-unicode@6.1.0:
- resolution: {integrity: sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-unicode@7.0.2:
+ resolution: {integrity: sha512-ztisabK5C/+ZWBdYC+Y9JCkp3M9qBv/XFvDtSw0d/XwfT3UaKeW/YTm/MD/QrPNxuecia46vkfEhewjwcYFjkg==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-normalize-url@6.0.2:
- resolution: {integrity: sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-url@7.0.0:
+ resolution: {integrity: sha512-+d7+PpE+jyPX1hDQZYG+NaFD+Nd2ris6r8fPTBAjE8z/U41n/bib3vze8x7rKs5H1uEw5ppe9IojewouHk0klQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-normalize-whitespace@6.0.2:
- resolution: {integrity: sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-whitespace@7.0.0:
+ resolution: {integrity: sha512-37/toN4wwZErqohedXYqWgvcHUGlT8O/m2jVkAfAe9Bd4MzRqlBmXrJRePH0e9Wgnz2X7KymTgTOaaFizQe3AQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-ordered-values@6.0.2:
- resolution: {integrity: sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-ordered-values@7.0.1:
+ resolution: {integrity: sha512-irWScWRL6nRzYmBOXReIKch75RRhNS86UPUAxXdmW/l0FcAsg0lvAXQCby/1lymxn/o0gVa6Rv/0f03eJOwHxw==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-reduce-initial@6.1.0:
- resolution: {integrity: sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-reduce-initial@7.0.2:
+ resolution: {integrity: sha512-pOnu9zqQww7dEKf62Nuju6JgsW2V0KRNBHxeKohU+JkHd/GAH5uvoObqFLqkeB2n20mr6yrlWDvo5UBU5GnkfA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-reduce-transforms@6.0.2:
- resolution: {integrity: sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-reduce-transforms@7.0.0:
+ resolution: {integrity: sha512-pnt1HKKZ07/idH8cpATX/ujMbtOGhUfE+m8gbqwJE05aTaNw8gbo34a2e3if0xc0dlu75sUOiqvwCGY3fzOHew==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
@@ -4550,29 +4572,27 @@ packages:
resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
engines: {node: '>=4'}
- postcss-svgo@6.0.3:
- resolution: {integrity: sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==}
- engines: {node: ^14 || ^16 || >= 18}
+ postcss-selector-parser@7.0.0:
+ resolution: {integrity: sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==}
+ engines: {node: '>=4'}
+
+ postcss-svgo@7.0.1:
+ resolution: {integrity: sha512-0WBUlSL4lhD9rA5k1e5D8EN5wCEyZD6HJk0jIvRxl+FDVOMlJ7DePHYWGGVc5QRqrJ3/06FTXM0bxjmJpmTPSA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >= 18}
peerDependencies:
postcss: ^8.4.31
- postcss-unique-selectors@6.0.4:
- resolution: {integrity: sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-unique-selectors@7.0.3:
+ resolution: {integrity: sha512-J+58u5Ic5T1QjP/LDV9g3Cx4CNOgB5vz+kM6+OxHHhFACdcDeKhBXjQmB7fnIZM12YSTvsL0Opwco83DmacW2g==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-url@10.1.3:
- resolution: {integrity: sha512-FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw==}
- engines: {node: '>=10'}
- peerDependencies:
- postcss: ^8.0.0
-
postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- postcss@8.4.47:
- resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
+ postcss@8.4.49:
+ resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
engines: {node: ^10 || ^12 || >=14}
prelude-ls@1.2.1:
@@ -4583,8 +4603,8 @@ packages:
resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
engines: {node: '>=6.0.0'}
- prettier@3.3.3:
- resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==}
+ prettier@3.4.1:
+ resolution: {integrity: sha512-G+YdqtITVZmOJje6QkXQWzl3fSfMxFwm1tjTyo9exhkmWSqC4Yhd1+lug++IlR2mvRVAxEDDWYkQdeSztajqgg==}
engines: {node: '>=14'}
hasBin: true
@@ -4607,12 +4627,13 @@ packages:
resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
engines: {node: '>= 0.6.0'}
+ prompts@2.4.2:
+ resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
+ engines: {node: '>= 6'}
+
protocols@2.0.1:
resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==}
- prr@1.0.1:
- resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
-
punycode.js@2.3.1:
resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==}
engines: {node: '>=6'}
@@ -4672,6 +4693,10 @@ packages:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
+ readdirp@4.0.2:
+ resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==}
+ engines: {node: '>= 14.16.0'}
+
redis-errors@1.2.0:
resolution: {integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==}
engines: {node: '>=4'}
@@ -4680,6 +4705,10 @@ packages:
resolution: {integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==}
engines: {node: '>=4'}
+ reflect.getprototypeof@1.0.7:
+ resolution: {integrity: sha512-bMvFGIUKlc/eSfXNX+aZ+EL95/EgZzuwA0OBPTbZZDEJw/0AkentjMuM1oiRfwHrshqk4RzdgiTg5CcDalXN5g==}
+ engines: {node: '>= 0.4'}
+
regenerate-unicode-properties@10.2.0:
resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==}
engines: {node: '>=4'}
@@ -4705,15 +4734,15 @@ packages:
resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
engines: {node: '>=8'}
- regexpu-core@6.1.1:
- resolution: {integrity: sha512-k67Nb9jvwJcJmVpw0jPttR1/zVfnKf8Km0IPatrU/zJ5XeG3+Slx0xLXs9HByJSzXzrlz5EDvN6yLNMDc2qdnw==}
+ regexpu-core@6.2.0:
+ resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==}
engines: {node: '>=4'}
regjsgen@0.8.0:
resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
- regjsparser@0.11.0:
- resolution: {integrity: sha512-vTbzVAjQDzwQdKuvj7qEq6OlAprCjE656khuGQ4QaBLg7abQ9I9ISpmLuc6inWe7zP75AECjqUa4g4sdQvOXhg==}
+ regjsparser@0.12.0:
+ resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==}
hasBin: true
replace-in-file@6.3.5:
@@ -4755,6 +4784,9 @@ packages:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
+ rfdc@1.4.1:
+ resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
+
rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
deprecated: Rimraf versions prior to v4 are no longer supported
@@ -4775,16 +4807,15 @@ packages:
engines: {node: '>=10.0.0'}
hasBin: true
- rollup@3.29.5:
- resolution: {integrity: sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==}
- engines: {node: '>=14.18.0', npm: '>=8.0.0'}
- hasBin: true
-
- rollup@4.24.0:
- resolution: {integrity: sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg==}
+ rollup@4.27.4:
+ resolution: {integrity: sha512-RLKxqHEMjh/RGLsDxAEsaLO3mWgyoU6x9w6n1ikAzet4B3gI2/3yP6PWY2p9QzRTh6MfEIXB3MwsOY0Iv3vNrw==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
+ run-applescript@7.0.0:
+ resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
+ engines: {node: '>=18'}
+
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
@@ -4860,6 +4891,10 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
+ shell-quote@1.8.2:
+ resolution: {integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==}
+ engines: {node: '>= 0.4'}
+
side-channel@1.0.6:
resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
engines: {node: '>= 0.4'}
@@ -4874,17 +4909,27 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
+ simple-git@3.27.0:
+ resolution: {integrity: sha512-ivHoFS9Yi9GY49ogc6/YAi3Fl9ROnF4VyubNylgCkA+RVqLaKWnDSzXOVzya8csELIaWaYNutsEuAhZrtOjozA==}
+
simple-swizzle@0.2.2:
resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
+ sirv@2.0.4:
+ resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
+ engines: {node: '>= 10'}
+
+ sirv@3.0.0:
+ resolution: {integrity: sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==}
+ engines: {node: '>=18'}
+
+ sisteransi@1.0.5:
+ resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
+
slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
- slash@4.0.0:
- resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
- engines: {node: '>=12'}
-
slash@5.1.0:
resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
engines: {node: '>=14.16'}
@@ -4927,6 +4972,10 @@ packages:
spdx-license-ids@3.0.20:
resolution: {integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==}
+ speakingurl@14.0.1:
+ resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
+ engines: {node: '>=0.10.0'}
+
stackback@0.0.2:
resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
@@ -4941,11 +4990,11 @@ packages:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
- std-env@3.7.0:
- resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==}
+ std-env@3.8.0:
+ resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==}
- streamx@2.20.1:
- resolution: {integrity: sha512-uTa0mU6WUC65iUvzKH4X9hEdvSW7rbPxPtwfWiLMSj3qTdQbAiUboZTxauKfpFuGIGa1C2BYijZ7wgdUXICJhA==}
+ streamx@2.20.2:
+ resolution: {integrity: sha512-aDGDLU+j9tJcUdPGOaHmVF1u/hhI+CsGkT02V3OKlHDV7IukOI+nTWAGkiZEKCO35rWN1wIr4tS7YFr1f4qSvA==}
string-argv@0.3.2:
resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
@@ -5012,15 +5061,12 @@ packages:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
- strip-literal@1.3.0:
- resolution: {integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==}
+ strip-literal@2.1.1:
+ resolution: {integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==}
- strip-literal@2.1.0:
- resolution: {integrity: sha512-Op+UycaUt/8FbN/Z2TWPBLge3jWrP3xj10f3fnYxf052bKuS3EKs1ZQcVGjnEMdsNVAM+plXRdmjrZ/KgG3Skw==}
-
- stylehacks@6.1.1:
- resolution: {integrity: sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==}
- engines: {node: ^14 || ^16 || >=18.0}
+ stylehacks@7.0.4:
+ resolution: {integrity: sha512-i4zfNrGMt9SB4xRK9L83rlsFCgdGANfeDAYacO1pkqcE7cRHPdWHwnKZVz7WY17Veq/FvyYsRAU++Ga+qDFIww==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
@@ -5029,9 +5075,9 @@ packages:
engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
- supports-color@5.5.0:
- resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
- engines: {node: '>=4'}
+ superjson@2.2.1:
+ resolution: {integrity: sha512-8iGv75BYOa0xRJHK5vRLEjE2H/i4lulTjzpUXic3Eg8akftYjkmQDa8JARQ42rlczXyFR3IeRoeFCc7RxHsYZA==}
+ engines: {node: '>=16'}
supports-color@7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
@@ -5053,8 +5099,8 @@ packages:
engines: {node: '>=14.0.0'}
hasBin: true
- synckit@0.9.1:
- resolution: {integrity: sha512-7gr8p9TQP6RAHusBOSLs46F4564ZrjV8xFmw5zCmgmhGUcw2hxsShhJ6CEiHQMgPDwAQ1fWHPM0ypc4RMAig4A==}
+ synckit@0.9.2:
+ resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==}
engines: {node: ^14.18.0 || >=16.0.0}
system-architecture@0.1.0:
@@ -5068,15 +5114,11 @@ packages:
peerDependencies:
tailwindcss: 1 || 2 || 2.0.1-compat || 3
- tailwindcss@3.4.13:
- resolution: {integrity: sha512-KqjHOJKogOUt5Bs752ykCeiwvi0fKVkr5oqsFNt/8px/tA8scFPIlkygsf6jXrfCqGHz7VflA6+yytWuM+XhFw==}
+ tailwindcss@3.4.15:
+ resolution: {integrity: sha512-r4MeXnfBmSOuKUWmXe6h2CcyfzJCEk4F0pptO5jlnYSIViUkVmsawj80N5h2lO3gwcmSb4n3PuN+e+GC1Guylw==}
engines: {node: '>=14.0.0'}
hasBin: true
- tapable@1.1.3:
- resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
- engines: {node: '>=6'}
-
tapable@2.2.1:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
@@ -5096,13 +5138,13 @@ packages:
resolution: {integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==}
engines: {node: '>=10'}
- terser@5.34.1:
- resolution: {integrity: sha512-FsJZ7iZLd/BXkz+4xrRTGJ26o/6VTjQytUk8b8OxkwcD2I+79VPJlz7qss1+zE7h8GNIScFqXcDyJ/KqBYZFVA==}
+ terser@5.36.0:
+ resolution: {integrity: sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==}
engines: {node: '>=10'}
hasBin: true
- text-decoder@1.2.0:
- resolution: {integrity: sha512-n1yg1mOj9DNpk3NeZOx7T6jchTbyJS3i3cucbNN6FcdPriMZx7NsgrGpWWdWZZGxD7ES1XB+3uoqHMgOKaN+fg==}
+ text-decoder@1.2.1:
+ resolution: {integrity: sha512-x9v3H/lTKIJKQQe7RPQkLfKAnc9lUTkWDypIQgTzPJAq+5/GCDHonmshfvlsNSj58yyshbIJJDLmU15qNERrXQ==}
text-table@0.2.0:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
@@ -5120,11 +5162,11 @@ packages:
tinybench@2.9.0:
resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
- tinyexec@0.3.0:
- resolution: {integrity: sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==}
+ tinyexec@0.3.1:
+ resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==}
- tinyglobby@0.2.9:
- resolution: {integrity: sha512-8or1+BGEdk1Zkkw2ii16qSS7uVrQJPre5A9o/XkWPATkk23FZh/15BKFxPnlTy6vkljZxLqYCzzBMj30ZrSvjw==}
+ tinyglobby@0.2.10:
+ resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==}
engines: {node: '>=12.0.0'}
tinypool@0.8.4:
@@ -5135,10 +5177,6 @@ packages:
resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==}
engines: {node: '>=14.0.0'}
- to-fast-properties@2.0.0:
- resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
- engines: {node: '>=4'}
-
to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
@@ -5147,14 +5185,18 @@ packages:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
+ totalist@3.0.1:
+ resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
+ engines: {node: '>=6'}
+
tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
tr46@1.0.1:
resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==}
- ts-api-utils@1.3.0:
- resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==}
+ ts-api-utils@1.4.3:
+ resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==}
engines: {node: '>=16'}
peerDependencies:
typescript: '>=4.2.0'
@@ -5165,8 +5207,8 @@ packages:
tsconfig-paths@3.15.0:
resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
- tslib@2.7.0:
- resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
+ tslib@2.8.1:
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
tsscmp@1.0.6:
resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==}
@@ -5200,9 +5242,9 @@ packages:
resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
engines: {node: '>=8'}
- type-fest@3.13.1:
- resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==}
- engines: {node: '>=14.16'}
+ type-fest@4.29.0:
+ resolution: {integrity: sha512-RPYt6dKyemXJe7I6oNstcH24myUGSReicxcHTvCLgzm4e0n8y05dGvcGB15/SoPRBmhlMthWQ9pvKyL81ko8nQ==}
+ engines: {node: '>=16'}
type-is@1.6.18:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
@@ -5216,12 +5258,12 @@ packages:
resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
engines: {node: '>= 0.4'}
- typed-array-byte-offset@1.0.2:
- resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
+ typed-array-byte-offset@1.0.3:
+ resolution: {integrity: sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw==}
engines: {node: '>= 0.4'}
- typed-array-length@1.0.6:
- resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
+ typed-array-length@1.0.7:
+ resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
engines: {node: '>= 0.4'}
typescript@5.6.2:
@@ -5247,18 +5289,14 @@ packages:
unctx@2.3.1:
resolution: {integrity: sha512-PhKke8ZYauiqh3FEMVNm7ljvzQiph0Mt3GBRve03IJm7ukfaON2OBK795tLwhbyfzknuRRkW0+Ze+CQUmzOZ+A==}
- undici-types@6.19.8:
- resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
-
- undici@5.28.4:
- resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==}
- engines: {node: '>=14.0'}
+ undici-types@6.20.0:
+ resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
unenv@1.10.0:
resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==}
- unhead@1.11.7:
- resolution: {integrity: sha512-aA0+JBRryLhDKUq6L2JhMDLZEG/ElyyDASyC9wiwDl6nvvsj9hD26LgPWgmAsSd+9HtMGM2N1gU27CWEMo16CQ==}
+ unhead@1.11.13:
+ resolution: {integrity: sha512-I7yyvqRfpPPzXuCG7HKZkgAWJDbzXDDEVyib4C/78HREqhNGHVSyo4TqX1h1xB5cx7WYc21HHDRT2/8YkqOy2w==}
unicode-canonical-property-names-ecmascript@2.0.1:
resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
@@ -5280,8 +5318,8 @@ packages:
resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
engines: {node: '>=18'}
- unimport@3.13.1:
- resolution: {integrity: sha512-nNrVzcs93yrZQOW77qnyOVHtb68LegvhYFwxFMfuuWScmwQmyVCG/NBuN8tYsaGzgQUVYv34E/af+Cc9u4og4A==}
+ unimport@3.14.2:
+ resolution: {integrity: sha512-FSxhbAylGGanyuTb3K0Ka3T9mnsD0+cRKbwOS11Li4Lh2whWS091e32JH4bIHrTckxlW9GnExAglADlxXjjzFw==}
unique-string@2.0.0:
resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==}
@@ -5311,36 +5349,31 @@ packages:
vue-template-es2015-compiler:
optional: true
- unplugin-vue-router@0.7.0:
- resolution: {integrity: sha512-ddRreGq0t5vlSB7OMy4e4cfU1w2AwBQCwmvW3oP/0IHQiokzbx4hd3TpwBu3eIAFVuhX2cwNQwp1U32UybTVCw==}
+ unplugin-vue-router@0.10.8:
+ resolution: {integrity: sha512-xi+eLweYAqolIoTRSmumbi6Yx0z5M0PLvl+NFNVWHJgmE2ByJG1SZbrn+TqyuDtIyln20KKgq8tqmL7aLoiFjw==}
peerDependencies:
- vue-router: ^4.1.0
+ vue-router: ^4.4.0
peerDependenciesMeta:
vue-router:
optional: true
- unplugin@1.14.1:
- resolution: {integrity: sha512-lBlHbfSFPToDYp9pjXlUEFVxYLaue9f9T1HC+4OHlmj+HnMDdz9oZY+erXfoCe/5V/7gKUSY2jpXPb9S7f0f/w==}
+ unplugin@1.16.0:
+ resolution: {integrity: sha512-5liCNPuJW8dqh3+DM6uNM2EI3MLLpCKp/KY+9pB5M2S2SR2qvvDHhKgBOaTWEbZTAws3CXfB0rKTIolWKL05VQ==}
engines: {node: '>=14.0.0'}
- peerDependencies:
- webpack-sources: ^3
- peerDependenciesMeta:
- webpack-sources:
- optional: true
- unstorage@1.12.0:
- resolution: {integrity: sha512-ARZYTXiC+e8z3lRM7/qY9oyaOkaozCeNd2xoz7sYK9fv7OLGhVsf+BZbmASqiK/HTZ7T6eAlnVq9JynZppyk3w==}
+ unstorage@1.13.1:
+ resolution: {integrity: sha512-ELexQHUrG05QVIM/iUeQNdl9FXDZhqLJ4yP59fnmn2jGUh0TEulwOgov1ubOb3Gt2ZGK/VMchJwPDNVEGWQpRg==}
peerDependencies:
'@azure/app-configuration': ^1.7.0
'@azure/cosmos': ^4.1.1
'@azure/data-tables': ^13.2.2
- '@azure/identity': ^4.4.1
- '@azure/keyvault-secrets': ^4.8.0
- '@azure/storage-blob': ^12.24.0
+ '@azure/identity': ^4.5.0
+ '@azure/keyvault-secrets': ^4.9.0
+ '@azure/storage-blob': ^12.25.0
'@capacitor/preferences': ^6.0.2
- '@netlify/blobs': ^6.5.0 || ^7.0.0
+ '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0
'@planetscale/database': ^1.19.0
- '@upstash/redis': ^1.34.0
+ '@upstash/redis': ^1.34.3
'@vercel/kv': ^1.0.1
idb-keyval: ^6.2.1
ioredis: ^5.4.1
@@ -5376,8 +5409,8 @@ packages:
resolution: {integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==}
hasBin: true
- untyped@1.5.0:
- resolution: {integrity: sha512-o2Vjmn2dal08BzCcINxSmWuAteReUUiXseii5VRhmxyLF0b21K0iKZQ9fMYK7RWspVkY+0saqaVQNq4roe3Efg==}
+ untyped@1.5.1:
+ resolution: {integrity: sha512-reBOnkJBFfBZ8pCKaeHgfZLcehXtM6UTxc+vqs1JvCps0c4amLNp3fhdGBZwYp+VLyoY9n3X5KOP7lCyWBUX9A==}
hasBin: true
unwasm@0.3.9:
@@ -5396,6 +5429,9 @@ packages:
uqr@0.1.2:
resolution: {integrity: sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==}
+ uri-js-replace@1.0.1:
+ resolution: {integrity: sha512-W+C9NWNLFOoBI2QWDp4UT9pv65r2w5Cx+3sTYFvtMdDBxkKt1syCqsUdSFAChbEe1uK5TfS04wt/nGwmaeIQ0g==}
+
uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
@@ -5412,20 +5448,26 @@ packages:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
- vite-node@0.33.0:
- resolution: {integrity: sha512-19FpHYbwWWxDr73ruNahC+vtEdza52kA90Qb3La98yZ0xULqV8A5JLNPUff0f5zID4984tW7l3DH2przTJUZSw==}
- engines: {node: '>=v14.18.0'}
- hasBin: true
+ vite-hot-client@0.2.4:
+ resolution: {integrity: sha512-a1nzURqO7DDmnXqabFOliz908FRmIppkBKsJthS8rbe8hBEXwEwe4C3Pp33Z1JoFCYfVL4kTOMLKk0ZZxREIeA==}
+ peerDependencies:
+ vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0
vite-node@1.6.0:
resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
- vite-plugin-checker@0.6.4:
- resolution: {integrity: sha512-2zKHH5oxr+ye43nReRbC2fny1nyARwhxdm0uNYp/ERy4YvU9iZpNOsueoi/luXw5gnpqRSvjcEPxXbS153O2wA==}
+ vite-node@2.1.6:
+ resolution: {integrity: sha512-DBfJY0n9JUwnyLxPSSUmEePT21j8JZp/sR9n+/gBwQU6DcQOioPdb8/pibWfXForbirSagZCilseYIwaL3f95A==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ hasBin: true
+
+ vite-plugin-checker@0.7.2:
+ resolution: {integrity: sha512-xeYeJbG0gaCaT0QcUC4B2Zo4y5NR8ZhYenc5gPbttrZvraRFwkEADCYwq+BfEHl9zYz7yf85TxsiGoYwyyIjhw==}
engines: {node: '>=14.16'}
peerDependencies:
+ '@biomejs/biome': '>=1.7'
eslint: '>=7'
meow: ^9.0.0
optionator: ^0.9.1
@@ -5434,8 +5476,10 @@ packages:
vite: '>=2.0.0'
vls: '*'
vti: '*'
- vue-tsc: '>=1.3.9'
+ vue-tsc: '>=2.0.0'
peerDependenciesMeta:
+ '@biomejs/biome':
+ optional: true
eslint:
optional: true
meow:
@@ -5459,48 +5503,35 @@ packages:
eslint: '>=7'
vite: '>=2'
- vite-plugin-pwa@0.20.5:
- resolution: {integrity: sha512-aweuI/6G6n4C5Inn0vwHumElU/UEpNuO+9iZzwPZGTCH87TeZ6YFMrEY6ZUBQdIHHlhTsbMDryFARcSuOdsz9Q==}
+ vite-plugin-inspect@0.8.8:
+ resolution: {integrity: sha512-aZlBuXsWUPJFmMK92GIv6lH7LrwG2POu4KJ+aEdcqnu92OAf+rhBnfMDQvxIJPEB7hE2t5EyY/PMgf5aDLT8EA==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@nuxt/kit': '*'
+ vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0
+ peerDependenciesMeta:
+ '@nuxt/kit':
+ optional: true
+
+ vite-plugin-pwa@0.21.0:
+ resolution: {integrity: sha512-gnDE5sN2hdxA4vTl0pe6PCTPXqChk175jH8dZVVTBjFhWarZZoXaAdoTIKCIa8Zbx94sC0CnCOyERBWpxvry+g==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@vite-pwa/assets-generator': ^0.2.6
vite: ^3.1.0 || ^4.0.0 || ^5.0.0
- workbox-build: ^7.1.0
- workbox-window: ^7.1.0
+ workbox-build: ^7.3.0
+ workbox-window: ^7.3.0
peerDependenciesMeta:
'@vite-pwa/assets-generator':
optional: true
- vite@4.5.5:
- resolution: {integrity: sha512-ifW3Lb2sMdX+WU91s3R0FyQlAyLxOzCSCP37ujw0+r5POeHPwe6udWVIElKQq8gk3t7b8rkmvqC6IHBpCff4GQ==}
- engines: {node: ^14.18.0 || >=16.0.0}
- hasBin: true
+ vite-plugin-vue-inspector@5.1.3:
+ resolution: {integrity: sha512-pMrseXIDP1Gb38mOevY+BvtNGNqiqmqa2pKB99lnLsADQww9w9xMbAfT4GB6RUoaOkSPrtlXqpq2Fq+Dj2AgFg==}
peerDependencies:
- '@types/node': '>= 14'
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
+ vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0
- vite@5.4.8:
- resolution: {integrity: sha512-FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ==}
+ vite@5.4.11:
+ resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -5602,17 +5633,23 @@ packages:
peerDependencies:
eslint: '>=6.0.0'
- vue-i18n@9.14.1:
- resolution: {integrity: sha512-xjxV0LYc1xQ8TbAVfIyZiOSS8qoU1R0YwV7V5I8I6Fd64+zvsTsdPgtylPsie3Vdt9wekeYhr+smKDeaK6RBuA==}
+ vue-i18n@9.14.2:
+ resolution: {integrity: sha512-JK9Pm80OqssGJU2Y6F7DcM8RFHqVG4WkuCqOZTVsXkEzZME7ABejAUqUdA931zEBedc4thBgSUWxeQh4uocJAQ==}
engines: {node: '>= 16'}
peerDependencies:
vue: ^3.0.0
- vue-router@4.4.5:
- resolution: {integrity: sha512-4fKZygS8cH1yCyuabAXGUAsyi1b2/o/OKgu/RUb+znIYOxPRxdkytJEx+0wGcpBE1pX6vUgh5jwWOKRGvuA/7Q==}
+ vue-router@4.5.0:
+ resolution: {integrity: sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w==}
peerDependencies:
vue: ^3.2.0
+ vue-tsc@2.1.6:
+ resolution: {integrity: sha512-f98dyZp5FOukcYmbFpuSCJ4Z0vHSOSmxGttZJCsFeX0M4w/Rsq0s4uKXjcSRsZqsRgQa6z7SfuO+y0HVICE57Q==}
+ hasBin: true
+ peerDependencies:
+ typescript: '>=5.0.0'
+
vue@3.4.8:
resolution: {integrity: sha512-vJffFOe6DqWsAI10v3tDhb1nJrj7CF3CbdQwOznywAsFNoyvrQ1AWQdcIWJpmRpRnw7NFzstzh6fh4w7n1PNdg==}
peerDependencies:
@@ -5621,16 +5658,20 @@ packages:
typescript:
optional: true
+ vue@3.5.13:
+ resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
webidl-conversions@4.0.2:
resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
- webpack-sources@3.2.3:
- resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
- engines: {node: '>=10.13.0'}
-
webpack-virtual-modules@0.6.2:
resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
@@ -5646,8 +5687,16 @@ packages:
which-boxed-primitive@1.0.2:
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
- which-typed-array@1.1.15:
- resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
+ which-builtin-type@1.2.0:
+ resolution: {integrity: sha512-I+qLGQ/vucCby4tf5HsLmGueEla4ZhwTBSqaooS+Y0BuxN4Cp+okmGuV+8mXZ84KDI9BA+oklo+RzKg0ONdSUA==}
+ engines: {node: '>= 0.4'}
+
+ which-collection@1.0.2:
+ resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
+ engines: {node: '>= 0.4'}
+
+ which-typed-array@1.1.16:
+ resolution: {integrity: sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ==}
engines: {node: '>= 0.4'}
which@2.0.2:
@@ -5655,6 +5704,11 @@ packages:
engines: {node: '>= 8'}
hasBin: true
+ which@3.0.1:
+ resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ hasBin: true
+
why-is-node-running@2.3.0:
resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==}
engines: {node: '>=8'}
@@ -5727,13 +5781,22 @@ packages:
wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
+ ws@8.18.0:
+ resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: '>=5.0.2'
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+
xml-name-validator@4.0.0:
resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
engines: {node: '>=12'}
- xxhashjs@0.2.2:
- resolution: {integrity: sha512-AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw==}
-
y18n@5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
@@ -5744,12 +5807,15 @@ packages:
yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
+ yaml-ast-parser@0.0.43:
+ resolution: {integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==}
+
yaml-eslint-parser@1.2.3:
resolution: {integrity: sha512-4wZWvE398hCP7O8n3nXKu/vdq1HcH01ixYlCREaJL5NUMwQ0g3MaGFUBNSlmBtKmhbtVG/Cm6lyYmSVTEVil8A==}
engines: {node: ^14.17.0 || >=16.0.0}
- yaml@2.5.1:
- resolution: {integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==}
+ yaml@2.6.1:
+ resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==}
engines: {node: '>= 14'}
hasBin: true
@@ -5795,8 +5861,8 @@ snapshots:
'@antfu/install-pkg@0.4.1':
dependencies:
- package-manager-detector: 0.2.0
- tinyexec: 0.3.0
+ package-manager-detector: 0.2.5
+ tinyexec: 0.3.1
'@antfu/utils@0.7.10': {}
@@ -5807,1084 +5873,941 @@ snapshots:
jsonpointer: 5.0.1
leven: 3.1.0
- '@babel/code-frame@7.25.7':
+ '@babel/code-frame@7.26.2':
dependencies:
- '@babel/highlight': 7.25.7
- picocolors: 1.1.0
+ '@babel/helper-validator-identifier': 7.25.9
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
- '@babel/compat-data@7.25.7': {}
+ '@babel/compat-data@7.26.2': {}
- '@babel/core@7.25.7':
+ '@babel/core@7.26.0':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.25.7
- '@babel/generator': 7.25.7
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7)
- '@babel/helpers': 7.25.7
- '@babel/parser': 7.25.7
- '@babel/template': 7.25.7
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.2
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helpers': 7.26.0
+ '@babel/parser': 7.26.2
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
convert-source-map: 2.0.0
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.25.7':
+ '@babel/generator@7.26.2':
dependencies:
- '@babel/types': 7.25.7
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.0.2
- '@babel/helper-annotate-as-pure@7.25.7':
+ '@babel/helper-annotate-as-pure@7.25.9':
dependencies:
- '@babel/types': 7.25.7
+ '@babel/types': 7.26.0
- '@babel/helper-builder-binary-assignment-operator-visitor@7.25.7':
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.25.9':
dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-compilation-targets@7.25.7':
+ '@babel/helper-compilation-targets@7.25.9':
dependencies:
- '@babel/compat-data': 7.25.7
- '@babel/helper-validator-option': 7.25.7
- browserslist: 4.24.0
+ '@babel/compat-data': 7.26.2
+ '@babel/helper-validator-option': 7.25.9
+ browserslist: 4.24.2
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.25.7(@babel/core@7.25.7)':
+ '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-member-expression-to-functions': 7.25.7
- '@babel/helper-optimise-call-expression': 7.25.7
- '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/traverse': 7.25.9
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.25.7(@babel/core@7.25.7)':
+ '@babel/helper-create-regexp-features-plugin@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-annotate-as-pure': 7.25.7
- regexpu-core: 6.1.1
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ regexpu-core: 6.2.0
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.25.7)':
+ '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- debug: 4.3.7
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ debug: 4.3.7(supports-color@9.4.0)
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
- '@babel/helper-member-expression-to-functions@7.25.7':
+ '@babel/helper-member-expression-to-functions@7.25.9':
dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-imports@7.25.7':
+ '@babel/helper-module-imports@7.25.9':
dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.25.7(@babel/core@7.25.7)':
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-simple-access': 7.25.7
- '@babel/helper-validator-identifier': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/helper-optimise-call-expression@7.25.7':
+ '@babel/helper-optimise-call-expression@7.25.9':
dependencies:
- '@babel/types': 7.25.7
+ '@babel/types': 7.26.0
- '@babel/helper-plugin-utils@7.25.7': {}
+ '@babel/helper-plugin-utils@7.25.9': {}
- '@babel/helper-remap-async-to-generator@7.25.7(@babel/core@7.25.7)':
+ '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-wrap-function': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-wrap-function': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.25.7(@babel/core@7.25.7)':
+ '@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-member-expression-to-functions': 7.25.7
- '@babel/helper-optimise-call-expression': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/helper-simple-access@7.25.7':
+ '@babel/helper-simple-access@7.25.9':
dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-skip-transparent-expression-wrappers@7.25.7':
+ '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-string-parser@7.25.7': {}
+ '@babel/helper-string-parser@7.25.9': {}
- '@babel/helper-validator-identifier@7.25.7': {}
+ '@babel/helper-validator-identifier@7.25.9': {}
- '@babel/helper-validator-option@7.25.7': {}
+ '@babel/helper-validator-option@7.25.9': {}
- '@babel/helper-wrap-function@7.25.7':
+ '@babel/helper-wrap-function@7.25.9':
dependencies:
- '@babel/template': 7.25.7
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.25.7':
+ '@babel/helpers@7.26.0':
dependencies:
- '@babel/template': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
- '@babel/highlight@7.25.7':
+ '@babel/parser@7.26.2':
dependencies:
- '@babel/helper-validator-identifier': 7.25.7
- chalk: 2.4.2
- js-tokens: 4.0.0
- picocolors: 1.1.0
+ '@babel/types': 7.26.0
- '@babel/parser@7.25.7':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/types': 7.25.7
-
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.25.7)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.7)':
+ '@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
-
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-import-assertions@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-import-attributes@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-arrow-functions@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-async-generator-functions@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.7)
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.25.7)
+ '@babel/core': 7.26.0
+
+ '@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-block-scoping@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-class-properties@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.7)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.7)
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
+ '@babel/traverse': 7.25.9
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/template': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/template': 7.25.9
- '@babel/plugin-transform-destructuring@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-dotall-regex@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-duplicate-keys@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-dynamic-import@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.7)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-exponentiation-operator@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-exponentiation-operator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-export-namespace-from@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.7)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-for-of@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-json-strings@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.7)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-literals@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-logical-assignment-operators@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.7)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-member-expression-literals@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-modules-amd@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-modules-commonjs@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-simple-access': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-simple-access': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-identifier': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-new-target@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-nullish-coalescing-operator@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.7)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-numeric-separator@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.7)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-object-rest-spread@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.7)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.25.7)
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-object-super@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.7)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-catch-binding@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.7)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-optional-chaining@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.7)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-parameters@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-private-methods@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.7)
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-property-literals@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-regenerator@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
regenerator-transform: 0.15.2
- '@babel/plugin-transform-reserved-words@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-shorthand-properties@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-spread@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-sticky-regex@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-template-literals@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-typeof-symbol@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-typescript@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-typescript@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.25.7)
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-unicode-escapes@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-unicode-property-regex@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-unicode-regex@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-unicode-sets-regex@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/preset-env@7.25.7(@babel/core@7.25.7)':
+ '@babel/preset-env@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/compat-data': 7.25.7
- '@babel/core': 7.25.7
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-option': 7.25.7
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.7)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.7)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.7)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.7)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.7)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.7)
- '@babel/plugin-syntax-import-assertions': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-syntax-import-attributes': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.7)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.7)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.7)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.7)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.7)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.7)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.7)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.7)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.7)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.7)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.25.7)
- '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-async-generator-functions': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-block-scoped-functions': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-class-properties': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-class-static-block': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-dotall-regex': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-duplicate-keys': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-dynamic-import': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-exponentiation-operator': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-export-namespace-from': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-for-of': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-json-strings': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-logical-assignment-operators': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-member-expression-literals': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-modules-amd': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-modules-systemjs': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-modules-umd': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-new-target': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-numeric-separator': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-object-rest-spread': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-object-super': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-optional-catch-binding': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-private-property-in-object': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-property-literals': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-regenerator': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-reserved-words': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-template-literals': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-typeof-symbol': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-unicode-escapes': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-unicode-property-regex': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-unicode-sets-regex': 7.25.7(@babel/core@7.25.7)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.25.7)
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.7)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.7)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.7)
- core-js-compat: 3.38.1
+ '@babel/compat-data': 7.26.2
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.0)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-exponentiation-operator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-typeof-symbol': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0)
+ babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.0)
+ core-js-compat: 3.39.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.7)':
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/types': 7.26.0
esutils: 2.0.3
- '@babel/runtime@7.25.7':
+ '@babel/runtime@7.26.0':
dependencies:
regenerator-runtime: 0.14.1
- '@babel/standalone@7.25.7': {}
+ '@babel/standalone@7.26.2': {}
- '@babel/template@7.25.7':
+ '@babel/template@7.25.9':
dependencies:
- '@babel/code-frame': 7.25.7
- '@babel/parser': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/code-frame': 7.26.2
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
- '@babel/traverse@7.25.7':
+ '@babel/traverse@7.25.9':
dependencies:
- '@babel/code-frame': 7.25.7
- '@babel/generator': 7.25.7
- '@babel/parser': 7.25.7
- '@babel/template': 7.25.7
- '@babel/types': 7.25.7
- debug: 4.3.7
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.2
+ '@babel/parser': 7.26.2
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
+ debug: 4.3.7(supports-color@9.4.0)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.25.7':
+ '@babel/types@7.26.0':
dependencies:
- '@babel/helper-string-parser': 7.25.7
- '@babel/helper-validator-identifier': 7.25.7
- to-fast-properties: 2.0.0
+ '@babel/helper-string-parser': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
'@cloudflare/kv-asset-handler@0.3.4':
dependencies:
mime: 3.0.0
- '@csstools/selector-resolve-nested@1.1.0(postcss-selector-parser@6.1.2)':
+ '@csstools/selector-resolve-nested@3.0.0(postcss-selector-parser@7.0.0)':
dependencies:
- postcss-selector-parser: 6.1.2
+ postcss-selector-parser: 7.0.0
- '@csstools/selector-specificity@3.1.1(postcss-selector-parser@6.1.2)':
+ '@csstools/selector-specificity@5.0.0(postcss-selector-parser@7.0.0)':
dependencies:
- postcss-selector-parser: 6.1.2
-
- '@esbuild/aix-ppc64@0.19.12':
- optional: true
-
- '@esbuild/aix-ppc64@0.20.2':
- optional: true
+ postcss-selector-parser: 7.0.0
'@esbuild/aix-ppc64@0.21.5':
optional: true
- '@esbuild/android-arm64@0.18.20':
+ '@esbuild/aix-ppc64@0.23.1':
optional: true
- '@esbuild/android-arm64@0.19.12':
- optional: true
-
- '@esbuild/android-arm64@0.20.2':
+ '@esbuild/aix-ppc64@0.24.0':
optional: true
'@esbuild/android-arm64@0.21.5':
optional: true
- '@esbuild/android-arm@0.18.20':
+ '@esbuild/android-arm64@0.23.1':
optional: true
- '@esbuild/android-arm@0.19.12':
- optional: true
-
- '@esbuild/android-arm@0.20.2':
+ '@esbuild/android-arm64@0.24.0':
optional: true
'@esbuild/android-arm@0.21.5':
optional: true
- '@esbuild/android-x64@0.18.20':
+ '@esbuild/android-arm@0.23.1':
optional: true
- '@esbuild/android-x64@0.19.12':
- optional: true
-
- '@esbuild/android-x64@0.20.2':
+ '@esbuild/android-arm@0.24.0':
optional: true
'@esbuild/android-x64@0.21.5':
optional: true
- '@esbuild/darwin-arm64@0.18.20':
+ '@esbuild/android-x64@0.23.1':
optional: true
- '@esbuild/darwin-arm64@0.19.12':
- optional: true
-
- '@esbuild/darwin-arm64@0.20.2':
+ '@esbuild/android-x64@0.24.0':
optional: true
'@esbuild/darwin-arm64@0.21.5':
optional: true
- '@esbuild/darwin-x64@0.18.20':
+ '@esbuild/darwin-arm64@0.23.1':
optional: true
- '@esbuild/darwin-x64@0.19.12':
- optional: true
-
- '@esbuild/darwin-x64@0.20.2':
+ '@esbuild/darwin-arm64@0.24.0':
optional: true
'@esbuild/darwin-x64@0.21.5':
optional: true
- '@esbuild/freebsd-arm64@0.18.20':
+ '@esbuild/darwin-x64@0.23.1':
optional: true
- '@esbuild/freebsd-arm64@0.19.12':
- optional: true
-
- '@esbuild/freebsd-arm64@0.20.2':
+ '@esbuild/darwin-x64@0.24.0':
optional: true
'@esbuild/freebsd-arm64@0.21.5':
optional: true
- '@esbuild/freebsd-x64@0.18.20':
+ '@esbuild/freebsd-arm64@0.23.1':
optional: true
- '@esbuild/freebsd-x64@0.19.12':
- optional: true
-
- '@esbuild/freebsd-x64@0.20.2':
+ '@esbuild/freebsd-arm64@0.24.0':
optional: true
'@esbuild/freebsd-x64@0.21.5':
optional: true
- '@esbuild/linux-arm64@0.18.20':
+ '@esbuild/freebsd-x64@0.23.1':
optional: true
- '@esbuild/linux-arm64@0.19.12':
- optional: true
-
- '@esbuild/linux-arm64@0.20.2':
+ '@esbuild/freebsd-x64@0.24.0':
optional: true
'@esbuild/linux-arm64@0.21.5':
optional: true
- '@esbuild/linux-arm@0.18.20':
+ '@esbuild/linux-arm64@0.23.1':
optional: true
- '@esbuild/linux-arm@0.19.12':
- optional: true
-
- '@esbuild/linux-arm@0.20.2':
+ '@esbuild/linux-arm64@0.24.0':
optional: true
'@esbuild/linux-arm@0.21.5':
optional: true
- '@esbuild/linux-ia32@0.18.20':
+ '@esbuild/linux-arm@0.23.1':
optional: true
- '@esbuild/linux-ia32@0.19.12':
- optional: true
-
- '@esbuild/linux-ia32@0.20.2':
+ '@esbuild/linux-arm@0.24.0':
optional: true
'@esbuild/linux-ia32@0.21.5':
optional: true
- '@esbuild/linux-loong64@0.18.20':
+ '@esbuild/linux-ia32@0.23.1':
optional: true
- '@esbuild/linux-loong64@0.19.12':
- optional: true
-
- '@esbuild/linux-loong64@0.20.2':
+ '@esbuild/linux-ia32@0.24.0':
optional: true
'@esbuild/linux-loong64@0.21.5':
optional: true
- '@esbuild/linux-mips64el@0.18.20':
+ '@esbuild/linux-loong64@0.23.1':
optional: true
- '@esbuild/linux-mips64el@0.19.12':
- optional: true
-
- '@esbuild/linux-mips64el@0.20.2':
+ '@esbuild/linux-loong64@0.24.0':
optional: true
'@esbuild/linux-mips64el@0.21.5':
optional: true
- '@esbuild/linux-ppc64@0.18.20':
+ '@esbuild/linux-mips64el@0.23.1':
optional: true
- '@esbuild/linux-ppc64@0.19.12':
- optional: true
-
- '@esbuild/linux-ppc64@0.20.2':
+ '@esbuild/linux-mips64el@0.24.0':
optional: true
'@esbuild/linux-ppc64@0.21.5':
optional: true
- '@esbuild/linux-riscv64@0.18.20':
+ '@esbuild/linux-ppc64@0.23.1':
optional: true
- '@esbuild/linux-riscv64@0.19.12':
- optional: true
-
- '@esbuild/linux-riscv64@0.20.2':
+ '@esbuild/linux-ppc64@0.24.0':
optional: true
'@esbuild/linux-riscv64@0.21.5':
optional: true
- '@esbuild/linux-s390x@0.18.20':
+ '@esbuild/linux-riscv64@0.23.1':
optional: true
- '@esbuild/linux-s390x@0.19.12':
- optional: true
-
- '@esbuild/linux-s390x@0.20.2':
+ '@esbuild/linux-riscv64@0.24.0':
optional: true
'@esbuild/linux-s390x@0.21.5':
optional: true
- '@esbuild/linux-x64@0.18.20':
+ '@esbuild/linux-s390x@0.23.1':
optional: true
- '@esbuild/linux-x64@0.19.12':
- optional: true
-
- '@esbuild/linux-x64@0.20.2':
+ '@esbuild/linux-s390x@0.24.0':
optional: true
'@esbuild/linux-x64@0.21.5':
optional: true
- '@esbuild/netbsd-x64@0.18.20':
+ '@esbuild/linux-x64@0.23.1':
optional: true
- '@esbuild/netbsd-x64@0.19.12':
- optional: true
-
- '@esbuild/netbsd-x64@0.20.2':
+ '@esbuild/linux-x64@0.24.0':
optional: true
'@esbuild/netbsd-x64@0.21.5':
optional: true
- '@esbuild/openbsd-x64@0.18.20':
+ '@esbuild/netbsd-x64@0.23.1':
optional: true
- '@esbuild/openbsd-x64@0.19.12':
+ '@esbuild/netbsd-x64@0.24.0':
optional: true
- '@esbuild/openbsd-x64@0.20.2':
+ '@esbuild/openbsd-arm64@0.23.1':
+ optional: true
+
+ '@esbuild/openbsd-arm64@0.24.0':
optional: true
'@esbuild/openbsd-x64@0.21.5':
optional: true
- '@esbuild/sunos-x64@0.18.20':
+ '@esbuild/openbsd-x64@0.23.1':
optional: true
- '@esbuild/sunos-x64@0.19.12':
- optional: true
-
- '@esbuild/sunos-x64@0.20.2':
+ '@esbuild/openbsd-x64@0.24.0':
optional: true
'@esbuild/sunos-x64@0.21.5':
optional: true
- '@esbuild/win32-arm64@0.18.20':
+ '@esbuild/sunos-x64@0.23.1':
optional: true
- '@esbuild/win32-arm64@0.19.12':
- optional: true
-
- '@esbuild/win32-arm64@0.20.2':
+ '@esbuild/sunos-x64@0.24.0':
optional: true
'@esbuild/win32-arm64@0.21.5':
optional: true
- '@esbuild/win32-ia32@0.18.20':
+ '@esbuild/win32-arm64@0.23.1':
optional: true
- '@esbuild/win32-ia32@0.19.12':
- optional: true
-
- '@esbuild/win32-ia32@0.20.2':
+ '@esbuild/win32-arm64@0.24.0':
optional: true
'@esbuild/win32-ia32@0.21.5':
optional: true
- '@esbuild/win32-x64@0.18.20':
+ '@esbuild/win32-ia32@0.23.1':
optional: true
- '@esbuild/win32-x64@0.19.12':
- optional: true
-
- '@esbuild/win32-x64@0.20.2':
+ '@esbuild/win32-ia32@0.24.0':
optional: true
'@esbuild/win32-x64@0.21.5':
optional: true
- '@eslint-community/eslint-utils@4.4.0(eslint@8.57.1)':
+ '@esbuild/win32-x64@0.23.1':
+ optional: true
+
+ '@esbuild/win32-x64@0.24.0':
+ optional: true
+
+ '@eslint-community/eslint-utils@4.4.1(eslint@8.57.1)':
dependencies:
eslint: 8.57.1
eslint-visitor-keys: 3.4.3
- '@eslint-community/regexpp@4.11.1': {}
+ '@eslint-community/regexpp@4.12.1': {}
'@eslint/eslintrc@2.1.4':
dependencies:
ajv: 6.12.6
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
espree: 9.6.1
globals: 13.24.0
ignore: 5.3.2
@@ -6899,41 +6822,40 @@ snapshots:
'@faker-js/faker@8.4.1': {}
- '@fastify/busboy@2.1.1': {}
-
- '@formatjs/ecma402-abstract@2.0.0':
+ '@formatjs/ecma402-abstract@2.2.4':
dependencies:
- '@formatjs/intl-localematcher': 0.5.4
- tslib: 2.7.0
+ '@formatjs/fast-memoize': 2.2.3
+ '@formatjs/intl-localematcher': 0.5.8
+ tslib: 2.8.1
- '@formatjs/fast-memoize@2.2.0':
+ '@formatjs/fast-memoize@2.2.3':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.1
- '@formatjs/icu-messageformat-parser@2.7.8':
+ '@formatjs/icu-messageformat-parser@2.9.4':
dependencies:
- '@formatjs/ecma402-abstract': 2.0.0
- '@formatjs/icu-skeleton-parser': 1.8.2
- tslib: 2.7.0
+ '@formatjs/ecma402-abstract': 2.2.4
+ '@formatjs/icu-skeleton-parser': 1.8.8
+ tslib: 2.8.1
- '@formatjs/icu-skeleton-parser@1.8.2':
+ '@formatjs/icu-skeleton-parser@1.8.8':
dependencies:
- '@formatjs/ecma402-abstract': 2.0.0
- tslib: 2.7.0
+ '@formatjs/ecma402-abstract': 2.2.4
+ tslib: 2.8.1
- '@formatjs/intl-localematcher@0.5.4':
+ '@formatjs/intl-localematcher@0.5.8':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.1
'@headlessui/vue@1.7.23(vue@3.4.8(typescript@5.6.2))':
dependencies:
- '@tanstack/vue-virtual': 3.10.8(vue@3.4.8(typescript@5.6.2))
+ '@tanstack/vue-virtual': 3.10.9(vue@3.4.8(typescript@5.6.2))
vue: 3.4.8(typescript@5.6.2)
'@humanwhocodes/config-array@0.13.0':
dependencies:
'@humanwhocodes/object-schema': 2.0.3
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -6942,7 +6864,7 @@ snapshots:
'@humanwhocodes/object-schema@2.0.3': {}
- '@iconify-json/mdi@1.2.0':
+ '@iconify-json/mdi@1.2.1':
dependencies:
'@iconify/types': 2.0.0
@@ -6953,59 +6875,58 @@ snapshots:
'@antfu/install-pkg': 0.4.1
'@antfu/utils': 0.7.10
'@iconify/types': 2.0.0
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
kolorist: 1.8.0
- local-pkg: 0.5.0
- mlly: 1.7.1
+ local-pkg: 0.5.1
+ mlly: 1.7.3
transitivePeerDependencies:
- supports-color
- '@intlify/bundle-utils@8.0.0(vue-i18n@9.14.1(vue@3.4.8(typescript@5.6.2)))':
+ '@intlify/bundle-utils@8.0.0(vue-i18n@9.14.2(vue@3.4.8(typescript@5.6.2)))':
dependencies:
- '@intlify/message-compiler': 9.14.1
- '@intlify/shared': 9.14.1
- acorn: 8.12.1
+ '@intlify/message-compiler': 9.14.2
+ '@intlify/shared': 9.14.2
+ acorn: 8.14.0
escodegen: 2.1.0
estree-walker: 2.0.2
jsonc-eslint-parser: 2.4.0
- mlly: 1.7.1
+ mlly: 1.7.3
source-map-js: 1.2.1
yaml-eslint-parser: 1.2.3
optionalDependencies:
- vue-i18n: 9.14.1(vue@3.4.8(typescript@5.6.2))
+ vue-i18n: 9.14.2(vue@3.4.8(typescript@5.6.2))
- '@intlify/core-base@9.14.1':
+ '@intlify/core-base@9.14.2':
dependencies:
- '@intlify/message-compiler': 9.14.1
- '@intlify/shared': 9.14.1
+ '@intlify/message-compiler': 9.14.2
+ '@intlify/shared': 9.14.2
- '@intlify/message-compiler@9.14.1':
+ '@intlify/message-compiler@9.14.2':
dependencies:
- '@intlify/shared': 9.14.1
+ '@intlify/shared': 9.14.2
source-map-js: 1.2.1
- '@intlify/shared@9.14.1': {}
+ '@intlify/shared@9.14.2': {}
- '@intlify/unplugin-vue-i18n@4.0.0(rollup@4.24.0)(vue-i18n@9.14.1(vue@3.4.8(typescript@5.6.2)))(webpack-sources@3.2.3)':
+ '@intlify/unplugin-vue-i18n@4.0.0(rollup@4.27.4)(vue-i18n@9.14.2(vue@3.4.8(typescript@5.6.2)))':
dependencies:
- '@intlify/bundle-utils': 8.0.0(vue-i18n@9.14.1(vue@3.4.8(typescript@5.6.2)))
- '@intlify/shared': 9.14.1
- '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
- '@vue/compiler-sfc': 3.5.11
- debug: 4.3.7
+ '@intlify/bundle-utils': 8.0.0(vue-i18n@9.14.2(vue@3.4.8(typescript@5.6.2)))
+ '@intlify/shared': 9.14.2
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.4)
+ '@vue/compiler-sfc': 3.5.13
+ debug: 4.3.7(supports-color@9.4.0)
fast-glob: 3.3.2
js-yaml: 4.1.0
json5: 2.2.3
pathe: 1.1.2
- picocolors: 1.1.0
+ picocolors: 1.1.1
source-map-js: 1.2.1
- unplugin: 1.14.1(webpack-sources@3.2.3)
+ unplugin: 1.16.0
optionalDependencies:
- vue-i18n: 9.14.1(vue@3.4.8(typescript@5.6.2))
+ vue-i18n: 9.14.2(vue@3.4.8(typescript@5.6.2))
transitivePeerDependencies:
- rollup
- supports-color
- - webpack-sources
'@ioredis/commands@1.2.0': {}
@@ -7047,13 +6968,13 @@ snapshots:
'@jsdevtools/ez-spawn@3.0.4':
dependencies:
call-me-maybe: 1.0.2
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
string-argv: 0.3.2
type-detect: 4.1.0
'@koa/router@12.0.2':
dependencies:
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
http-errors: 2.0.0
koa-compose: 4.1.0
methods: 1.1.2
@@ -7061,6 +6982,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@kwsites/file-exists@1.1.1':
+ dependencies:
+ debug: 4.3.7(supports-color@9.4.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@kwsites/promise-deferred@1.1.1': {}
+
'@mapbox/node-pre-gyp@1.0.11':
dependencies:
detect-libc: 2.0.3
@@ -7103,9 +7032,80 @@ snapshots:
'@nuxt/devalue@2.0.2': {}
- '@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)':
+ '@nuxt/devtools-kit@1.6.1(magicast@0.3.5)(rollup@4.27.4)(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))':
dependencies:
- '@nuxt/schema': 3.13.2(rollup@4.24.0)(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.27.4)
+ '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.27.4)
+ execa: 7.2.0
+ vite: 5.4.11(@types/node@22.10.1)(terser@5.36.0)
+ transitivePeerDependencies:
+ - magicast
+ - rollup
+ - supports-color
+
+ '@nuxt/devtools-wizard@1.6.1':
+ dependencies:
+ consola: 3.2.3
+ diff: 7.0.0
+ execa: 7.2.0
+ global-directory: 4.0.1
+ magicast: 0.3.5
+ pathe: 1.1.2
+ pkg-types: 1.2.1
+ prompts: 2.4.2
+ rc9: 2.1.2
+ semver: 7.6.3
+
+ '@nuxt/devtools@1.6.1(rollup@4.27.4)(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))(vue@3.5.13(typescript@5.6.2))':
+ dependencies:
+ '@antfu/utils': 0.7.10
+ '@nuxt/devtools-kit': 1.6.1(magicast@0.3.5)(rollup@4.27.4)(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))
+ '@nuxt/devtools-wizard': 1.6.1
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.27.4)
+ '@vue/devtools-core': 7.6.4(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))(vue@3.5.13(typescript@5.6.2))
+ '@vue/devtools-kit': 7.6.4
+ birpc: 0.2.19
+ consola: 3.2.3
+ cronstrue: 2.52.0
+ destr: 2.0.3
+ error-stack-parser-es: 0.1.5
+ execa: 7.2.0
+ fast-npm-meta: 0.2.2
+ flatted: 3.3.2
+ get-port-please: 3.1.2
+ hookable: 5.5.3
+ image-meta: 0.2.1
+ is-installed-globally: 1.0.0
+ launch-editor: 2.9.1
+ local-pkg: 0.5.1
+ magicast: 0.3.5
+ nypm: 0.3.12
+ ohash: 1.1.4
+ pathe: 1.1.2
+ perfect-debounce: 1.0.0
+ pkg-types: 1.2.1
+ rc9: 2.1.2
+ scule: 1.3.0
+ semver: 7.6.3
+ simple-git: 3.27.0
+ sirv: 2.0.4
+ tinyglobby: 0.2.10
+ unimport: 3.14.2(rollup@4.27.4)
+ vite: 5.4.11(@types/node@22.10.1)(terser@5.36.0)
+ vite-plugin-inspect: 0.8.8(@nuxt/kit@3.14.1592(magicast@0.3.5)(rollup@4.27.4))(rollup@4.27.4)(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))
+ vite-plugin-vue-inspector: 5.1.3(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))
+ which: 3.0.1
+ ws: 8.18.0
+ transitivePeerDependencies:
+ - bufferutil
+ - rollup
+ - supports-color
+ - utf-8-validate
+ - vue
+
+ '@nuxt/kit@3.12.4(magicast@0.3.5)(rollup@4.27.4)':
+ dependencies:
+ '@nuxt/schema': 3.12.4(rollup@4.27.4)
c12: 1.11.2(magicast@0.3.5)
consola: 3.2.3
defu: 6.1.4
@@ -7116,88 +7116,89 @@ snapshots:
jiti: 1.21.6
klona: 2.0.6
knitwork: 1.1.0
- mlly: 1.7.1
+ mlly: 1.7.3
pathe: 1.1.2
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
scule: 1.3.0
semver: 7.6.3
ufo: 1.5.4
- unctx: 2.3.1(webpack-sources@3.2.3)
- unimport: 3.13.1(rollup@4.24.0)(webpack-sources@3.2.3)
- untyped: 1.5.0
+ unctx: 2.3.1
+ unimport: 3.14.2(rollup@4.27.4)
+ untyped: 1.5.1
transitivePeerDependencies:
- magicast
- rollup
- supports-color
- - webpack-sources
- '@nuxt/kit@3.7.4(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)':
+ '@nuxt/kit@3.14.1592(magicast@0.3.5)(rollup@4.27.4)':
dependencies:
- '@nuxt/schema': 3.7.4(rollup@4.24.0)(webpack-sources@3.2.3)
- c12: 1.11.2(magicast@0.3.5)
+ '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.27.4)
+ c12: 2.0.1(magicast@0.3.5)
consola: 3.2.3
defu: 6.1.4
- globby: 13.2.2
+ destr: 2.0.3
+ globby: 14.0.2
hash-sum: 2.0.0
- ignore: 5.3.2
- jiti: 1.21.6
+ ignore: 6.0.2
+ jiti: 2.4.1
+ klona: 2.0.6
knitwork: 1.1.0
- mlly: 1.7.1
+ mlly: 1.7.3
pathe: 1.1.2
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
scule: 1.3.0
semver: 7.6.3
ufo: 1.5.4
- unctx: 2.3.1(webpack-sources@3.2.3)
- unimport: 3.13.1(rollup@4.24.0)(webpack-sources@3.2.3)
- untyped: 1.5.0
+ unctx: 2.3.1
+ unimport: 3.14.2(rollup@4.27.4)
+ untyped: 1.5.1
transitivePeerDependencies:
- magicast
- rollup
- supports-color
- - webpack-sources
- '@nuxt/schema@3.13.2(rollup@4.24.0)(webpack-sources@3.2.3)':
+ '@nuxt/schema@3.12.4(rollup@4.27.4)':
dependencies:
compatx: 0.1.8
consola: 3.2.3
defu: 6.1.4
hookable: 5.5.3
pathe: 1.1.2
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
scule: 1.3.0
- std-env: 3.7.0
+ std-env: 3.8.0
ufo: 1.5.4
uncrypto: 0.1.3
- unimport: 3.13.1(rollup@4.24.0)(webpack-sources@3.2.3)
- untyped: 1.5.0
+ unimport: 3.14.2(rollup@4.27.4)
+ untyped: 1.5.1
transitivePeerDependencies:
- rollup
- supports-color
- - webpack-sources
- '@nuxt/schema@3.7.4(rollup@4.24.0)(webpack-sources@3.2.3)':
+ '@nuxt/schema@3.14.1592(magicast@0.3.5)(rollup@4.27.4)':
dependencies:
- '@nuxt/ui-templates': 1.3.4
+ c12: 2.0.1(magicast@0.3.5)
+ compatx: 0.1.8
consola: 3.2.3
defu: 6.1.4
hookable: 5.5.3
pathe: 1.1.2
- pkg-types: 1.2.0
- postcss-import-resolver: 2.0.0
- std-env: 3.7.0
+ pkg-types: 1.2.1
+ scule: 1.3.0
+ std-env: 3.8.0
ufo: 1.5.4
- unimport: 3.13.1(rollup@4.24.0)(webpack-sources@3.2.3)
- untyped: 1.5.0
+ uncrypto: 0.1.3
+ unimport: 3.14.2(rollup@4.27.4)
+ untyped: 1.5.1
transitivePeerDependencies:
+ - magicast
- rollup
- supports-color
- - webpack-sources
- '@nuxt/telemetry@2.6.0(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)':
+ '@nuxt/telemetry@2.6.0(magicast@0.3.5)(rollup@4.27.4)':
dependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
- ci-info: 4.0.0
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.27.4)
+ ci-info: 4.1.0
consola: 3.2.3
create-require: 1.1.1
defu: 6.1.4
@@ -7207,60 +7208,56 @@ snapshots:
is-docker: 3.0.0
jiti: 1.21.6
mri: 1.2.0
- nanoid: 5.0.7
- ofetch: 1.4.0
- package-manager-detector: 0.2.0
+ nanoid: 5.0.9
+ ofetch: 1.4.1
+ package-manager-detector: 0.2.5
parse-git-config: 3.0.0
pathe: 1.1.2
rc9: 2.1.2
- std-env: 3.7.0
+ std-env: 3.8.0
transitivePeerDependencies:
- magicast
- rollup
- supports-color
- - webpack-sources
- '@nuxt/ui-templates@1.3.4': {}
-
- '@nuxt/vite-builder@3.7.4(@types/node@22.7.4)(eslint@8.57.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.34.1)(typescript@5.6.2)(vue@3.4.8(typescript@5.6.2))(webpack-sources@3.2.3)':
+ '@nuxt/vite-builder@3.12.4(@types/node@22.10.1)(eslint@8.57.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.27.4)(terser@5.36.0)(typescript@5.6.2)(vue-tsc@2.1.6(typescript@5.6.2))(vue@3.5.13(typescript@5.6.2))':
dependencies:
- '@nuxt/kit': 3.7.4(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
- '@rollup/plugin-replace': 5.0.7(rollup@4.24.0)
- '@vitejs/plugin-vue': 4.6.2(vite@4.5.5(@types/node@22.7.4)(terser@5.34.1))(vue@3.4.8(typescript@5.6.2))
- '@vitejs/plugin-vue-jsx': 3.1.0(vite@4.5.5(@types/node@22.7.4)(terser@5.34.1))(vue@3.4.8(typescript@5.6.2))
- autoprefixer: 10.4.20(postcss@8.4.47)
+ '@nuxt/kit': 3.12.4(magicast@0.3.5)(rollup@4.27.4)
+ '@rollup/plugin-replace': 5.0.7(rollup@4.27.4)
+ '@vitejs/plugin-vue': 5.2.1(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))(vue@3.5.13(typescript@5.6.2))
+ '@vitejs/plugin-vue-jsx': 4.1.1(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))(vue@3.5.13(typescript@5.6.2))
+ autoprefixer: 10.4.20(postcss@8.4.49)
clear: 0.1.0
consola: 3.2.3
- cssnano: 6.1.2(postcss@8.4.47)
+ cssnano: 7.0.6(postcss@8.4.49)
defu: 6.1.4
- esbuild: 0.19.12
+ esbuild: 0.23.1
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
externality: 1.0.2
- fs-extra: 11.2.0
get-port-please: 3.1.2
h3: 1.13.0
knitwork: 1.1.0
- magic-string: 0.30.11
- mlly: 1.7.1
+ magic-string: 0.30.14
+ mlly: 1.7.3
ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.2.0
- postcss: 8.4.47
- postcss-import: 15.1.0(postcss@8.4.47)
- postcss-url: 10.1.3(postcss@8.4.47)
- rollup-plugin-visualizer: 5.12.0(rollup@4.24.0)
- std-env: 3.7.0
- strip-literal: 1.3.0
+ pkg-types: 1.2.1
+ postcss: 8.4.49
+ rollup-plugin-visualizer: 5.12.0(rollup@4.27.4)
+ std-env: 3.8.0
+ strip-literal: 2.1.1
ufo: 1.5.4
- unplugin: 1.14.1(webpack-sources@3.2.3)
- vite: 4.5.5(@types/node@22.7.4)(terser@5.34.1)
- vite-node: 0.33.0(@types/node@22.7.4)(terser@5.34.1)
- vite-plugin-checker: 0.6.4(eslint@8.57.1)(optionator@0.9.4)(typescript@5.6.2)(vite@4.5.5(@types/node@22.7.4)(terser@5.34.1))
- vue: 3.4.8(typescript@5.6.2)
+ unenv: 1.10.0
+ unplugin: 1.16.0
+ vite: 5.4.11(@types/node@22.10.1)(terser@5.36.0)
+ vite-node: 2.1.6(@types/node@22.10.1)(terser@5.36.0)
+ vite-plugin-checker: 0.7.2(eslint@8.57.1)(optionator@0.9.4)(typescript@5.6.2)(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))(vue-tsc@2.1.6(typescript@5.6.2))
+ vue: 3.5.13(typescript@5.6.2)
vue-bundle-renderer: 2.1.1
transitivePeerDependencies:
+ - '@biomejs/biome'
- '@types/node'
- eslint
- less
@@ -7270,6 +7267,7 @@ snapshots:
- optionator
- rollup
- sass
+ - sass-embedded
- stylelint
- stylus
- sugarss
@@ -7279,17 +7277,16 @@ snapshots:
- vls
- vti
- vue-tsc
- - webpack-sources
'@nuxtjs/eslint-config-typescript@12.1.0(eslint@8.57.1)(typescript@5.6.2)':
dependencies:
- '@nuxtjs/eslint-config': 12.0.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
+ '@nuxtjs/eslint-config': 12.0.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-plugin-import@2.31.0)(eslint@8.57.1))(eslint@8.57.1)
'@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2)
'@typescript-eslint/parser': 6.21.0(eslint@8.57.1)(typescript@5.6.2)
eslint: 8.57.1
eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-plugin-import@2.31.0)(eslint@8.57.1)
eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
- eslint-plugin-vue: 9.28.0(eslint@8.57.1)
+ eslint-plugin-vue: 9.31.0(eslint@8.57.1)
transitivePeerDependencies:
- eslint-import-resolver-node
- eslint-import-resolver-webpack
@@ -7297,16 +7294,16 @@ snapshots:
- supports-color
- typescript
- '@nuxtjs/eslint-config@12.0.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)':
+ '@nuxtjs/eslint-config@12.0.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-plugin-import@2.31.0)(eslint@8.57.1))(eslint@8.57.1)':
dependencies:
eslint: 8.57.1
- eslint-config-standard: 17.1.0(eslint-plugin-import@2.31.0)(eslint-plugin-n@15.7.0(eslint@8.57.1))(eslint-plugin-promise@6.6.0(eslint@8.57.1))(eslint@8.57.1)
+ eslint-config-standard: 17.1.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1))(eslint-plugin-n@15.7.0(eslint@8.57.1))(eslint-plugin-promise@6.6.0(eslint@8.57.1))(eslint@8.57.1)
eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
eslint-plugin-n: 15.7.0(eslint@8.57.1)
eslint-plugin-node: 11.1.0(eslint@8.57.1)
eslint-plugin-promise: 6.6.0(eslint@8.57.1)
eslint-plugin-unicorn: 44.0.2(eslint@8.57.1)
- eslint-plugin-vue: 9.28.0(eslint@8.57.1)
+ eslint-plugin-vue: 9.31.0(eslint@8.57.1)
local-pkg: 0.4.3
transitivePeerDependencies:
- '@typescript-eslint/parser'
@@ -7314,92 +7311,96 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- '@nuxtjs/tailwindcss@6.12.1(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)':
+ '@nuxtjs/tailwindcss@6.12.2(magicast@0.3.5)(rollup@4.27.4)':
dependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
- autoprefixer: 10.4.20(postcss@8.4.47)
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.27.4)
+ autoprefixer: 10.4.20(postcss@8.4.49)
consola: 3.2.3
defu: 6.1.4
h3: 1.13.0
+ klona: 2.0.6
pathe: 1.1.2
- postcss: 8.4.47
- postcss-nesting: 12.1.5(postcss@8.4.47)
- tailwind-config-viewer: 2.0.4(tailwindcss@3.4.13)
- tailwindcss: 3.4.13
+ postcss: 8.4.49
+ postcss-nesting: 13.0.1(postcss@8.4.49)
+ tailwind-config-viewer: 2.0.4(tailwindcss@3.4.15)
+ tailwindcss: 3.4.15
ufo: 1.5.4
- unctx: 2.3.1(webpack-sources@3.2.3)
+ unctx: 2.3.1
transitivePeerDependencies:
- magicast
- rollup
- supports-color
- ts-node
- - webpack-sources
- '@parcel/watcher-android-arm64@2.4.1':
+ '@parcel/watcher-android-arm64@2.5.0':
optional: true
- '@parcel/watcher-darwin-arm64@2.4.1':
+ '@parcel/watcher-darwin-arm64@2.5.0':
optional: true
- '@parcel/watcher-darwin-x64@2.4.1':
+ '@parcel/watcher-darwin-x64@2.5.0':
optional: true
- '@parcel/watcher-freebsd-x64@2.4.1':
+ '@parcel/watcher-freebsd-x64@2.5.0':
optional: true
- '@parcel/watcher-linux-arm-glibc@2.4.1':
+ '@parcel/watcher-linux-arm-glibc@2.5.0':
optional: true
- '@parcel/watcher-linux-arm64-glibc@2.4.1':
+ '@parcel/watcher-linux-arm-musl@2.5.0':
optional: true
- '@parcel/watcher-linux-arm64-musl@2.4.1':
+ '@parcel/watcher-linux-arm64-glibc@2.5.0':
optional: true
- '@parcel/watcher-linux-x64-glibc@2.4.1':
+ '@parcel/watcher-linux-arm64-musl@2.5.0':
optional: true
- '@parcel/watcher-linux-x64-musl@2.4.1':
+ '@parcel/watcher-linux-x64-glibc@2.5.0':
optional: true
- '@parcel/watcher-wasm@2.4.1':
+ '@parcel/watcher-linux-x64-musl@2.5.0':
+ optional: true
+
+ '@parcel/watcher-wasm@2.5.0':
dependencies:
is-glob: 4.0.3
micromatch: 4.0.8
- '@parcel/watcher-win32-arm64@2.4.1':
+ '@parcel/watcher-win32-arm64@2.5.0':
optional: true
- '@parcel/watcher-win32-ia32@2.4.1':
+ '@parcel/watcher-win32-ia32@2.5.0':
optional: true
- '@parcel/watcher-win32-x64@2.4.1':
+ '@parcel/watcher-win32-x64@2.5.0':
optional: true
- '@parcel/watcher@2.4.1':
+ '@parcel/watcher@2.5.0':
dependencies:
detect-libc: 1.0.3
is-glob: 4.0.3
micromatch: 4.0.8
node-addon-api: 7.1.1
optionalDependencies:
- '@parcel/watcher-android-arm64': 2.4.1
- '@parcel/watcher-darwin-arm64': 2.4.1
- '@parcel/watcher-darwin-x64': 2.4.1
- '@parcel/watcher-freebsd-x64': 2.4.1
- '@parcel/watcher-linux-arm-glibc': 2.4.1
- '@parcel/watcher-linux-arm64-glibc': 2.4.1
- '@parcel/watcher-linux-arm64-musl': 2.4.1
- '@parcel/watcher-linux-x64-glibc': 2.4.1
- '@parcel/watcher-linux-x64-musl': 2.4.1
- '@parcel/watcher-win32-arm64': 2.4.1
- '@parcel/watcher-win32-ia32': 2.4.1
- '@parcel/watcher-win32-x64': 2.4.1
+ '@parcel/watcher-android-arm64': 2.5.0
+ '@parcel/watcher-darwin-arm64': 2.5.0
+ '@parcel/watcher-darwin-x64': 2.5.0
+ '@parcel/watcher-freebsd-x64': 2.5.0
+ '@parcel/watcher-linux-arm-glibc': 2.5.0
+ '@parcel/watcher-linux-arm-musl': 2.5.0
+ '@parcel/watcher-linux-arm64-glibc': 2.5.0
+ '@parcel/watcher-linux-arm64-musl': 2.5.0
+ '@parcel/watcher-linux-x64-glibc': 2.5.0
+ '@parcel/watcher-linux-x64-musl': 2.5.0
+ '@parcel/watcher-win32-arm64': 2.5.0
+ '@parcel/watcher-win32-ia32': 2.5.0
+ '@parcel/watcher-win32-x64': 2.5.0
- '@pinia/nuxt@0.5.5(magicast@0.3.5)(rollup@4.24.0)(typescript@5.6.2)(vue@3.4.8(typescript@5.6.2))(webpack-sources@3.2.3)':
+ '@pinia/nuxt@0.5.5(magicast@0.3.5)(rollup@4.27.4)(typescript@5.6.2)(vue@3.4.8(typescript@5.6.2))':
dependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
- pinia: 2.2.4(typescript@5.6.2)(vue@3.4.8(typescript@5.6.2))
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.27.4)
+ pinia: 2.2.8(typescript@5.6.2)(vue@3.4.8(typescript@5.6.2))
transitivePeerDependencies:
- '@vue/composition-api'
- magicast
@@ -7407,54 +7408,82 @@ snapshots:
- supports-color
- typescript
- vue
- - webpack-sources
'@pkgjs/parseargs@0.11.0':
optional: true
'@pkgr/core@0.1.1': {}
- '@rollup/plugin-alias@5.1.1(rollup@4.24.0)':
- optionalDependencies:
- rollup: 4.24.0
+ '@polka/url@1.0.0-next.28': {}
- '@rollup/plugin-babel@5.3.1(@babel/core@7.25.7)(rollup@2.79.2)':
+ '@redocly/ajv@8.11.2':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-module-imports': 7.25.7
+ fast-deep-equal: 3.1.3
+ json-schema-traverse: 1.0.0
+ require-from-string: 2.0.2
+ uri-js-replace: 1.0.1
+
+ '@redocly/config@0.17.1': {}
+
+ '@redocly/openapi-core@1.25.15(supports-color@9.4.0)':
+ dependencies:
+ '@redocly/ajv': 8.11.2
+ '@redocly/config': 0.17.1
+ colorette: 1.4.0
+ https-proxy-agent: 7.0.5(supports-color@9.4.0)
+ js-levenshtein: 1.1.6
+ js-yaml: 4.1.0
+ lodash.isequal: 4.5.0
+ minimatch: 5.1.6
+ node-fetch: 2.7.0
+ pluralize: 8.0.0
+ yaml-ast-parser: 0.0.43
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@rollup/plugin-alias@5.1.1(rollup@4.27.4)':
+ optionalDependencies:
+ rollup: 4.27.4
+
+ '@rollup/plugin-babel@5.3.1(@babel/core@7.26.0)(rollup@2.79.2)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
'@rollup/pluginutils': 3.1.0(rollup@2.79.2)
rollup: 2.79.2
transitivePeerDependencies:
- supports-color
- '@rollup/plugin-commonjs@25.0.8(rollup@4.24.0)':
+ '@rollup/plugin-commonjs@28.0.1(rollup@4.27.4)':
dependencies:
- '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.4)
commondir: 1.0.1
estree-walker: 2.0.2
- glob: 8.1.0
+ fdir: 6.4.2(picomatch@4.0.2)
is-reference: 1.2.1
- magic-string: 0.30.11
+ magic-string: 0.30.14
+ picomatch: 4.0.2
optionalDependencies:
- rollup: 4.24.0
+ rollup: 4.27.4
- '@rollup/plugin-inject@5.0.5(rollup@4.24.0)':
+ '@rollup/plugin-inject@5.0.5(rollup@4.27.4)':
dependencies:
- '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.4)
estree-walker: 2.0.2
- magic-string: 0.30.11
+ magic-string: 0.30.14
optionalDependencies:
- rollup: 4.24.0
+ rollup: 4.27.4
- '@rollup/plugin-json@6.1.0(rollup@4.24.0)':
+ '@rollup/plugin-json@6.1.0(rollup@4.27.4)':
dependencies:
- '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.4)
optionalDependencies:
- rollup: 4.24.0
+ rollup: 4.27.4
'@rollup/plugin-node-resolve@15.3.0(rollup@2.79.2)':
dependencies:
- '@rollup/pluginutils': 5.1.2(rollup@2.79.2)
+ '@rollup/pluginutils': 5.1.3(rollup@2.79.2)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-module: 1.0.0
@@ -7462,15 +7491,15 @@ snapshots:
optionalDependencies:
rollup: 2.79.2
- '@rollup/plugin-node-resolve@15.3.0(rollup@4.24.0)':
+ '@rollup/plugin-node-resolve@15.3.0(rollup@4.27.4)':
dependencies:
- '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.4)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-module: 1.0.0
resolve: 1.22.8
optionalDependencies:
- rollup: 4.24.0
+ rollup: 4.27.4
'@rollup/plugin-replace@2.4.2(rollup@2.79.2)':
dependencies:
@@ -7478,28 +7507,35 @@ snapshots:
magic-string: 0.25.9
rollup: 2.79.2
- '@rollup/plugin-replace@5.0.7(rollup@4.24.0)':
+ '@rollup/plugin-replace@5.0.7(rollup@4.27.4)':
dependencies:
- '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
- magic-string: 0.30.11
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.4)
+ magic-string: 0.30.14
optionalDependencies:
- rollup: 4.24.0
+ rollup: 4.27.4
+
+ '@rollup/plugin-replace@6.0.1(rollup@4.27.4)':
+ dependencies:
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.4)
+ magic-string: 0.30.14
+ optionalDependencies:
+ rollup: 4.27.4
'@rollup/plugin-terser@0.4.4(rollup@2.79.2)':
dependencies:
serialize-javascript: 6.0.2
smob: 1.5.0
- terser: 5.34.1
+ terser: 5.36.0
optionalDependencies:
rollup: 2.79.2
- '@rollup/plugin-terser@0.4.4(rollup@4.24.0)':
+ '@rollup/plugin-terser@0.4.4(rollup@4.27.4)':
dependencies:
serialize-javascript: 6.0.2
smob: 1.5.0
- terser: 5.34.1
+ terser: 5.36.0
optionalDependencies:
- rollup: 4.24.0
+ rollup: 4.27.4
'@rollup/pluginutils@3.1.0(rollup@2.79.2)':
dependencies:
@@ -7513,68 +7549,74 @@ snapshots:
estree-walker: 2.0.2
picomatch: 2.3.1
- '@rollup/pluginutils@5.1.2(rollup@2.79.2)':
+ '@rollup/pluginutils@5.1.3(rollup@2.79.2)':
dependencies:
'@types/estree': 1.0.6
estree-walker: 2.0.2
- picomatch: 2.3.1
+ picomatch: 4.0.2
optionalDependencies:
rollup: 2.79.2
- '@rollup/pluginutils@5.1.2(rollup@4.24.0)':
+ '@rollup/pluginutils@5.1.3(rollup@4.27.4)':
dependencies:
'@types/estree': 1.0.6
estree-walker: 2.0.2
- picomatch: 2.3.1
+ picomatch: 4.0.2
optionalDependencies:
- rollup: 4.24.0
+ rollup: 4.27.4
- '@rollup/rollup-android-arm-eabi@4.24.0':
+ '@rollup/rollup-android-arm-eabi@4.27.4':
optional: true
- '@rollup/rollup-android-arm64@4.24.0':
+ '@rollup/rollup-android-arm64@4.27.4':
optional: true
- '@rollup/rollup-darwin-arm64@4.24.0':
+ '@rollup/rollup-darwin-arm64@4.27.4':
optional: true
- '@rollup/rollup-darwin-x64@4.24.0':
+ '@rollup/rollup-darwin-x64@4.27.4':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.24.0':
+ '@rollup/rollup-freebsd-arm64@4.27.4':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.24.0':
+ '@rollup/rollup-freebsd-x64@4.27.4':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.24.0':
+ '@rollup/rollup-linux-arm-gnueabihf@4.27.4':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.24.0':
+ '@rollup/rollup-linux-arm-musleabihf@4.27.4':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.24.0':
+ '@rollup/rollup-linux-arm64-gnu@4.27.4':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.24.0':
+ '@rollup/rollup-linux-arm64-musl@4.27.4':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.24.0':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.27.4':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.24.0':
+ '@rollup/rollup-linux-riscv64-gnu@4.27.4':
optional: true
- '@rollup/rollup-linux-x64-musl@4.24.0':
+ '@rollup/rollup-linux-s390x-gnu@4.27.4':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.24.0':
+ '@rollup/rollup-linux-x64-gnu@4.27.4':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.24.0':
+ '@rollup/rollup-linux-x64-musl@4.27.4':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.24.0':
+ '@rollup/rollup-win32-arm64-msvc@4.27.4':
+ optional: true
+
+ '@rollup/rollup-win32-ia32-msvc@4.27.4':
+ optional: true
+
+ '@rollup/rollup-win32-x64-msvc@4.27.4':
optional: true
'@rtsao/scc@1.1.0': {}
@@ -7590,36 +7632,32 @@ snapshots:
magic-string: 0.25.9
string.prototype.matchall: 4.0.11
- '@tailwindcss/aspect-ratio@0.4.2(tailwindcss@3.4.13)':
+ '@tailwindcss/aspect-ratio@0.4.2(tailwindcss@3.4.15)':
dependencies:
- tailwindcss: 3.4.13
+ tailwindcss: 3.4.15
- '@tailwindcss/forms@0.5.9(tailwindcss@3.4.13)':
+ '@tailwindcss/forms@0.5.9(tailwindcss@3.4.15)':
dependencies:
mini-svg-data-uri: 1.4.4
- tailwindcss: 3.4.13
+ tailwindcss: 3.4.15
- '@tailwindcss/typography@0.5.15(tailwindcss@3.4.13)':
+ '@tailwindcss/typography@0.5.15(tailwindcss@3.4.15)':
dependencies:
lodash.castarray: 4.4.0
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
postcss-selector-parser: 6.0.10
- tailwindcss: 3.4.13
+ tailwindcss: 3.4.15
- '@tanstack/virtual-core@3.10.8': {}
+ '@tanstack/virtual-core@3.10.9': {}
- '@tanstack/vue-virtual@3.10.8(vue@3.4.8(typescript@5.6.2))':
+ '@tanstack/vue-virtual@3.10.9(vue@3.4.8(typescript@5.6.2))':
dependencies:
- '@tanstack/virtual-core': 3.10.8
+ '@tanstack/virtual-core': 3.10.9
vue: 3.4.8(typescript@5.6.2)
'@trysound/sax@0.2.0': {}
- '@types/dompurify@3.0.5':
- dependencies:
- '@types/trusted-types': 2.0.7
-
'@types/eslint@8.56.12':
dependencies:
'@types/estree': 1.0.6
@@ -7631,7 +7669,7 @@ snapshots:
'@types/http-proxy@1.17.15':
dependencies:
- '@types/node': 22.7.4
+ '@types/node': 22.10.1
'@types/json-schema@7.0.15': {}
@@ -7648,9 +7686,9 @@ snapshots:
'@types/mdurl@1.0.5': {}
- '@types/node@22.7.4':
+ '@types/node@22.10.1':
dependencies:
- undici-types: 6.19.8
+ undici-types: 6.20.0
'@types/normalize-package-data@2.4.4': {}
@@ -7664,19 +7702,19 @@ snapshots:
'@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2)':
dependencies:
- '@eslint-community/regexpp': 4.11.1
+ '@eslint-community/regexpp': 4.12.1
'@typescript-eslint/parser': 6.21.0(eslint@8.57.1)(typescript@5.6.2)
'@typescript-eslint/scope-manager': 6.21.0
'@typescript-eslint/type-utils': 6.21.0(eslint@8.57.1)(typescript@5.6.2)
'@typescript-eslint/utils': 6.21.0(eslint@8.57.1)(typescript@5.6.2)
'@typescript-eslint/visitor-keys': 6.21.0
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
eslint: 8.57.1
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.6.2)
+ ts-api-utils: 1.4.3(typescript@5.6.2)
optionalDependencies:
typescript: 5.6.2
transitivePeerDependencies:
@@ -7688,7 +7726,7 @@ snapshots:
'@typescript-eslint/types': 6.21.0
'@typescript-eslint/typescript-estree': 6.21.0(typescript@5.6.2)
'@typescript-eslint/visitor-keys': 6.21.0
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
eslint: 8.57.1
optionalDependencies:
typescript: 5.6.2
@@ -7704,9 +7742,9 @@ snapshots:
dependencies:
'@typescript-eslint/typescript-estree': 6.21.0(typescript@5.6.2)
'@typescript-eslint/utils': 6.21.0(eslint@8.57.1)(typescript@5.6.2)
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
eslint: 8.57.1
- ts-api-utils: 1.3.0(typescript@5.6.2)
+ ts-api-utils: 1.4.3(typescript@5.6.2)
optionalDependencies:
typescript: 5.6.2
transitivePeerDependencies:
@@ -7718,12 +7756,12 @@ snapshots:
dependencies:
'@typescript-eslint/types': 6.21.0
'@typescript-eslint/visitor-keys': 6.21.0
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.3
semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.6.2)
+ ts-api-utils: 1.4.3(typescript@5.6.2)
optionalDependencies:
typescript: 5.6.2
transitivePeerDependencies:
@@ -7731,7 +7769,7 @@ snapshots:
'@typescript-eslint/utils@6.21.0(eslint@8.57.1)(typescript@5.6.2)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 6.21.0
@@ -7750,82 +7788,82 @@ snapshots:
'@ungap/structured-clone@1.2.0': {}
- '@unhead/dom@1.11.7':
+ '@unhead/dom@1.11.13':
dependencies:
- '@unhead/schema': 1.11.7
- '@unhead/shared': 1.11.7
+ '@unhead/schema': 1.11.13
+ '@unhead/shared': 1.11.13
- '@unhead/schema@1.11.7':
+ '@unhead/schema@1.11.13':
dependencies:
hookable: 5.5.3
zhead: 2.2.4
- '@unhead/shared@1.11.7':
+ '@unhead/shared@1.11.13':
dependencies:
- '@unhead/schema': 1.11.7
+ '@unhead/schema': 1.11.13
- '@unhead/ssr@1.11.7':
+ '@unhead/ssr@1.11.13':
dependencies:
- '@unhead/schema': 1.11.7
- '@unhead/shared': 1.11.7
+ '@unhead/schema': 1.11.13
+ '@unhead/shared': 1.11.13
- '@unhead/vue@1.11.7(vue@3.4.8(typescript@5.6.2))':
+ '@unhead/vue@1.11.13(vue@3.5.13(typescript@5.6.2))':
dependencies:
- '@unhead/schema': 1.11.7
- '@unhead/shared': 1.11.7
+ '@unhead/schema': 1.11.13
+ '@unhead/shared': 1.11.13
defu: 6.1.4
hookable: 5.5.3
- unhead: 1.11.7
- vue: 3.4.8(typescript@5.6.2)
+ unhead: 1.11.13
+ vue: 3.5.13(typescript@5.6.2)
- '@vercel/nft@0.26.5':
+ '@vercel/nft@0.27.7(rollup@4.27.4)':
dependencies:
'@mapbox/node-pre-gyp': 1.0.11
- '@rollup/pluginutils': 4.2.1
- acorn: 8.10.0
- acorn-import-attributes: 1.9.5(acorn@8.10.0)
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.4)
+ acorn: 8.12.1
+ acorn-import-attributes: 1.9.5(acorn@8.12.1)
async-sema: 3.1.1
bindings: 1.5.0
estree-walker: 2.0.2
glob: 7.2.3
graceful-fs: 4.2.11
micromatch: 4.0.8
- node-gyp-build: 4.8.2
+ node-gyp-build: 4.8.4
resolve-from: 5.0.0
transitivePeerDependencies:
- encoding
+ - rollup
- supports-color
- '@vite-pwa/nuxt@0.5.0(magicast@0.3.5)(rollup@4.24.0)(vite@4.5.5(@types/node@22.7.4)(terser@5.34.1))(webpack-sources@3.2.3)(workbox-build@7.1.1)(workbox-window@7.1.0)':
+ '@vite-pwa/nuxt@0.5.0(magicast@0.3.5)(rollup@4.27.4)(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))(workbox-build@7.1.1)(workbox-window@7.1.0)':
dependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.27.4)
pathe: 1.1.2
ufo: 1.5.4
- vite-plugin-pwa: 0.20.5(vite@4.5.5(@types/node@22.7.4)(terser@5.34.1))(workbox-build@7.1.1)(workbox-window@7.1.0)
+ vite-plugin-pwa: 0.21.0(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))(workbox-build@7.1.1)(workbox-window@7.1.0)
transitivePeerDependencies:
- '@vite-pwa/assets-generator'
- magicast
- rollup
- supports-color
- vite
- - webpack-sources
- workbox-build
- workbox-window
- '@vitejs/plugin-vue-jsx@3.1.0(vite@4.5.5(@types/node@22.7.4)(terser@5.34.1))(vue@3.4.8(typescript@5.6.2))':
+ '@vitejs/plugin-vue-jsx@4.1.1(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))(vue@3.5.13(typescript@5.6.2))':
dependencies:
- '@babel/core': 7.25.7
- '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.25.7)
- '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.25.7)
- vite: 4.5.5(@types/node@22.7.4)(terser@5.34.1)
- vue: 3.4.8(typescript@5.6.2)
+ '@babel/core': 7.26.0
+ '@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.26.0)
+ '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0)
+ vite: 5.4.11(@types/node@22.10.1)(terser@5.36.0)
+ vue: 3.5.13(typescript@5.6.2)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue@4.6.2(vite@4.5.5(@types/node@22.7.4)(terser@5.34.1))(vue@3.4.8(typescript@5.6.2))':
+ '@vitejs/plugin-vue@5.2.1(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))(vue@3.5.13(typescript@5.6.2))':
dependencies:
- vite: 4.5.5(@types/node@22.7.4)(terser@5.34.1)
- vue: 3.4.8(typescript@5.6.2)
+ vite: 5.4.11(@types/node@22.10.1)(terser@5.36.0)
+ vue: 3.5.13(typescript@5.6.2)
'@vitest/expect@1.6.0':
dependencies:
@@ -7841,7 +7879,7 @@ snapshots:
'@vitest/snapshot@1.6.0':
dependencies:
- magic-string: 0.30.11
+ magic-string: 0.30.14
pathe: 1.1.2
pretty-format: 29.7.0
@@ -7856,61 +7894,73 @@ snapshots:
loupe: 2.3.7
pretty-format: 29.7.0
- '@vue-macros/common@1.14.0(rollup@4.24.0)(vue@3.4.8(typescript@5.6.2))':
+ '@volar/language-core@2.4.10':
dependencies:
- '@babel/types': 7.25.7
- '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
- '@vue/compiler-sfc': 3.5.11
- ast-kit: 1.2.1
- local-pkg: 0.5.0
- magic-string-ast: 0.6.2
+ '@volar/source-map': 2.4.10
+
+ '@volar/source-map@2.4.10': {}
+
+ '@volar/typescript@2.4.10':
+ dependencies:
+ '@volar/language-core': 2.4.10
+ path-browserify: 1.0.1
+ vscode-uri: 3.0.8
+
+ '@vue-macros/common@1.15.0(rollup@4.27.4)(vue@3.5.13(typescript@5.6.2))':
+ dependencies:
+ '@babel/types': 7.26.0
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.4)
+ '@vue/compiler-sfc': 3.5.13
+ ast-kit: 1.3.1
+ local-pkg: 0.5.1
+ magic-string-ast: 0.6.3
optionalDependencies:
- vue: 3.4.8(typescript@5.6.2)
+ vue: 3.5.13(typescript@5.6.2)
transitivePeerDependencies:
- rollup
'@vue/babel-helper-vue-transform-on@1.2.5': {}
- '@vue/babel-plugin-jsx@1.2.5(@babel/core@7.25.7)':
+ '@vue/babel-plugin-jsx@1.2.5(@babel/core@7.26.0)':
dependencies:
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.7)
- '@babel/template': 7.25.7
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
'@vue/babel-helper-vue-transform-on': 1.2.5
- '@vue/babel-plugin-resolve-type': 1.2.5(@babel/core@7.25.7)
+ '@vue/babel-plugin-resolve-type': 1.2.5(@babel/core@7.26.0)
html-tags: 3.3.1
svg-tags: 1.0.0
optionalDependencies:
- '@babel/core': 7.25.7
+ '@babel/core': 7.26.0
transitivePeerDependencies:
- supports-color
- '@vue/babel-plugin-resolve-type@1.2.5(@babel/core@7.25.7)':
+ '@vue/babel-plugin-resolve-type@1.2.5(@babel/core@7.26.0)':
dependencies:
- '@babel/code-frame': 7.25.7
- '@babel/core': 7.25.7
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/parser': 7.25.7
- '@vue/compiler-sfc': 3.5.11
+ '@babel/code-frame': 7.26.2
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/parser': 7.26.2
+ '@vue/compiler-sfc': 3.5.13
transitivePeerDependencies:
- supports-color
'@vue/compiler-core@3.4.8':
dependencies:
- '@babel/parser': 7.25.7
+ '@babel/parser': 7.26.2
'@vue/shared': 3.4.8
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.1
- '@vue/compiler-core@3.5.11':
+ '@vue/compiler-core@3.5.13':
dependencies:
- '@babel/parser': 7.25.7
- '@vue/shared': 3.5.11
+ '@babel/parser': 7.26.2
+ '@vue/shared': 3.5.13
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.1
@@ -7920,33 +7970,33 @@ snapshots:
'@vue/compiler-core': 3.4.8
'@vue/shared': 3.4.8
- '@vue/compiler-dom@3.5.11':
+ '@vue/compiler-dom@3.5.13':
dependencies:
- '@vue/compiler-core': 3.5.11
- '@vue/shared': 3.5.11
+ '@vue/compiler-core': 3.5.13
+ '@vue/shared': 3.5.13
'@vue/compiler-sfc@3.4.8':
dependencies:
- '@babel/parser': 7.25.7
+ '@babel/parser': 7.26.2
'@vue/compiler-core': 3.4.8
'@vue/compiler-dom': 3.4.8
'@vue/compiler-ssr': 3.4.8
'@vue/shared': 3.4.8
estree-walker: 2.0.2
- magic-string: 0.30.11
- postcss: 8.4.47
+ magic-string: 0.30.14
+ postcss: 8.4.49
source-map-js: 1.2.1
- '@vue/compiler-sfc@3.5.11':
+ '@vue/compiler-sfc@3.5.13':
dependencies:
- '@babel/parser': 7.25.7
- '@vue/compiler-core': 3.5.11
- '@vue/compiler-dom': 3.5.11
- '@vue/compiler-ssr': 3.5.11
- '@vue/shared': 3.5.11
+ '@babel/parser': 7.26.2
+ '@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.11
- postcss: 8.4.47
+ magic-string: 0.30.14
+ postcss: 8.4.49
source-map-js: 1.2.1
'@vue/compiler-ssr@3.4.8':
@@ -7954,30 +8004,74 @@ snapshots:
'@vue/compiler-dom': 3.4.8
'@vue/shared': 3.4.8
- '@vue/compiler-ssr@3.5.11':
+ '@vue/compiler-ssr@3.5.13':
dependencies:
- '@vue/compiler-dom': 3.5.11
- '@vue/shared': 3.5.11
+ '@vue/compiler-dom': 3.5.13
+ '@vue/shared': 3.5.13
+
+ '@vue/compiler-vue2@2.7.16':
+ dependencies:
+ de-indent: 1.0.2
+ he: 1.2.0
'@vue/devtools-api@6.6.4': {}
+ '@vue/devtools-core@7.6.4(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))(vue@3.5.13(typescript@5.6.2))':
+ dependencies:
+ '@vue/devtools-kit': 7.6.4
+ '@vue/devtools-shared': 7.6.7
+ mitt: 3.0.1
+ nanoid: 3.3.8
+ pathe: 1.1.2
+ vite-hot-client: 0.2.4(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))
+ vue: 3.5.13(typescript@5.6.2)
+ transitivePeerDependencies:
+ - vite
+
+ '@vue/devtools-kit@7.6.4':
+ dependencies:
+ '@vue/devtools-shared': 7.6.7
+ birpc: 0.2.19
+ hookable: 5.5.3
+ mitt: 3.0.1
+ perfect-debounce: 1.0.0
+ speakingurl: 14.0.1
+ superjson: 2.2.1
+
+ '@vue/devtools-shared@7.6.7':
+ dependencies:
+ rfdc: 1.4.1
+
+ '@vue/language-core@2.1.6(typescript@5.6.2)':
+ dependencies:
+ '@volar/language-core': 2.4.10
+ '@vue/compiler-dom': 3.5.13
+ '@vue/compiler-vue2': 2.7.16
+ '@vue/shared': 3.5.13
+ computeds: 0.0.1
+ minimatch: 9.0.5
+ muggle-string: 0.4.1
+ path-browserify: 1.0.1
+ optionalDependencies:
+ typescript: 5.6.2
+
'@vue/reactivity@3.4.8':
dependencies:
'@vue/shared': 3.4.8
- '@vue/reactivity@3.5.12':
+ '@vue/reactivity@3.5.13':
dependencies:
- '@vue/shared': 3.5.12
+ '@vue/shared': 3.5.13
'@vue/runtime-core@3.4.8':
dependencies:
'@vue/reactivity': 3.4.8
'@vue/shared': 3.4.8
- '@vue/runtime-core@3.5.12':
+ '@vue/runtime-core@3.5.13':
dependencies:
- '@vue/reactivity': 3.5.12
- '@vue/shared': 3.5.12
+ '@vue/reactivity': 3.5.13
+ '@vue/shared': 3.5.13
'@vue/runtime-dom@3.4.8':
dependencies:
@@ -7985,17 +8079,28 @@ snapshots:
'@vue/shared': 3.4.8
csstype: 3.1.3
+ '@vue/runtime-dom@3.5.13':
+ dependencies:
+ '@vue/reactivity': 3.5.13
+ '@vue/runtime-core': 3.5.13
+ '@vue/shared': 3.5.13
+ csstype: 3.1.3
+
'@vue/server-renderer@3.4.8(vue@3.4.8(typescript@5.6.2))':
dependencies:
'@vue/compiler-ssr': 3.4.8
'@vue/shared': 3.4.8
vue: 3.4.8(typescript@5.6.2)
+ '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.6.2))':
+ dependencies:
+ '@vue/compiler-ssr': 3.5.13
+ '@vue/shared': 3.5.13
+ vue: 3.5.13(typescript@5.6.2)
+
'@vue/shared@3.4.8': {}
- '@vue/shared@3.5.11': {}
-
- '@vue/shared@3.5.12': {}
+ '@vue/shared@3.5.13': {}
'@vuepic/vue-datepicker@8.8.1(vue@3.4.8(typescript@5.6.2))':
dependencies:
@@ -8014,13 +8119,13 @@ snapshots:
'@vueuse/metadata@10.11.1': {}
- '@vueuse/nuxt@10.11.1(magicast@0.3.5)(nuxt@3.7.4(@parcel/watcher@2.4.1)(@types/node@22.7.4)(eslint@8.57.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.34.1)(typescript@5.6.2)(webpack-sources@3.2.3))(rollup@4.24.0)(vue@3.4.8(typescript@5.6.2))(webpack-sources@3.2.3)':
+ '@vueuse/nuxt@10.11.1(magicast@0.3.5)(nuxt@3.12.4(@parcel/watcher@2.5.0)(@types/node@22.10.1)(eslint@8.57.1)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.27.4)(terser@5.36.0)(typescript@5.6.2)(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))(vue-tsc@2.1.6(typescript@5.6.2)))(rollup@4.27.4)(vue@3.4.8(typescript@5.6.2))':
dependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.27.4)
'@vueuse/core': 10.11.1(vue@3.4.8(typescript@5.6.2))
'@vueuse/metadata': 10.11.1
- local-pkg: 0.5.0
- nuxt: 3.7.4(@parcel/watcher@2.4.1)(@types/node@22.7.4)(eslint@8.57.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.34.1)(typescript@5.6.2)(webpack-sources@3.2.3)
+ local-pkg: 0.5.1
+ nuxt: 3.12.4(@parcel/watcher@2.5.0)(@types/node@22.10.1)(eslint@8.57.1)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.27.4)(terser@5.36.0)(typescript@5.6.2)(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))(vue-tsc@2.1.6(typescript@5.6.2))
vue-demi: 0.14.10(vue@3.4.8(typescript@5.6.2))
transitivePeerDependencies:
- '@vue/composition-api'
@@ -8028,13 +8133,12 @@ snapshots:
- rollup
- supports-color
- vue
- - webpack-sources
- '@vueuse/router@10.11.1(vue-router@4.4.5(vue@3.4.8(typescript@5.6.2)))(vue@3.4.8(typescript@5.6.2))':
+ '@vueuse/router@10.11.1(vue-router@4.5.0(vue@3.4.8(typescript@5.6.2)))(vue@3.4.8(typescript@5.6.2))':
dependencies:
'@vueuse/shared': 10.11.1(vue@3.4.8(typescript@5.6.2))
vue-demi: 0.14.10(vue@3.4.8(typescript@5.6.2))
- vue-router: 4.4.5(vue@3.4.8(typescript@5.6.2))
+ vue-router: 4.5.0(vue@3.4.8(typescript@5.6.2))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -8057,25 +8161,31 @@ snapshots:
mime-types: 2.1.35
negotiator: 0.6.3
- acorn-import-attributes@1.9.5(acorn@8.10.0):
- dependencies:
- acorn: 8.10.0
-
- acorn-jsx@5.3.2(acorn@8.12.1):
+ acorn-import-attributes@1.9.5(acorn@8.12.1):
dependencies:
acorn: 8.12.1
+ acorn-jsx@5.3.2(acorn@8.14.0):
+ dependencies:
+ acorn: 8.14.0
+
acorn-walk@8.3.4:
dependencies:
- acorn: 8.12.1
-
- acorn@8.10.0: {}
+ acorn: 8.14.0
acorn@8.12.1: {}
+ acorn@8.14.0: {}
+
agent-base@6.0.2:
dependencies:
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ agent-base@7.1.1(supports-color@9.4.0):
+ dependencies:
+ debug: 4.3.7(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
@@ -8089,7 +8199,7 @@ snapshots:
ajv@8.17.1:
dependencies:
fast-deep-equal: 3.1.3
- fast-uri: 3.0.2
+ fast-uri: 3.0.3
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
@@ -8103,10 +8213,6 @@ snapshots:
ansi-regex@6.1.0: {}
- ansi-styles@3.2.1:
- dependencies:
- color-convert: 1.9.3
-
ansi-styles@4.3.0:
dependencies:
color-convert: 2.0.1
@@ -8162,7 +8268,7 @@ snapshots:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.5
es-object-atoms: 1.0.0
get-intrinsic: 1.2.4
is-string: 1.0.7
@@ -8173,7 +8279,7 @@ snapshots:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.5
es-errors: 1.3.0
es-object-atoms: 1.0.0
es-shim-unscopables: 1.0.2
@@ -8182,14 +8288,14 @@ snapshots:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.5
es-shim-unscopables: 1.0.2
array.prototype.flatmap@1.3.2:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.5
es-shim-unscopables: 1.0.2
arraybuffer.prototype.slice@1.0.3:
@@ -8197,7 +8303,7 @@ snapshots:
array-buffer-byte-length: 1.0.1
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.5
es-errors: 1.3.0
get-intrinsic: 1.2.4
is-array-buffer: 3.0.4
@@ -8205,25 +8311,15 @@ snapshots:
assertion-error@1.1.0: {}
- ast-kit@0.9.5(rollup@4.24.0):
+ ast-kit@1.3.1:
dependencies:
- '@babel/parser': 7.25.7
- '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
- pathe: 1.1.2
- transitivePeerDependencies:
- - rollup
-
- ast-kit@1.2.1:
- dependencies:
- '@babel/parser': 7.25.7
+ '@babel/parser': 7.26.2
pathe: 1.1.2
- ast-walker-scope@0.5.0(rollup@4.24.0):
+ ast-walker-scope@0.6.2:
dependencies:
- '@babel/parser': 7.25.7
- ast-kit: 0.9.5(rollup@4.24.0)
- transitivePeerDependencies:
- - rollup
+ '@babel/parser': 7.26.2
+ ast-kit: 1.3.1
async-sema@3.1.1: {}
@@ -8235,14 +8331,14 @@ snapshots:
at-least-node@1.0.0: {}
- autoprefixer@10.4.20(postcss@8.4.47):
+ autoprefixer@10.4.20(postcss@8.4.49):
dependencies:
- browserslist: 4.24.0
- caniuse-lite: 1.0.30001667
+ browserslist: 4.24.2
+ caniuse-lite: 1.0.30001684
fraction.js: 4.3.7
normalize-range: 0.1.2
- picocolors: 1.1.0
- postcss: 8.4.47
+ picocolors: 1.1.1
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
available-typed-arrays@1.0.7:
@@ -8251,27 +8347,27 @@ snapshots:
b4a@1.6.7: {}
- babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.25.7):
+ babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.0):
dependencies:
- '@babel/compat-data': 7.25.7
- '@babel/core': 7.25.7
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.7)
+ '@babel/compat-data': 7.26.2
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.25.7):
+ babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.7)
- core-js-compat: 3.38.1
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
+ core-js-compat: 3.39.0
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.25.7):
+ babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.7)
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
@@ -8288,6 +8384,8 @@ snapshots:
dependencies:
file-uri-to-path: 1.0.0
+ birpc@0.2.19: {}
+
boolbase@1.0.0: {}
brace-expansion@1.1.11:
@@ -8303,12 +8401,12 @@ snapshots:
dependencies:
fill-range: 7.1.1
- browserslist@4.24.0:
+ browserslist@4.24.2:
dependencies:
- caniuse-lite: 1.0.30001667
- electron-to-chromium: 1.5.32
+ caniuse-lite: 1.0.30001684
+ electron-to-chromium: 1.5.67
node-releases: 2.0.18
- update-browserslist-db: 1.1.1(browserslist@4.24.0)
+ update-browserslist-db: 1.1.1(browserslist@4.24.2)
buffer-crc32@1.0.0: {}
@@ -8325,19 +8423,40 @@ snapshots:
dependencies:
semver: 7.6.3
+ bundle-name@4.1.0:
+ dependencies:
+ run-applescript: 7.0.0
+
c12@1.11.2(magicast@0.3.5):
dependencies:
chokidar: 3.6.0
- confbox: 0.1.7
+ confbox: 0.1.8
defu: 6.1.4
dotenv: 16.4.5
giget: 1.2.3
jiti: 1.21.6
- mlly: 1.7.1
+ mlly: 1.7.3
ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
+ rc9: 2.1.2
+ optionalDependencies:
+ magicast: 0.3.5
+
+ c12@2.0.1(magicast@0.3.5):
+ dependencies:
+ chokidar: 4.0.1
+ confbox: 0.1.8
+ defu: 6.1.4
+ dotenv: 16.4.5
+ giget: 1.2.3
+ jiti: 2.4.1
+ mlly: 1.7.3
+ ohash: 1.1.4
+ pathe: 1.1.2
+ perfect-debounce: 1.0.0
+ pkg-types: 1.2.1
rc9: 2.1.2
optionalDependencies:
magicast: 0.3.5
@@ -8365,12 +8484,12 @@ snapshots:
caniuse-api@3.0.0:
dependencies:
- browserslist: 4.24.0
- caniuse-lite: 1.0.30001667
+ browserslist: 4.24.2
+ caniuse-lite: 1.0.30001684
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- caniuse-lite@1.0.30001667: {}
+ caniuse-lite@1.0.30001684: {}
chai@4.5.0:
dependencies:
@@ -8382,18 +8501,12 @@ snapshots:
pathval: 1.1.1
type-detect: 4.1.0
- chalk@2.4.2:
- dependencies:
- ansi-styles: 3.2.1
- escape-string-regexp: 1.0.5
- supports-color: 5.5.0
-
chalk@4.1.2:
dependencies:
ansi-styles: 4.3.0
supports-color: 7.2.0
- chalk@5.3.0: {}
+ change-case@5.4.4: {}
check-error@1.0.3:
dependencies:
@@ -8411,11 +8524,15 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
+ chokidar@4.0.1:
+ dependencies:
+ readdirp: 4.0.2
+
chownr@2.0.0: {}
ci-info@3.9.0: {}
- ci-info@4.0.0: {}
+ ci-info@4.1.0: {}
citty@0.1.6:
dependencies:
@@ -8443,16 +8560,10 @@ snapshots:
co@4.6.0: {}
- color-convert@1.9.3:
- dependencies:
- color-name: 1.1.3
-
color-convert@2.0.1:
dependencies:
color-name: 1.1.4
- color-name@1.1.3: {}
-
color-name@1.1.4: {}
color-string@1.9.1:
@@ -8469,6 +8580,8 @@ snapshots:
colord@2.9.3: {}
+ colorette@1.4.0: {}
+
commander@2.20.3: {}
commander@4.1.1: {}
@@ -8493,9 +8606,11 @@ snapshots:
normalize-path: 3.0.0
readable-stream: 4.5.2
+ computeds@0.0.1: {}
+
concat-map@0.0.1: {}
- confbox@0.1.7: {}
+ confbox@0.1.8: {}
consola@3.2.3: {}
@@ -8516,9 +8631,13 @@ snapshots:
depd: 2.0.0
keygrip: 1.1.0
- core-js-compat@3.38.1:
+ copy-anything@3.0.5:
dependencies:
- browserslist: 4.24.0
+ is-what: 4.1.16
+
+ core-js-compat@3.39.0:
+ dependencies:
+ browserslist: 4.24.2
core-util-is@1.0.3: {}
@@ -8531,25 +8650,25 @@ snapshots:
create-require@1.1.1: {}
- croner@8.1.2: {}
+ croner@9.0.0: {}
- cross-spawn@7.0.3:
+ cronstrue@2.52.0: {}
+
+ cross-spawn@7.0.6:
dependencies:
path-key: 3.1.1
shebang-command: 2.0.0
which: 2.0.2
- crossws@0.2.4: {}
-
crossws@0.3.1:
dependencies:
uncrypto: 0.1.3
crypto-random-string@2.0.0: {}
- css-declaration-sorter@7.2.0(postcss@8.4.47):
+ css-declaration-sorter@7.2.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
css-select@5.1.0:
dependencies:
@@ -8578,49 +8697,49 @@ snapshots:
cssesc@3.0.0: {}
- cssnano-preset-default@6.1.2(postcss@8.4.47):
+ cssnano-preset-default@7.0.6(postcss@8.4.49):
dependencies:
- browserslist: 4.24.0
- css-declaration-sorter: 7.2.0(postcss@8.4.47)
- cssnano-utils: 4.0.2(postcss@8.4.47)
- postcss: 8.4.47
- postcss-calc: 9.0.1(postcss@8.4.47)
- postcss-colormin: 6.1.0(postcss@8.4.47)
- postcss-convert-values: 6.1.0(postcss@8.4.47)
- postcss-discard-comments: 6.0.2(postcss@8.4.47)
- postcss-discard-duplicates: 6.0.3(postcss@8.4.47)
- postcss-discard-empty: 6.0.3(postcss@8.4.47)
- postcss-discard-overridden: 6.0.2(postcss@8.4.47)
- postcss-merge-longhand: 6.0.5(postcss@8.4.47)
- postcss-merge-rules: 6.1.1(postcss@8.4.47)
- postcss-minify-font-values: 6.1.0(postcss@8.4.47)
- postcss-minify-gradients: 6.0.3(postcss@8.4.47)
- postcss-minify-params: 6.1.0(postcss@8.4.47)
- postcss-minify-selectors: 6.0.4(postcss@8.4.47)
- postcss-normalize-charset: 6.0.2(postcss@8.4.47)
- postcss-normalize-display-values: 6.0.2(postcss@8.4.47)
- postcss-normalize-positions: 6.0.2(postcss@8.4.47)
- postcss-normalize-repeat-style: 6.0.2(postcss@8.4.47)
- postcss-normalize-string: 6.0.2(postcss@8.4.47)
- postcss-normalize-timing-functions: 6.0.2(postcss@8.4.47)
- postcss-normalize-unicode: 6.1.0(postcss@8.4.47)
- postcss-normalize-url: 6.0.2(postcss@8.4.47)
- postcss-normalize-whitespace: 6.0.2(postcss@8.4.47)
- postcss-ordered-values: 6.0.2(postcss@8.4.47)
- postcss-reduce-initial: 6.1.0(postcss@8.4.47)
- postcss-reduce-transforms: 6.0.2(postcss@8.4.47)
- postcss-svgo: 6.0.3(postcss@8.4.47)
- postcss-unique-selectors: 6.0.4(postcss@8.4.47)
+ browserslist: 4.24.2
+ css-declaration-sorter: 7.2.0(postcss@8.4.49)
+ cssnano-utils: 5.0.0(postcss@8.4.49)
+ postcss: 8.4.49
+ postcss-calc: 10.0.2(postcss@8.4.49)
+ postcss-colormin: 7.0.2(postcss@8.4.49)
+ postcss-convert-values: 7.0.4(postcss@8.4.49)
+ postcss-discard-comments: 7.0.3(postcss@8.4.49)
+ postcss-discard-duplicates: 7.0.1(postcss@8.4.49)
+ postcss-discard-empty: 7.0.0(postcss@8.4.49)
+ postcss-discard-overridden: 7.0.0(postcss@8.4.49)
+ postcss-merge-longhand: 7.0.4(postcss@8.4.49)
+ postcss-merge-rules: 7.0.4(postcss@8.4.49)
+ postcss-minify-font-values: 7.0.0(postcss@8.4.49)
+ postcss-minify-gradients: 7.0.0(postcss@8.4.49)
+ postcss-minify-params: 7.0.2(postcss@8.4.49)
+ postcss-minify-selectors: 7.0.4(postcss@8.4.49)
+ postcss-normalize-charset: 7.0.0(postcss@8.4.49)
+ postcss-normalize-display-values: 7.0.0(postcss@8.4.49)
+ postcss-normalize-positions: 7.0.0(postcss@8.4.49)
+ postcss-normalize-repeat-style: 7.0.0(postcss@8.4.49)
+ postcss-normalize-string: 7.0.0(postcss@8.4.49)
+ postcss-normalize-timing-functions: 7.0.0(postcss@8.4.49)
+ postcss-normalize-unicode: 7.0.2(postcss@8.4.49)
+ postcss-normalize-url: 7.0.0(postcss@8.4.49)
+ postcss-normalize-whitespace: 7.0.0(postcss@8.4.49)
+ postcss-ordered-values: 7.0.1(postcss@8.4.49)
+ postcss-reduce-initial: 7.0.2(postcss@8.4.49)
+ postcss-reduce-transforms: 7.0.0(postcss@8.4.49)
+ postcss-svgo: 7.0.1(postcss@8.4.49)
+ postcss-unique-selectors: 7.0.3(postcss@8.4.49)
- cssnano-utils@4.0.2(postcss@8.4.47):
+ cssnano-utils@5.0.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
- cssnano@6.1.2(postcss@8.4.47):
+ cssnano@7.0.6(postcss@8.4.49):
dependencies:
- cssnano-preset-default: 6.1.2(postcss@8.4.47)
+ cssnano-preset-default: 7.0.6(postcss@8.4.49)
lilconfig: 3.1.2
- postcss: 8.4.47
+ postcss: 8.4.49
csso@5.0.5:
dependencies:
@@ -8628,16 +8747,14 @@ snapshots:
csstype@3.1.3: {}
- cuint@0.2.2: {}
-
- daisyui@2.52.0(autoprefixer@10.4.20(postcss@8.4.47))(postcss@8.4.47):
+ daisyui@2.52.0(autoprefixer@10.4.20(postcss@8.4.49))(postcss@8.4.49):
dependencies:
- autoprefixer: 10.4.20(postcss@8.4.47)
+ autoprefixer: 10.4.20(postcss@8.4.49)
color: 4.2.3
css-selector-tokenizer: 0.8.0
- postcss: 8.4.47
- postcss-js: 4.0.1(postcss@8.4.47)
- tailwindcss: 3.4.13
+ postcss: 8.4.49
+ postcss-js: 4.0.1(postcss@8.4.49)
+ tailwindcss: 3.4.15
transitivePeerDependencies:
- ts-node
@@ -8661,7 +8778,9 @@ snapshots:
date-fns@3.6.0: {}
- db0@0.1.4: {}
+ db0@0.2.1: {}
+
+ de-indent@1.0.2: {}
debug@2.6.9:
dependencies:
@@ -8671,9 +8790,11 @@ snapshots:
dependencies:
ms: 2.1.3
- debug@4.3.7:
+ debug@4.3.7(supports-color@9.4.0):
dependencies:
ms: 2.1.3
+ optionalDependencies:
+ supports-color: 9.4.0
deep-eql@4.1.4:
dependencies:
@@ -8685,6 +8806,13 @@ snapshots:
deepmerge@4.3.1: {}
+ default-browser-id@5.0.0: {}
+
+ default-browser@5.2.1:
+ dependencies:
+ bundle-name: 4.1.0
+ default-browser-id: 5.0.0
+
define-data-property@1.1.4:
dependencies:
es-define-property: 1.0.0
@@ -8693,6 +8821,8 @@ snapshots:
define-lazy-prop@2.0.0: {}
+ define-lazy-prop@3.0.0: {}
+
define-properties@1.2.1:
dependencies:
define-data-property: 1.1.4
@@ -8717,12 +8847,14 @@ snapshots:
detect-libc@2.0.3: {}
- devalue@4.3.3: {}
+ devalue@5.1.1: {}
didyoumean@1.2.2: {}
diff-sequences@29.6.3: {}
+ diff@7.0.0: {}
+
dir-glob@3.0.1:
dependencies:
path-type: 4.0.0
@@ -8749,7 +8881,9 @@ snapshots:
dependencies:
domelementtype: 2.3.0
- dompurify@3.1.7: {}
+ dompurify@3.2.2:
+ optionalDependencies:
+ '@types/trusted-types': 2.0.7
domutils@3.1.0:
dependencies:
@@ -8757,9 +8891,9 @@ snapshots:
domelementtype: 2.3.0
domhandler: 5.0.3
- dot-prop@8.0.2:
+ dot-prop@9.0.0:
dependencies:
- type-fest: 3.13.1
+ type-fest: 4.29.0
dotenv@16.4.5: {}
@@ -8773,7 +8907,7 @@ snapshots:
dependencies:
jake: 10.9.2
- electron-to-chromium@1.5.32: {}
+ electron-to-chromium@1.5.67: {}
emoji-regex@8.0.0: {}
@@ -8783,12 +8917,6 @@ snapshots:
encodeurl@2.0.0: {}
- enhanced-resolve@4.5.0:
- dependencies:
- graceful-fs: 4.2.11
- memory-fs: 0.5.0
- tapable: 1.1.3
-
enhanced-resolve@5.17.1:
dependencies:
graceful-fs: 4.2.11
@@ -8796,15 +8924,15 @@ snapshots:
entities@4.5.0: {}
- errno@0.1.8:
- dependencies:
- prr: 1.0.1
-
error-ex@1.3.2:
dependencies:
is-arrayish: 0.2.1
- es-abstract@1.23.3:
+ error-stack-parser-es@0.1.5: {}
+
+ errx@0.1.0: {}
+
+ es-abstract@1.23.5:
dependencies:
array-buffer-byte-length: 1.0.1
arraybuffer.prototype.slice: 1.0.3
@@ -8817,7 +8945,7 @@ snapshots:
es-errors: 1.3.0
es-object-atoms: 1.0.0
es-set-tostringtag: 2.0.3
- es-to-primitive: 1.2.1
+ es-to-primitive: 1.3.0
function.prototype.name: 1.1.6
get-intrinsic: 1.2.4
get-symbol-description: 1.0.2
@@ -8837,7 +8965,7 @@ snapshots:
is-string: 1.0.7
is-typed-array: 1.1.13
is-weakref: 1.0.2
- object-inspect: 1.13.2
+ object-inspect: 1.13.3
object-keys: 1.1.1
object.assign: 4.1.5
regexp.prototype.flags: 1.5.3
@@ -8848,10 +8976,10 @@ snapshots:
string.prototype.trimstart: 1.0.8
typed-array-buffer: 1.0.2
typed-array-byte-length: 1.0.1
- typed-array-byte-offset: 1.0.2
- typed-array-length: 1.0.6
+ typed-array-byte-offset: 1.0.3
+ typed-array-length: 1.0.7
unbox-primitive: 1.0.2
- which-typed-array: 1.1.15
+ which-typed-array: 1.1.16
es-define-property@1.0.0:
dependencies:
@@ -8859,6 +8987,8 @@ snapshots:
es-errors@1.3.0: {}
+ es-module-lexer@1.5.4: {}
+
es-object-atoms@1.0.0:
dependencies:
es-errors: 1.3.0
@@ -8873,89 +9003,12 @@ snapshots:
dependencies:
hasown: 2.0.2
- es-to-primitive@1.2.1:
+ es-to-primitive@1.3.0:
dependencies:
is-callable: 1.2.7
is-date-object: 1.0.5
is-symbol: 1.0.4
- esbuild@0.18.20:
- optionalDependencies:
- '@esbuild/android-arm': 0.18.20
- '@esbuild/android-arm64': 0.18.20
- '@esbuild/android-x64': 0.18.20
- '@esbuild/darwin-arm64': 0.18.20
- '@esbuild/darwin-x64': 0.18.20
- '@esbuild/freebsd-arm64': 0.18.20
- '@esbuild/freebsd-x64': 0.18.20
- '@esbuild/linux-arm': 0.18.20
- '@esbuild/linux-arm64': 0.18.20
- '@esbuild/linux-ia32': 0.18.20
- '@esbuild/linux-loong64': 0.18.20
- '@esbuild/linux-mips64el': 0.18.20
- '@esbuild/linux-ppc64': 0.18.20
- '@esbuild/linux-riscv64': 0.18.20
- '@esbuild/linux-s390x': 0.18.20
- '@esbuild/linux-x64': 0.18.20
- '@esbuild/netbsd-x64': 0.18.20
- '@esbuild/openbsd-x64': 0.18.20
- '@esbuild/sunos-x64': 0.18.20
- '@esbuild/win32-arm64': 0.18.20
- '@esbuild/win32-ia32': 0.18.20
- '@esbuild/win32-x64': 0.18.20
-
- esbuild@0.19.12:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.19.12
- '@esbuild/android-arm': 0.19.12
- '@esbuild/android-arm64': 0.19.12
- '@esbuild/android-x64': 0.19.12
- '@esbuild/darwin-arm64': 0.19.12
- '@esbuild/darwin-x64': 0.19.12
- '@esbuild/freebsd-arm64': 0.19.12
- '@esbuild/freebsd-x64': 0.19.12
- '@esbuild/linux-arm': 0.19.12
- '@esbuild/linux-arm64': 0.19.12
- '@esbuild/linux-ia32': 0.19.12
- '@esbuild/linux-loong64': 0.19.12
- '@esbuild/linux-mips64el': 0.19.12
- '@esbuild/linux-ppc64': 0.19.12
- '@esbuild/linux-riscv64': 0.19.12
- '@esbuild/linux-s390x': 0.19.12
- '@esbuild/linux-x64': 0.19.12
- '@esbuild/netbsd-x64': 0.19.12
- '@esbuild/openbsd-x64': 0.19.12
- '@esbuild/sunos-x64': 0.19.12
- '@esbuild/win32-arm64': 0.19.12
- '@esbuild/win32-ia32': 0.19.12
- '@esbuild/win32-x64': 0.19.12
-
- esbuild@0.20.2:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.20.2
- '@esbuild/android-arm': 0.20.2
- '@esbuild/android-arm64': 0.20.2
- '@esbuild/android-x64': 0.20.2
- '@esbuild/darwin-arm64': 0.20.2
- '@esbuild/darwin-x64': 0.20.2
- '@esbuild/freebsd-arm64': 0.20.2
- '@esbuild/freebsd-x64': 0.20.2
- '@esbuild/linux-arm': 0.20.2
- '@esbuild/linux-arm64': 0.20.2
- '@esbuild/linux-ia32': 0.20.2
- '@esbuild/linux-loong64': 0.20.2
- '@esbuild/linux-mips64el': 0.20.2
- '@esbuild/linux-ppc64': 0.20.2
- '@esbuild/linux-riscv64': 0.20.2
- '@esbuild/linux-s390x': 0.20.2
- '@esbuild/linux-x64': 0.20.2
- '@esbuild/netbsd-x64': 0.20.2
- '@esbuild/openbsd-x64': 0.20.2
- '@esbuild/sunos-x64': 0.20.2
- '@esbuild/win32-arm64': 0.20.2
- '@esbuild/win32-ia32': 0.20.2
- '@esbuild/win32-x64': 0.20.2
-
esbuild@0.21.5:
optionalDependencies:
'@esbuild/aix-ppc64': 0.21.5
@@ -8982,6 +9035,60 @@ snapshots:
'@esbuild/win32-ia32': 0.21.5
'@esbuild/win32-x64': 0.21.5
+ esbuild@0.23.1:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.23.1
+ '@esbuild/android-arm': 0.23.1
+ '@esbuild/android-arm64': 0.23.1
+ '@esbuild/android-x64': 0.23.1
+ '@esbuild/darwin-arm64': 0.23.1
+ '@esbuild/darwin-x64': 0.23.1
+ '@esbuild/freebsd-arm64': 0.23.1
+ '@esbuild/freebsd-x64': 0.23.1
+ '@esbuild/linux-arm': 0.23.1
+ '@esbuild/linux-arm64': 0.23.1
+ '@esbuild/linux-ia32': 0.23.1
+ '@esbuild/linux-loong64': 0.23.1
+ '@esbuild/linux-mips64el': 0.23.1
+ '@esbuild/linux-ppc64': 0.23.1
+ '@esbuild/linux-riscv64': 0.23.1
+ '@esbuild/linux-s390x': 0.23.1
+ '@esbuild/linux-x64': 0.23.1
+ '@esbuild/netbsd-x64': 0.23.1
+ '@esbuild/openbsd-arm64': 0.23.1
+ '@esbuild/openbsd-x64': 0.23.1
+ '@esbuild/sunos-x64': 0.23.1
+ '@esbuild/win32-arm64': 0.23.1
+ '@esbuild/win32-ia32': 0.23.1
+ '@esbuild/win32-x64': 0.23.1
+
+ esbuild@0.24.0:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.24.0
+ '@esbuild/android-arm': 0.24.0
+ '@esbuild/android-arm64': 0.24.0
+ '@esbuild/android-x64': 0.24.0
+ '@esbuild/darwin-arm64': 0.24.0
+ '@esbuild/darwin-x64': 0.24.0
+ '@esbuild/freebsd-arm64': 0.24.0
+ '@esbuild/freebsd-x64': 0.24.0
+ '@esbuild/linux-arm': 0.24.0
+ '@esbuild/linux-arm64': 0.24.0
+ '@esbuild/linux-ia32': 0.24.0
+ '@esbuild/linux-loong64': 0.24.0
+ '@esbuild/linux-mips64el': 0.24.0
+ '@esbuild/linux-ppc64': 0.24.0
+ '@esbuild/linux-riscv64': 0.24.0
+ '@esbuild/linux-s390x': 0.24.0
+ '@esbuild/linux-x64': 0.24.0
+ '@esbuild/netbsd-x64': 0.24.0
+ '@esbuild/openbsd-arm64': 0.24.0
+ '@esbuild/openbsd-x64': 0.24.0
+ '@esbuild/sunos-x64': 0.24.0
+ '@esbuild/win32-arm64': 0.24.0
+ '@esbuild/win32-ia32': 0.24.0
+ '@esbuild/win32-x64': 0.24.0
+
escalade@3.2.0: {}
escape-html@1.0.3: {}
@@ -9004,7 +9111,7 @@ snapshots:
dependencies:
eslint: 8.57.1
- eslint-config-standard@17.1.0(eslint-plugin-import@2.31.0)(eslint-plugin-n@15.7.0(eslint@8.57.1))(eslint-plugin-promise@6.6.0(eslint@8.57.1))(eslint@8.57.1):
+ eslint-config-standard@17.1.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1))(eslint-plugin-n@15.7.0(eslint@8.57.1))(eslint-plugin-promise@6.6.0(eslint@8.57.1))(eslint@8.57.1):
dependencies:
eslint: 8.57.1
eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
@@ -9022,13 +9129,13 @@ snapshots:
eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-plugin-import@2.31.0)(eslint@8.57.1):
dependencies:
'@nolyfill/is-core-module': 1.0.39
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
enhanced-resolve: 5.17.1
eslint: 8.57.1
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-plugin-import@2.31.0)(eslint@8.57.1))(eslint@8.57.1)
fast-glob: 3.3.2
get-tsconfig: 4.8.1
- is-bun-module: 1.2.1
+ is-bun-module: 1.3.0
is-glob: 4.0.3
optionalDependencies:
eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
@@ -9038,7 +9145,7 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-plugin-import@2.31.0)(eslint@8.57.1))(eslint@8.57.1):
dependencies:
debug: 3.2.7
optionalDependencies:
@@ -9072,7 +9179,7 @@ snapshots:
doctrine: 2.1.0
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-plugin-import@2.31.0)(eslint@8.57.1))(eslint@8.57.1)
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -9112,12 +9219,12 @@ snapshots:
resolve: 1.22.8
semver: 6.3.1
- eslint-plugin-prettier@5.2.1(@types/eslint@8.56.12)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3):
+ eslint-plugin-prettier@5.2.1(@types/eslint@8.56.12)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.4.1):
dependencies:
eslint: 8.57.1
- prettier: 3.3.3
+ prettier: 3.4.1
prettier-linter-helpers: 1.0.0
- synckit: 0.9.1
+ synckit: 0.9.2
optionalDependencies:
'@types/eslint': 8.56.12
eslint-config-prettier: 9.1.0(eslint@8.57.1)
@@ -9126,15 +9233,15 @@ snapshots:
dependencies:
eslint: 8.57.1
- eslint-plugin-tailwindcss@3.17.4(tailwindcss@3.4.13):
+ eslint-plugin-tailwindcss@3.17.5(tailwindcss@3.4.15):
dependencies:
fast-glob: 3.3.2
- postcss: 8.4.47
- tailwindcss: 3.4.13
+ postcss: 8.4.49
+ tailwindcss: 3.4.15
eslint-plugin-unicorn@44.0.2(eslint@8.57.1):
dependencies:
- '@babel/helper-validator-identifier': 7.25.7
+ '@babel/helper-validator-identifier': 7.25.9
ci-info: 3.9.0
clean-regexp: 1.0.0
eslint: 8.57.1
@@ -9150,9 +9257,9 @@ snapshots:
semver: 7.6.3
strip-indent: 3.0.0
- eslint-plugin-vue@9.28.0(eslint@8.57.1):
+ eslint-plugin-vue@9.31.0(eslint@8.57.1):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
eslint: 8.57.1
globals: 13.24.0
natural-compare: 1.4.0
@@ -9186,8 +9293,8 @@ snapshots:
eslint@8.57.1:
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
- '@eslint-community/regexpp': 4.11.1
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
+ '@eslint-community/regexpp': 4.12.1
'@eslint/eslintrc': 2.1.4
'@eslint/js': 8.57.1
'@humanwhocodes/config-array': 0.13.0
@@ -9196,8 +9303,8 @@ snapshots:
'@ungap/structured-clone': 1.2.0
ajv: 6.12.6
chalk: 4.1.2
- cross-spawn: 7.0.3
- debug: 4.3.7
+ cross-spawn: 7.0.6
+ debug: 4.3.7(supports-color@9.4.0)
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.2.2
@@ -9229,8 +9336,8 @@ snapshots:
espree@9.6.1:
dependencies:
- acorn: 8.12.1
- acorn-jsx: 5.3.2(acorn@8.12.1)
+ acorn: 8.14.0
+ acorn-jsx: 5.3.2(acorn@8.14.0)
eslint-visitor-keys: 3.4.3
esprima@4.0.1: {}
@@ -9263,9 +9370,21 @@ snapshots:
events@3.3.0: {}
+ execa@7.2.0:
+ dependencies:
+ cross-spawn: 7.0.6
+ get-stream: 6.0.1
+ human-signals: 4.3.1
+ is-stream: 3.0.0
+ merge-stream: 2.0.0
+ npm-run-path: 5.3.0
+ onetime: 6.0.0
+ signal-exit: 3.0.7
+ strip-final-newline: 3.0.0
+
execa@8.0.1:
dependencies:
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
get-stream: 8.0.1
human-signals: 5.0.0
is-stream: 3.0.0
@@ -9278,7 +9397,7 @@ snapshots:
externality@1.0.2:
dependencies:
enhanced-resolve: 5.17.1
- mlly: 1.7.1
+ mlly: 1.7.3
pathe: 1.1.2
ufo: 1.5.4
@@ -9300,7 +9419,9 @@ snapshots:
fast-levenshtein@2.0.6: {}
- fast-uri@3.0.2: {}
+ fast-npm-meta@0.2.2: {}
+
+ fast-uri@3.0.3: {}
fastparse@1.1.2: {}
@@ -9308,7 +9429,7 @@ snapshots:
dependencies:
reusify: 1.0.4
- fdir@6.4.0(picomatch@4.0.2):
+ fdir@6.4.2(picomatch@4.0.2):
optionalDependencies:
picomatch: 4.0.2
@@ -9338,11 +9459,11 @@ snapshots:
flat-cache@3.2.0:
dependencies:
- flatted: 3.3.1
+ flatted: 3.3.2
keyv: 4.5.4
rimraf: 3.0.2
- flatted@3.3.1: {}
+ flatted@3.3.2: {}
follow-redirects@1.15.9: {}
@@ -9352,7 +9473,7 @@ snapshots:
foreground-child@3.3.0:
dependencies:
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
signal-exit: 4.1.0
fraction.js@4.3.7: {}
@@ -9387,7 +9508,7 @@ snapshots:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.5
functions-have-names: 1.2.3
functions-have-names@1.2.3: {}
@@ -9422,6 +9543,8 @@ snapshots:
get-port-please@3.1.2: {}
+ get-stream@6.0.1: {}
+
get-stream@8.0.1: {}
get-symbol-description@1.0.2:
@@ -9482,13 +9605,9 @@ snapshots:
once: 1.4.0
path-is-absolute: 1.0.1
- glob@8.1.0:
+ global-directory@4.0.1:
dependencies:
- fs.realpath: 1.0.0
- inflight: 1.0.6
- inherits: 2.0.4
- minimatch: 5.1.6
- once: 1.4.0
+ ini: 4.1.1
globals@11.12.0: {}
@@ -9510,14 +9629,6 @@ snapshots:
merge2: 1.4.1
slash: 3.0.0
- globby@13.2.2:
- dependencies:
- dir-glob: 3.0.1
- fast-glob: 3.3.2
- ignore: 5.3.2
- merge2: 1.4.1
- slash: 4.0.0
-
globby@14.0.2:
dependencies:
'@sindresorhus/merge-streams': 2.3.0
@@ -9554,8 +9665,6 @@ snapshots:
has-bigints@1.0.2: {}
- has-flag@3.0.0: {}
-
has-flag@4.0.0: {}
has-property-descriptors@1.0.2:
@@ -9578,6 +9687,8 @@ snapshots:
dependencies:
function-bind: 1.1.2
+ he@1.2.0: {}
+
hookable@5.5.3: {}
hosted-git-info@2.8.9: {}
@@ -9625,12 +9736,21 @@ snapshots:
https-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ https-proxy-agent@7.0.5(supports-color@9.4.0):
+ dependencies:
+ agent-base: 7.1.1(supports-color@9.4.0)
+ debug: 4.3.7(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
httpxy@0.1.5: {}
+ human-signals@4.3.1: {}
+
human-signals@5.0.0: {}
idb@7.1.1: {}
@@ -9639,6 +9759,10 @@ snapshots:
ignore@5.3.2: {}
+ ignore@6.0.2: {}
+
+ image-meta@0.2.1: {}
+
import-fresh@3.3.0:
dependencies:
parent-module: 1.0.1
@@ -9648,6 +9772,8 @@ snapshots:
indent-string@4.0.0: {}
+ index-to-position@0.1.2: {}
+
inflight@1.0.6:
dependencies:
once: 1.4.0
@@ -9659,24 +9785,26 @@ snapshots:
ini@1.3.8: {}
+ ini@4.1.1: {}
+
internal-slot@1.0.7:
dependencies:
es-errors: 1.3.0
hasown: 2.0.2
side-channel: 1.0.6
- intl-messageformat@10.5.14:
+ intl-messageformat@10.7.7:
dependencies:
- '@formatjs/ecma402-abstract': 2.0.0
- '@formatjs/fast-memoize': 2.2.0
- '@formatjs/icu-messageformat-parser': 2.7.8
- tslib: 2.7.0
+ '@formatjs/ecma402-abstract': 2.2.4
+ '@formatjs/fast-memoize': 2.2.3
+ '@formatjs/icu-messageformat-parser': 2.9.4
+ tslib: 2.8.1
ioredis@5.4.1:
dependencies:
'@ioredis/commands': 1.2.0
cluster-key-slot: 1.1.2
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
denque: 2.1.0
lodash.defaults: 4.2.0
lodash.isarguments: 3.1.0
@@ -9697,6 +9825,10 @@ snapshots:
is-arrayish@0.3.2: {}
+ is-async-function@2.0.0:
+ dependencies:
+ has-tostringtag: 1.0.2
+
is-bigint@1.0.4:
dependencies:
has-bigints: 1.0.2
@@ -9714,7 +9846,7 @@ snapshots:
dependencies:
builtin-modules: 3.3.0
- is-bun-module@1.2.1:
+ is-bun-module@1.3.0:
dependencies:
semver: 7.6.3
@@ -9738,6 +9870,10 @@ snapshots:
is-extglob@2.1.1: {}
+ is-finalizationregistry@1.1.0:
+ dependencies:
+ call-bind: 1.0.7
+
is-fullwidth-code-point@3.0.0: {}
is-generator-function@1.0.10:
@@ -9752,6 +9888,13 @@ snapshots:
dependencies:
is-docker: 3.0.0
+ is-installed-globally@1.0.0:
+ dependencies:
+ global-directory: 4.0.1
+ is-path-inside: 4.0.0
+
+ is-map@2.0.3: {}
+
is-module@1.0.0: {}
is-negative-zero@2.0.3: {}
@@ -9766,6 +9909,8 @@ snapshots:
is-path-inside@3.0.3: {}
+ is-path-inside@4.0.0: {}
+
is-reference@1.2.1:
dependencies:
'@types/estree': 1.0.6
@@ -9777,6 +9922,8 @@ snapshots:
is-regexp@1.0.0: {}
+ is-set@2.0.3: {}
+
is-shared-array-buffer@1.0.3:
dependencies:
call-bind: 1.0.7
@@ -9799,12 +9946,21 @@ snapshots:
is-typed-array@1.1.13:
dependencies:
- which-typed-array: 1.1.15
+ which-typed-array: 1.1.16
+
+ is-weakmap@2.0.2: {}
is-weakref@1.0.2:
dependencies:
call-bind: 1.0.7
+ is-weakset@2.0.3:
+ dependencies:
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
+
+ is-what@4.1.16: {}
+
is-wsl@2.2.0:
dependencies:
is-docker: 2.2.1
@@ -9845,11 +10001,13 @@ snapshots:
jiti@1.21.6: {}
- jiti@2.2.1: {}
+ jiti@2.4.1: {}
+
+ js-levenshtein@1.1.6: {}
js-tokens@4.0.0: {}
- js-tokens@9.0.0: {}
+ js-tokens@9.0.1: {}
js-yaml@4.1.0:
dependencies:
@@ -9877,7 +10035,7 @@ snapshots:
jsonc-eslint-parser@2.4.0:
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
eslint-visitor-keys: 3.4.3
espree: 9.6.1
semver: 7.6.3
@@ -9898,6 +10056,8 @@ snapshots:
dependencies:
json-buffer: 3.0.1
+ kleur@3.0.3: {}
+
klona@2.0.6: {}
knitwork@1.1.0: {}
@@ -9911,7 +10071,7 @@ snapshots:
koa-send@5.0.1:
dependencies:
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
http-errors: 1.8.1
resolve-path: 1.4.0
transitivePeerDependencies:
@@ -9931,7 +10091,7 @@ snapshots:
content-disposition: 0.5.4
content-type: 1.0.5
cookies: 0.9.1
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
delegates: 1.0.0
depd: 2.0.0
destroy: 1.2.0
@@ -9954,6 +10114,11 @@ snapshots:
kolorist@1.8.0: {}
+ launch-editor@2.9.1:
+ dependencies:
+ picocolors: 1.1.1
+ shell-quote: 1.8.2
+
lazystream@1.0.1:
dependencies:
readable-stream: 2.3.8
@@ -9977,33 +10142,31 @@ snapshots:
listhen@1.9.0:
dependencies:
- '@parcel/watcher': 2.4.1
- '@parcel/watcher-wasm': 2.4.1
+ '@parcel/watcher': 2.5.0
+ '@parcel/watcher-wasm': 2.5.0
citty: 0.1.6
clipboardy: 4.0.0
consola: 3.2.3
- crossws: 0.2.4
+ crossws: 0.3.1
defu: 6.1.4
get-port-please: 3.1.2
h3: 1.13.0
http-shutdown: 1.2.2
- jiti: 2.2.1
- mlly: 1.7.1
+ jiti: 2.4.1
+ mlly: 1.7.3
node-forge: 1.3.1
pathe: 1.1.2
- std-env: 3.7.0
+ std-env: 3.8.0
ufo: 1.5.4
untun: 0.1.3
uqr: 0.1.2
- transitivePeerDependencies:
- - uWebSockets.js
local-pkg@0.4.3: {}
- local-pkg@0.5.0:
+ local-pkg@0.5.1:
dependencies:
- mlly: 1.7.1
- pkg-types: 1.2.0
+ mlly: 1.7.3
+ pkg-types: 1.2.1
locate-path@5.0.0:
dependencies:
@@ -10021,6 +10184,8 @@ snapshots:
lodash.isarguments@3.1.0: {}
+ lodash.isequal@4.5.0: {}
+
lodash.isplainobject@4.0.6: {}
lodash.memoize@4.1.2: {}
@@ -10045,24 +10210,23 @@ snapshots:
lunr@2.3.9: {}
- magic-string-ast@0.6.2:
+ magic-string-ast@0.6.3:
dependencies:
- magic-string: 0.30.11
+ magic-string: 0.30.14
magic-string@0.25.9:
dependencies:
sourcemap-codec: 1.4.8
- magic-string@0.30.11:
+ magic-string@0.30.14:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
magicast@0.3.5:
dependencies:
- '@babel/parser': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
source-map-js: 1.2.1
- optional: true
make-dir@3.1.0:
dependencies:
@@ -10085,11 +10249,6 @@ snapshots:
media-typer@0.3.0: {}
- memory-fs@0.5.0:
- dependencies:
- errno: 0.1.8
- readable-stream: 2.3.8
-
merge-stream@2.0.0: {}
merge2@1.4.1: {}
@@ -10109,8 +10268,6 @@ snapshots:
mime@1.6.0: {}
- mime@2.5.2: {}
-
mime@3.0.0: {}
mime@4.0.4: {}
@@ -10121,10 +10278,6 @@ snapshots:
mini-svg-data-uri@1.4.4: {}
- minimatch@3.0.8:
- dependencies:
- brace-expansion: 1.1.11
-
minimatch@3.1.2:
dependencies:
brace-expansion: 1.1.11
@@ -10156,67 +10309,74 @@ snapshots:
minipass: 3.3.6
yallist: 4.0.0
+ mitt@3.0.1: {}
+
mkdirp@0.5.6:
dependencies:
minimist: 1.2.8
mkdirp@1.0.4: {}
- mlly@1.7.1:
+ mlly@1.7.3:
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
pathe: 1.1.2
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
ufo: 1.5.4
mri@1.2.0: {}
+ mrmime@2.0.0: {}
+
ms@2.0.0: {}
ms@2.1.3: {}
+ muggle-string@0.4.1: {}
+
mz@2.7.0:
dependencies:
any-promise: 1.3.0
object-assign: 4.1.1
thenify-all: 1.6.0
- nanoid@3.3.7: {}
+ nanoid@3.3.8: {}
- nanoid@5.0.7: {}
+ nanoid@5.0.9: {}
natural-compare@1.4.0: {}
negotiator@0.6.3: {}
- nitropack@2.9.7(magicast@0.3.5)(webpack-sources@3.2.3):
+ nitropack@2.10.4(typescript@5.6.2):
dependencies:
'@cloudflare/kv-asset-handler': 0.3.4
'@netlify/functions': 2.8.2
- '@rollup/plugin-alias': 5.1.1(rollup@4.24.0)
- '@rollup/plugin-commonjs': 25.0.8(rollup@4.24.0)
- '@rollup/plugin-inject': 5.0.5(rollup@4.24.0)
- '@rollup/plugin-json': 6.1.0(rollup@4.24.0)
- '@rollup/plugin-node-resolve': 15.3.0(rollup@4.24.0)
- '@rollup/plugin-replace': 5.0.7(rollup@4.24.0)
- '@rollup/plugin-terser': 0.4.4(rollup@4.24.0)
- '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
+ '@rollup/plugin-alias': 5.1.1(rollup@4.27.4)
+ '@rollup/plugin-commonjs': 28.0.1(rollup@4.27.4)
+ '@rollup/plugin-inject': 5.0.5(rollup@4.27.4)
+ '@rollup/plugin-json': 6.1.0(rollup@4.27.4)
+ '@rollup/plugin-node-resolve': 15.3.0(rollup@4.27.4)
+ '@rollup/plugin-replace': 6.0.1(rollup@4.27.4)
+ '@rollup/plugin-terser': 0.4.4(rollup@4.27.4)
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.4)
'@types/http-proxy': 1.17.15
- '@vercel/nft': 0.26.5
+ '@vercel/nft': 0.27.7(rollup@4.27.4)
archiver: 7.0.1
- c12: 1.11.2(magicast@0.3.5)
- chalk: 5.3.0
+ c12: 2.0.1(magicast@0.3.5)
chokidar: 3.6.0
citty: 0.1.6
+ compatx: 0.1.8
+ confbox: 0.1.8
consola: 3.2.3
cookie-es: 1.2.2
- croner: 8.1.2
- crossws: 0.2.4
- db0: 0.1.4
+ croner: 9.0.0
+ crossws: 0.3.1
+ db0: 0.2.1
defu: 6.1.4
destr: 2.0.3
- dot-prop: 8.0.2
- esbuild: 0.20.2
+ dot-prop: 9.0.0
+ esbuild: 0.24.0
escape-string-regexp: 5.0.0
etag: 1.8.1
fs-extra: 11.2.0
@@ -10226,37 +10386,38 @@ snapshots:
hookable: 5.5.3
httpxy: 0.1.5
ioredis: 5.4.1
- jiti: 1.21.6
+ jiti: 2.4.1
klona: 2.0.6
knitwork: 1.1.0
listhen: 1.9.0
- magic-string: 0.30.11
+ magic-string: 0.30.14
+ magicast: 0.3.5
mime: 4.0.4
- mlly: 1.7.1
- mri: 1.2.0
+ mlly: 1.7.3
node-fetch-native: 1.6.4
- ofetch: 1.4.0
+ ofetch: 1.4.1
ohash: 1.1.4
- openapi-typescript: 6.7.6
+ openapi-typescript: 7.4.3(typescript@5.6.2)
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
pretty-bytes: 6.1.1
radix3: 1.1.2
- rollup: 4.24.0
- rollup-plugin-visualizer: 5.12.0(rollup@4.24.0)
+ rollup: 4.27.4
+ rollup-plugin-visualizer: 5.12.0(rollup@4.27.4)
scule: 1.3.0
semver: 7.6.3
serve-placeholder: 2.0.2
serve-static: 1.16.2
- std-env: 3.7.0
+ std-env: 3.8.0
ufo: 1.5.4
uncrypto: 0.1.3
- unctx: 2.3.1(webpack-sources@3.2.3)
+ unctx: 2.3.1
unenv: 1.10.0
- unimport: 3.13.1(rollup@4.24.0)(webpack-sources@3.2.3)
- unstorage: 1.12.0(ioredis@5.4.1)
- unwasm: 0.3.9(webpack-sources@3.2.3)
+ unimport: 3.14.2(rollup@4.27.4)
+ unstorage: 1.13.1(ioredis@5.4.1)
+ untyped: 1.5.1
+ unwasm: 0.3.9
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -10265,6 +10426,7 @@ snapshots:
- '@azure/keyvault-secrets'
- '@azure/storage-blob'
- '@capacitor/preferences'
+ - '@electric-sql/pglite'
- '@libsql/client'
- '@netlify/blobs'
- '@planetscale/database'
@@ -10274,10 +10436,9 @@ snapshots:
- drizzle-orm
- encoding
- idb-keyval
- - magicast
+ - mysql2
- supports-color
- - uWebSockets.js
- - webpack-sources
+ - typescript
node-addon-api@7.1.1: {}
@@ -10289,7 +10450,7 @@ snapshots:
node-forge@1.3.1: {}
- node-gyp-build@4.8.2: {}
+ node-gyp-build@4.8.4: {}
node-releases@2.0.18: {}
@@ -10327,67 +10488,72 @@ snapshots:
dependencies:
boolbase: 1.0.0
- nuxi@3.14.0: {}
+ nuxi@3.16.0: {}
- nuxt@3.7.4(@parcel/watcher@2.4.1)(@types/node@22.7.4)(eslint@8.57.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.34.1)(typescript@5.6.2)(webpack-sources@3.2.3):
+ nuxt@3.12.4(@parcel/watcher@2.5.0)(@types/node@22.10.1)(eslint@8.57.1)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.27.4)(terser@5.36.0)(typescript@5.6.2)(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))(vue-tsc@2.1.6(typescript@5.6.2)):
dependencies:
'@nuxt/devalue': 2.0.2
- '@nuxt/kit': 3.7.4(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
- '@nuxt/schema': 3.7.4(rollup@4.24.0)(webpack-sources@3.2.3)
- '@nuxt/telemetry': 2.6.0(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
- '@nuxt/ui-templates': 1.3.4
- '@nuxt/vite-builder': 3.7.4(@types/node@22.7.4)(eslint@8.57.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.34.1)(typescript@5.6.2)(vue@3.4.8(typescript@5.6.2))(webpack-sources@3.2.3)
- '@unhead/dom': 1.11.7
- '@unhead/ssr': 1.11.7
- '@unhead/vue': 1.11.7(vue@3.4.8(typescript@5.6.2))
- '@vue/shared': 3.5.11
- acorn: 8.10.0
+ '@nuxt/devtools': 1.6.1(rollup@4.27.4)(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))(vue@3.5.13(typescript@5.6.2))
+ '@nuxt/kit': 3.12.4(magicast@0.3.5)(rollup@4.27.4)
+ '@nuxt/schema': 3.12.4(rollup@4.27.4)
+ '@nuxt/telemetry': 2.6.0(magicast@0.3.5)(rollup@4.27.4)
+ '@nuxt/vite-builder': 3.12.4(@types/node@22.10.1)(eslint@8.57.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.27.4)(terser@5.36.0)(typescript@5.6.2)(vue-tsc@2.1.6(typescript@5.6.2))(vue@3.5.13(typescript@5.6.2))
+ '@unhead/dom': 1.11.13
+ '@unhead/ssr': 1.11.13
+ '@unhead/vue': 1.11.13(vue@3.5.13(typescript@5.6.2))
+ '@vue/shared': 3.5.13
+ acorn: 8.12.1
c12: 1.11.2(magicast@0.3.5)
chokidar: 3.6.0
+ compatx: 0.1.8
+ consola: 3.2.3
cookie-es: 1.2.2
defu: 6.1.4
destr: 2.0.3
- devalue: 4.3.3
- esbuild: 0.19.12
+ devalue: 5.1.1
+ errx: 0.1.0
+ esbuild: 0.23.1
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
- fs-extra: 11.2.0
- globby: 13.2.2
+ globby: 14.0.2
h3: 1.13.0
hookable: 5.5.3
+ ignore: 5.3.2
jiti: 1.21.6
klona: 2.0.6
knitwork: 1.1.0
- magic-string: 0.30.11
- mlly: 1.7.1
- nitropack: 2.9.7(magicast@0.3.5)(webpack-sources@3.2.3)
- nuxi: 3.14.0
+ magic-string: 0.30.14
+ mlly: 1.7.3
+ nitropack: 2.10.4(typescript@5.6.2)
+ nuxi: 3.16.0
nypm: 0.3.12
- ofetch: 1.4.0
+ ofetch: 1.4.1
ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
radix3: 1.1.2
scule: 1.3.0
- std-env: 3.7.0
- strip-literal: 1.3.0
+ semver: 7.6.3
+ std-env: 3.8.0
+ strip-literal: 2.1.1
ufo: 1.5.4
ultrahtml: 1.5.3
uncrypto: 0.1.3
- unctx: 2.3.1(webpack-sources@3.2.3)
+ unctx: 2.3.1
unenv: 1.10.0
- unimport: 3.13.1(rollup@4.24.0)(webpack-sources@3.2.3)
- unplugin: 1.14.1(webpack-sources@3.2.3)
- unplugin-vue-router: 0.7.0(rollup@4.24.0)(vue-router@4.4.5(vue@3.4.8(typescript@5.6.2)))(vue@3.4.8(typescript@5.6.2))(webpack-sources@3.2.3)
- untyped: 1.5.0
- vue: 3.4.8(typescript@5.6.2)
+ unimport: 3.14.2(rollup@4.27.4)
+ unplugin: 1.16.0
+ unplugin-vue-router: 0.10.8(rollup@4.27.4)(vue-router@4.5.0(vue@3.5.13(typescript@5.6.2)))(vue@3.5.13(typescript@5.6.2))
+ unstorage: 1.13.1(ioredis@5.4.1)
+ untyped: 1.5.1
+ vue: 3.5.13(typescript@5.6.2)
vue-bundle-renderer: 2.1.1
vue-devtools-stub: 0.1.0
- vue-router: 4.4.5(vue@3.4.8(typescript@5.6.2))
+ vue-router: 4.5.0(vue@3.5.13(typescript@5.6.2))
optionalDependencies:
- '@parcel/watcher': 2.4.1
- '@types/node': 22.7.4
+ '@parcel/watcher': 2.5.0
+ '@types/node': 22.10.1
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -10395,35 +10561,41 @@ snapshots:
- '@azure/identity'
- '@azure/keyvault-secrets'
- '@azure/storage-blob'
+ - '@biomejs/biome'
- '@capacitor/preferences'
+ - '@electric-sql/pglite'
- '@libsql/client'
- '@netlify/blobs'
- '@planetscale/database'
- '@upstash/redis'
- '@vercel/kv'
- better-sqlite3
+ - bufferutil
- drizzle-orm
- encoding
- eslint
- idb-keyval
+ - ioredis
- less
- lightningcss
- magicast
- meow
+ - mysql2
- optionator
- rollup
- sass
+ - sass-embedded
- stylelint
- stylus
- sugarss
- supports-color
- terser
- typescript
- - uWebSockets.js
+ - utf-8-validate
+ - vite
- vls
- vti
- vue-tsc
- - webpack-sources
- xml2js
nypm@0.3.12:
@@ -10432,14 +10604,14 @@ snapshots:
consola: 3.2.3
execa: 8.0.1
pathe: 1.1.2
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
ufo: 1.5.4
object-assign@4.1.1: {}
object-hash@3.0.0: {}
- object-inspect@1.13.2: {}
+ object-inspect@1.13.3: {}
object-keys@1.1.1: {}
@@ -10454,14 +10626,14 @@ snapshots:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.5
es-object-atoms: 1.0.0
object.groupby@1.0.3:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.5
object.values@1.2.0:
dependencies:
@@ -10469,7 +10641,7 @@ snapshots:
define-properties: 1.2.1
es-object-atoms: 1.0.0
- ofetch@1.4.0:
+ ofetch@1.4.1:
dependencies:
destr: 2.0.3
node-fetch-native: 1.6.4
@@ -10491,6 +10663,13 @@ snapshots:
only@0.0.2: {}
+ open@10.1.0:
+ dependencies:
+ default-browser: 5.2.1
+ define-lazy-prop: 3.0.0
+ is-inside-container: 1.0.0
+ is-wsl: 3.1.0
+
open@7.4.2:
dependencies:
is-docker: 2.2.1
@@ -10502,14 +10681,17 @@ snapshots:
is-docker: 2.2.1
is-wsl: 2.2.0
- openapi-typescript@6.7.6:
+ openapi-typescript@7.4.3(typescript@5.6.2):
dependencies:
+ '@redocly/openapi-core': 1.25.15(supports-color@9.4.0)
ansi-colors: 4.1.3
- fast-glob: 3.3.2
- js-yaml: 4.1.0
+ change-case: 5.4.4
+ parse-json: 8.1.0
supports-color: 9.4.0
- undici: 5.28.4
+ typescript: 5.6.2
yargs-parser: 21.1.1
+ transitivePeerDependencies:
+ - encoding
optionator@0.9.4:
dependencies:
@@ -10544,7 +10726,7 @@ snapshots:
package-json-from-dist@1.0.1: {}
- package-manager-detector@0.2.0: {}
+ package-manager-detector@0.2.5: {}
parent-module@1.0.1:
dependencies:
@@ -10557,11 +10739,17 @@ snapshots:
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.25.7
+ '@babel/code-frame': 7.26.2
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
+ parse-json@8.1.0:
+ dependencies:
+ '@babel/code-frame': 7.26.2
+ index-to-position: 0.1.2
+ type-fest: 4.29.0
+
parse-path@7.0.0:
dependencies:
protocols: 2.0.1
@@ -10572,6 +10760,8 @@ snapshots:
parseurl@1.3.3: {}
+ path-browserify@1.0.1: {}
+
path-exists@4.0.0: {}
path-is-absolute@1.0.1: {}
@@ -10599,7 +10789,7 @@ snapshots:
perfect-debounce@1.0.0: {}
- picocolors@1.1.0: {}
+ picocolors@1.1.1: {}
picomatch@2.3.1: {}
@@ -10607,7 +10797,7 @@ snapshots:
pify@2.3.0: {}
- pinia@2.2.4(typescript@5.6.2)(vue@3.4.8(typescript@5.6.2)):
+ pinia@2.2.8(typescript@5.6.2)(vue@3.4.8(typescript@5.6.2)):
dependencies:
'@vue/devtools-api': 6.6.4
vue: 3.4.8(typescript@5.6.2)
@@ -10617,10 +10807,10 @@ snapshots:
pirates@4.0.6: {}
- pkg-types@1.2.0:
+ pkg-types@1.2.1:
dependencies:
- confbox: 0.1.7
- mlly: 1.7.1
+ confbox: 0.1.8
+ mlly: 1.7.3
pathe: 1.1.2
pluralize@8.0.0: {}
@@ -10635,175 +10825,173 @@ snapshots:
possible-typed-array-names@1.0.0: {}
- postcss-calc@9.0.1(postcss@8.4.47):
+ postcss-calc@10.0.2(postcss@8.4.49):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
- postcss-colormin@6.1.0(postcss@8.4.47):
+ postcss-colormin@7.0.2(postcss@8.4.49):
dependencies:
- browserslist: 4.24.0
+ browserslist: 4.24.2
caniuse-api: 3.0.0
colord: 2.9.3
- postcss: 8.4.47
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-convert-values@6.1.0(postcss@8.4.47):
+ postcss-convert-values@7.0.4(postcss@8.4.49):
dependencies:
- browserslist: 4.24.0
- postcss: 8.4.47
+ browserslist: 4.24.2
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-discard-comments@6.0.2(postcss@8.4.47):
+ postcss-discard-comments@7.0.3(postcss@8.4.49):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
+ postcss-selector-parser: 6.1.2
- postcss-discard-duplicates@6.0.3(postcss@8.4.47):
+ postcss-discard-duplicates@7.0.1(postcss@8.4.49):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
- postcss-discard-empty@6.0.3(postcss@8.4.47):
+ postcss-discard-empty@7.0.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
- postcss-discard-overridden@6.0.2(postcss@8.4.47):
+ postcss-discard-overridden@7.0.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
- postcss-import-resolver@2.0.0:
+ postcss-import@15.1.0(postcss@8.4.49):
dependencies:
- enhanced-resolve: 4.5.0
-
- postcss-import@15.1.0(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.8
- postcss-js@4.0.1(postcss@8.4.47):
+ postcss-js@4.0.1(postcss@8.4.49):
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.47
+ postcss: 8.4.49
- postcss-load-config@4.0.2(postcss@8.4.47):
+ postcss-load-config@4.0.2(postcss@8.4.49):
dependencies:
lilconfig: 3.1.2
- yaml: 2.5.1
+ yaml: 2.6.1
optionalDependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
- postcss-merge-longhand@6.0.5(postcss@8.4.47):
+ postcss-merge-longhand@7.0.4(postcss@8.4.49):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- stylehacks: 6.1.1(postcss@8.4.47)
+ stylehacks: 7.0.4(postcss@8.4.49)
- postcss-merge-rules@6.1.1(postcss@8.4.47):
+ postcss-merge-rules@7.0.4(postcss@8.4.49):
dependencies:
- browserslist: 4.24.0
+ browserslist: 4.24.2
caniuse-api: 3.0.0
- cssnano-utils: 4.0.2(postcss@8.4.47)
- postcss: 8.4.47
+ cssnano-utils: 5.0.0(postcss@8.4.49)
+ postcss: 8.4.49
postcss-selector-parser: 6.1.2
- postcss-minify-font-values@6.1.0(postcss@8.4.47):
+ postcss-minify-font-values@7.0.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-minify-gradients@6.0.3(postcss@8.4.47):
+ postcss-minify-gradients@7.0.0(postcss@8.4.49):
dependencies:
colord: 2.9.3
- cssnano-utils: 4.0.2(postcss@8.4.47)
- postcss: 8.4.47
+ cssnano-utils: 5.0.0(postcss@8.4.49)
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-minify-params@6.1.0(postcss@8.4.47):
+ postcss-minify-params@7.0.2(postcss@8.4.49):
dependencies:
- browserslist: 4.24.0
- cssnano-utils: 4.0.2(postcss@8.4.47)
- postcss: 8.4.47
+ browserslist: 4.24.2
+ cssnano-utils: 5.0.0(postcss@8.4.49)
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-minify-selectors@6.0.4(postcss@8.4.47):
+ postcss-minify-selectors@7.0.4(postcss@8.4.49):
dependencies:
- postcss: 8.4.47
+ cssesc: 3.0.0
+ postcss: 8.4.49
postcss-selector-parser: 6.1.2
- postcss-nested@6.2.0(postcss@8.4.47):
+ postcss-nested@6.2.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
postcss-selector-parser: 6.1.2
- postcss-nesting@12.1.5(postcss@8.4.47):
+ postcss-nesting@13.0.1(postcss@8.4.49):
dependencies:
- '@csstools/selector-resolve-nested': 1.1.0(postcss-selector-parser@6.1.2)
- '@csstools/selector-specificity': 3.1.1(postcss-selector-parser@6.1.2)
- postcss: 8.4.47
- postcss-selector-parser: 6.1.2
+ '@csstools/selector-resolve-nested': 3.0.0(postcss-selector-parser@7.0.0)
+ '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.0.0)
+ postcss: 8.4.49
+ postcss-selector-parser: 7.0.0
- postcss-normalize-charset@6.0.2(postcss@8.4.47):
+ postcss-normalize-charset@7.0.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
- postcss-normalize-display-values@6.0.2(postcss@8.4.47):
+ postcss-normalize-display-values@7.0.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-normalize-positions@6.0.2(postcss@8.4.47):
+ postcss-normalize-positions@7.0.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-normalize-repeat-style@6.0.2(postcss@8.4.47):
+ postcss-normalize-repeat-style@7.0.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-normalize-string@6.0.2(postcss@8.4.47):
+ postcss-normalize-string@7.0.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-normalize-timing-functions@6.0.2(postcss@8.4.47):
+ postcss-normalize-timing-functions@7.0.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-normalize-unicode@6.1.0(postcss@8.4.47):
+ postcss-normalize-unicode@7.0.2(postcss@8.4.49):
dependencies:
- browserslist: 4.24.0
- postcss: 8.4.47
+ browserslist: 4.24.2
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-normalize-url@6.0.2(postcss@8.4.47):
+ postcss-normalize-url@7.0.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-normalize-whitespace@6.0.2(postcss@8.4.47):
+ postcss-normalize-whitespace@7.0.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-ordered-values@6.0.2(postcss@8.4.47):
+ postcss-ordered-values@7.0.1(postcss@8.4.49):
dependencies:
- cssnano-utils: 4.0.2(postcss@8.4.47)
- postcss: 8.4.47
+ cssnano-utils: 5.0.0(postcss@8.4.49)
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-reduce-initial@6.1.0(postcss@8.4.47):
+ postcss-reduce-initial@7.0.2(postcss@8.4.49):
dependencies:
- browserslist: 4.24.0
+ browserslist: 4.24.2
caniuse-api: 3.0.0
- postcss: 8.4.47
+ postcss: 8.4.49
- postcss-reduce-transforms@6.0.2(postcss@8.4.47):
+ postcss-reduce-transforms@7.0.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
postcss-selector-parser@6.0.10:
@@ -10816,31 +11004,28 @@ snapshots:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-svgo@6.0.3(postcss@8.4.47):
+ postcss-selector-parser@7.0.0:
dependencies:
- postcss: 8.4.47
+ cssesc: 3.0.0
+ util-deprecate: 1.0.2
+
+ postcss-svgo@7.0.1(postcss@8.4.49):
+ dependencies:
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
svgo: 3.3.2
- postcss-unique-selectors@6.0.4(postcss@8.4.47):
+ postcss-unique-selectors@7.0.3(postcss@8.4.49):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
postcss-selector-parser: 6.1.2
- postcss-url@10.1.3(postcss@8.4.47):
- dependencies:
- make-dir: 3.1.0
- mime: 2.5.2
- minimatch: 3.0.8
- postcss: 8.4.47
- xxhashjs: 0.2.2
-
postcss-value-parser@4.2.0: {}
- postcss@8.4.47:
+ postcss@8.4.49:
dependencies:
- nanoid: 3.3.7
- picocolors: 1.1.0
+ nanoid: 3.3.8
+ picocolors: 1.1.1
source-map-js: 1.2.1
prelude-ls@1.2.1: {}
@@ -10849,7 +11034,7 @@ snapshots:
dependencies:
fast-diff: 1.3.0
- prettier@3.3.3: {}
+ prettier@3.4.1: {}
pretty-bytes@5.6.0: {}
@@ -10865,9 +11050,12 @@ snapshots:
process@0.11.10: {}
- protocols@2.0.1: {}
+ prompts@2.4.2:
+ dependencies:
+ kleur: 3.0.3
+ sisteransi: 1.0.5
- prr@1.0.1: {}
+ protocols@2.0.1: {}
punycode.js@2.3.1: {}
@@ -10941,12 +11129,24 @@ snapshots:
dependencies:
picomatch: 2.3.1
+ readdirp@4.0.2: {}
+
redis-errors@1.2.0: {}
redis-parser@3.0.0:
dependencies:
redis-errors: 1.2.0
+ reflect.getprototypeof@1.0.7:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.5
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.4
+ gopd: 1.0.1
+ which-builtin-type: 1.2.0
+
regenerate-unicode-properties@10.2.0:
dependencies:
regenerate: 1.4.2
@@ -10957,7 +11157,7 @@ snapshots:
regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
regexp-tree@0.1.27: {}
@@ -10970,18 +11170,18 @@ snapshots:
regexpp@3.2.0: {}
- regexpu-core@6.1.1:
+ regexpu-core@6.2.0:
dependencies:
regenerate: 1.4.2
regenerate-unicode-properties: 10.2.0
regjsgen: 0.8.0
- regjsparser: 0.11.0
+ regjsparser: 0.12.0
unicode-match-property-ecmascript: 2.0.0
unicode-match-property-value-ecmascript: 2.2.0
regjsgen@0.8.0: {}
- regjsparser@0.11.0:
+ regjsparser@0.12.0:
dependencies:
jsesc: 3.0.2
@@ -11016,49 +11216,51 @@ snapshots:
reusify@1.0.4: {}
+ rfdc@1.4.1: {}
+
rimraf@3.0.2:
dependencies:
glob: 7.2.3
- rollup-plugin-visualizer@5.12.0(rollup@4.24.0):
+ rollup-plugin-visualizer@5.12.0(rollup@4.27.4):
dependencies:
open: 8.4.2
picomatch: 2.3.1
source-map: 0.7.4
yargs: 17.7.2
optionalDependencies:
- rollup: 4.24.0
+ rollup: 4.27.4
rollup@2.79.2:
optionalDependencies:
fsevents: 2.3.3
- rollup@3.29.5:
- optionalDependencies:
- fsevents: 2.3.3
-
- rollup@4.24.0:
+ rollup@4.27.4:
dependencies:
'@types/estree': 1.0.6
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.24.0
- '@rollup/rollup-android-arm64': 4.24.0
- '@rollup/rollup-darwin-arm64': 4.24.0
- '@rollup/rollup-darwin-x64': 4.24.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.24.0
- '@rollup/rollup-linux-arm-musleabihf': 4.24.0
- '@rollup/rollup-linux-arm64-gnu': 4.24.0
- '@rollup/rollup-linux-arm64-musl': 4.24.0
- '@rollup/rollup-linux-powerpc64le-gnu': 4.24.0
- '@rollup/rollup-linux-riscv64-gnu': 4.24.0
- '@rollup/rollup-linux-s390x-gnu': 4.24.0
- '@rollup/rollup-linux-x64-gnu': 4.24.0
- '@rollup/rollup-linux-x64-musl': 4.24.0
- '@rollup/rollup-win32-arm64-msvc': 4.24.0
- '@rollup/rollup-win32-ia32-msvc': 4.24.0
- '@rollup/rollup-win32-x64-msvc': 4.24.0
+ '@rollup/rollup-android-arm-eabi': 4.27.4
+ '@rollup/rollup-android-arm64': 4.27.4
+ '@rollup/rollup-darwin-arm64': 4.27.4
+ '@rollup/rollup-darwin-x64': 4.27.4
+ '@rollup/rollup-freebsd-arm64': 4.27.4
+ '@rollup/rollup-freebsd-x64': 4.27.4
+ '@rollup/rollup-linux-arm-gnueabihf': 4.27.4
+ '@rollup/rollup-linux-arm-musleabihf': 4.27.4
+ '@rollup/rollup-linux-arm64-gnu': 4.27.4
+ '@rollup/rollup-linux-arm64-musl': 4.27.4
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.27.4
+ '@rollup/rollup-linux-riscv64-gnu': 4.27.4
+ '@rollup/rollup-linux-s390x-gnu': 4.27.4
+ '@rollup/rollup-linux-x64-gnu': 4.27.4
+ '@rollup/rollup-linux-x64-musl': 4.27.4
+ '@rollup/rollup-win32-arm64-msvc': 4.27.4
+ '@rollup/rollup-win32-ia32-msvc': 4.27.4
+ '@rollup/rollup-win32-x64-msvc': 4.27.4
fsevents: 2.3.3
+ run-applescript@7.0.0: {}
+
run-parallel@1.2.0:
dependencies:
queue-microtask: 1.2.3
@@ -11155,12 +11357,14 @@ snapshots:
shebang-regex@3.0.0: {}
+ shell-quote@1.8.2: {}
+
side-channel@1.0.6:
dependencies:
call-bind: 1.0.7
es-errors: 1.3.0
get-intrinsic: 1.2.4
- object-inspect: 1.13.2
+ object-inspect: 1.13.3
siginfo@2.0.0: {}
@@ -11168,13 +11372,33 @@ snapshots:
signal-exit@4.1.0: {}
+ simple-git@3.27.0:
+ dependencies:
+ '@kwsites/file-exists': 1.1.1
+ '@kwsites/promise-deferred': 1.1.1
+ debug: 4.3.7(supports-color@9.4.0)
+ transitivePeerDependencies:
+ - supports-color
+
simple-swizzle@0.2.2:
dependencies:
is-arrayish: 0.3.2
- slash@3.0.0: {}
+ sirv@2.0.4:
+ dependencies:
+ '@polka/url': 1.0.0-next.28
+ mrmime: 2.0.0
+ totalist: 3.0.1
- slash@4.0.0: {}
+ sirv@3.0.0:
+ dependencies:
+ '@polka/url': 1.0.0-next.28
+ mrmime: 2.0.0
+ totalist: 3.0.1
+
+ sisteransi@1.0.5: {}
+
+ slash@3.0.0: {}
slash@5.1.0: {}
@@ -11211,6 +11435,8 @@ snapshots:
spdx-license-ids@3.0.20: {}
+ speakingurl@14.0.1: {}
+
stackback@0.0.2: {}
standard-as-callback@2.1.0: {}
@@ -11219,13 +11445,13 @@ snapshots:
statuses@2.0.1: {}
- std-env@3.7.0: {}
+ std-env@3.8.0: {}
- streamx@2.20.1:
+ streamx@2.20.2:
dependencies:
fast-fifo: 1.3.2
queue-tick: 1.0.1
- text-decoder: 1.2.0
+ text-decoder: 1.2.1
optionalDependencies:
bare-events: 2.5.0
@@ -11247,7 +11473,7 @@ snapshots:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.5
es-errors: 1.3.0
es-object-atoms: 1.0.0
get-intrinsic: 1.2.4
@@ -11262,7 +11488,7 @@ snapshots:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.5
es-object-atoms: 1.0.0
string.prototype.trimend@1.0.8:
@@ -11311,18 +11537,14 @@ snapshots:
strip-json-comments@3.1.1: {}
- strip-literal@1.3.0:
+ strip-literal@2.1.1:
dependencies:
- acorn: 8.10.0
+ js-tokens: 9.0.1
- strip-literal@2.1.0:
+ stylehacks@7.0.4(postcss@8.4.49):
dependencies:
- js-tokens: 9.0.0
-
- stylehacks@6.1.1(postcss@8.4.47):
- dependencies:
- browserslist: 4.24.0
- postcss: 8.4.47
+ browserslist: 4.24.2
+ postcss: 8.4.49
postcss-selector-parser: 6.1.2
sucrase@3.35.0:
@@ -11335,9 +11557,9 @@ snapshots:
pirates: 4.0.6
ts-interface-checker: 0.1.13
- supports-color@5.5.0:
+ superjson@2.2.1:
dependencies:
- has-flag: 3.0.0
+ copy-anything: 3.0.5
supports-color@7.2.0:
dependencies:
@@ -11357,16 +11579,16 @@ snapshots:
css-tree: 2.3.1
css-what: 6.1.0
csso: 5.0.5
- picocolors: 1.1.0
+ picocolors: 1.1.1
- synckit@0.9.1:
+ synckit@0.9.2:
dependencies:
'@pkgr/core': 0.1.1
- tslib: 2.7.0
+ tslib: 2.8.1
system-architecture@0.1.0: {}
- tailwind-config-viewer@2.0.4(tailwindcss@3.4.13):
+ tailwind-config-viewer@2.0.4(tailwindcss@3.4.15):
dependencies:
'@koa/router': 12.0.2
commander: 6.2.1
@@ -11376,11 +11598,11 @@ snapshots:
open: 7.4.2
portfinder: 1.0.32
replace-in-file: 6.3.5
- tailwindcss: 3.4.13
+ tailwindcss: 3.4.15
transitivePeerDependencies:
- supports-color
- tailwindcss@3.4.13:
+ tailwindcss@3.4.15:
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -11395,27 +11617,25 @@ snapshots:
micromatch: 4.0.8
normalize-path: 3.0.0
object-hash: 3.0.0
- picocolors: 1.1.0
- postcss: 8.4.47
- postcss-import: 15.1.0(postcss@8.4.47)
- postcss-js: 4.0.1(postcss@8.4.47)
- postcss-load-config: 4.0.2(postcss@8.4.47)
- postcss-nested: 6.2.0(postcss@8.4.47)
+ picocolors: 1.1.1
+ postcss: 8.4.49
+ postcss-import: 15.1.0(postcss@8.4.49)
+ postcss-js: 4.0.1(postcss@8.4.49)
+ postcss-load-config: 4.0.2(postcss@8.4.49)
+ postcss-nested: 6.2.0(postcss@8.4.49)
postcss-selector-parser: 6.1.2
resolve: 1.22.8
sucrase: 3.35.0
transitivePeerDependencies:
- ts-node
- tapable@1.1.3: {}
-
tapable@2.2.1: {}
tar-stream@3.1.7:
dependencies:
b4a: 1.6.7
fast-fifo: 1.3.2
- streamx: 2.20.1
+ streamx: 2.20.2
tar@6.2.1:
dependencies:
@@ -11435,16 +11655,14 @@ snapshots:
type-fest: 0.16.0
unique-string: 2.0.0
- terser@5.34.1:
+ terser@5.36.0:
dependencies:
'@jridgewell/source-map': 0.3.6
- acorn: 8.10.0
+ acorn: 8.12.1
commander: 2.20.3
source-map-support: 0.5.21
- text-decoder@1.2.0:
- dependencies:
- b4a: 1.6.7
+ text-decoder@1.2.1: {}
text-table@0.2.0: {}
@@ -11460,32 +11678,32 @@ snapshots:
tinybench@2.9.0: {}
- tinyexec@0.3.0: {}
+ tinyexec@0.3.1: {}
- tinyglobby@0.2.9:
+ tinyglobby@0.2.10:
dependencies:
- fdir: 6.4.0(picomatch@4.0.2)
+ fdir: 6.4.2(picomatch@4.0.2)
picomatch: 4.0.2
tinypool@0.8.4: {}
tinyspy@2.2.1: {}
- to-fast-properties@2.0.0: {}
-
to-regex-range@5.0.1:
dependencies:
is-number: 7.0.0
toidentifier@1.0.1: {}
+ totalist@3.0.1: {}
+
tr46@0.0.3: {}
tr46@1.0.1:
dependencies:
punycode: 2.3.1
- ts-api-utils@1.3.0(typescript@5.6.2):
+ ts-api-utils@1.4.3(typescript@5.6.2):
dependencies:
typescript: 5.6.2
@@ -11498,7 +11716,7 @@ snapshots:
minimist: 1.2.8
strip-bom: 3.0.0
- tslib@2.7.0: {}
+ tslib@2.8.1: {}
tsscmp@1.0.6: {}
@@ -11518,7 +11736,7 @@ snapshots:
type-fest@0.8.1: {}
- type-fest@3.13.1: {}
+ type-fest@4.29.0: {}
type-is@1.6.18:
dependencies:
@@ -11539,7 +11757,7 @@ snapshots:
has-proto: 1.0.3
is-typed-array: 1.1.13
- typed-array-byte-offset@1.0.2:
+ typed-array-byte-offset@1.0.3:
dependencies:
available-typed-arrays: 1.0.7
call-bind: 1.0.7
@@ -11547,15 +11765,16 @@ snapshots:
gopd: 1.0.1
has-proto: 1.0.3
is-typed-array: 1.1.13
+ reflect.getprototypeof: 1.0.7
- typed-array-length@1.0.6:
+ typed-array-length@1.0.7:
dependencies:
call-bind: 1.0.7
for-each: 0.3.3
gopd: 1.0.1
- has-proto: 1.0.3
is-typed-array: 1.1.13
possible-typed-array-names: 1.0.0
+ reflect.getprototypeof: 1.0.7
typescript@5.6.2: {}
@@ -11574,20 +11793,14 @@ snapshots:
uncrypto@0.1.3: {}
- unctx@2.3.1(webpack-sources@3.2.3):
+ unctx@2.3.1:
dependencies:
- acorn: 8.10.0
+ acorn: 8.12.1
estree-walker: 3.0.3
- magic-string: 0.30.11
- unplugin: 1.14.1(webpack-sources@3.2.3)
- transitivePeerDependencies:
- - webpack-sources
+ magic-string: 0.30.14
+ unplugin: 1.16.0
- undici-types@6.19.8: {}
-
- undici@5.28.4:
- dependencies:
- '@fastify/busboy': 2.1.1
+ undici-types@6.20.0: {}
unenv@1.10.0:
dependencies:
@@ -11597,11 +11810,11 @@ snapshots:
node-fetch-native: 1.6.4
pathe: 1.1.2
- unhead@1.11.7:
+ unhead@1.11.13:
dependencies:
- '@unhead/dom': 1.11.7
- '@unhead/schema': 1.11.7
- '@unhead/shared': 1.11.7
+ '@unhead/dom': 1.11.13
+ '@unhead/schema': 1.11.13
+ '@unhead/shared': 1.11.13
hookable: 5.5.3
unicode-canonical-property-names-ecmascript@2.0.1: {}
@@ -11617,24 +11830,24 @@ snapshots:
unicorn-magic@0.1.0: {}
- unimport@3.13.1(rollup@4.24.0)(webpack-sources@3.2.3):
+ unimport@3.14.2(rollup@4.27.4):
dependencies:
- '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
- acorn: 8.12.1
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.4)
+ acorn: 8.14.0
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
- fast-glob: 3.3.2
- local-pkg: 0.5.0
- magic-string: 0.30.11
- mlly: 1.7.1
+ local-pkg: 0.5.1
+ magic-string: 0.30.14
+ mlly: 1.7.3
pathe: 1.1.2
- pkg-types: 1.2.0
+ picomatch: 4.0.2
+ pkg-types: 1.2.1
scule: 1.3.0
- strip-literal: 2.1.0
- unplugin: 1.14.1(webpack-sources@3.2.3)
+ strip-literal: 2.1.1
+ tinyglobby: 0.2.10
+ unplugin: 1.16.0
transitivePeerDependencies:
- rollup
- - webpack-sources
unique-string@2.0.0:
dependencies:
@@ -11642,66 +11855,61 @@ snapshots:
universalify@2.0.1: {}
- unplugin-icons@0.18.5(@vue/compiler-sfc@3.5.11)(webpack-sources@3.2.3):
+ unplugin-icons@0.18.5(@vue/compiler-sfc@3.5.13):
dependencies:
'@antfu/install-pkg': 0.3.5
'@antfu/utils': 0.7.10
'@iconify/utils': 2.1.33
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
kolorist: 1.8.0
- local-pkg: 0.5.0
- unplugin: 1.14.1(webpack-sources@3.2.3)
+ local-pkg: 0.5.1
+ unplugin: 1.16.0
optionalDependencies:
- '@vue/compiler-sfc': 3.5.11
+ '@vue/compiler-sfc': 3.5.13
transitivePeerDependencies:
- supports-color
- - webpack-sources
- unplugin-vue-router@0.7.0(rollup@4.24.0)(vue-router@4.4.5(vue@3.4.8(typescript@5.6.2)))(vue@3.4.8(typescript@5.6.2))(webpack-sources@3.2.3):
+ unplugin-vue-router@0.10.8(rollup@4.27.4)(vue-router@4.5.0(vue@3.5.13(typescript@5.6.2)))(vue@3.5.13(typescript@5.6.2)):
dependencies:
- '@babel/types': 7.25.7
- '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
- '@vue-macros/common': 1.14.0(rollup@4.24.0)(vue@3.4.8(typescript@5.6.2))
- ast-walker-scope: 0.5.0(rollup@4.24.0)
+ '@babel/types': 7.26.0
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.4)
+ '@vue-macros/common': 1.15.0(rollup@4.27.4)(vue@3.5.13(typescript@5.6.2))
+ ast-walker-scope: 0.6.2
chokidar: 3.6.0
fast-glob: 3.3.2
json5: 2.2.3
- local-pkg: 0.4.3
- mlly: 1.7.1
+ local-pkg: 0.5.1
+ magic-string: 0.30.14
+ mlly: 1.7.3
pathe: 1.1.2
scule: 1.3.0
- unplugin: 1.14.1(webpack-sources@3.2.3)
- yaml: 2.5.1
+ unplugin: 1.16.0
+ yaml: 2.6.1
optionalDependencies:
- vue-router: 4.4.5(vue@3.4.8(typescript@5.6.2))
+ vue-router: 4.5.0(vue@3.5.13(typescript@5.6.2))
transitivePeerDependencies:
- rollup
- vue
- - webpack-sources
- unplugin@1.14.1(webpack-sources@3.2.3):
+ unplugin@1.16.0:
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
webpack-virtual-modules: 0.6.2
- optionalDependencies:
- webpack-sources: 3.2.3
- unstorage@1.12.0(ioredis@5.4.1):
+ unstorage@1.13.1(ioredis@5.4.1):
dependencies:
anymatch: 3.1.3
chokidar: 3.6.0
+ citty: 0.1.6
destr: 2.0.3
h3: 1.13.0
listhen: 1.9.0
lru-cache: 10.4.3
- mri: 1.2.0
node-fetch-native: 1.6.4
- ofetch: 1.4.0
+ ofetch: 1.4.1
ufo: 1.5.4
optionalDependencies:
ioredis: 5.4.1
- transitivePeerDependencies:
- - uWebSockets.js
untun@0.1.3:
dependencies:
@@ -11709,39 +11917,39 @@ snapshots:
consola: 3.2.3
pathe: 1.1.2
- untyped@1.5.0:
+ untyped@1.5.1:
dependencies:
- '@babel/core': 7.25.7
- '@babel/standalone': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/standalone': 7.26.2
+ '@babel/types': 7.26.0
defu: 6.1.4
- jiti: 2.2.1
+ jiti: 2.4.1
mri: 1.2.0
scule: 1.3.0
transitivePeerDependencies:
- supports-color
- unwasm@0.3.9(webpack-sources@3.2.3):
+ unwasm@0.3.9:
dependencies:
knitwork: 1.1.0
- magic-string: 0.30.11
- mlly: 1.7.1
+ magic-string: 0.30.14
+ mlly: 1.7.3
pathe: 1.1.2
- pkg-types: 1.2.0
- unplugin: 1.14.1(webpack-sources@3.2.3)
- transitivePeerDependencies:
- - webpack-sources
+ pkg-types: 1.2.1
+ unplugin: 1.16.0
upath@1.2.0: {}
- update-browserslist-db@1.1.1(browserslist@4.24.0):
+ update-browserslist-db@1.1.1(browserslist@4.24.2):
dependencies:
- browserslist: 4.24.0
+ browserslist: 4.24.2
escalade: 3.2.0
- picocolors: 1.1.0
+ picocolors: 1.1.1
uqr@0.1.2: {}
+ uri-js-replace@1.0.1: {}
+
uri-js@4.4.1:
dependencies:
punycode: 2.3.1
@@ -11757,31 +11965,17 @@ snapshots:
vary@1.1.2: {}
- vite-node@0.33.0(@types/node@22.7.4)(terser@5.34.1):
+ vite-hot-client@0.2.4(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0)):
dependencies:
- cac: 6.7.14
- debug: 4.3.7
- mlly: 1.7.1
- pathe: 1.1.2
- picocolors: 1.1.0
- vite: 4.5.5(@types/node@22.7.4)(terser@5.34.1)
- transitivePeerDependencies:
- - '@types/node'
- - less
- - lightningcss
- - sass
- - stylus
- - sugarss
- - supports-color
- - terser
+ vite: 5.4.11(@types/node@22.10.1)(terser@5.36.0)
- vite-node@1.6.0(@types/node@22.7.4)(terser@5.34.1):
+ vite-node@1.6.0(@types/node@22.10.1)(terser@5.36.0):
dependencies:
cac: 6.7.14
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
pathe: 1.1.2
- picocolors: 1.1.0
- vite: 5.4.8(@types/node@22.7.4)(terser@5.34.1)
+ picocolors: 1.1.1
+ vite: 5.4.11(@types/node@22.10.1)(terser@5.36.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -11793,9 +11987,27 @@ snapshots:
- supports-color
- terser
- vite-plugin-checker@0.6.4(eslint@8.57.1)(optionator@0.9.4)(typescript@5.6.2)(vite@4.5.5(@types/node@22.7.4)(terser@5.34.1)):
+ vite-node@2.1.6(@types/node@22.10.1)(terser@5.36.0):
dependencies:
- '@babel/code-frame': 7.25.7
+ cac: 6.7.14
+ debug: 4.3.7(supports-color@9.4.0)
+ es-module-lexer: 1.5.4
+ pathe: 1.1.2
+ vite: 5.4.11(@types/node@22.10.1)(terser@5.36.0)
+ transitivePeerDependencies:
+ - '@types/node'
+ - less
+ - lightningcss
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+
+ vite-plugin-checker@0.7.2(eslint@8.57.1)(optionator@0.9.4)(typescript@5.6.2)(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))(vue-tsc@2.1.6(typescript@5.6.2)):
+ dependencies:
+ '@babel/code-frame': 7.26.2
ansi-escapes: 4.3.2
chalk: 4.1.2
chokidar: 3.6.0
@@ -11803,10 +12015,9 @@ snapshots:
fast-glob: 3.3.2
fs-extra: 11.2.0
npm-run-path: 4.0.1
- semver: 7.6.3
strip-ansi: 6.0.1
tiny-invariant: 1.3.3
- vite: 4.5.5(@types/node@22.7.4)(terser@5.34.1)
+ vite: 5.4.11(@types/node@22.10.1)(terser@5.36.0)
vscode-languageclient: 7.0.0
vscode-languageserver: 7.0.0
vscode-languageserver-textdocument: 1.0.12
@@ -11815,47 +12026,71 @@ snapshots:
eslint: 8.57.1
optionator: 0.9.4
typescript: 5.6.2
+ vue-tsc: 2.1.6(typescript@5.6.2)
- vite-plugin-eslint@1.8.1(eslint@8.57.1)(vite@4.5.5(@types/node@22.7.4)(terser@5.34.1)):
+ vite-plugin-eslint@1.8.1(eslint@8.57.1)(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0)):
dependencies:
'@rollup/pluginutils': 4.2.1
'@types/eslint': 8.56.12
eslint: 8.57.1
rollup: 2.79.2
- vite: 4.5.5(@types/node@22.7.4)(terser@5.34.1)
+ vite: 5.4.11(@types/node@22.10.1)(terser@5.36.0)
- vite-plugin-pwa@0.20.5(vite@4.5.5(@types/node@22.7.4)(terser@5.34.1))(workbox-build@7.1.1)(workbox-window@7.1.0):
+ vite-plugin-inspect@0.8.8(@nuxt/kit@3.14.1592(magicast@0.3.5)(rollup@4.27.4))(rollup@4.27.4)(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0)):
dependencies:
- debug: 4.3.7
+ '@antfu/utils': 0.7.10
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.4)
+ debug: 4.3.7(supports-color@9.4.0)
+ error-stack-parser-es: 0.1.5
+ fs-extra: 11.2.0
+ open: 10.1.0
+ perfect-debounce: 1.0.0
+ picocolors: 1.1.1
+ sirv: 3.0.0
+ vite: 5.4.11(@types/node@22.10.1)(terser@5.36.0)
+ optionalDependencies:
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.27.4)
+ transitivePeerDependencies:
+ - rollup
+ - supports-color
+
+ vite-plugin-pwa@0.21.0(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0))(workbox-build@7.1.1)(workbox-window@7.1.0):
+ dependencies:
+ debug: 4.3.7(supports-color@9.4.0)
pretty-bytes: 6.1.1
- tinyglobby: 0.2.9
- vite: 4.5.5(@types/node@22.7.4)(terser@5.34.1)
+ tinyglobby: 0.2.10
+ vite: 5.4.11(@types/node@22.10.1)(terser@5.36.0)
workbox-build: 7.1.1
workbox-window: 7.1.0
transitivePeerDependencies:
- supports-color
- vite@4.5.5(@types/node@22.7.4)(terser@5.34.1):
+ vite-plugin-vue-inspector@5.1.3(vite@5.4.11(@types/node@22.10.1)(terser@5.36.0)):
dependencies:
- esbuild: 0.18.20
- postcss: 8.4.47
- rollup: 3.29.5
- optionalDependencies:
- '@types/node': 22.7.4
- fsevents: 2.3.3
- terser: 5.34.1
+ '@babel/core': 7.26.0
+ '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.26.0)
+ '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0)
+ '@vue/compiler-dom': 3.5.13
+ kolorist: 1.8.0
+ magic-string: 0.30.14
+ vite: 5.4.11(@types/node@22.10.1)(terser@5.36.0)
+ transitivePeerDependencies:
+ - supports-color
- vite@5.4.8(@types/node@22.7.4)(terser@5.34.1):
+ vite@5.4.11(@types/node@22.10.1)(terser@5.36.0):
dependencies:
esbuild: 0.21.5
- postcss: 8.4.47
- rollup: 4.24.0
+ postcss: 8.4.49
+ rollup: 4.27.4
optionalDependencies:
- '@types/node': 22.7.4
+ '@types/node': 22.10.1
fsevents: 2.3.3
- terser: 5.34.1
+ terser: 5.36.0
- vitest@1.6.0(@types/node@22.7.4)(terser@5.34.1):
+ vitest@1.6.0(@types/node@22.10.1)(terser@5.36.0):
dependencies:
'@vitest/expect': 1.6.0
'@vitest/runner': 1.6.0
@@ -11864,21 +12099,21 @@ snapshots:
'@vitest/utils': 1.6.0
acorn-walk: 8.3.4
chai: 4.5.0
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
execa: 8.0.1
- local-pkg: 0.5.0
- magic-string: 0.30.11
+ local-pkg: 0.5.1
+ magic-string: 0.30.14
pathe: 1.1.2
- picocolors: 1.1.0
- std-env: 3.7.0
- strip-literal: 2.1.0
+ picocolors: 1.1.1
+ std-env: 3.8.0
+ strip-literal: 2.1.1
tinybench: 2.9.0
tinypool: 0.8.4
- vite: 5.4.8(@types/node@22.7.4)(terser@5.34.1)
- vite-node: 1.6.0(@types/node@22.7.4)(terser@5.34.1)
+ vite: 5.4.11(@types/node@22.10.1)(terser@5.36.0)
+ vite-node: 1.6.0(@types/node@22.10.1)(terser@5.36.0)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 22.7.4
+ '@types/node': 22.10.1
transitivePeerDependencies:
- less
- lightningcss
@@ -11924,7 +12159,7 @@ snapshots:
vue-eslint-parser@9.4.3(eslint@8.57.1):
dependencies:
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
eslint: 8.57.1
eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
@@ -11935,18 +12170,30 @@ snapshots:
transitivePeerDependencies:
- supports-color
- vue-i18n@9.14.1(vue@3.4.8(typescript@5.6.2)):
+ vue-i18n@9.14.2(vue@3.4.8(typescript@5.6.2)):
dependencies:
- '@intlify/core-base': 9.14.1
- '@intlify/shared': 9.14.1
+ '@intlify/core-base': 9.14.2
+ '@intlify/shared': 9.14.2
'@vue/devtools-api': 6.6.4
vue: 3.4.8(typescript@5.6.2)
- vue-router@4.4.5(vue@3.4.8(typescript@5.6.2)):
+ vue-router@4.5.0(vue@3.4.8(typescript@5.6.2)):
dependencies:
'@vue/devtools-api': 6.6.4
vue: 3.4.8(typescript@5.6.2)
+ vue-router@4.5.0(vue@3.5.13(typescript@5.6.2)):
+ dependencies:
+ '@vue/devtools-api': 6.6.4
+ vue: 3.5.13(typescript@5.6.2)
+
+ vue-tsc@2.1.6(typescript@5.6.2):
+ dependencies:
+ '@volar/typescript': 2.4.10
+ '@vue/language-core': 2.1.6(typescript@5.6.2)
+ semver: 7.6.3
+ typescript: 5.6.2
+
vue@3.4.8(typescript@5.6.2):
dependencies:
'@vue/compiler-dom': 3.4.8
@@ -11957,13 +12204,20 @@ snapshots:
optionalDependencies:
typescript: 5.6.2
+ vue@3.5.13(typescript@5.6.2):
+ dependencies:
+ '@vue/compiler-dom': 3.5.13
+ '@vue/compiler-sfc': 3.5.13
+ '@vue/runtime-dom': 3.5.13
+ '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.6.2))
+ '@vue/shared': 3.5.13
+ optionalDependencies:
+ typescript: 5.6.2
+
webidl-conversions@3.0.1: {}
webidl-conversions@4.0.2: {}
- webpack-sources@3.2.3:
- optional: true
-
webpack-virtual-modules@0.6.2: {}
whatwg-fetch@3.6.20: {}
@@ -11987,7 +12241,30 @@ snapshots:
is-string: 1.0.7
is-symbol: 1.0.4
- which-typed-array@1.1.15:
+ which-builtin-type@1.2.0:
+ dependencies:
+ call-bind: 1.0.7
+ function.prototype.name: 1.1.6
+ has-tostringtag: 1.0.2
+ is-async-function: 2.0.0
+ is-date-object: 1.0.5
+ is-finalizationregistry: 1.1.0
+ is-generator-function: 1.0.10
+ is-regex: 1.1.4
+ is-weakref: 1.0.2
+ isarray: 2.0.5
+ which-boxed-primitive: 1.0.2
+ which-collection: 1.0.2
+ which-typed-array: 1.1.16
+
+ which-collection@1.0.2:
+ dependencies:
+ is-map: 2.0.3
+ is-set: 2.0.3
+ is-weakmap: 2.0.2
+ is-weakset: 2.0.3
+
+ which-typed-array@1.1.16:
dependencies:
available-typed-arrays: 1.0.7
call-bind: 1.0.7
@@ -11999,6 +12276,10 @@ snapshots:
dependencies:
isexe: 2.0.0
+ which@3.0.1:
+ dependencies:
+ isexe: 2.0.0
+
why-is-node-running@2.3.0:
dependencies:
siginfo: 2.0.0
@@ -12022,10 +12303,10 @@ snapshots:
workbox-build@7.1.1:
dependencies:
'@apideck/better-ajv-errors': 0.3.6(ajv@8.17.1)
- '@babel/core': 7.25.7
- '@babel/preset-env': 7.25.7(@babel/core@7.25.7)
- '@babel/runtime': 7.25.7
- '@rollup/plugin-babel': 5.3.1(@babel/core@7.25.7)(rollup@2.79.2)
+ '@babel/core': 7.26.0
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
+ '@babel/runtime': 7.26.0
+ '@rollup/plugin-babel': 5.3.1(@babel/core@7.26.0)(rollup@2.79.2)
'@rollup/plugin-node-resolve': 15.3.0(rollup@2.79.2)
'@rollup/plugin-replace': 2.4.2(rollup@2.79.2)
'@rollup/plugin-terser': 0.4.4(rollup@2.79.2)
@@ -12137,11 +12418,9 @@ snapshots:
wrappy@1.0.2: {}
- xml-name-validator@4.0.0: {}
+ ws@8.18.0: {}
- xxhashjs@0.2.2:
- dependencies:
- cuint: 0.2.2
+ xml-name-validator@4.0.0: {}
y18n@5.0.8: {}
@@ -12149,13 +12428,15 @@ snapshots:
yallist@4.0.0: {}
+ yaml-ast-parser@0.0.43: {}
+
yaml-eslint-parser@1.2.3:
dependencies:
eslint-visitor-keys: 3.4.3
lodash: 4.17.21
- yaml: 2.5.1
+ yaml: 2.6.1
- yaml@2.5.1: {}
+ yaml@2.6.1: {}
yargs-parser@21.1.1: {}
diff --git a/frontend/postcss.config.js b/frontend/postcss.config.js
deleted file mode 100644
index 12a703d9..00000000
--- a/frontend/postcss.config.js
+++ /dev/null
@@ -1,6 +0,0 @@
-module.exports = {
- plugins: {
- tailwindcss: {},
- autoprefixer: {},
- },
-};