├── vue-graphql-client ├── .vscode │ └── extensions.json ├── public │ └── favicon.ico ├── jsconfig.json ├── src │ ├── assets │ │ ├── logo.svg │ │ ├── main.css │ │ └── base.css │ ├── App.vue │ ├── components │ │ ├── icons │ │ │ ├── IconSupport.vue │ │ │ ├── IconTooling.vue │ │ │ ├── IconCommunity.vue │ │ │ ├── IconDocumentation.vue │ │ │ └── IconEcosystem.vue │ │ ├── HelloWorld.vue │ │ ├── WelcomeItem.vue │ │ └── TheWelcome.vue │ ├── plugins │ │ ├── vuetify.ts │ │ └── apollo.ts │ ├── main.js │ ├── graphql │ │ ├── queries.ts │ │ └── mutations.ts │ ├── router │ │ └── index.ts │ └── views │ │ ├── BookList.vue │ │ └── BookForm.vue ├── index.html ├── .gitignore ├── vite.config.js ├── README.md ├── package.json └── package-lock.json ├── .DS_Store ├── .sequelizerc ├── README.md ├── schema └── typeDefs.js ├── config └── config.json ├── resolvers └── bookResolver.js ├── package.json ├── models ├── book.js └── index.js ├── migrations └── 20250619113850-create-book.js ├── LICENSE └── index.js /vue-graphql-client/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didinj/node-express-postgresql-vue-graphql/HEAD/.DS_Store -------------------------------------------------------------------------------- /vue-graphql-client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didinj/node-express-postgresql-vue-graphql/HEAD/vue-graphql-client/public/favicon.ico -------------------------------------------------------------------------------- /vue-graphql-client/jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "paths": { 4 | "@/*": ["./src/*"] 5 | } 6 | }, 7 | "exclude": ["node_modules", "dist"] 8 | } 9 | -------------------------------------------------------------------------------- /.sequelizerc: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | 3 | module.exports = { 4 | "config": path.resolve('./config', 'config.json'), 5 | "models-path": path.resolve('./models'), 6 | "seeders-path": path.resolve('./seeders'), 7 | "migrations-path": path.resolve('./migrations') 8 | }; -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Build a Full‑Stack CRUD App with Node.js, Express, PostgreSQL & Vue 3 + GraphQL (2025 Edition) 2 | 3 | Read full article [here](https://www.djamware.com/post/5cdc0ba280aca754f7a9d1f4/build-a-fullstack-crud-app-with-nodejs-express-postgresql-vue-3-graphql-2025-edition). 4 | -------------------------------------------------------------------------------- /vue-graphql-client/src/assets/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vue-graphql-client/src/App.vue: -------------------------------------------------------------------------------- 1 | 8 | 9 | 12 | 13 | 19 | -------------------------------------------------------------------------------- /vue-graphql-client/src/components/icons/IconSupport.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /vue-graphql-client/src/plugins/vuetify.ts: -------------------------------------------------------------------------------- 1 | import { createVuetify } from 'vuetify'; 2 | import * as components from 'vuetify/components'; 3 | import * as directives from 'vuetify/directives'; 4 | import 'vuetify/styles'; // Ensure Vuetify base styles are loaded 5 | 6 | const vuetify = createVuetify({ 7 | components, 8 | directives, 9 | }); 10 | 11 | export default vuetify; -------------------------------------------------------------------------------- /vue-graphql-client/src/main.js: -------------------------------------------------------------------------------- 1 | import "./assets/main.css"; 2 | 3 | import { createApp } from "vue"; 4 | import App from "./App.vue"; 5 | import router from "./router"; 6 | import vuetify from "./plugins/vuetify"; 7 | import ApolloPlugin from "./plugins/apollo"; 8 | 9 | const app = createApp(App); 10 | app.use(router); 11 | app.use(vuetify); 12 | app.use(ApolloPlugin); 13 | app.mount("#app"); 14 | -------------------------------------------------------------------------------- /vue-graphql-client/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Vite App 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /vue-graphql-client/src/graphql/queries.ts: -------------------------------------------------------------------------------- 1 | import gql from 'graphql-tag'; 2 | 3 | export const GET_BOOKS = gql` 4 | query GetBooks { 5 | books { 6 | id 7 | title 8 | author 9 | publishedYear 10 | } 11 | } 12 | `; 13 | 14 | export const GET_BOOK = gql` 15 | query GetBook($id: ID!) { 16 | book(id: $id) { 17 | id 18 | title 19 | author 20 | publishedYear 21 | } 22 | } 23 | `; 24 | -------------------------------------------------------------------------------- /vue-graphql-client/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | .DS_Store 12 | dist 13 | dist-ssr 14 | coverage 15 | *.local 16 | 17 | /cypress/videos/ 18 | /cypress/screenshots/ 19 | 20 | # Editor directories and files 21 | .vscode/* 22 | !.vscode/extensions.json 23 | .idea 24 | *.suo 25 | *.ntvs* 26 | *.njsproj 27 | *.sln 28 | *.sw? 29 | 30 | *.tsbuildinfo 31 | -------------------------------------------------------------------------------- /vue-graphql-client/vite.config.js: -------------------------------------------------------------------------------- 1 | import { fileURLToPath, URL } from 'node:url' 2 | 3 | import { defineConfig } from 'vite' 4 | import vue from '@vitejs/plugin-vue' 5 | import vueDevTools from 'vite-plugin-vue-devtools' 6 | 7 | // https://vite.dev/config/ 8 | export default defineConfig({ 9 | plugins: [ 10 | vue(), 11 | vueDevTools(), 12 | ], 13 | resolve: { 14 | alias: { 15 | '@': fileURLToPath(new URL('./src', import.meta.url)) 16 | }, 17 | }, 18 | }) 19 | -------------------------------------------------------------------------------- /vue-graphql-client/src/router/index.ts: -------------------------------------------------------------------------------- 1 | import { createRouter, createWebHistory } from 'vue-router'; 2 | import BookList from '@/views/BookList.vue'; 3 | import BookForm from '@/views/BookForm.vue'; 4 | 5 | const routes = [ 6 | { path: '/', component: BookList }, 7 | { path: '/add', component: BookForm }, 8 | { path: '/edit/:id', component: BookForm, props: true }, // ✅ new 9 | ]; 10 | 11 | export default createRouter({ 12 | history: createWebHistory(), 13 | routes, 14 | }); 15 | -------------------------------------------------------------------------------- /schema/typeDefs.js: -------------------------------------------------------------------------------- 1 | const typeDefs = ` 2 | type Book { 3 | id: ID! 4 | title: String! 5 | author: String! 6 | publishedYear: Int 7 | } 8 | 9 | type Query { 10 | books: [Book] 11 | book(id: ID!): Book 12 | } 13 | 14 | type Mutation { 15 | createBook(title: String!, author: String!, publishedYear: Int): Book 16 | updateBook(id: ID!, title: String, author: String, publishedYear: Int): Book 17 | deleteBook(id: ID!): Boolean 18 | } 19 | `; 20 | 21 | module.exports = typeDefs; 22 | -------------------------------------------------------------------------------- /vue-graphql-client/src/plugins/apollo.ts: -------------------------------------------------------------------------------- 1 | import { ApolloClient, InMemoryCache, HttpLink } from '@apollo/client/core'; 2 | import { DefaultApolloClient } from '@vue/apollo-composable'; 3 | 4 | const httpLink = new HttpLink({ 5 | uri: 'http://localhost:4000/graphql', 6 | }); 7 | 8 | export const apolloClient = new ApolloClient({ 9 | link: httpLink, 10 | cache: new InMemoryCache(), 11 | }); 12 | 13 | export default { 14 | install: (app: any) => { 15 | app.provide(DefaultApolloClient, apolloClient); 16 | }, 17 | }; 18 | -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "development": { 3 | "username": "djamware", 4 | "password": "dj@mw@r3", 5 | "database": "node_sequelize", 6 | "host": "127.0.0.1", 7 | "dialect": "postgresql" 8 | }, 9 | "test": { 10 | "username": "root", 11 | "password": null, 12 | "database": "database_test", 13 | "host": "127.0.0.1", 14 | "dialect": "mysql" 15 | }, 16 | "production": { 17 | "username": "root", 18 | "password": null, 19 | "database": "database_production", 20 | "host": "127.0.0.1", 21 | "dialect": "mysql" 22 | } 23 | } -------------------------------------------------------------------------------- /resolvers/bookResolver.js: -------------------------------------------------------------------------------- 1 | const { Book } = require('../models'); 2 | 3 | module.exports = { 4 | Query: { 5 | books: () => Book.findAll(), 6 | book: (_, { id }) => Book.findByPk(id), 7 | }, 8 | Mutation: { 9 | createBook: (_, args) => Book.create(args), 10 | updateBook: async (_, { id, ...rest }) => { 11 | await Book.update(rest, { where: { id } }); 12 | return Book.findByPk(id); 13 | }, 14 | deleteBook: async (_, { id }) => { 15 | const deleted = await Book.destroy({ where: { id } }); 16 | return deleted > 0; 17 | }, 18 | }, 19 | }; 20 | -------------------------------------------------------------------------------- /vue-graphql-client/README.md: -------------------------------------------------------------------------------- 1 | # vue-graphql-client 2 | 3 | This template should help get you started developing with Vue 3 in Vite. 4 | 5 | ## Recommended IDE Setup 6 | 7 | [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). 8 | 9 | ## Customize configuration 10 | 11 | See [Vite Configuration Reference](https://vite.dev/config/). 12 | 13 | ## Project Setup 14 | 15 | ```sh 16 | npm install 17 | ``` 18 | 19 | ### Compile and Hot-Reload for Development 20 | 21 | ```sh 22 | npm run dev 23 | ``` 24 | 25 | ### Compile and Minify for Production 26 | 27 | ```sh 28 | npm run build 29 | ``` 30 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "backend", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "keywords": [], 10 | "author": "", 11 | "license": "ISC", 12 | "type": "commonjs", 13 | "dependencies": { 14 | "@apollo/server": "^4.12.2", 15 | "body-parser": "^2.2.0", 16 | "cors": "^2.8.5", 17 | "dotenv": "^16.5.0", 18 | "express": "^5.1.0", 19 | "graphql": "^16.11.0", 20 | "pg": "^8.16.1", 21 | "pg-hstore": "^2.3.4", 22 | "sequelize": "^6.37.7" 23 | }, 24 | "devDependencies": { 25 | "nodemon": "^3.1.10" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /vue-graphql-client/src/assets/main.css: -------------------------------------------------------------------------------- 1 | @import './base.css'; 2 | 3 | #app { 4 | max-width: 1280px; 5 | margin: 0 auto; 6 | padding: 2rem; 7 | font-weight: normal; 8 | } 9 | 10 | a, 11 | .green { 12 | text-decoration: none; 13 | color: hsla(160, 100%, 37%, 1); 14 | transition: 0.4s; 15 | padding: 3px; 16 | } 17 | 18 | @media (hover: hover) { 19 | a:hover { 20 | background-color: hsla(160, 100%, 37%, 0.2); 21 | } 22 | } 23 | 24 | @media (min-width: 1024px) { 25 | body { 26 | display: flex; 27 | place-items: center; 28 | } 29 | 30 | #app { 31 | display: grid; 32 | grid-template-columns: 1fr 1fr; 33 | padding: 0 2rem; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /vue-graphql-client/src/graphql/mutations.ts: -------------------------------------------------------------------------------- 1 | import gql from 'graphql-tag'; 2 | 3 | export const CREATE_BOOK = gql` 4 | mutation CreateBook($title: String!, $author: String!, $publishedYear: Int) { 5 | createBook(title: $title, author: $author, publishedYear: $publishedYear) { 6 | id 7 | } 8 | } 9 | `; 10 | 11 | export const UPDATE_BOOK = gql` 12 | mutation UpdateBook($id: ID!, $title: String, $author: String, $publishedYear: Int) { 13 | updateBook(id: $id, title: $title, author: $author, publishedYear: $publishedYear) { 14 | id 15 | } 16 | } 17 | `; 18 | 19 | export const DELETE_BOOK = gql` 20 | mutation DeleteBook($id: ID!) { 21 | deleteBook(id: $id) 22 | } 23 | `; 24 | -------------------------------------------------------------------------------- /models/book.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | const { 3 | Model 4 | } = require('sequelize'); 5 | module.exports = (sequelize, DataTypes) => { 6 | class Book extends Model { 7 | /** 8 | * Helper method for defining associations. 9 | * This method is not a part of Sequelize lifecycle. 10 | * The `models/index` file will call this method automatically. 11 | */ 12 | static associate(models) { 13 | // define association here 14 | } 15 | } 16 | Book.init({ 17 | isbn: DataTypes.STRING, 18 | title: DataTypes.STRING, 19 | author: DataTypes.STRING, 20 | description: DataTypes.STRING, 21 | publishedYear: DataTypes.INTEGER, 22 | publisher: DataTypes.STRING 23 | }, { 24 | sequelize, 25 | modelName: 'Book', 26 | }); 27 | return Book; 28 | }; -------------------------------------------------------------------------------- /vue-graphql-client/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue-graphql-client", 3 | "version": "0.0.0", 4 | "private": true, 5 | "type": "module", 6 | "scripts": { 7 | "dev": "vite", 8 | "build": "vite build", 9 | "preview": "vite preview" 10 | }, 11 | "dependencies": { 12 | "@apollo/client": "^3.13.8", 13 | "@vue/apollo-composable": "^4.2.2", 14 | "graphql": "^16.11.0", 15 | "sass": "^1.89.2", 16 | "sass-loader": "^13.3.3", 17 | "vue": "^3.5.13", 18 | "vue-router": "^4.5.1", 19 | "vuetify": "^3.8.10" 20 | }, 21 | "devDependencies": { 22 | "@vitejs/plugin-vue": "^5.2.3", 23 | "autoprefixer": "^10.4.21", 24 | "postcss": "^8.5.6", 25 | "tailwindcss": "^4.1.10", 26 | "vite": "^6.2.4", 27 | "vite-plugin-vue-devtools": "^7.7.2" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /vue-graphql-client/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- 1 | 9 | 10 | 20 | 21 | 45 | -------------------------------------------------------------------------------- /vue-graphql-client/src/components/icons/IconTooling.vue: -------------------------------------------------------------------------------- 1 | 2 | 20 | -------------------------------------------------------------------------------- /vue-graphql-client/src/components/icons/IconCommunity.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /migrations/20250619113850-create-book.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | /** @type {import('sequelize-cli').Migration} */ 3 | module.exports = { 4 | async up(queryInterface, Sequelize) { 5 | await queryInterface.createTable('Books', { 6 | id: { 7 | allowNull: false, 8 | autoIncrement: true, 9 | primaryKey: true, 10 | type: Sequelize.INTEGER 11 | }, 12 | isbn: { 13 | type: Sequelize.STRING 14 | }, 15 | title: { 16 | type: Sequelize.STRING 17 | }, 18 | author: { 19 | type: Sequelize.STRING 20 | }, 21 | description: { 22 | type: Sequelize.STRING 23 | }, 24 | publishedYear: { 25 | type: Sequelize.INTEGER 26 | }, 27 | publisher: { 28 | type: Sequelize.STRING 29 | }, 30 | createdAt: { 31 | allowNull: false, 32 | type: Sequelize.DATE 33 | }, 34 | updatedAt: { 35 | allowNull: false, 36 | type: Sequelize.DATE 37 | } 38 | }); 39 | }, 40 | async down(queryInterface, Sequelize) { 41 | await queryInterface.dropTable('Books'); 42 | } 43 | }; -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2025 Didin Jamaludin 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | // index.js 2 | require("dotenv").config(); 3 | const express = require("express"); 4 | const { ApolloServer } = require("@apollo/server"); 5 | const { expressMiddleware } = require("@apollo/server/express4"); 6 | const { json } = require("body-parser"); 7 | const cors = require("cors"); 8 | 9 | const typeDefs = require("./schema/typeDefs"); 10 | const resolvers = require("./resolvers/bookResolver"); 11 | const { sequelize } = require("./models"); 12 | 13 | const startServer = async () => { 14 | const app = express(); 15 | const server = new ApolloServer({ typeDefs, resolvers }); 16 | 17 | await server.start(); 18 | 19 | app.use( 20 | "/graphql", 21 | cors(), 22 | json(), 23 | expressMiddleware(server, { 24 | context: async ({ req }) => ({ token: req.headers.authorization }) 25 | }) 26 | ); 27 | 28 | const PORT = process.env.PORT || 4000; 29 | app.listen(PORT, async () => { 30 | try { 31 | await sequelize.authenticate(); 32 | console.log("🟢 DB Connected"); 33 | } catch (err) { 34 | console.error("🔴 DB Connection Error:", err); 35 | } 36 | 37 | console.log(`🚀 GraphQL Server ready at http://localhost:${PORT}/graphql`); 38 | }); 39 | }; 40 | 41 | startServer(); 42 | -------------------------------------------------------------------------------- /models/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const fs = require('fs'); 4 | const path = require('path'); 5 | const Sequelize = require('sequelize'); 6 | const process = require('process'); 7 | const basename = path.basename(__filename); 8 | const env = process.env.NODE_ENV || 'development'; 9 | const config = require(__dirname + '/../config/config.json')[env]; 10 | const db = {}; 11 | 12 | let sequelize; 13 | if (config.use_env_variable) { 14 | sequelize = new Sequelize(process.env[config.use_env_variable], config); 15 | } else { 16 | sequelize = new Sequelize(config.database, config.username, config.password, config); 17 | } 18 | 19 | fs 20 | .readdirSync(__dirname) 21 | .filter(file => { 22 | return ( 23 | file.indexOf('.') !== 0 && 24 | file !== basename && 25 | file.slice(-3) === '.js' && 26 | file.indexOf('.test.js') === -1 27 | ); 28 | }) 29 | .forEach(file => { 30 | const model = require(path.join(__dirname, file))(sequelize, Sequelize.DataTypes); 31 | db[model.name] = model; 32 | }); 33 | 34 | Object.keys(db).forEach(modelName => { 35 | if (db[modelName].associate) { 36 | db[modelName].associate(db); 37 | } 38 | }); 39 | 40 | db.sequelize = sequelize; 41 | db.Sequelize = Sequelize; 42 | 43 | module.exports = db; 44 | -------------------------------------------------------------------------------- /vue-graphql-client/src/components/icons/IconDocumentation.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /vue-graphql-client/src/views/BookList.vue: -------------------------------------------------------------------------------- 1 | 25 | 26 | -------------------------------------------------------------------------------- /vue-graphql-client/src/components/WelcomeItem.vue: -------------------------------------------------------------------------------- 1 | 14 | 15 | 88 | -------------------------------------------------------------------------------- /vue-graphql-client/src/components/icons/IconEcosystem.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /vue-graphql-client/src/views/BookForm.vue: -------------------------------------------------------------------------------- 1 | 25 | 26 | 67 | -------------------------------------------------------------------------------- /vue-graphql-client/src/assets/base.css: -------------------------------------------------------------------------------- 1 | /* color palette from */ 2 | :root { 3 | --vt-c-white: #ffffff; 4 | --vt-c-white-soft: #f8f8f8; 5 | --vt-c-white-mute: #f2f2f2; 6 | 7 | --vt-c-black: #181818; 8 | --vt-c-black-soft: #222222; 9 | --vt-c-black-mute: #282828; 10 | 11 | --vt-c-indigo: #2c3e50; 12 | 13 | --vt-c-divider-light-1: rgba(60, 60, 60, 0.29); 14 | --vt-c-divider-light-2: rgba(60, 60, 60, 0.12); 15 | --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65); 16 | --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48); 17 | 18 | --vt-c-text-light-1: var(--vt-c-indigo); 19 | --vt-c-text-light-2: rgba(60, 60, 60, 0.66); 20 | --vt-c-text-dark-1: var(--vt-c-white); 21 | --vt-c-text-dark-2: rgba(235, 235, 235, 0.64); 22 | } 23 | 24 | /* semantic color variables for this project */ 25 | :root { 26 | --color-background: var(--vt-c-white); 27 | --color-background-soft: var(--vt-c-white-soft); 28 | --color-background-mute: var(--vt-c-white-mute); 29 | 30 | --color-border: var(--vt-c-divider-light-2); 31 | --color-border-hover: var(--vt-c-divider-light-1); 32 | 33 | --color-heading: var(--vt-c-text-light-1); 34 | --color-text: var(--vt-c-text-light-1); 35 | 36 | --section-gap: 160px; 37 | } 38 | 39 | @media (prefers-color-scheme: dark) { 40 | :root { 41 | --color-background: var(--vt-c-black); 42 | --color-background-soft: var(--vt-c-black-soft); 43 | --color-background-mute: var(--vt-c-black-mute); 44 | 45 | --color-border: var(--vt-c-divider-dark-2); 46 | --color-border-hover: var(--vt-c-divider-dark-1); 47 | 48 | --color-heading: var(--vt-c-text-dark-1); 49 | --color-text: var(--vt-c-text-dark-2); 50 | } 51 | } 52 | 53 | *, 54 | *::before, 55 | *::after { 56 | box-sizing: border-box; 57 | margin: 0; 58 | font-weight: normal; 59 | } 60 | 61 | body { 62 | min-height: 100vh; 63 | color: var(--color-text); 64 | background: var(--color-background); 65 | transition: 66 | color 0.5s, 67 | background-color 0.5s; 68 | line-height: 1.6; 69 | font-family: 70 | Inter, 71 | -apple-system, 72 | BlinkMacSystemFont, 73 | 'Segoe UI', 74 | Roboto, 75 | Oxygen, 76 | Ubuntu, 77 | Cantarell, 78 | 'Fira Sans', 79 | 'Droid Sans', 80 | 'Helvetica Neue', 81 | sans-serif; 82 | font-size: 15px; 83 | text-rendering: optimizeLegibility; 84 | -webkit-font-smoothing: antialiased; 85 | -moz-osx-font-smoothing: grayscale; 86 | } 87 | -------------------------------------------------------------------------------- /vue-graphql-client/src/components/TheWelcome.vue: -------------------------------------------------------------------------------- 1 | 11 | 12 | 95 | -------------------------------------------------------------------------------- /vue-graphql-client/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue-graphql-client", 3 | "version": "0.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "vue-graphql-client", 9 | "version": "0.0.0", 10 | "dependencies": { 11 | "@apollo/client": "^3.13.8", 12 | "@vue/apollo-composable": "^4.2.2", 13 | "graphql": "^16.11.0", 14 | "sass": "^1.89.2", 15 | "sass-loader": "^13.3.3", 16 | "vue": "^3.5.13", 17 | "vue-router": "^4.5.1", 18 | "vuetify": "^3.8.10" 19 | }, 20 | "devDependencies": { 21 | "@vitejs/plugin-vue": "^5.2.3", 22 | "autoprefixer": "^10.4.21", 23 | "postcss": "^8.5.6", 24 | "tailwindcss": "^4.1.10", 25 | "vite": "^6.2.4", 26 | "vite-plugin-vue-devtools": "^7.7.2" 27 | } 28 | }, 29 | "node_modules/@ampproject/remapping": { 30 | "version": "2.3.0", 31 | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", 32 | "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", 33 | "dev": true, 34 | "license": "Apache-2.0", 35 | "dependencies": { 36 | "@jridgewell/gen-mapping": "^0.3.5", 37 | "@jridgewell/trace-mapping": "^0.3.24" 38 | }, 39 | "engines": { 40 | "node": ">=6.0.0" 41 | } 42 | }, 43 | "node_modules/@antfu/utils": { 44 | "version": "0.7.10", 45 | "resolved": "https://registry.npmjs.org/@antfu/utils/-/utils-0.7.10.tgz", 46 | "integrity": "sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==", 47 | "dev": true, 48 | "license": "MIT", 49 | "funding": { 50 | "url": "https://github.com/sponsors/antfu" 51 | } 52 | }, 53 | "node_modules/@apollo/client": { 54 | "version": "3.13.8", 55 | "resolved": "https://registry.npmjs.org/@apollo/client/-/client-3.13.8.tgz", 56 | "integrity": "sha512-YM9lQpm0VfVco4DSyKooHS/fDTiKQcCHfxr7i3iL6a0kP/jNO5+4NFK6vtRDxaYisd5BrwOZHLJpPBnvRVpKPg==", 57 | "license": "MIT", 58 | "dependencies": { 59 | "@graphql-typed-document-node/core": "^3.1.1", 60 | "@wry/caches": "^1.0.0", 61 | "@wry/equality": "^0.5.6", 62 | "@wry/trie": "^0.5.0", 63 | "graphql-tag": "^2.12.6", 64 | "hoist-non-react-statics": "^3.3.2", 65 | "optimism": "^0.18.0", 66 | "prop-types": "^15.7.2", 67 | "rehackt": "^0.1.0", 68 | "symbol-observable": "^4.0.0", 69 | "ts-invariant": "^0.10.3", 70 | "tslib": "^2.3.0", 71 | "zen-observable-ts": "^1.2.5" 72 | }, 73 | "peerDependencies": { 74 | "graphql": "^15.0.0 || ^16.0.0", 75 | "graphql-ws": "^5.5.5 || ^6.0.3", 76 | "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc", 77 | "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc", 78 | "subscriptions-transport-ws": "^0.9.0 || ^0.11.0" 79 | }, 80 | "peerDependenciesMeta": { 81 | "graphql-ws": { 82 | "optional": true 83 | }, 84 | "react": { 85 | "optional": true 86 | }, 87 | "react-dom": { 88 | "optional": true 89 | }, 90 | "subscriptions-transport-ws": { 91 | "optional": true 92 | } 93 | } 94 | }, 95 | "node_modules/@babel/code-frame": { 96 | "version": "7.27.1", 97 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", 98 | "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", 99 | "dev": true, 100 | "license": "MIT", 101 | "dependencies": { 102 | "@babel/helper-validator-identifier": "^7.27.1", 103 | "js-tokens": "^4.0.0", 104 | "picocolors": "^1.1.1" 105 | }, 106 | "engines": { 107 | "node": ">=6.9.0" 108 | } 109 | }, 110 | "node_modules/@babel/compat-data": { 111 | "version": "7.27.5", 112 | "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.27.5.tgz", 113 | "integrity": "sha512-KiRAp/VoJaWkkte84TvUd9qjdbZAdiqyvMxrGl1N6vzFogKmaLgoM3L1kgtLicp2HP5fBJS8JrZKLVIZGVJAVg==", 114 | "dev": true, 115 | "license": "MIT", 116 | "engines": { 117 | "node": ">=6.9.0" 118 | } 119 | }, 120 | "node_modules/@babel/core": { 121 | "version": "7.27.4", 122 | "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.27.4.tgz", 123 | "integrity": "sha512-bXYxrXFubeYdvB0NhD/NBB3Qi6aZeV20GOWVI47t2dkecCEoneR4NPVcb7abpXDEvejgrUfFtG6vG/zxAKmg+g==", 124 | "dev": true, 125 | "license": "MIT", 126 | "dependencies": { 127 | "@ampproject/remapping": "^2.2.0", 128 | "@babel/code-frame": "^7.27.1", 129 | "@babel/generator": "^7.27.3", 130 | "@babel/helper-compilation-targets": "^7.27.2", 131 | "@babel/helper-module-transforms": "^7.27.3", 132 | "@babel/helpers": "^7.27.4", 133 | "@babel/parser": "^7.27.4", 134 | "@babel/template": "^7.27.2", 135 | "@babel/traverse": "^7.27.4", 136 | "@babel/types": "^7.27.3", 137 | "convert-source-map": "^2.0.0", 138 | "debug": "^4.1.0", 139 | "gensync": "^1.0.0-beta.2", 140 | "json5": "^2.2.3", 141 | "semver": "^6.3.1" 142 | }, 143 | "engines": { 144 | "node": ">=6.9.0" 145 | }, 146 | "funding": { 147 | "type": "opencollective", 148 | "url": "https://opencollective.com/babel" 149 | } 150 | }, 151 | "node_modules/@babel/generator": { 152 | "version": "7.27.5", 153 | "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.27.5.tgz", 154 | "integrity": "sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw==", 155 | "dev": true, 156 | "license": "MIT", 157 | "dependencies": { 158 | "@babel/parser": "^7.27.5", 159 | "@babel/types": "^7.27.3", 160 | "@jridgewell/gen-mapping": "^0.3.5", 161 | "@jridgewell/trace-mapping": "^0.3.25", 162 | "jsesc": "^3.0.2" 163 | }, 164 | "engines": { 165 | "node": ">=6.9.0" 166 | } 167 | }, 168 | "node_modules/@babel/helper-annotate-as-pure": { 169 | "version": "7.27.3", 170 | "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", 171 | "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", 172 | "dev": true, 173 | "license": "MIT", 174 | "dependencies": { 175 | "@babel/types": "^7.27.3" 176 | }, 177 | "engines": { 178 | "node": ">=6.9.0" 179 | } 180 | }, 181 | "node_modules/@babel/helper-compilation-targets": { 182 | "version": "7.27.2", 183 | "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", 184 | "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", 185 | "dev": true, 186 | "license": "MIT", 187 | "dependencies": { 188 | "@babel/compat-data": "^7.27.2", 189 | "@babel/helper-validator-option": "^7.27.1", 190 | "browserslist": "^4.24.0", 191 | "lru-cache": "^5.1.1", 192 | "semver": "^6.3.1" 193 | }, 194 | "engines": { 195 | "node": ">=6.9.0" 196 | } 197 | }, 198 | "node_modules/@babel/helper-create-class-features-plugin": { 199 | "version": "7.27.1", 200 | "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.27.1.tgz", 201 | "integrity": "sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==", 202 | "dev": true, 203 | "license": "MIT", 204 | "dependencies": { 205 | "@babel/helper-annotate-as-pure": "^7.27.1", 206 | "@babel/helper-member-expression-to-functions": "^7.27.1", 207 | "@babel/helper-optimise-call-expression": "^7.27.1", 208 | "@babel/helper-replace-supers": "^7.27.1", 209 | "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", 210 | "@babel/traverse": "^7.27.1", 211 | "semver": "^6.3.1" 212 | }, 213 | "engines": { 214 | "node": ">=6.9.0" 215 | }, 216 | "peerDependencies": { 217 | "@babel/core": "^7.0.0" 218 | } 219 | }, 220 | "node_modules/@babel/helper-member-expression-to-functions": { 221 | "version": "7.27.1", 222 | "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.27.1.tgz", 223 | "integrity": "sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==", 224 | "dev": true, 225 | "license": "MIT", 226 | "dependencies": { 227 | "@babel/traverse": "^7.27.1", 228 | "@babel/types": "^7.27.1" 229 | }, 230 | "engines": { 231 | "node": ">=6.9.0" 232 | } 233 | }, 234 | "node_modules/@babel/helper-module-imports": { 235 | "version": "7.27.1", 236 | "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", 237 | "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", 238 | "dev": true, 239 | "license": "MIT", 240 | "dependencies": { 241 | "@babel/traverse": "^7.27.1", 242 | "@babel/types": "^7.27.1" 243 | }, 244 | "engines": { 245 | "node": ">=6.9.0" 246 | } 247 | }, 248 | "node_modules/@babel/helper-module-transforms": { 249 | "version": "7.27.3", 250 | "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.27.3.tgz", 251 | "integrity": "sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==", 252 | "dev": true, 253 | "license": "MIT", 254 | "dependencies": { 255 | "@babel/helper-module-imports": "^7.27.1", 256 | "@babel/helper-validator-identifier": "^7.27.1", 257 | "@babel/traverse": "^7.27.3" 258 | }, 259 | "engines": { 260 | "node": ">=6.9.0" 261 | }, 262 | "peerDependencies": { 263 | "@babel/core": "^7.0.0" 264 | } 265 | }, 266 | "node_modules/@babel/helper-optimise-call-expression": { 267 | "version": "7.27.1", 268 | "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz", 269 | "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==", 270 | "dev": true, 271 | "license": "MIT", 272 | "dependencies": { 273 | "@babel/types": "^7.27.1" 274 | }, 275 | "engines": { 276 | "node": ">=6.9.0" 277 | } 278 | }, 279 | "node_modules/@babel/helper-plugin-utils": { 280 | "version": "7.27.1", 281 | "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", 282 | "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", 283 | "dev": true, 284 | "license": "MIT", 285 | "engines": { 286 | "node": ">=6.9.0" 287 | } 288 | }, 289 | "node_modules/@babel/helper-replace-supers": { 290 | "version": "7.27.1", 291 | "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz", 292 | "integrity": "sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==", 293 | "dev": true, 294 | "license": "MIT", 295 | "dependencies": { 296 | "@babel/helper-member-expression-to-functions": "^7.27.1", 297 | "@babel/helper-optimise-call-expression": "^7.27.1", 298 | "@babel/traverse": "^7.27.1" 299 | }, 300 | "engines": { 301 | "node": ">=6.9.0" 302 | }, 303 | "peerDependencies": { 304 | "@babel/core": "^7.0.0" 305 | } 306 | }, 307 | "node_modules/@babel/helper-skip-transparent-expression-wrappers": { 308 | "version": "7.27.1", 309 | "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz", 310 | "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==", 311 | "dev": true, 312 | "license": "MIT", 313 | "dependencies": { 314 | "@babel/traverse": "^7.27.1", 315 | "@babel/types": "^7.27.1" 316 | }, 317 | "engines": { 318 | "node": ">=6.9.0" 319 | } 320 | }, 321 | "node_modules/@babel/helper-string-parser": { 322 | "version": "7.27.1", 323 | "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", 324 | "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", 325 | "license": "MIT", 326 | "engines": { 327 | "node": ">=6.9.0" 328 | } 329 | }, 330 | "node_modules/@babel/helper-validator-identifier": { 331 | "version": "7.27.1", 332 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz", 333 | "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", 334 | "license": "MIT", 335 | "engines": { 336 | "node": ">=6.9.0" 337 | } 338 | }, 339 | "node_modules/@babel/helper-validator-option": { 340 | "version": "7.27.1", 341 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", 342 | "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", 343 | "dev": true, 344 | "license": "MIT", 345 | "engines": { 346 | "node": ">=6.9.0" 347 | } 348 | }, 349 | "node_modules/@babel/helpers": { 350 | "version": "7.27.6", 351 | "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.27.6.tgz", 352 | "integrity": "sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==", 353 | "dev": true, 354 | "license": "MIT", 355 | "dependencies": { 356 | "@babel/template": "^7.27.2", 357 | "@babel/types": "^7.27.6" 358 | }, 359 | "engines": { 360 | "node": ">=6.9.0" 361 | } 362 | }, 363 | "node_modules/@babel/parser": { 364 | "version": "7.27.5", 365 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.5.tgz", 366 | "integrity": "sha512-OsQd175SxWkGlzbny8J3K8TnnDD0N3lrIUtB92xwyRpzaenGZhxDvxN/JgU00U3CDZNj9tPuDJ5H0WS4Nt3vKg==", 367 | "license": "MIT", 368 | "dependencies": { 369 | "@babel/types": "^7.27.3" 370 | }, 371 | "bin": { 372 | "parser": "bin/babel-parser.js" 373 | }, 374 | "engines": { 375 | "node": ">=6.0.0" 376 | } 377 | }, 378 | "node_modules/@babel/plugin-proposal-decorators": { 379 | "version": "7.27.1", 380 | "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.27.1.tgz", 381 | "integrity": "sha512-DTxe4LBPrtFdsWzgpmbBKevg3e9PBy+dXRt19kSbucbZvL2uqtdqwwpluL1jfxYE0wIDTFp1nTy/q6gNLsxXrg==", 382 | "dev": true, 383 | "license": "MIT", 384 | "dependencies": { 385 | "@babel/helper-create-class-features-plugin": "^7.27.1", 386 | "@babel/helper-plugin-utils": "^7.27.1", 387 | "@babel/plugin-syntax-decorators": "^7.27.1" 388 | }, 389 | "engines": { 390 | "node": ">=6.9.0" 391 | }, 392 | "peerDependencies": { 393 | "@babel/core": "^7.0.0-0" 394 | } 395 | }, 396 | "node_modules/@babel/plugin-syntax-decorators": { 397 | "version": "7.27.1", 398 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.27.1.tgz", 399 | "integrity": "sha512-YMq8Z87Lhl8EGkmb0MwYkt36QnxC+fzCgrl66ereamPlYToRpIk5nUjKUY3QKLWq8mwUB1BgbeXcTJhZOCDg5A==", 400 | "dev": true, 401 | "license": "MIT", 402 | "dependencies": { 403 | "@babel/helper-plugin-utils": "^7.27.1" 404 | }, 405 | "engines": { 406 | "node": ">=6.9.0" 407 | }, 408 | "peerDependencies": { 409 | "@babel/core": "^7.0.0-0" 410 | } 411 | }, 412 | "node_modules/@babel/plugin-syntax-import-attributes": { 413 | "version": "7.27.1", 414 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz", 415 | "integrity": "sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==", 416 | "dev": true, 417 | "license": "MIT", 418 | "dependencies": { 419 | "@babel/helper-plugin-utils": "^7.27.1" 420 | }, 421 | "engines": { 422 | "node": ">=6.9.0" 423 | }, 424 | "peerDependencies": { 425 | "@babel/core": "^7.0.0-0" 426 | } 427 | }, 428 | "node_modules/@babel/plugin-syntax-import-meta": { 429 | "version": "7.10.4", 430 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", 431 | "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", 432 | "dev": true, 433 | "license": "MIT", 434 | "dependencies": { 435 | "@babel/helper-plugin-utils": "^7.10.4" 436 | }, 437 | "peerDependencies": { 438 | "@babel/core": "^7.0.0-0" 439 | } 440 | }, 441 | "node_modules/@babel/plugin-syntax-jsx": { 442 | "version": "7.27.1", 443 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz", 444 | "integrity": "sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==", 445 | "dev": true, 446 | "license": "MIT", 447 | "dependencies": { 448 | "@babel/helper-plugin-utils": "^7.27.1" 449 | }, 450 | "engines": { 451 | "node": ">=6.9.0" 452 | }, 453 | "peerDependencies": { 454 | "@babel/core": "^7.0.0-0" 455 | } 456 | }, 457 | "node_modules/@babel/plugin-syntax-typescript": { 458 | "version": "7.27.1", 459 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz", 460 | "integrity": "sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==", 461 | "dev": true, 462 | "license": "MIT", 463 | "dependencies": { 464 | "@babel/helper-plugin-utils": "^7.27.1" 465 | }, 466 | "engines": { 467 | "node": ">=6.9.0" 468 | }, 469 | "peerDependencies": { 470 | "@babel/core": "^7.0.0-0" 471 | } 472 | }, 473 | "node_modules/@babel/plugin-transform-typescript": { 474 | "version": "7.27.1", 475 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.27.1.tgz", 476 | "integrity": "sha512-Q5sT5+O4QUebHdbwKedFBEwRLb02zJ7r4A5Gg2hUoLuU3FjdMcyqcywqUrLCaDsFCxzokf7u9kuy7qz51YUuAg==", 477 | "dev": true, 478 | "license": "MIT", 479 | "dependencies": { 480 | "@babel/helper-annotate-as-pure": "^7.27.1", 481 | "@babel/helper-create-class-features-plugin": "^7.27.1", 482 | "@babel/helper-plugin-utils": "^7.27.1", 483 | "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", 484 | "@babel/plugin-syntax-typescript": "^7.27.1" 485 | }, 486 | "engines": { 487 | "node": ">=6.9.0" 488 | }, 489 | "peerDependencies": { 490 | "@babel/core": "^7.0.0-0" 491 | } 492 | }, 493 | "node_modules/@babel/template": { 494 | "version": "7.27.2", 495 | "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", 496 | "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", 497 | "dev": true, 498 | "license": "MIT", 499 | "dependencies": { 500 | "@babel/code-frame": "^7.27.1", 501 | "@babel/parser": "^7.27.2", 502 | "@babel/types": "^7.27.1" 503 | }, 504 | "engines": { 505 | "node": ">=6.9.0" 506 | } 507 | }, 508 | "node_modules/@babel/traverse": { 509 | "version": "7.27.4", 510 | "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.27.4.tgz", 511 | "integrity": "sha512-oNcu2QbHqts9BtOWJosOVJapWjBDSxGCpFvikNR5TGDYDQf3JwpIoMzIKrvfoti93cLfPJEG4tH9SPVeyCGgdA==", 512 | "dev": true, 513 | "license": "MIT", 514 | "dependencies": { 515 | "@babel/code-frame": "^7.27.1", 516 | "@babel/generator": "^7.27.3", 517 | "@babel/parser": "^7.27.4", 518 | "@babel/template": "^7.27.2", 519 | "@babel/types": "^7.27.3", 520 | "debug": "^4.3.1", 521 | "globals": "^11.1.0" 522 | }, 523 | "engines": { 524 | "node": ">=6.9.0" 525 | } 526 | }, 527 | "node_modules/@babel/types": { 528 | "version": "7.27.6", 529 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.6.tgz", 530 | "integrity": "sha512-ETyHEk2VHHvl9b9jZP5IHPavHYk57EhanlRRuae9XCpb/j5bDCbPPMOBfCWhnl/7EDJz0jEMCi/RhccCE8r1+Q==", 531 | "license": "MIT", 532 | "dependencies": { 533 | "@babel/helper-string-parser": "^7.27.1", 534 | "@babel/helper-validator-identifier": "^7.27.1" 535 | }, 536 | "engines": { 537 | "node": ">=6.9.0" 538 | } 539 | }, 540 | "node_modules/@esbuild/aix-ppc64": { 541 | "version": "0.25.5", 542 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.5.tgz", 543 | "integrity": "sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==", 544 | "cpu": [ 545 | "ppc64" 546 | ], 547 | "dev": true, 548 | "license": "MIT", 549 | "optional": true, 550 | "os": [ 551 | "aix" 552 | ], 553 | "engines": { 554 | "node": ">=18" 555 | } 556 | }, 557 | "node_modules/@esbuild/android-arm": { 558 | "version": "0.25.5", 559 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.5.tgz", 560 | "integrity": "sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==", 561 | "cpu": [ 562 | "arm" 563 | ], 564 | "dev": true, 565 | "license": "MIT", 566 | "optional": true, 567 | "os": [ 568 | "android" 569 | ], 570 | "engines": { 571 | "node": ">=18" 572 | } 573 | }, 574 | "node_modules/@esbuild/android-arm64": { 575 | "version": "0.25.5", 576 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.5.tgz", 577 | "integrity": "sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==", 578 | "cpu": [ 579 | "arm64" 580 | ], 581 | "dev": true, 582 | "license": "MIT", 583 | "optional": true, 584 | "os": [ 585 | "android" 586 | ], 587 | "engines": { 588 | "node": ">=18" 589 | } 590 | }, 591 | "node_modules/@esbuild/android-x64": { 592 | "version": "0.25.5", 593 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.5.tgz", 594 | "integrity": "sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==", 595 | "cpu": [ 596 | "x64" 597 | ], 598 | "dev": true, 599 | "license": "MIT", 600 | "optional": true, 601 | "os": [ 602 | "android" 603 | ], 604 | "engines": { 605 | "node": ">=18" 606 | } 607 | }, 608 | "node_modules/@esbuild/darwin-arm64": { 609 | "version": "0.25.5", 610 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.5.tgz", 611 | "integrity": "sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==", 612 | "cpu": [ 613 | "arm64" 614 | ], 615 | "dev": true, 616 | "license": "MIT", 617 | "optional": true, 618 | "os": [ 619 | "darwin" 620 | ], 621 | "engines": { 622 | "node": ">=18" 623 | } 624 | }, 625 | "node_modules/@esbuild/darwin-x64": { 626 | "version": "0.25.5", 627 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.5.tgz", 628 | "integrity": "sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==", 629 | "cpu": [ 630 | "x64" 631 | ], 632 | "dev": true, 633 | "license": "MIT", 634 | "optional": true, 635 | "os": [ 636 | "darwin" 637 | ], 638 | "engines": { 639 | "node": ">=18" 640 | } 641 | }, 642 | "node_modules/@esbuild/freebsd-arm64": { 643 | "version": "0.25.5", 644 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.5.tgz", 645 | "integrity": "sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==", 646 | "cpu": [ 647 | "arm64" 648 | ], 649 | "dev": true, 650 | "license": "MIT", 651 | "optional": true, 652 | "os": [ 653 | "freebsd" 654 | ], 655 | "engines": { 656 | "node": ">=18" 657 | } 658 | }, 659 | "node_modules/@esbuild/freebsd-x64": { 660 | "version": "0.25.5", 661 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.5.tgz", 662 | "integrity": "sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==", 663 | "cpu": [ 664 | "x64" 665 | ], 666 | "dev": true, 667 | "license": "MIT", 668 | "optional": true, 669 | "os": [ 670 | "freebsd" 671 | ], 672 | "engines": { 673 | "node": ">=18" 674 | } 675 | }, 676 | "node_modules/@esbuild/linux-arm": { 677 | "version": "0.25.5", 678 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.5.tgz", 679 | "integrity": "sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==", 680 | "cpu": [ 681 | "arm" 682 | ], 683 | "dev": true, 684 | "license": "MIT", 685 | "optional": true, 686 | "os": [ 687 | "linux" 688 | ], 689 | "engines": { 690 | "node": ">=18" 691 | } 692 | }, 693 | "node_modules/@esbuild/linux-arm64": { 694 | "version": "0.25.5", 695 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.5.tgz", 696 | "integrity": "sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==", 697 | "cpu": [ 698 | "arm64" 699 | ], 700 | "dev": true, 701 | "license": "MIT", 702 | "optional": true, 703 | "os": [ 704 | "linux" 705 | ], 706 | "engines": { 707 | "node": ">=18" 708 | } 709 | }, 710 | "node_modules/@esbuild/linux-ia32": { 711 | "version": "0.25.5", 712 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.5.tgz", 713 | "integrity": "sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==", 714 | "cpu": [ 715 | "ia32" 716 | ], 717 | "dev": true, 718 | "license": "MIT", 719 | "optional": true, 720 | "os": [ 721 | "linux" 722 | ], 723 | "engines": { 724 | "node": ">=18" 725 | } 726 | }, 727 | "node_modules/@esbuild/linux-loong64": { 728 | "version": "0.25.5", 729 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.5.tgz", 730 | "integrity": "sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==", 731 | "cpu": [ 732 | "loong64" 733 | ], 734 | "dev": true, 735 | "license": "MIT", 736 | "optional": true, 737 | "os": [ 738 | "linux" 739 | ], 740 | "engines": { 741 | "node": ">=18" 742 | } 743 | }, 744 | "node_modules/@esbuild/linux-mips64el": { 745 | "version": "0.25.5", 746 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.5.tgz", 747 | "integrity": "sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==", 748 | "cpu": [ 749 | "mips64el" 750 | ], 751 | "dev": true, 752 | "license": "MIT", 753 | "optional": true, 754 | "os": [ 755 | "linux" 756 | ], 757 | "engines": { 758 | "node": ">=18" 759 | } 760 | }, 761 | "node_modules/@esbuild/linux-ppc64": { 762 | "version": "0.25.5", 763 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.5.tgz", 764 | "integrity": "sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==", 765 | "cpu": [ 766 | "ppc64" 767 | ], 768 | "dev": true, 769 | "license": "MIT", 770 | "optional": true, 771 | "os": [ 772 | "linux" 773 | ], 774 | "engines": { 775 | "node": ">=18" 776 | } 777 | }, 778 | "node_modules/@esbuild/linux-riscv64": { 779 | "version": "0.25.5", 780 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.5.tgz", 781 | "integrity": "sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==", 782 | "cpu": [ 783 | "riscv64" 784 | ], 785 | "dev": true, 786 | "license": "MIT", 787 | "optional": true, 788 | "os": [ 789 | "linux" 790 | ], 791 | "engines": { 792 | "node": ">=18" 793 | } 794 | }, 795 | "node_modules/@esbuild/linux-s390x": { 796 | "version": "0.25.5", 797 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.5.tgz", 798 | "integrity": "sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==", 799 | "cpu": [ 800 | "s390x" 801 | ], 802 | "dev": true, 803 | "license": "MIT", 804 | "optional": true, 805 | "os": [ 806 | "linux" 807 | ], 808 | "engines": { 809 | "node": ">=18" 810 | } 811 | }, 812 | "node_modules/@esbuild/linux-x64": { 813 | "version": "0.25.5", 814 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.5.tgz", 815 | "integrity": "sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==", 816 | "cpu": [ 817 | "x64" 818 | ], 819 | "dev": true, 820 | "license": "MIT", 821 | "optional": true, 822 | "os": [ 823 | "linux" 824 | ], 825 | "engines": { 826 | "node": ">=18" 827 | } 828 | }, 829 | "node_modules/@esbuild/netbsd-arm64": { 830 | "version": "0.25.5", 831 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.5.tgz", 832 | "integrity": "sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==", 833 | "cpu": [ 834 | "arm64" 835 | ], 836 | "dev": true, 837 | "license": "MIT", 838 | "optional": true, 839 | "os": [ 840 | "netbsd" 841 | ], 842 | "engines": { 843 | "node": ">=18" 844 | } 845 | }, 846 | "node_modules/@esbuild/netbsd-x64": { 847 | "version": "0.25.5", 848 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.5.tgz", 849 | "integrity": "sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==", 850 | "cpu": [ 851 | "x64" 852 | ], 853 | "dev": true, 854 | "license": "MIT", 855 | "optional": true, 856 | "os": [ 857 | "netbsd" 858 | ], 859 | "engines": { 860 | "node": ">=18" 861 | } 862 | }, 863 | "node_modules/@esbuild/openbsd-arm64": { 864 | "version": "0.25.5", 865 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.5.tgz", 866 | "integrity": "sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==", 867 | "cpu": [ 868 | "arm64" 869 | ], 870 | "dev": true, 871 | "license": "MIT", 872 | "optional": true, 873 | "os": [ 874 | "openbsd" 875 | ], 876 | "engines": { 877 | "node": ">=18" 878 | } 879 | }, 880 | "node_modules/@esbuild/openbsd-x64": { 881 | "version": "0.25.5", 882 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.5.tgz", 883 | "integrity": "sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==", 884 | "cpu": [ 885 | "x64" 886 | ], 887 | "dev": true, 888 | "license": "MIT", 889 | "optional": true, 890 | "os": [ 891 | "openbsd" 892 | ], 893 | "engines": { 894 | "node": ">=18" 895 | } 896 | }, 897 | "node_modules/@esbuild/sunos-x64": { 898 | "version": "0.25.5", 899 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.5.tgz", 900 | "integrity": "sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==", 901 | "cpu": [ 902 | "x64" 903 | ], 904 | "dev": true, 905 | "license": "MIT", 906 | "optional": true, 907 | "os": [ 908 | "sunos" 909 | ], 910 | "engines": { 911 | "node": ">=18" 912 | } 913 | }, 914 | "node_modules/@esbuild/win32-arm64": { 915 | "version": "0.25.5", 916 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.5.tgz", 917 | "integrity": "sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==", 918 | "cpu": [ 919 | "arm64" 920 | ], 921 | "dev": true, 922 | "license": "MIT", 923 | "optional": true, 924 | "os": [ 925 | "win32" 926 | ], 927 | "engines": { 928 | "node": ">=18" 929 | } 930 | }, 931 | "node_modules/@esbuild/win32-ia32": { 932 | "version": "0.25.5", 933 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.5.tgz", 934 | "integrity": "sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==", 935 | "cpu": [ 936 | "ia32" 937 | ], 938 | "dev": true, 939 | "license": "MIT", 940 | "optional": true, 941 | "os": [ 942 | "win32" 943 | ], 944 | "engines": { 945 | "node": ">=18" 946 | } 947 | }, 948 | "node_modules/@esbuild/win32-x64": { 949 | "version": "0.25.5", 950 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.5.tgz", 951 | "integrity": "sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==", 952 | "cpu": [ 953 | "x64" 954 | ], 955 | "dev": true, 956 | "license": "MIT", 957 | "optional": true, 958 | "os": [ 959 | "win32" 960 | ], 961 | "engines": { 962 | "node": ">=18" 963 | } 964 | }, 965 | "node_modules/@graphql-typed-document-node/core": { 966 | "version": "3.2.0", 967 | "resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.2.0.tgz", 968 | "integrity": "sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==", 969 | "license": "MIT", 970 | "peerDependencies": { 971 | "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" 972 | } 973 | }, 974 | "node_modules/@jridgewell/gen-mapping": { 975 | "version": "0.3.8", 976 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", 977 | "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", 978 | "license": "MIT", 979 | "dependencies": { 980 | "@jridgewell/set-array": "^1.2.1", 981 | "@jridgewell/sourcemap-codec": "^1.4.10", 982 | "@jridgewell/trace-mapping": "^0.3.24" 983 | }, 984 | "engines": { 985 | "node": ">=6.0.0" 986 | } 987 | }, 988 | "node_modules/@jridgewell/resolve-uri": { 989 | "version": "3.1.2", 990 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 991 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 992 | "license": "MIT", 993 | "engines": { 994 | "node": ">=6.0.0" 995 | } 996 | }, 997 | "node_modules/@jridgewell/set-array": { 998 | "version": "1.2.1", 999 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 1000 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 1001 | "license": "MIT", 1002 | "engines": { 1003 | "node": ">=6.0.0" 1004 | } 1005 | }, 1006 | "node_modules/@jridgewell/source-map": { 1007 | "version": "0.3.6", 1008 | "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", 1009 | "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", 1010 | "license": "MIT", 1011 | "peer": true, 1012 | "dependencies": { 1013 | "@jridgewell/gen-mapping": "^0.3.5", 1014 | "@jridgewell/trace-mapping": "^0.3.25" 1015 | } 1016 | }, 1017 | "node_modules/@jridgewell/sourcemap-codec": { 1018 | "version": "1.5.0", 1019 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 1020 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 1021 | "license": "MIT" 1022 | }, 1023 | "node_modules/@jridgewell/trace-mapping": { 1024 | "version": "0.3.25", 1025 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 1026 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 1027 | "license": "MIT", 1028 | "dependencies": { 1029 | "@jridgewell/resolve-uri": "^3.1.0", 1030 | "@jridgewell/sourcemap-codec": "^1.4.14" 1031 | } 1032 | }, 1033 | "node_modules/@parcel/watcher": { 1034 | "version": "2.5.1", 1035 | "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz", 1036 | "integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==", 1037 | "hasInstallScript": true, 1038 | "license": "MIT", 1039 | "optional": true, 1040 | "dependencies": { 1041 | "detect-libc": "^1.0.3", 1042 | "is-glob": "^4.0.3", 1043 | "micromatch": "^4.0.5", 1044 | "node-addon-api": "^7.0.0" 1045 | }, 1046 | "engines": { 1047 | "node": ">= 10.0.0" 1048 | }, 1049 | "funding": { 1050 | "type": "opencollective", 1051 | "url": "https://opencollective.com/parcel" 1052 | }, 1053 | "optionalDependencies": { 1054 | "@parcel/watcher-android-arm64": "2.5.1", 1055 | "@parcel/watcher-darwin-arm64": "2.5.1", 1056 | "@parcel/watcher-darwin-x64": "2.5.1", 1057 | "@parcel/watcher-freebsd-x64": "2.5.1", 1058 | "@parcel/watcher-linux-arm-glibc": "2.5.1", 1059 | "@parcel/watcher-linux-arm-musl": "2.5.1", 1060 | "@parcel/watcher-linux-arm64-glibc": "2.5.1", 1061 | "@parcel/watcher-linux-arm64-musl": "2.5.1", 1062 | "@parcel/watcher-linux-x64-glibc": "2.5.1", 1063 | "@parcel/watcher-linux-x64-musl": "2.5.1", 1064 | "@parcel/watcher-win32-arm64": "2.5.1", 1065 | "@parcel/watcher-win32-ia32": "2.5.1", 1066 | "@parcel/watcher-win32-x64": "2.5.1" 1067 | } 1068 | }, 1069 | "node_modules/@parcel/watcher-android-arm64": { 1070 | "version": "2.5.1", 1071 | "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz", 1072 | "integrity": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==", 1073 | "cpu": [ 1074 | "arm64" 1075 | ], 1076 | "license": "MIT", 1077 | "optional": true, 1078 | "os": [ 1079 | "android" 1080 | ], 1081 | "engines": { 1082 | "node": ">= 10.0.0" 1083 | }, 1084 | "funding": { 1085 | "type": "opencollective", 1086 | "url": "https://opencollective.com/parcel" 1087 | } 1088 | }, 1089 | "node_modules/@parcel/watcher-darwin-arm64": { 1090 | "version": "2.5.1", 1091 | "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz", 1092 | "integrity": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==", 1093 | "cpu": [ 1094 | "arm64" 1095 | ], 1096 | "license": "MIT", 1097 | "optional": true, 1098 | "os": [ 1099 | "darwin" 1100 | ], 1101 | "engines": { 1102 | "node": ">= 10.0.0" 1103 | }, 1104 | "funding": { 1105 | "type": "opencollective", 1106 | "url": "https://opencollective.com/parcel" 1107 | } 1108 | }, 1109 | "node_modules/@parcel/watcher-darwin-x64": { 1110 | "version": "2.5.1", 1111 | "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz", 1112 | "integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==", 1113 | "cpu": [ 1114 | "x64" 1115 | ], 1116 | "license": "MIT", 1117 | "optional": true, 1118 | "os": [ 1119 | "darwin" 1120 | ], 1121 | "engines": { 1122 | "node": ">= 10.0.0" 1123 | }, 1124 | "funding": { 1125 | "type": "opencollective", 1126 | "url": "https://opencollective.com/parcel" 1127 | } 1128 | }, 1129 | "node_modules/@parcel/watcher-freebsd-x64": { 1130 | "version": "2.5.1", 1131 | "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz", 1132 | "integrity": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==", 1133 | "cpu": [ 1134 | "x64" 1135 | ], 1136 | "license": "MIT", 1137 | "optional": true, 1138 | "os": [ 1139 | "freebsd" 1140 | ], 1141 | "engines": { 1142 | "node": ">= 10.0.0" 1143 | }, 1144 | "funding": { 1145 | "type": "opencollective", 1146 | "url": "https://opencollective.com/parcel" 1147 | } 1148 | }, 1149 | "node_modules/@parcel/watcher-linux-arm-glibc": { 1150 | "version": "2.5.1", 1151 | "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz", 1152 | "integrity": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==", 1153 | "cpu": [ 1154 | "arm" 1155 | ], 1156 | "license": "MIT", 1157 | "optional": true, 1158 | "os": [ 1159 | "linux" 1160 | ], 1161 | "engines": { 1162 | "node": ">= 10.0.0" 1163 | }, 1164 | "funding": { 1165 | "type": "opencollective", 1166 | "url": "https://opencollective.com/parcel" 1167 | } 1168 | }, 1169 | "node_modules/@parcel/watcher-linux-arm-musl": { 1170 | "version": "2.5.1", 1171 | "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz", 1172 | "integrity": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==", 1173 | "cpu": [ 1174 | "arm" 1175 | ], 1176 | "license": "MIT", 1177 | "optional": true, 1178 | "os": [ 1179 | "linux" 1180 | ], 1181 | "engines": { 1182 | "node": ">= 10.0.0" 1183 | }, 1184 | "funding": { 1185 | "type": "opencollective", 1186 | "url": "https://opencollective.com/parcel" 1187 | } 1188 | }, 1189 | "node_modules/@parcel/watcher-linux-arm64-glibc": { 1190 | "version": "2.5.1", 1191 | "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz", 1192 | "integrity": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==", 1193 | "cpu": [ 1194 | "arm64" 1195 | ], 1196 | "license": "MIT", 1197 | "optional": true, 1198 | "os": [ 1199 | "linux" 1200 | ], 1201 | "engines": { 1202 | "node": ">= 10.0.0" 1203 | }, 1204 | "funding": { 1205 | "type": "opencollective", 1206 | "url": "https://opencollective.com/parcel" 1207 | } 1208 | }, 1209 | "node_modules/@parcel/watcher-linux-arm64-musl": { 1210 | "version": "2.5.1", 1211 | "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz", 1212 | "integrity": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==", 1213 | "cpu": [ 1214 | "arm64" 1215 | ], 1216 | "license": "MIT", 1217 | "optional": true, 1218 | "os": [ 1219 | "linux" 1220 | ], 1221 | "engines": { 1222 | "node": ">= 10.0.0" 1223 | }, 1224 | "funding": { 1225 | "type": "opencollective", 1226 | "url": "https://opencollective.com/parcel" 1227 | } 1228 | }, 1229 | "node_modules/@parcel/watcher-linux-x64-glibc": { 1230 | "version": "2.5.1", 1231 | "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz", 1232 | "integrity": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==", 1233 | "cpu": [ 1234 | "x64" 1235 | ], 1236 | "license": "MIT", 1237 | "optional": true, 1238 | "os": [ 1239 | "linux" 1240 | ], 1241 | "engines": { 1242 | "node": ">= 10.0.0" 1243 | }, 1244 | "funding": { 1245 | "type": "opencollective", 1246 | "url": "https://opencollective.com/parcel" 1247 | } 1248 | }, 1249 | "node_modules/@parcel/watcher-linux-x64-musl": { 1250 | "version": "2.5.1", 1251 | "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz", 1252 | "integrity": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==", 1253 | "cpu": [ 1254 | "x64" 1255 | ], 1256 | "license": "MIT", 1257 | "optional": true, 1258 | "os": [ 1259 | "linux" 1260 | ], 1261 | "engines": { 1262 | "node": ">= 10.0.0" 1263 | }, 1264 | "funding": { 1265 | "type": "opencollective", 1266 | "url": "https://opencollective.com/parcel" 1267 | } 1268 | }, 1269 | "node_modules/@parcel/watcher-win32-arm64": { 1270 | "version": "2.5.1", 1271 | "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz", 1272 | "integrity": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==", 1273 | "cpu": [ 1274 | "arm64" 1275 | ], 1276 | "license": "MIT", 1277 | "optional": true, 1278 | "os": [ 1279 | "win32" 1280 | ], 1281 | "engines": { 1282 | "node": ">= 10.0.0" 1283 | }, 1284 | "funding": { 1285 | "type": "opencollective", 1286 | "url": "https://opencollective.com/parcel" 1287 | } 1288 | }, 1289 | "node_modules/@parcel/watcher-win32-ia32": { 1290 | "version": "2.5.1", 1291 | "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz", 1292 | "integrity": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==", 1293 | "cpu": [ 1294 | "ia32" 1295 | ], 1296 | "license": "MIT", 1297 | "optional": true, 1298 | "os": [ 1299 | "win32" 1300 | ], 1301 | "engines": { 1302 | "node": ">= 10.0.0" 1303 | }, 1304 | "funding": { 1305 | "type": "opencollective", 1306 | "url": "https://opencollective.com/parcel" 1307 | } 1308 | }, 1309 | "node_modules/@parcel/watcher-win32-x64": { 1310 | "version": "2.5.1", 1311 | "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz", 1312 | "integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==", 1313 | "cpu": [ 1314 | "x64" 1315 | ], 1316 | "license": "MIT", 1317 | "optional": true, 1318 | "os": [ 1319 | "win32" 1320 | ], 1321 | "engines": { 1322 | "node": ">= 10.0.0" 1323 | }, 1324 | "funding": { 1325 | "type": "opencollective", 1326 | "url": "https://opencollective.com/parcel" 1327 | } 1328 | }, 1329 | "node_modules/@polka/url": { 1330 | "version": "1.0.0-next.29", 1331 | "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.29.tgz", 1332 | "integrity": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==", 1333 | "dev": true, 1334 | "license": "MIT" 1335 | }, 1336 | "node_modules/@rollup/pluginutils": { 1337 | "version": "5.2.0", 1338 | "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.2.0.tgz", 1339 | "integrity": "sha512-qWJ2ZTbmumwiLFomfzTyt5Kng4hwPi9rwCYN4SHb6eaRU1KNO4ccxINHr/VhH4GgPlt1XfSTLX2LBTme8ne4Zw==", 1340 | "dev": true, 1341 | "license": "MIT", 1342 | "dependencies": { 1343 | "@types/estree": "^1.0.0", 1344 | "estree-walker": "^2.0.2", 1345 | "picomatch": "^4.0.2" 1346 | }, 1347 | "engines": { 1348 | "node": ">=14.0.0" 1349 | }, 1350 | "peerDependencies": { 1351 | "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" 1352 | }, 1353 | "peerDependenciesMeta": { 1354 | "rollup": { 1355 | "optional": true 1356 | } 1357 | } 1358 | }, 1359 | "node_modules/@rollup/rollup-android-arm-eabi": { 1360 | "version": "4.44.0", 1361 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.44.0.tgz", 1362 | "integrity": "sha512-xEiEE5oDW6tK4jXCAyliuntGR+amEMO7HLtdSshVuhFnKTYoeYMyXQK7pLouAJJj5KHdwdn87bfHAR2nSdNAUA==", 1363 | "cpu": [ 1364 | "arm" 1365 | ], 1366 | "dev": true, 1367 | "license": "MIT", 1368 | "optional": true, 1369 | "os": [ 1370 | "android" 1371 | ] 1372 | }, 1373 | "node_modules/@rollup/rollup-android-arm64": { 1374 | "version": "4.44.0", 1375 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.44.0.tgz", 1376 | "integrity": "sha512-uNSk/TgvMbskcHxXYHzqwiyBlJ/lGcv8DaUfcnNwict8ba9GTTNxfn3/FAoFZYgkaXXAdrAA+SLyKplyi349Jw==", 1377 | "cpu": [ 1378 | "arm64" 1379 | ], 1380 | "dev": true, 1381 | "license": "MIT", 1382 | "optional": true, 1383 | "os": [ 1384 | "android" 1385 | ] 1386 | }, 1387 | "node_modules/@rollup/rollup-darwin-arm64": { 1388 | "version": "4.44.0", 1389 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.44.0.tgz", 1390 | "integrity": "sha512-VGF3wy0Eq1gcEIkSCr8Ke03CWT+Pm2yveKLaDvq51pPpZza3JX/ClxXOCmTYYq3us5MvEuNRTaeyFThCKRQhOA==", 1391 | "cpu": [ 1392 | "arm64" 1393 | ], 1394 | "dev": true, 1395 | "license": "MIT", 1396 | "optional": true, 1397 | "os": [ 1398 | "darwin" 1399 | ] 1400 | }, 1401 | "node_modules/@rollup/rollup-darwin-x64": { 1402 | "version": "4.44.0", 1403 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.44.0.tgz", 1404 | "integrity": "sha512-fBkyrDhwquRvrTxSGH/qqt3/T0w5Rg0L7ZIDypvBPc1/gzjJle6acCpZ36blwuwcKD/u6oCE/sRWlUAcxLWQbQ==", 1405 | "cpu": [ 1406 | "x64" 1407 | ], 1408 | "dev": true, 1409 | "license": "MIT", 1410 | "optional": true, 1411 | "os": [ 1412 | "darwin" 1413 | ] 1414 | }, 1415 | "node_modules/@rollup/rollup-freebsd-arm64": { 1416 | "version": "4.44.0", 1417 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.44.0.tgz", 1418 | "integrity": "sha512-u5AZzdQJYJXByB8giQ+r4VyfZP+walV+xHWdaFx/1VxsOn6eWJhK2Vl2eElvDJFKQBo/hcYIBg/jaKS8ZmKeNQ==", 1419 | "cpu": [ 1420 | "arm64" 1421 | ], 1422 | "dev": true, 1423 | "license": "MIT", 1424 | "optional": true, 1425 | "os": [ 1426 | "freebsd" 1427 | ] 1428 | }, 1429 | "node_modules/@rollup/rollup-freebsd-x64": { 1430 | "version": "4.44.0", 1431 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.44.0.tgz", 1432 | "integrity": "sha512-qC0kS48c/s3EtdArkimctY7h3nHicQeEUdjJzYVJYR3ct3kWSafmn6jkNCA8InbUdge6PVx6keqjk5lVGJf99g==", 1433 | "cpu": [ 1434 | "x64" 1435 | ], 1436 | "dev": true, 1437 | "license": "MIT", 1438 | "optional": true, 1439 | "os": [ 1440 | "freebsd" 1441 | ] 1442 | }, 1443 | "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 1444 | "version": "4.44.0", 1445 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.44.0.tgz", 1446 | "integrity": "sha512-x+e/Z9H0RAWckn4V2OZZl6EmV0L2diuX3QB0uM1r6BvhUIv6xBPL5mrAX2E3e8N8rEHVPwFfz/ETUbV4oW9+lQ==", 1447 | "cpu": [ 1448 | "arm" 1449 | ], 1450 | "dev": true, 1451 | "license": "MIT", 1452 | "optional": true, 1453 | "os": [ 1454 | "linux" 1455 | ] 1456 | }, 1457 | "node_modules/@rollup/rollup-linux-arm-musleabihf": { 1458 | "version": "4.44.0", 1459 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.44.0.tgz", 1460 | "integrity": "sha512-1exwiBFf4PU/8HvI8s80icyCcnAIB86MCBdst51fwFmH5dyeoWVPVgmQPcKrMtBQ0W5pAs7jBCWuRXgEpRzSCg==", 1461 | "cpu": [ 1462 | "arm" 1463 | ], 1464 | "dev": true, 1465 | "license": "MIT", 1466 | "optional": true, 1467 | "os": [ 1468 | "linux" 1469 | ] 1470 | }, 1471 | "node_modules/@rollup/rollup-linux-arm64-gnu": { 1472 | "version": "4.44.0", 1473 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.44.0.tgz", 1474 | "integrity": "sha512-ZTR2mxBHb4tK4wGf9b8SYg0Y6KQPjGpR4UWwTFdnmjB4qRtoATZ5dWn3KsDwGa5Z2ZBOE7K52L36J9LueKBdOQ==", 1475 | "cpu": [ 1476 | "arm64" 1477 | ], 1478 | "dev": true, 1479 | "license": "MIT", 1480 | "optional": true, 1481 | "os": [ 1482 | "linux" 1483 | ] 1484 | }, 1485 | "node_modules/@rollup/rollup-linux-arm64-musl": { 1486 | "version": "4.44.0", 1487 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.44.0.tgz", 1488 | "integrity": "sha512-GFWfAhVhWGd4r6UxmnKRTBwP1qmModHtd5gkraeW2G490BpFOZkFtem8yuX2NyafIP/mGpRJgTJ2PwohQkUY/Q==", 1489 | "cpu": [ 1490 | "arm64" 1491 | ], 1492 | "dev": true, 1493 | "license": "MIT", 1494 | "optional": true, 1495 | "os": [ 1496 | "linux" 1497 | ] 1498 | }, 1499 | "node_modules/@rollup/rollup-linux-loongarch64-gnu": { 1500 | "version": "4.44.0", 1501 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.44.0.tgz", 1502 | "integrity": "sha512-xw+FTGcov/ejdusVOqKgMGW3c4+AgqrfvzWEVXcNP6zq2ue+lsYUgJ+5Rtn/OTJf7e2CbgTFvzLW2j0YAtj0Gg==", 1503 | "cpu": [ 1504 | "loong64" 1505 | ], 1506 | "dev": true, 1507 | "license": "MIT", 1508 | "optional": true, 1509 | "os": [ 1510 | "linux" 1511 | ] 1512 | }, 1513 | "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { 1514 | "version": "4.44.0", 1515 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.44.0.tgz", 1516 | "integrity": "sha512-bKGibTr9IdF0zr21kMvkZT4K6NV+jjRnBoVMt2uNMG0BYWm3qOVmYnXKzx7UhwrviKnmK46IKMByMgvpdQlyJQ==", 1517 | "cpu": [ 1518 | "ppc64" 1519 | ], 1520 | "dev": true, 1521 | "license": "MIT", 1522 | "optional": true, 1523 | "os": [ 1524 | "linux" 1525 | ] 1526 | }, 1527 | "node_modules/@rollup/rollup-linux-riscv64-gnu": { 1528 | "version": "4.44.0", 1529 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.44.0.tgz", 1530 | "integrity": "sha512-vV3cL48U5kDaKZtXrti12YRa7TyxgKAIDoYdqSIOMOFBXqFj2XbChHAtXquEn2+n78ciFgr4KIqEbydEGPxXgA==", 1531 | "cpu": [ 1532 | "riscv64" 1533 | ], 1534 | "dev": true, 1535 | "license": "MIT", 1536 | "optional": true, 1537 | "os": [ 1538 | "linux" 1539 | ] 1540 | }, 1541 | "node_modules/@rollup/rollup-linux-riscv64-musl": { 1542 | "version": "4.44.0", 1543 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.44.0.tgz", 1544 | "integrity": "sha512-TDKO8KlHJuvTEdfw5YYFBjhFts2TR0VpZsnLLSYmB7AaohJhM8ctDSdDnUGq77hUh4m/djRafw+9zQpkOanE2Q==", 1545 | "cpu": [ 1546 | "riscv64" 1547 | ], 1548 | "dev": true, 1549 | "license": "MIT", 1550 | "optional": true, 1551 | "os": [ 1552 | "linux" 1553 | ] 1554 | }, 1555 | "node_modules/@rollup/rollup-linux-s390x-gnu": { 1556 | "version": "4.44.0", 1557 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.44.0.tgz", 1558 | "integrity": "sha512-8541GEyktXaw4lvnGp9m84KENcxInhAt6vPWJ9RodsB/iGjHoMB2Pp5MVBCiKIRxrxzJhGCxmNzdu+oDQ7kwRA==", 1559 | "cpu": [ 1560 | "s390x" 1561 | ], 1562 | "dev": true, 1563 | "license": "MIT", 1564 | "optional": true, 1565 | "os": [ 1566 | "linux" 1567 | ] 1568 | }, 1569 | "node_modules/@rollup/rollup-linux-x64-gnu": { 1570 | "version": "4.44.0", 1571 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.44.0.tgz", 1572 | "integrity": "sha512-iUVJc3c0o8l9Sa/qlDL2Z9UP92UZZW1+EmQ4xfjTc1akr0iUFZNfxrXJ/R1T90h/ILm9iXEY6+iPrmYB3pXKjw==", 1573 | "cpu": [ 1574 | "x64" 1575 | ], 1576 | "dev": true, 1577 | "license": "MIT", 1578 | "optional": true, 1579 | "os": [ 1580 | "linux" 1581 | ] 1582 | }, 1583 | "node_modules/@rollup/rollup-linux-x64-musl": { 1584 | "version": "4.44.0", 1585 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.44.0.tgz", 1586 | "integrity": "sha512-PQUobbhLTQT5yz/SPg116VJBgz+XOtXt8D1ck+sfJJhuEsMj2jSej5yTdp8CvWBSceu+WW+ibVL6dm0ptG5fcA==", 1587 | "cpu": [ 1588 | "x64" 1589 | ], 1590 | "dev": true, 1591 | "license": "MIT", 1592 | "optional": true, 1593 | "os": [ 1594 | "linux" 1595 | ] 1596 | }, 1597 | "node_modules/@rollup/rollup-win32-arm64-msvc": { 1598 | "version": "4.44.0", 1599 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.44.0.tgz", 1600 | "integrity": "sha512-M0CpcHf8TWn+4oTxJfh7LQuTuaYeXGbk0eageVjQCKzYLsajWS/lFC94qlRqOlyC2KvRT90ZrfXULYmukeIy7w==", 1601 | "cpu": [ 1602 | "arm64" 1603 | ], 1604 | "dev": true, 1605 | "license": "MIT", 1606 | "optional": true, 1607 | "os": [ 1608 | "win32" 1609 | ] 1610 | }, 1611 | "node_modules/@rollup/rollup-win32-ia32-msvc": { 1612 | "version": "4.44.0", 1613 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.44.0.tgz", 1614 | "integrity": "sha512-3XJ0NQtMAXTWFW8FqZKcw3gOQwBtVWP/u8TpHP3CRPXD7Pd6s8lLdH3sHWh8vqKCyyiI8xW5ltJScQmBU9j7WA==", 1615 | "cpu": [ 1616 | "ia32" 1617 | ], 1618 | "dev": true, 1619 | "license": "MIT", 1620 | "optional": true, 1621 | "os": [ 1622 | "win32" 1623 | ] 1624 | }, 1625 | "node_modules/@rollup/rollup-win32-x64-msvc": { 1626 | "version": "4.44.0", 1627 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.44.0.tgz", 1628 | "integrity": "sha512-Q2Mgwt+D8hd5FIPUuPDsvPR7Bguza6yTkJxspDGkZj7tBRn2y4KSWYuIXpftFSjBra76TbKerCV7rgFPQrn+wQ==", 1629 | "cpu": [ 1630 | "x64" 1631 | ], 1632 | "dev": true, 1633 | "license": "MIT", 1634 | "optional": true, 1635 | "os": [ 1636 | "win32" 1637 | ] 1638 | }, 1639 | "node_modules/@sec-ant/readable-stream": { 1640 | "version": "0.4.1", 1641 | "resolved": "https://registry.npmjs.org/@sec-ant/readable-stream/-/readable-stream-0.4.1.tgz", 1642 | "integrity": "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==", 1643 | "dev": true, 1644 | "license": "MIT" 1645 | }, 1646 | "node_modules/@sindresorhus/merge-streams": { 1647 | "version": "4.0.0", 1648 | "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz", 1649 | "integrity": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==", 1650 | "dev": true, 1651 | "license": "MIT", 1652 | "engines": { 1653 | "node": ">=18" 1654 | }, 1655 | "funding": { 1656 | "url": "https://github.com/sponsors/sindresorhus" 1657 | } 1658 | }, 1659 | "node_modules/@types/eslint": { 1660 | "version": "9.6.1", 1661 | "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz", 1662 | "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==", 1663 | "license": "MIT", 1664 | "peer": true, 1665 | "dependencies": { 1666 | "@types/estree": "*", 1667 | "@types/json-schema": "*" 1668 | } 1669 | }, 1670 | "node_modules/@types/eslint-scope": { 1671 | "version": "3.7.7", 1672 | "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", 1673 | "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", 1674 | "license": "MIT", 1675 | "peer": true, 1676 | "dependencies": { 1677 | "@types/eslint": "*", 1678 | "@types/estree": "*" 1679 | } 1680 | }, 1681 | "node_modules/@types/estree": { 1682 | "version": "1.0.8", 1683 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", 1684 | "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", 1685 | "license": "MIT" 1686 | }, 1687 | "node_modules/@types/json-schema": { 1688 | "version": "7.0.15", 1689 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 1690 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 1691 | "license": "MIT", 1692 | "peer": true 1693 | }, 1694 | "node_modules/@types/node": { 1695 | "version": "24.0.3", 1696 | "resolved": "https://registry.npmjs.org/@types/node/-/node-24.0.3.tgz", 1697 | "integrity": "sha512-R4I/kzCYAdRLzfiCabn9hxWfbuHS573x+r0dJMkkzThEa7pbrcDWK+9zu3e7aBOouf+rQAciqPFMnxwr0aWgKg==", 1698 | "license": "MIT", 1699 | "peer": true, 1700 | "dependencies": { 1701 | "undici-types": "~7.8.0" 1702 | } 1703 | }, 1704 | "node_modules/@vitejs/plugin-vue": { 1705 | "version": "5.2.4", 1706 | "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.2.4.tgz", 1707 | "integrity": "sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==", 1708 | "dev": true, 1709 | "license": "MIT", 1710 | "engines": { 1711 | "node": "^18.0.0 || >=20.0.0" 1712 | }, 1713 | "peerDependencies": { 1714 | "vite": "^5.0.0 || ^6.0.0", 1715 | "vue": "^3.2.25" 1716 | } 1717 | }, 1718 | "node_modules/@vue/apollo-composable": { 1719 | "version": "4.2.2", 1720 | "resolved": "https://registry.npmjs.org/@vue/apollo-composable/-/apollo-composable-4.2.2.tgz", 1721 | "integrity": "sha512-5j+Jl07Gemz5vmuS8u/FfWtYgr04Rh0rjQ5HBv6DZDP7d+pvQfsCIRgX5adJoZJcznJLsQ0JupO/mZmRCBWGaQ==", 1722 | "license": "MIT", 1723 | "dependencies": { 1724 | "throttle-debounce": "^5.0.0", 1725 | "ts-essentials": "^9.4.0", 1726 | "vue-demi": "^0.14.6" 1727 | }, 1728 | "peerDependencies": { 1729 | "@apollo/client": "^3.4.13", 1730 | "@vue/composition-api": "^1.0.0", 1731 | "graphql": ">=15", 1732 | "vue": "^2.6.0 || ^3.1.0" 1733 | }, 1734 | "peerDependenciesMeta": { 1735 | "@vue/composition-api": { 1736 | "optional": true 1737 | } 1738 | } 1739 | }, 1740 | "node_modules/@vue/apollo-composable/node_modules/vue-demi": { 1741 | "version": "0.14.10", 1742 | "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", 1743 | "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", 1744 | "hasInstallScript": true, 1745 | "license": "MIT", 1746 | "bin": { 1747 | "vue-demi-fix": "bin/vue-demi-fix.js", 1748 | "vue-demi-switch": "bin/vue-demi-switch.js" 1749 | }, 1750 | "engines": { 1751 | "node": ">=12" 1752 | }, 1753 | "funding": { 1754 | "url": "https://github.com/sponsors/antfu" 1755 | }, 1756 | "peerDependencies": { 1757 | "@vue/composition-api": "^1.0.0-rc.1", 1758 | "vue": "^3.0.0-0 || ^2.6.0" 1759 | }, 1760 | "peerDependenciesMeta": { 1761 | "@vue/composition-api": { 1762 | "optional": true 1763 | } 1764 | } 1765 | }, 1766 | "node_modules/@vue/babel-helper-vue-transform-on": { 1767 | "version": "1.4.0", 1768 | "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.4.0.tgz", 1769 | "integrity": "sha512-mCokbouEQ/ocRce/FpKCRItGo+013tHg7tixg3DUNS+6bmIchPt66012kBMm476vyEIJPafrvOf4E5OYj3shSw==", 1770 | "dev": true, 1771 | "license": "MIT" 1772 | }, 1773 | "node_modules/@vue/babel-plugin-jsx": { 1774 | "version": "1.4.0", 1775 | "resolved": "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.4.0.tgz", 1776 | "integrity": "sha512-9zAHmwgMWlaN6qRKdrg1uKsBKHvnUU+Py+MOCTuYZBoZsopa90Di10QRjB+YPnVss0BZbG/H5XFwJY1fTxJWhA==", 1777 | "dev": true, 1778 | "license": "MIT", 1779 | "dependencies": { 1780 | "@babel/helper-module-imports": "^7.25.9", 1781 | "@babel/helper-plugin-utils": "^7.26.5", 1782 | "@babel/plugin-syntax-jsx": "^7.25.9", 1783 | "@babel/template": "^7.26.9", 1784 | "@babel/traverse": "^7.26.9", 1785 | "@babel/types": "^7.26.9", 1786 | "@vue/babel-helper-vue-transform-on": "1.4.0", 1787 | "@vue/babel-plugin-resolve-type": "1.4.0", 1788 | "@vue/shared": "^3.5.13" 1789 | }, 1790 | "peerDependencies": { 1791 | "@babel/core": "^7.0.0-0" 1792 | }, 1793 | "peerDependenciesMeta": { 1794 | "@babel/core": { 1795 | "optional": true 1796 | } 1797 | } 1798 | }, 1799 | "node_modules/@vue/babel-plugin-resolve-type": { 1800 | "version": "1.4.0", 1801 | "resolved": "https://registry.npmjs.org/@vue/babel-plugin-resolve-type/-/babel-plugin-resolve-type-1.4.0.tgz", 1802 | "integrity": "sha512-4xqDRRbQQEWHQyjlYSgZsWj44KfiF6D+ktCuXyZ8EnVDYV3pztmXJDf1HveAjUAXxAnR8daCQT51RneWWxtTyQ==", 1803 | "dev": true, 1804 | "license": "MIT", 1805 | "dependencies": { 1806 | "@babel/code-frame": "^7.26.2", 1807 | "@babel/helper-module-imports": "^7.25.9", 1808 | "@babel/helper-plugin-utils": "^7.26.5", 1809 | "@babel/parser": "^7.26.9", 1810 | "@vue/compiler-sfc": "^3.5.13" 1811 | }, 1812 | "funding": { 1813 | "url": "https://github.com/sponsors/sxzz" 1814 | }, 1815 | "peerDependencies": { 1816 | "@babel/core": "^7.0.0-0" 1817 | } 1818 | }, 1819 | "node_modules/@vue/compiler-core": { 1820 | "version": "3.5.17", 1821 | "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.17.tgz", 1822 | "integrity": "sha512-Xe+AittLbAyV0pabcN7cP7/BenRBNcteM4aSDCtRvGw0d9OL+HG1u/XHLY/kt1q4fyMeZYXyIYrsHuPSiDPosA==", 1823 | "license": "MIT", 1824 | "dependencies": { 1825 | "@babel/parser": "^7.27.5", 1826 | "@vue/shared": "3.5.17", 1827 | "entities": "^4.5.0", 1828 | "estree-walker": "^2.0.2", 1829 | "source-map-js": "^1.2.1" 1830 | } 1831 | }, 1832 | "node_modules/@vue/compiler-dom": { 1833 | "version": "3.5.17", 1834 | "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.17.tgz", 1835 | "integrity": "sha512-+2UgfLKoaNLhgfhV5Ihnk6wB4ljyW1/7wUIog2puUqajiC29Lp5R/IKDdkebh9jTbTogTbsgB+OY9cEWzG95JQ==", 1836 | "license": "MIT", 1837 | "dependencies": { 1838 | "@vue/compiler-core": "3.5.17", 1839 | "@vue/shared": "3.5.17" 1840 | } 1841 | }, 1842 | "node_modules/@vue/compiler-sfc": { 1843 | "version": "3.5.17", 1844 | "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.17.tgz", 1845 | "integrity": "sha512-rQQxbRJMgTqwRugtjw0cnyQv9cP4/4BxWfTdRBkqsTfLOHWykLzbOc3C4GGzAmdMDxhzU/1Ija5bTjMVrddqww==", 1846 | "license": "MIT", 1847 | "dependencies": { 1848 | "@babel/parser": "^7.27.5", 1849 | "@vue/compiler-core": "3.5.17", 1850 | "@vue/compiler-dom": "3.5.17", 1851 | "@vue/compiler-ssr": "3.5.17", 1852 | "@vue/shared": "3.5.17", 1853 | "estree-walker": "^2.0.2", 1854 | "magic-string": "^0.30.17", 1855 | "postcss": "^8.5.6", 1856 | "source-map-js": "^1.2.1" 1857 | } 1858 | }, 1859 | "node_modules/@vue/compiler-ssr": { 1860 | "version": "3.5.17", 1861 | "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.17.tgz", 1862 | "integrity": "sha512-hkDbA0Q20ZzGgpj5uZjb9rBzQtIHLS78mMilwrlpWk2Ep37DYntUz0PonQ6kr113vfOEdM+zTBuJDaceNIW0tQ==", 1863 | "license": "MIT", 1864 | "dependencies": { 1865 | "@vue/compiler-dom": "3.5.17", 1866 | "@vue/shared": "3.5.17" 1867 | } 1868 | }, 1869 | "node_modules/@vue/devtools-api": { 1870 | "version": "6.6.4", 1871 | "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.6.4.tgz", 1872 | "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==", 1873 | "license": "MIT" 1874 | }, 1875 | "node_modules/@vue/devtools-core": { 1876 | "version": "7.7.7", 1877 | "resolved": "https://registry.npmjs.org/@vue/devtools-core/-/devtools-core-7.7.7.tgz", 1878 | "integrity": "sha512-9z9TLbfC+AjAi1PQyWX+OErjIaJmdFlbDHcD+cAMYKY6Bh5VlsAtCeGyRMrXwIlMEQPukvnWt3gZBLwTAIMKzQ==", 1879 | "dev": true, 1880 | "license": "MIT", 1881 | "dependencies": { 1882 | "@vue/devtools-kit": "^7.7.7", 1883 | "@vue/devtools-shared": "^7.7.7", 1884 | "mitt": "^3.0.1", 1885 | "nanoid": "^5.1.0", 1886 | "pathe": "^2.0.3", 1887 | "vite-hot-client": "^2.0.4" 1888 | }, 1889 | "peerDependencies": { 1890 | "vue": "^3.0.0" 1891 | } 1892 | }, 1893 | "node_modules/@vue/devtools-core/node_modules/nanoid": { 1894 | "version": "5.1.5", 1895 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-5.1.5.tgz", 1896 | "integrity": "sha512-Ir/+ZpE9fDsNH0hQ3C68uyThDXzYcim2EqcZ8zn8Chtt1iylPT9xXJB0kPCnqzgcEGikO9RxSrh63MsmVCU7Fw==", 1897 | "dev": true, 1898 | "funding": [ 1899 | { 1900 | "type": "github", 1901 | "url": "https://github.com/sponsors/ai" 1902 | } 1903 | ], 1904 | "license": "MIT", 1905 | "bin": { 1906 | "nanoid": "bin/nanoid.js" 1907 | }, 1908 | "engines": { 1909 | "node": "^18 || >=20" 1910 | } 1911 | }, 1912 | "node_modules/@vue/devtools-kit": { 1913 | "version": "7.7.7", 1914 | "resolved": "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-7.7.7.tgz", 1915 | "integrity": "sha512-wgoZtxcTta65cnZ1Q6MbAfePVFxfM+gq0saaeytoph7nEa7yMXoi6sCPy4ufO111B9msnw0VOWjPEFCXuAKRHA==", 1916 | "dev": true, 1917 | "license": "MIT", 1918 | "dependencies": { 1919 | "@vue/devtools-shared": "^7.7.7", 1920 | "birpc": "^2.3.0", 1921 | "hookable": "^5.5.3", 1922 | "mitt": "^3.0.1", 1923 | "perfect-debounce": "^1.0.0", 1924 | "speakingurl": "^14.0.1", 1925 | "superjson": "^2.2.2" 1926 | } 1927 | }, 1928 | "node_modules/@vue/devtools-shared": { 1929 | "version": "7.7.7", 1930 | "resolved": "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-7.7.7.tgz", 1931 | "integrity": "sha512-+udSj47aRl5aKb0memBvcUG9koarqnxNM5yjuREvqwK6T3ap4mn3Zqqc17QrBFTqSMjr3HK1cvStEZpMDpfdyw==", 1932 | "dev": true, 1933 | "license": "MIT", 1934 | "dependencies": { 1935 | "rfdc": "^1.4.1" 1936 | } 1937 | }, 1938 | "node_modules/@vue/reactivity": { 1939 | "version": "3.5.17", 1940 | "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.17.tgz", 1941 | "integrity": "sha512-l/rmw2STIscWi7SNJp708FK4Kofs97zc/5aEPQh4bOsReD/8ICuBcEmS7KGwDj5ODQLYWVN2lNibKJL1z5b+Lw==", 1942 | "license": "MIT", 1943 | "dependencies": { 1944 | "@vue/shared": "3.5.17" 1945 | } 1946 | }, 1947 | "node_modules/@vue/runtime-core": { 1948 | "version": "3.5.17", 1949 | "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.17.tgz", 1950 | "integrity": "sha512-QQLXa20dHg1R0ri4bjKeGFKEkJA7MMBxrKo2G+gJikmumRS7PTD4BOU9FKrDQWMKowz7frJJGqBffYMgQYS96Q==", 1951 | "license": "MIT", 1952 | "dependencies": { 1953 | "@vue/reactivity": "3.5.17", 1954 | "@vue/shared": "3.5.17" 1955 | } 1956 | }, 1957 | "node_modules/@vue/runtime-dom": { 1958 | "version": "3.5.17", 1959 | "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.17.tgz", 1960 | "integrity": "sha512-8El0M60TcwZ1QMz4/os2MdlQECgGoVHPuLnQBU3m9h3gdNRW9xRmI8iLS4t/22OQlOE6aJvNNlBiCzPHur4H9g==", 1961 | "license": "MIT", 1962 | "dependencies": { 1963 | "@vue/reactivity": "3.5.17", 1964 | "@vue/runtime-core": "3.5.17", 1965 | "@vue/shared": "3.5.17", 1966 | "csstype": "^3.1.3" 1967 | } 1968 | }, 1969 | "node_modules/@vue/server-renderer": { 1970 | "version": "3.5.17", 1971 | "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.17.tgz", 1972 | "integrity": "sha512-BOHhm8HalujY6lmC3DbqF6uXN/K00uWiEeF22LfEsm9Q93XeJ/plHTepGwf6tqFcF7GA5oGSSAAUock3VvzaCA==", 1973 | "license": "MIT", 1974 | "dependencies": { 1975 | "@vue/compiler-ssr": "3.5.17", 1976 | "@vue/shared": "3.5.17" 1977 | }, 1978 | "peerDependencies": { 1979 | "vue": "3.5.17" 1980 | } 1981 | }, 1982 | "node_modules/@vue/shared": { 1983 | "version": "3.5.17", 1984 | "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.17.tgz", 1985 | "integrity": "sha512-CabR+UN630VnsJO/jHWYBC1YVXyMq94KKp6iF5MQgZJs5I8cmjw6oVMO1oDbtBkENSHSSn/UadWlW/OAgdmKrg==", 1986 | "license": "MIT" 1987 | }, 1988 | "node_modules/@webassemblyjs/ast": { 1989 | "version": "1.14.1", 1990 | "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", 1991 | "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", 1992 | "license": "MIT", 1993 | "peer": true, 1994 | "dependencies": { 1995 | "@webassemblyjs/helper-numbers": "1.13.2", 1996 | "@webassemblyjs/helper-wasm-bytecode": "1.13.2" 1997 | } 1998 | }, 1999 | "node_modules/@webassemblyjs/floating-point-hex-parser": { 2000 | "version": "1.13.2", 2001 | "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", 2002 | "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", 2003 | "license": "MIT", 2004 | "peer": true 2005 | }, 2006 | "node_modules/@webassemblyjs/helper-api-error": { 2007 | "version": "1.13.2", 2008 | "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", 2009 | "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", 2010 | "license": "MIT", 2011 | "peer": true 2012 | }, 2013 | "node_modules/@webassemblyjs/helper-buffer": { 2014 | "version": "1.14.1", 2015 | "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", 2016 | "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", 2017 | "license": "MIT", 2018 | "peer": true 2019 | }, 2020 | "node_modules/@webassemblyjs/helper-numbers": { 2021 | "version": "1.13.2", 2022 | "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", 2023 | "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", 2024 | "license": "MIT", 2025 | "peer": true, 2026 | "dependencies": { 2027 | "@webassemblyjs/floating-point-hex-parser": "1.13.2", 2028 | "@webassemblyjs/helper-api-error": "1.13.2", 2029 | "@xtuc/long": "4.2.2" 2030 | } 2031 | }, 2032 | "node_modules/@webassemblyjs/helper-wasm-bytecode": { 2033 | "version": "1.13.2", 2034 | "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", 2035 | "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", 2036 | "license": "MIT", 2037 | "peer": true 2038 | }, 2039 | "node_modules/@webassemblyjs/helper-wasm-section": { 2040 | "version": "1.14.1", 2041 | "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", 2042 | "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", 2043 | "license": "MIT", 2044 | "peer": true, 2045 | "dependencies": { 2046 | "@webassemblyjs/ast": "1.14.1", 2047 | "@webassemblyjs/helper-buffer": "1.14.1", 2048 | "@webassemblyjs/helper-wasm-bytecode": "1.13.2", 2049 | "@webassemblyjs/wasm-gen": "1.14.1" 2050 | } 2051 | }, 2052 | "node_modules/@webassemblyjs/ieee754": { 2053 | "version": "1.13.2", 2054 | "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", 2055 | "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", 2056 | "license": "MIT", 2057 | "peer": true, 2058 | "dependencies": { 2059 | "@xtuc/ieee754": "^1.2.0" 2060 | } 2061 | }, 2062 | "node_modules/@webassemblyjs/leb128": { 2063 | "version": "1.13.2", 2064 | "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", 2065 | "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", 2066 | "license": "Apache-2.0", 2067 | "peer": true, 2068 | "dependencies": { 2069 | "@xtuc/long": "4.2.2" 2070 | } 2071 | }, 2072 | "node_modules/@webassemblyjs/utf8": { 2073 | "version": "1.13.2", 2074 | "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", 2075 | "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", 2076 | "license": "MIT", 2077 | "peer": true 2078 | }, 2079 | "node_modules/@webassemblyjs/wasm-edit": { 2080 | "version": "1.14.1", 2081 | "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", 2082 | "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", 2083 | "license": "MIT", 2084 | "peer": true, 2085 | "dependencies": { 2086 | "@webassemblyjs/ast": "1.14.1", 2087 | "@webassemblyjs/helper-buffer": "1.14.1", 2088 | "@webassemblyjs/helper-wasm-bytecode": "1.13.2", 2089 | "@webassemblyjs/helper-wasm-section": "1.14.1", 2090 | "@webassemblyjs/wasm-gen": "1.14.1", 2091 | "@webassemblyjs/wasm-opt": "1.14.1", 2092 | "@webassemblyjs/wasm-parser": "1.14.1", 2093 | "@webassemblyjs/wast-printer": "1.14.1" 2094 | } 2095 | }, 2096 | "node_modules/@webassemblyjs/wasm-gen": { 2097 | "version": "1.14.1", 2098 | "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", 2099 | "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", 2100 | "license": "MIT", 2101 | "peer": true, 2102 | "dependencies": { 2103 | "@webassemblyjs/ast": "1.14.1", 2104 | "@webassemblyjs/helper-wasm-bytecode": "1.13.2", 2105 | "@webassemblyjs/ieee754": "1.13.2", 2106 | "@webassemblyjs/leb128": "1.13.2", 2107 | "@webassemblyjs/utf8": "1.13.2" 2108 | } 2109 | }, 2110 | "node_modules/@webassemblyjs/wasm-opt": { 2111 | "version": "1.14.1", 2112 | "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", 2113 | "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", 2114 | "license": "MIT", 2115 | "peer": true, 2116 | "dependencies": { 2117 | "@webassemblyjs/ast": "1.14.1", 2118 | "@webassemblyjs/helper-buffer": "1.14.1", 2119 | "@webassemblyjs/wasm-gen": "1.14.1", 2120 | "@webassemblyjs/wasm-parser": "1.14.1" 2121 | } 2122 | }, 2123 | "node_modules/@webassemblyjs/wasm-parser": { 2124 | "version": "1.14.1", 2125 | "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", 2126 | "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", 2127 | "license": "MIT", 2128 | "peer": true, 2129 | "dependencies": { 2130 | "@webassemblyjs/ast": "1.14.1", 2131 | "@webassemblyjs/helper-api-error": "1.13.2", 2132 | "@webassemblyjs/helper-wasm-bytecode": "1.13.2", 2133 | "@webassemblyjs/ieee754": "1.13.2", 2134 | "@webassemblyjs/leb128": "1.13.2", 2135 | "@webassemblyjs/utf8": "1.13.2" 2136 | } 2137 | }, 2138 | "node_modules/@webassemblyjs/wast-printer": { 2139 | "version": "1.14.1", 2140 | "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", 2141 | "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", 2142 | "license": "MIT", 2143 | "peer": true, 2144 | "dependencies": { 2145 | "@webassemblyjs/ast": "1.14.1", 2146 | "@xtuc/long": "4.2.2" 2147 | } 2148 | }, 2149 | "node_modules/@wry/caches": { 2150 | "version": "1.0.1", 2151 | "resolved": "https://registry.npmjs.org/@wry/caches/-/caches-1.0.1.tgz", 2152 | "integrity": "sha512-bXuaUNLVVkD20wcGBWRyo7j9N3TxePEWFZj2Y+r9OoUzfqmavM84+mFykRicNsBqatba5JLay1t48wxaXaWnlA==", 2153 | "license": "MIT", 2154 | "dependencies": { 2155 | "tslib": "^2.3.0" 2156 | }, 2157 | "engines": { 2158 | "node": ">=8" 2159 | } 2160 | }, 2161 | "node_modules/@wry/context": { 2162 | "version": "0.7.4", 2163 | "resolved": "https://registry.npmjs.org/@wry/context/-/context-0.7.4.tgz", 2164 | "integrity": "sha512-jmT7Sb4ZQWI5iyu3lobQxICu2nC/vbUhP0vIdd6tHC9PTfenmRmuIFqktc6GH9cgi+ZHnsLWPvfSvc4DrYmKiQ==", 2165 | "license": "MIT", 2166 | "dependencies": { 2167 | "tslib": "^2.3.0" 2168 | }, 2169 | "engines": { 2170 | "node": ">=8" 2171 | } 2172 | }, 2173 | "node_modules/@wry/equality": { 2174 | "version": "0.5.7", 2175 | "resolved": "https://registry.npmjs.org/@wry/equality/-/equality-0.5.7.tgz", 2176 | "integrity": "sha512-BRFORjsTuQv5gxcXsuDXx6oGRhuVsEGwZy6LOzRRfgu+eSfxbhUQ9L9YtSEIuIjY/o7g3iWFjrc5eSY1GXP2Dw==", 2177 | "license": "MIT", 2178 | "dependencies": { 2179 | "tslib": "^2.3.0" 2180 | }, 2181 | "engines": { 2182 | "node": ">=8" 2183 | } 2184 | }, 2185 | "node_modules/@wry/trie": { 2186 | "version": "0.5.0", 2187 | "resolved": "https://registry.npmjs.org/@wry/trie/-/trie-0.5.0.tgz", 2188 | "integrity": "sha512-FNoYzHawTMk/6KMQoEG5O4PuioX19UbwdQKF44yw0nLfOypfQdjtfZzo/UIJWAJ23sNIFbD1Ug9lbaDGMwbqQA==", 2189 | "license": "MIT", 2190 | "dependencies": { 2191 | "tslib": "^2.3.0" 2192 | }, 2193 | "engines": { 2194 | "node": ">=8" 2195 | } 2196 | }, 2197 | "node_modules/@xtuc/ieee754": { 2198 | "version": "1.2.0", 2199 | "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", 2200 | "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", 2201 | "license": "BSD-3-Clause", 2202 | "peer": true 2203 | }, 2204 | "node_modules/@xtuc/long": { 2205 | "version": "4.2.2", 2206 | "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", 2207 | "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", 2208 | "license": "Apache-2.0", 2209 | "peer": true 2210 | }, 2211 | "node_modules/acorn": { 2212 | "version": "8.15.0", 2213 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", 2214 | "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", 2215 | "license": "MIT", 2216 | "peer": true, 2217 | "bin": { 2218 | "acorn": "bin/acorn" 2219 | }, 2220 | "engines": { 2221 | "node": ">=0.4.0" 2222 | } 2223 | }, 2224 | "node_modules/ajv": { 2225 | "version": "8.17.1", 2226 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", 2227 | "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", 2228 | "license": "MIT", 2229 | "peer": true, 2230 | "dependencies": { 2231 | "fast-deep-equal": "^3.1.3", 2232 | "fast-uri": "^3.0.1", 2233 | "json-schema-traverse": "^1.0.0", 2234 | "require-from-string": "^2.0.2" 2235 | }, 2236 | "funding": { 2237 | "type": "github", 2238 | "url": "https://github.com/sponsors/epoberezkin" 2239 | } 2240 | }, 2241 | "node_modules/ajv-formats": { 2242 | "version": "2.1.1", 2243 | "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", 2244 | "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", 2245 | "license": "MIT", 2246 | "peer": true, 2247 | "dependencies": { 2248 | "ajv": "^8.0.0" 2249 | }, 2250 | "peerDependencies": { 2251 | "ajv": "^8.0.0" 2252 | }, 2253 | "peerDependenciesMeta": { 2254 | "ajv": { 2255 | "optional": true 2256 | } 2257 | } 2258 | }, 2259 | "node_modules/ajv-keywords": { 2260 | "version": "5.1.0", 2261 | "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", 2262 | "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", 2263 | "license": "MIT", 2264 | "peer": true, 2265 | "dependencies": { 2266 | "fast-deep-equal": "^3.1.3" 2267 | }, 2268 | "peerDependencies": { 2269 | "ajv": "^8.8.2" 2270 | } 2271 | }, 2272 | "node_modules/autoprefixer": { 2273 | "version": "10.4.21", 2274 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.21.tgz", 2275 | "integrity": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==", 2276 | "dev": true, 2277 | "funding": [ 2278 | { 2279 | "type": "opencollective", 2280 | "url": "https://opencollective.com/postcss/" 2281 | }, 2282 | { 2283 | "type": "tidelift", 2284 | "url": "https://tidelift.com/funding/github/npm/autoprefixer" 2285 | }, 2286 | { 2287 | "type": "github", 2288 | "url": "https://github.com/sponsors/ai" 2289 | } 2290 | ], 2291 | "license": "MIT", 2292 | "dependencies": { 2293 | "browserslist": "^4.24.4", 2294 | "caniuse-lite": "^1.0.30001702", 2295 | "fraction.js": "^4.3.7", 2296 | "normalize-range": "^0.1.2", 2297 | "picocolors": "^1.1.1", 2298 | "postcss-value-parser": "^4.2.0" 2299 | }, 2300 | "bin": { 2301 | "autoprefixer": "bin/autoprefixer" 2302 | }, 2303 | "engines": { 2304 | "node": "^10 || ^12 || >=14" 2305 | }, 2306 | "peerDependencies": { 2307 | "postcss": "^8.1.0" 2308 | } 2309 | }, 2310 | "node_modules/birpc": { 2311 | "version": "2.4.0", 2312 | "resolved": "https://registry.npmjs.org/birpc/-/birpc-2.4.0.tgz", 2313 | "integrity": "sha512-5IdNxTyhXHv2UlgnPHQ0h+5ypVmkrYHzL8QT+DwFZ//2N/oNV8Ch+BCRmTJ3x6/z9Axo/cXYBc9eprsUVK/Jsg==", 2314 | "dev": true, 2315 | "license": "MIT", 2316 | "funding": { 2317 | "url": "https://github.com/sponsors/antfu" 2318 | } 2319 | }, 2320 | "node_modules/braces": { 2321 | "version": "3.0.3", 2322 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 2323 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 2324 | "license": "MIT", 2325 | "optional": true, 2326 | "dependencies": { 2327 | "fill-range": "^7.1.1" 2328 | }, 2329 | "engines": { 2330 | "node": ">=8" 2331 | } 2332 | }, 2333 | "node_modules/browserslist": { 2334 | "version": "4.25.0", 2335 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.0.tgz", 2336 | "integrity": "sha512-PJ8gYKeS5e/whHBh8xrwYK+dAvEj7JXtz6uTucnMRB8OiGTsKccFekoRrjajPBHV8oOY+2tI4uxeceSimKwMFA==", 2337 | "funding": [ 2338 | { 2339 | "type": "opencollective", 2340 | "url": "https://opencollective.com/browserslist" 2341 | }, 2342 | { 2343 | "type": "tidelift", 2344 | "url": "https://tidelift.com/funding/github/npm/browserslist" 2345 | }, 2346 | { 2347 | "type": "github", 2348 | "url": "https://github.com/sponsors/ai" 2349 | } 2350 | ], 2351 | "license": "MIT", 2352 | "dependencies": { 2353 | "caniuse-lite": "^1.0.30001718", 2354 | "electron-to-chromium": "^1.5.160", 2355 | "node-releases": "^2.0.19", 2356 | "update-browserslist-db": "^1.1.3" 2357 | }, 2358 | "bin": { 2359 | "browserslist": "cli.js" 2360 | }, 2361 | "engines": { 2362 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 2363 | } 2364 | }, 2365 | "node_modules/buffer-from": { 2366 | "version": "1.1.2", 2367 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", 2368 | "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", 2369 | "license": "MIT", 2370 | "peer": true 2371 | }, 2372 | "node_modules/bundle-name": { 2373 | "version": "4.1.0", 2374 | "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz", 2375 | "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==", 2376 | "dev": true, 2377 | "license": "MIT", 2378 | "dependencies": { 2379 | "run-applescript": "^7.0.0" 2380 | }, 2381 | "engines": { 2382 | "node": ">=18" 2383 | }, 2384 | "funding": { 2385 | "url": "https://github.com/sponsors/sindresorhus" 2386 | } 2387 | }, 2388 | "node_modules/caniuse-lite": { 2389 | "version": "1.0.30001723", 2390 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001723.tgz", 2391 | "integrity": "sha512-1R/elMjtehrFejxwmexeXAtae5UO9iSyFn6G/I806CYC/BLyyBk1EPhrKBkWhy6wM6Xnm47dSJQec+tLJ39WHw==", 2392 | "funding": [ 2393 | { 2394 | "type": "opencollective", 2395 | "url": "https://opencollective.com/browserslist" 2396 | }, 2397 | { 2398 | "type": "tidelift", 2399 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 2400 | }, 2401 | { 2402 | "type": "github", 2403 | "url": "https://github.com/sponsors/ai" 2404 | } 2405 | ], 2406 | "license": "CC-BY-4.0" 2407 | }, 2408 | "node_modules/chokidar": { 2409 | "version": "4.0.3", 2410 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", 2411 | "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", 2412 | "license": "MIT", 2413 | "dependencies": { 2414 | "readdirp": "^4.0.1" 2415 | }, 2416 | "engines": { 2417 | "node": ">= 14.16.0" 2418 | }, 2419 | "funding": { 2420 | "url": "https://paulmillr.com/funding/" 2421 | } 2422 | }, 2423 | "node_modules/chrome-trace-event": { 2424 | "version": "1.0.4", 2425 | "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", 2426 | "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", 2427 | "license": "MIT", 2428 | "peer": true, 2429 | "engines": { 2430 | "node": ">=6.0" 2431 | } 2432 | }, 2433 | "node_modules/commander": { 2434 | "version": "2.20.3", 2435 | "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", 2436 | "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", 2437 | "license": "MIT", 2438 | "peer": true 2439 | }, 2440 | "node_modules/convert-source-map": { 2441 | "version": "2.0.0", 2442 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", 2443 | "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", 2444 | "dev": true, 2445 | "license": "MIT" 2446 | }, 2447 | "node_modules/copy-anything": { 2448 | "version": "3.0.5", 2449 | "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-3.0.5.tgz", 2450 | "integrity": "sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==", 2451 | "dev": true, 2452 | "license": "MIT", 2453 | "dependencies": { 2454 | "is-what": "^4.1.8" 2455 | }, 2456 | "engines": { 2457 | "node": ">=12.13" 2458 | }, 2459 | "funding": { 2460 | "url": "https://github.com/sponsors/mesqueeb" 2461 | } 2462 | }, 2463 | "node_modules/cross-spawn": { 2464 | "version": "7.0.6", 2465 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 2466 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 2467 | "dev": true, 2468 | "license": "MIT", 2469 | "dependencies": { 2470 | "path-key": "^3.1.0", 2471 | "shebang-command": "^2.0.0", 2472 | "which": "^2.0.1" 2473 | }, 2474 | "engines": { 2475 | "node": ">= 8" 2476 | } 2477 | }, 2478 | "node_modules/csstype": { 2479 | "version": "3.1.3", 2480 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", 2481 | "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", 2482 | "license": "MIT" 2483 | }, 2484 | "node_modules/debug": { 2485 | "version": "4.4.1", 2486 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", 2487 | "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", 2488 | "dev": true, 2489 | "license": "MIT", 2490 | "dependencies": { 2491 | "ms": "^2.1.3" 2492 | }, 2493 | "engines": { 2494 | "node": ">=6.0" 2495 | }, 2496 | "peerDependenciesMeta": { 2497 | "supports-color": { 2498 | "optional": true 2499 | } 2500 | } 2501 | }, 2502 | "node_modules/default-browser": { 2503 | "version": "5.2.1", 2504 | "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.2.1.tgz", 2505 | "integrity": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==", 2506 | "dev": true, 2507 | "license": "MIT", 2508 | "dependencies": { 2509 | "bundle-name": "^4.1.0", 2510 | "default-browser-id": "^5.0.0" 2511 | }, 2512 | "engines": { 2513 | "node": ">=18" 2514 | }, 2515 | "funding": { 2516 | "url": "https://github.com/sponsors/sindresorhus" 2517 | } 2518 | }, 2519 | "node_modules/default-browser-id": { 2520 | "version": "5.0.0", 2521 | "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.0.tgz", 2522 | "integrity": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==", 2523 | "dev": true, 2524 | "license": "MIT", 2525 | "engines": { 2526 | "node": ">=18" 2527 | }, 2528 | "funding": { 2529 | "url": "https://github.com/sponsors/sindresorhus" 2530 | } 2531 | }, 2532 | "node_modules/define-lazy-prop": { 2533 | "version": "3.0.0", 2534 | "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", 2535 | "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", 2536 | "dev": true, 2537 | "license": "MIT", 2538 | "engines": { 2539 | "node": ">=12" 2540 | }, 2541 | "funding": { 2542 | "url": "https://github.com/sponsors/sindresorhus" 2543 | } 2544 | }, 2545 | "node_modules/detect-libc": { 2546 | "version": "1.0.3", 2547 | "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", 2548 | "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", 2549 | "license": "Apache-2.0", 2550 | "optional": true, 2551 | "bin": { 2552 | "detect-libc": "bin/detect-libc.js" 2553 | }, 2554 | "engines": { 2555 | "node": ">=0.10" 2556 | } 2557 | }, 2558 | "node_modules/electron-to-chromium": { 2559 | "version": "1.5.170", 2560 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.170.tgz", 2561 | "integrity": "sha512-GP+M7aeluQo9uAyiTCxgIj/j+PrWhMlY7LFVj8prlsPljd0Fdg9AprlfUi+OCSFWy9Y5/2D/Jrj9HS8Z4rpKWA==", 2562 | "license": "ISC" 2563 | }, 2564 | "node_modules/enhanced-resolve": { 2565 | "version": "5.18.1", 2566 | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz", 2567 | "integrity": "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==", 2568 | "license": "MIT", 2569 | "peer": true, 2570 | "dependencies": { 2571 | "graceful-fs": "^4.2.4", 2572 | "tapable": "^2.2.0" 2573 | }, 2574 | "engines": { 2575 | "node": ">=10.13.0" 2576 | } 2577 | }, 2578 | "node_modules/entities": { 2579 | "version": "4.5.0", 2580 | "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", 2581 | "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", 2582 | "license": "BSD-2-Clause", 2583 | "engines": { 2584 | "node": ">=0.12" 2585 | }, 2586 | "funding": { 2587 | "url": "https://github.com/fb55/entities?sponsor=1" 2588 | } 2589 | }, 2590 | "node_modules/error-stack-parser-es": { 2591 | "version": "0.1.5", 2592 | "resolved": "https://registry.npmjs.org/error-stack-parser-es/-/error-stack-parser-es-0.1.5.tgz", 2593 | "integrity": "sha512-xHku1X40RO+fO8yJ8Wh2f2rZWVjqyhb1zgq1yZ8aZRQkv6OOKhKWRUaht3eSCUbAOBaKIgM+ykwFLE+QUxgGeg==", 2594 | "dev": true, 2595 | "license": "MIT", 2596 | "funding": { 2597 | "url": "https://github.com/sponsors/antfu" 2598 | } 2599 | }, 2600 | "node_modules/es-module-lexer": { 2601 | "version": "1.7.0", 2602 | "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", 2603 | "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", 2604 | "license": "MIT", 2605 | "peer": true 2606 | }, 2607 | "node_modules/esbuild": { 2608 | "version": "0.25.5", 2609 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.5.tgz", 2610 | "integrity": "sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==", 2611 | "dev": true, 2612 | "hasInstallScript": true, 2613 | "license": "MIT", 2614 | "bin": { 2615 | "esbuild": "bin/esbuild" 2616 | }, 2617 | "engines": { 2618 | "node": ">=18" 2619 | }, 2620 | "optionalDependencies": { 2621 | "@esbuild/aix-ppc64": "0.25.5", 2622 | "@esbuild/android-arm": "0.25.5", 2623 | "@esbuild/android-arm64": "0.25.5", 2624 | "@esbuild/android-x64": "0.25.5", 2625 | "@esbuild/darwin-arm64": "0.25.5", 2626 | "@esbuild/darwin-x64": "0.25.5", 2627 | "@esbuild/freebsd-arm64": "0.25.5", 2628 | "@esbuild/freebsd-x64": "0.25.5", 2629 | "@esbuild/linux-arm": "0.25.5", 2630 | "@esbuild/linux-arm64": "0.25.5", 2631 | "@esbuild/linux-ia32": "0.25.5", 2632 | "@esbuild/linux-loong64": "0.25.5", 2633 | "@esbuild/linux-mips64el": "0.25.5", 2634 | "@esbuild/linux-ppc64": "0.25.5", 2635 | "@esbuild/linux-riscv64": "0.25.5", 2636 | "@esbuild/linux-s390x": "0.25.5", 2637 | "@esbuild/linux-x64": "0.25.5", 2638 | "@esbuild/netbsd-arm64": "0.25.5", 2639 | "@esbuild/netbsd-x64": "0.25.5", 2640 | "@esbuild/openbsd-arm64": "0.25.5", 2641 | "@esbuild/openbsd-x64": "0.25.5", 2642 | "@esbuild/sunos-x64": "0.25.5", 2643 | "@esbuild/win32-arm64": "0.25.5", 2644 | "@esbuild/win32-ia32": "0.25.5", 2645 | "@esbuild/win32-x64": "0.25.5" 2646 | } 2647 | }, 2648 | "node_modules/escalade": { 2649 | "version": "3.2.0", 2650 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 2651 | "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 2652 | "license": "MIT", 2653 | "engines": { 2654 | "node": ">=6" 2655 | } 2656 | }, 2657 | "node_modules/eslint-scope": { 2658 | "version": "5.1.1", 2659 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", 2660 | "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", 2661 | "license": "BSD-2-Clause", 2662 | "peer": true, 2663 | "dependencies": { 2664 | "esrecurse": "^4.3.0", 2665 | "estraverse": "^4.1.1" 2666 | }, 2667 | "engines": { 2668 | "node": ">=8.0.0" 2669 | } 2670 | }, 2671 | "node_modules/esrecurse": { 2672 | "version": "4.3.0", 2673 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 2674 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 2675 | "license": "BSD-2-Clause", 2676 | "peer": true, 2677 | "dependencies": { 2678 | "estraverse": "^5.2.0" 2679 | }, 2680 | "engines": { 2681 | "node": ">=4.0" 2682 | } 2683 | }, 2684 | "node_modules/esrecurse/node_modules/estraverse": { 2685 | "version": "5.3.0", 2686 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 2687 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 2688 | "license": "BSD-2-Clause", 2689 | "peer": true, 2690 | "engines": { 2691 | "node": ">=4.0" 2692 | } 2693 | }, 2694 | "node_modules/estraverse": { 2695 | "version": "4.3.0", 2696 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", 2697 | "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", 2698 | "license": "BSD-2-Clause", 2699 | "peer": true, 2700 | "engines": { 2701 | "node": ">=4.0" 2702 | } 2703 | }, 2704 | "node_modules/estree-walker": { 2705 | "version": "2.0.2", 2706 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 2707 | "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", 2708 | "license": "MIT" 2709 | }, 2710 | "node_modules/events": { 2711 | "version": "3.3.0", 2712 | "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", 2713 | "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", 2714 | "license": "MIT", 2715 | "peer": true, 2716 | "engines": { 2717 | "node": ">=0.8.x" 2718 | } 2719 | }, 2720 | "node_modules/execa": { 2721 | "version": "9.6.0", 2722 | "resolved": "https://registry.npmjs.org/execa/-/execa-9.6.0.tgz", 2723 | "integrity": "sha512-jpWzZ1ZhwUmeWRhS7Qv3mhpOhLfwI+uAX4e5fOcXqwMR7EcJ0pj2kV1CVzHVMX/LphnKWD3LObjZCoJ71lKpHw==", 2724 | "dev": true, 2725 | "license": "MIT", 2726 | "dependencies": { 2727 | "@sindresorhus/merge-streams": "^4.0.0", 2728 | "cross-spawn": "^7.0.6", 2729 | "figures": "^6.1.0", 2730 | "get-stream": "^9.0.0", 2731 | "human-signals": "^8.0.1", 2732 | "is-plain-obj": "^4.1.0", 2733 | "is-stream": "^4.0.1", 2734 | "npm-run-path": "^6.0.0", 2735 | "pretty-ms": "^9.2.0", 2736 | "signal-exit": "^4.1.0", 2737 | "strip-final-newline": "^4.0.0", 2738 | "yoctocolors": "^2.1.1" 2739 | }, 2740 | "engines": { 2741 | "node": "^18.19.0 || >=20.5.0" 2742 | }, 2743 | "funding": { 2744 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 2745 | } 2746 | }, 2747 | "node_modules/fast-deep-equal": { 2748 | "version": "3.1.3", 2749 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 2750 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 2751 | "license": "MIT", 2752 | "peer": true 2753 | }, 2754 | "node_modules/fast-uri": { 2755 | "version": "3.0.6", 2756 | "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz", 2757 | "integrity": "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==", 2758 | "funding": [ 2759 | { 2760 | "type": "github", 2761 | "url": "https://github.com/sponsors/fastify" 2762 | }, 2763 | { 2764 | "type": "opencollective", 2765 | "url": "https://opencollective.com/fastify" 2766 | } 2767 | ], 2768 | "license": "BSD-3-Clause", 2769 | "peer": true 2770 | }, 2771 | "node_modules/fdir": { 2772 | "version": "6.4.6", 2773 | "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.6.tgz", 2774 | "integrity": "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==", 2775 | "dev": true, 2776 | "license": "MIT", 2777 | "peerDependencies": { 2778 | "picomatch": "^3 || ^4" 2779 | }, 2780 | "peerDependenciesMeta": { 2781 | "picomatch": { 2782 | "optional": true 2783 | } 2784 | } 2785 | }, 2786 | "node_modules/figures": { 2787 | "version": "6.1.0", 2788 | "resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz", 2789 | "integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==", 2790 | "dev": true, 2791 | "license": "MIT", 2792 | "dependencies": { 2793 | "is-unicode-supported": "^2.0.0" 2794 | }, 2795 | "engines": { 2796 | "node": ">=18" 2797 | }, 2798 | "funding": { 2799 | "url": "https://github.com/sponsors/sindresorhus" 2800 | } 2801 | }, 2802 | "node_modules/fill-range": { 2803 | "version": "7.1.1", 2804 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 2805 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 2806 | "license": "MIT", 2807 | "optional": true, 2808 | "dependencies": { 2809 | "to-regex-range": "^5.0.1" 2810 | }, 2811 | "engines": { 2812 | "node": ">=8" 2813 | } 2814 | }, 2815 | "node_modules/fraction.js": { 2816 | "version": "4.3.7", 2817 | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", 2818 | "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", 2819 | "dev": true, 2820 | "license": "MIT", 2821 | "engines": { 2822 | "node": "*" 2823 | }, 2824 | "funding": { 2825 | "type": "patreon", 2826 | "url": "https://github.com/sponsors/rawify" 2827 | } 2828 | }, 2829 | "node_modules/fs-extra": { 2830 | "version": "11.3.0", 2831 | "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.0.tgz", 2832 | "integrity": "sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==", 2833 | "dev": true, 2834 | "license": "MIT", 2835 | "dependencies": { 2836 | "graceful-fs": "^4.2.0", 2837 | "jsonfile": "^6.0.1", 2838 | "universalify": "^2.0.0" 2839 | }, 2840 | "engines": { 2841 | "node": ">=14.14" 2842 | } 2843 | }, 2844 | "node_modules/fsevents": { 2845 | "version": "2.3.3", 2846 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 2847 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 2848 | "dev": true, 2849 | "hasInstallScript": true, 2850 | "license": "MIT", 2851 | "optional": true, 2852 | "os": [ 2853 | "darwin" 2854 | ], 2855 | "engines": { 2856 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 2857 | } 2858 | }, 2859 | "node_modules/gensync": { 2860 | "version": "1.0.0-beta.2", 2861 | "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", 2862 | "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", 2863 | "dev": true, 2864 | "license": "MIT", 2865 | "engines": { 2866 | "node": ">=6.9.0" 2867 | } 2868 | }, 2869 | "node_modules/get-stream": { 2870 | "version": "9.0.1", 2871 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-9.0.1.tgz", 2872 | "integrity": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==", 2873 | "dev": true, 2874 | "license": "MIT", 2875 | "dependencies": { 2876 | "@sec-ant/readable-stream": "^0.4.1", 2877 | "is-stream": "^4.0.1" 2878 | }, 2879 | "engines": { 2880 | "node": ">=18" 2881 | }, 2882 | "funding": { 2883 | "url": "https://github.com/sponsors/sindresorhus" 2884 | } 2885 | }, 2886 | "node_modules/glob-to-regexp": { 2887 | "version": "0.4.1", 2888 | "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", 2889 | "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", 2890 | "license": "BSD-2-Clause", 2891 | "peer": true 2892 | }, 2893 | "node_modules/globals": { 2894 | "version": "11.12.0", 2895 | "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", 2896 | "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", 2897 | "dev": true, 2898 | "license": "MIT", 2899 | "engines": { 2900 | "node": ">=4" 2901 | } 2902 | }, 2903 | "node_modules/graceful-fs": { 2904 | "version": "4.2.11", 2905 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 2906 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 2907 | "license": "ISC" 2908 | }, 2909 | "node_modules/graphql": { 2910 | "version": "16.11.0", 2911 | "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.11.0.tgz", 2912 | "integrity": "sha512-mS1lbMsxgQj6hge1XZ6p7GPhbrtFwUFYi3wRzXAC/FmYnyXMTvvI3td3rjmQ2u8ewXueaSvRPWaEcgVVOT9Jnw==", 2913 | "license": "MIT", 2914 | "engines": { 2915 | "node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0" 2916 | } 2917 | }, 2918 | "node_modules/graphql-tag": { 2919 | "version": "2.12.6", 2920 | "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz", 2921 | "integrity": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==", 2922 | "license": "MIT", 2923 | "dependencies": { 2924 | "tslib": "^2.1.0" 2925 | }, 2926 | "engines": { 2927 | "node": ">=10" 2928 | }, 2929 | "peerDependencies": { 2930 | "graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" 2931 | } 2932 | }, 2933 | "node_modules/has-flag": { 2934 | "version": "4.0.0", 2935 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2936 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2937 | "license": "MIT", 2938 | "peer": true, 2939 | "engines": { 2940 | "node": ">=8" 2941 | } 2942 | }, 2943 | "node_modules/hoist-non-react-statics": { 2944 | "version": "3.3.2", 2945 | "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", 2946 | "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", 2947 | "license": "BSD-3-Clause", 2948 | "dependencies": { 2949 | "react-is": "^16.7.0" 2950 | } 2951 | }, 2952 | "node_modules/hookable": { 2953 | "version": "5.5.3", 2954 | "resolved": "https://registry.npmjs.org/hookable/-/hookable-5.5.3.tgz", 2955 | "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==", 2956 | "dev": true, 2957 | "license": "MIT" 2958 | }, 2959 | "node_modules/human-signals": { 2960 | "version": "8.0.1", 2961 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-8.0.1.tgz", 2962 | "integrity": "sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==", 2963 | "dev": true, 2964 | "license": "Apache-2.0", 2965 | "engines": { 2966 | "node": ">=18.18.0" 2967 | } 2968 | }, 2969 | "node_modules/immutable": { 2970 | "version": "5.1.3", 2971 | "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.3.tgz", 2972 | "integrity": "sha512-+chQdDfvscSF1SJqv2gn4SRO2ZyS3xL3r7IW/wWEEzrzLisnOlKiQu5ytC/BVNcS15C39WT2Hg/bjKjDMcu+zg==", 2973 | "license": "MIT" 2974 | }, 2975 | "node_modules/is-docker": { 2976 | "version": "3.0.0", 2977 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", 2978 | "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", 2979 | "dev": true, 2980 | "license": "MIT", 2981 | "bin": { 2982 | "is-docker": "cli.js" 2983 | }, 2984 | "engines": { 2985 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2986 | }, 2987 | "funding": { 2988 | "url": "https://github.com/sponsors/sindresorhus" 2989 | } 2990 | }, 2991 | "node_modules/is-extglob": { 2992 | "version": "2.1.1", 2993 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2994 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2995 | "license": "MIT", 2996 | "optional": true, 2997 | "engines": { 2998 | "node": ">=0.10.0" 2999 | } 3000 | }, 3001 | "node_modules/is-glob": { 3002 | "version": "4.0.3", 3003 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 3004 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 3005 | "license": "MIT", 3006 | "optional": true, 3007 | "dependencies": { 3008 | "is-extglob": "^2.1.1" 3009 | }, 3010 | "engines": { 3011 | "node": ">=0.10.0" 3012 | } 3013 | }, 3014 | "node_modules/is-inside-container": { 3015 | "version": "1.0.0", 3016 | "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", 3017 | "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", 3018 | "dev": true, 3019 | "license": "MIT", 3020 | "dependencies": { 3021 | "is-docker": "^3.0.0" 3022 | }, 3023 | "bin": { 3024 | "is-inside-container": "cli.js" 3025 | }, 3026 | "engines": { 3027 | "node": ">=14.16" 3028 | }, 3029 | "funding": { 3030 | "url": "https://github.com/sponsors/sindresorhus" 3031 | } 3032 | }, 3033 | "node_modules/is-number": { 3034 | "version": "7.0.0", 3035 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 3036 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 3037 | "license": "MIT", 3038 | "optional": true, 3039 | "engines": { 3040 | "node": ">=0.12.0" 3041 | } 3042 | }, 3043 | "node_modules/is-plain-obj": { 3044 | "version": "4.1.0", 3045 | "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", 3046 | "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", 3047 | "dev": true, 3048 | "license": "MIT", 3049 | "engines": { 3050 | "node": ">=12" 3051 | }, 3052 | "funding": { 3053 | "url": "https://github.com/sponsors/sindresorhus" 3054 | } 3055 | }, 3056 | "node_modules/is-stream": { 3057 | "version": "4.0.1", 3058 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-4.0.1.tgz", 3059 | "integrity": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==", 3060 | "dev": true, 3061 | "license": "MIT", 3062 | "engines": { 3063 | "node": ">=18" 3064 | }, 3065 | "funding": { 3066 | "url": "https://github.com/sponsors/sindresorhus" 3067 | } 3068 | }, 3069 | "node_modules/is-unicode-supported": { 3070 | "version": "2.1.0", 3071 | "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz", 3072 | "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==", 3073 | "dev": true, 3074 | "license": "MIT", 3075 | "engines": { 3076 | "node": ">=18" 3077 | }, 3078 | "funding": { 3079 | "url": "https://github.com/sponsors/sindresorhus" 3080 | } 3081 | }, 3082 | "node_modules/is-what": { 3083 | "version": "4.1.16", 3084 | "resolved": "https://registry.npmjs.org/is-what/-/is-what-4.1.16.tgz", 3085 | "integrity": "sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==", 3086 | "dev": true, 3087 | "license": "MIT", 3088 | "engines": { 3089 | "node": ">=12.13" 3090 | }, 3091 | "funding": { 3092 | "url": "https://github.com/sponsors/mesqueeb" 3093 | } 3094 | }, 3095 | "node_modules/is-wsl": { 3096 | "version": "3.1.0", 3097 | "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", 3098 | "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", 3099 | "dev": true, 3100 | "license": "MIT", 3101 | "dependencies": { 3102 | "is-inside-container": "^1.0.0" 3103 | }, 3104 | "engines": { 3105 | "node": ">=16" 3106 | }, 3107 | "funding": { 3108 | "url": "https://github.com/sponsors/sindresorhus" 3109 | } 3110 | }, 3111 | "node_modules/isexe": { 3112 | "version": "2.0.0", 3113 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 3114 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 3115 | "dev": true, 3116 | "license": "ISC" 3117 | }, 3118 | "node_modules/jest-worker": { 3119 | "version": "27.5.1", 3120 | "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", 3121 | "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", 3122 | "license": "MIT", 3123 | "peer": true, 3124 | "dependencies": { 3125 | "@types/node": "*", 3126 | "merge-stream": "^2.0.0", 3127 | "supports-color": "^8.0.0" 3128 | }, 3129 | "engines": { 3130 | "node": ">= 10.13.0" 3131 | } 3132 | }, 3133 | "node_modules/js-tokens": { 3134 | "version": "4.0.0", 3135 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 3136 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 3137 | "license": "MIT" 3138 | }, 3139 | "node_modules/jsesc": { 3140 | "version": "3.1.0", 3141 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", 3142 | "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", 3143 | "dev": true, 3144 | "license": "MIT", 3145 | "bin": { 3146 | "jsesc": "bin/jsesc" 3147 | }, 3148 | "engines": { 3149 | "node": ">=6" 3150 | } 3151 | }, 3152 | "node_modules/json-parse-even-better-errors": { 3153 | "version": "2.3.1", 3154 | "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", 3155 | "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", 3156 | "license": "MIT", 3157 | "peer": true 3158 | }, 3159 | "node_modules/json-schema-traverse": { 3160 | "version": "1.0.0", 3161 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", 3162 | "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", 3163 | "license": "MIT", 3164 | "peer": true 3165 | }, 3166 | "node_modules/json5": { 3167 | "version": "2.2.3", 3168 | "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", 3169 | "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", 3170 | "dev": true, 3171 | "license": "MIT", 3172 | "bin": { 3173 | "json5": "lib/cli.js" 3174 | }, 3175 | "engines": { 3176 | "node": ">=6" 3177 | } 3178 | }, 3179 | "node_modules/jsonfile": { 3180 | "version": "6.1.0", 3181 | "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", 3182 | "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", 3183 | "dev": true, 3184 | "license": "MIT", 3185 | "dependencies": { 3186 | "universalify": "^2.0.0" 3187 | }, 3188 | "optionalDependencies": { 3189 | "graceful-fs": "^4.1.6" 3190 | } 3191 | }, 3192 | "node_modules/kolorist": { 3193 | "version": "1.8.0", 3194 | "resolved": "https://registry.npmjs.org/kolorist/-/kolorist-1.8.0.tgz", 3195 | "integrity": "sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==", 3196 | "dev": true, 3197 | "license": "MIT" 3198 | }, 3199 | "node_modules/loader-runner": { 3200 | "version": "4.3.0", 3201 | "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", 3202 | "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", 3203 | "license": "MIT", 3204 | "peer": true, 3205 | "engines": { 3206 | "node": ">=6.11.5" 3207 | } 3208 | }, 3209 | "node_modules/loose-envify": { 3210 | "version": "1.4.0", 3211 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", 3212 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", 3213 | "license": "MIT", 3214 | "dependencies": { 3215 | "js-tokens": "^3.0.0 || ^4.0.0" 3216 | }, 3217 | "bin": { 3218 | "loose-envify": "cli.js" 3219 | } 3220 | }, 3221 | "node_modules/lru-cache": { 3222 | "version": "5.1.1", 3223 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", 3224 | "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", 3225 | "dev": true, 3226 | "license": "ISC", 3227 | "dependencies": { 3228 | "yallist": "^3.0.2" 3229 | } 3230 | }, 3231 | "node_modules/magic-string": { 3232 | "version": "0.30.17", 3233 | "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz", 3234 | "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==", 3235 | "license": "MIT", 3236 | "dependencies": { 3237 | "@jridgewell/sourcemap-codec": "^1.5.0" 3238 | } 3239 | }, 3240 | "node_modules/merge-stream": { 3241 | "version": "2.0.0", 3242 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", 3243 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", 3244 | "license": "MIT", 3245 | "peer": true 3246 | }, 3247 | "node_modules/micromatch": { 3248 | "version": "4.0.8", 3249 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 3250 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 3251 | "license": "MIT", 3252 | "optional": true, 3253 | "dependencies": { 3254 | "braces": "^3.0.3", 3255 | "picomatch": "^2.3.1" 3256 | }, 3257 | "engines": { 3258 | "node": ">=8.6" 3259 | } 3260 | }, 3261 | "node_modules/micromatch/node_modules/picomatch": { 3262 | "version": "2.3.1", 3263 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3264 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3265 | "license": "MIT", 3266 | "optional": true, 3267 | "engines": { 3268 | "node": ">=8.6" 3269 | }, 3270 | "funding": { 3271 | "url": "https://github.com/sponsors/jonschlinkert" 3272 | } 3273 | }, 3274 | "node_modules/mime-db": { 3275 | "version": "1.52.0", 3276 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 3277 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 3278 | "license": "MIT", 3279 | "peer": true, 3280 | "engines": { 3281 | "node": ">= 0.6" 3282 | } 3283 | }, 3284 | "node_modules/mime-types": { 3285 | "version": "2.1.35", 3286 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 3287 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 3288 | "license": "MIT", 3289 | "peer": true, 3290 | "dependencies": { 3291 | "mime-db": "1.52.0" 3292 | }, 3293 | "engines": { 3294 | "node": ">= 0.6" 3295 | } 3296 | }, 3297 | "node_modules/mitt": { 3298 | "version": "3.0.1", 3299 | "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", 3300 | "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", 3301 | "dev": true, 3302 | "license": "MIT" 3303 | }, 3304 | "node_modules/mrmime": { 3305 | "version": "2.0.1", 3306 | "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz", 3307 | "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==", 3308 | "dev": true, 3309 | "license": "MIT", 3310 | "engines": { 3311 | "node": ">=10" 3312 | } 3313 | }, 3314 | "node_modules/ms": { 3315 | "version": "2.1.3", 3316 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 3317 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 3318 | "dev": true, 3319 | "license": "MIT" 3320 | }, 3321 | "node_modules/nanoid": { 3322 | "version": "3.3.11", 3323 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", 3324 | "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", 3325 | "funding": [ 3326 | { 3327 | "type": "github", 3328 | "url": "https://github.com/sponsors/ai" 3329 | } 3330 | ], 3331 | "license": "MIT", 3332 | "bin": { 3333 | "nanoid": "bin/nanoid.cjs" 3334 | }, 3335 | "engines": { 3336 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 3337 | } 3338 | }, 3339 | "node_modules/neo-async": { 3340 | "version": "2.6.2", 3341 | "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", 3342 | "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", 3343 | "license": "MIT" 3344 | }, 3345 | "node_modules/node-addon-api": { 3346 | "version": "7.1.1", 3347 | "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", 3348 | "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", 3349 | "license": "MIT", 3350 | "optional": true 3351 | }, 3352 | "node_modules/node-releases": { 3353 | "version": "2.0.19", 3354 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", 3355 | "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", 3356 | "license": "MIT" 3357 | }, 3358 | "node_modules/normalize-range": { 3359 | "version": "0.1.2", 3360 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", 3361 | "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", 3362 | "dev": true, 3363 | "license": "MIT", 3364 | "engines": { 3365 | "node": ">=0.10.0" 3366 | } 3367 | }, 3368 | "node_modules/npm-run-path": { 3369 | "version": "6.0.0", 3370 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-6.0.0.tgz", 3371 | "integrity": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==", 3372 | "dev": true, 3373 | "license": "MIT", 3374 | "dependencies": { 3375 | "path-key": "^4.0.0", 3376 | "unicorn-magic": "^0.3.0" 3377 | }, 3378 | "engines": { 3379 | "node": ">=18" 3380 | }, 3381 | "funding": { 3382 | "url": "https://github.com/sponsors/sindresorhus" 3383 | } 3384 | }, 3385 | "node_modules/npm-run-path/node_modules/path-key": { 3386 | "version": "4.0.0", 3387 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", 3388 | "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", 3389 | "dev": true, 3390 | "license": "MIT", 3391 | "engines": { 3392 | "node": ">=12" 3393 | }, 3394 | "funding": { 3395 | "url": "https://github.com/sponsors/sindresorhus" 3396 | } 3397 | }, 3398 | "node_modules/object-assign": { 3399 | "version": "4.1.1", 3400 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 3401 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 3402 | "license": "MIT", 3403 | "engines": { 3404 | "node": ">=0.10.0" 3405 | } 3406 | }, 3407 | "node_modules/open": { 3408 | "version": "10.1.2", 3409 | "resolved": "https://registry.npmjs.org/open/-/open-10.1.2.tgz", 3410 | "integrity": "sha512-cxN6aIDPz6rm8hbebcP7vrQNhvRcveZoJU72Y7vskh4oIm+BZwBECnx5nTmrlres1Qapvx27Qo1Auukpf8PKXw==", 3411 | "dev": true, 3412 | "license": "MIT", 3413 | "dependencies": { 3414 | "default-browser": "^5.2.1", 3415 | "define-lazy-prop": "^3.0.0", 3416 | "is-inside-container": "^1.0.0", 3417 | "is-wsl": "^3.1.0" 3418 | }, 3419 | "engines": { 3420 | "node": ">=18" 3421 | }, 3422 | "funding": { 3423 | "url": "https://github.com/sponsors/sindresorhus" 3424 | } 3425 | }, 3426 | "node_modules/optimism": { 3427 | "version": "0.18.1", 3428 | "resolved": "https://registry.npmjs.org/optimism/-/optimism-0.18.1.tgz", 3429 | "integrity": "sha512-mLXNwWPa9dgFyDqkNi54sjDyNJ9/fTI6WGBLgnXku1vdKY/jovHfZT5r+aiVeFFLOz+foPNOm5YJ4mqgld2GBQ==", 3430 | "license": "MIT", 3431 | "dependencies": { 3432 | "@wry/caches": "^1.0.0", 3433 | "@wry/context": "^0.7.0", 3434 | "@wry/trie": "^0.5.0", 3435 | "tslib": "^2.3.0" 3436 | } 3437 | }, 3438 | "node_modules/parse-ms": { 3439 | "version": "4.0.0", 3440 | "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-4.0.0.tgz", 3441 | "integrity": "sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==", 3442 | "dev": true, 3443 | "license": "MIT", 3444 | "engines": { 3445 | "node": ">=18" 3446 | }, 3447 | "funding": { 3448 | "url": "https://github.com/sponsors/sindresorhus" 3449 | } 3450 | }, 3451 | "node_modules/path-key": { 3452 | "version": "3.1.1", 3453 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3454 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3455 | "dev": true, 3456 | "license": "MIT", 3457 | "engines": { 3458 | "node": ">=8" 3459 | } 3460 | }, 3461 | "node_modules/pathe": { 3462 | "version": "2.0.3", 3463 | "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz", 3464 | "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", 3465 | "dev": true, 3466 | "license": "MIT" 3467 | }, 3468 | "node_modules/perfect-debounce": { 3469 | "version": "1.0.0", 3470 | "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz", 3471 | "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==", 3472 | "dev": true, 3473 | "license": "MIT" 3474 | }, 3475 | "node_modules/picocolors": { 3476 | "version": "1.1.1", 3477 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 3478 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 3479 | "license": "ISC" 3480 | }, 3481 | "node_modules/picomatch": { 3482 | "version": "4.0.2", 3483 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", 3484 | "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", 3485 | "dev": true, 3486 | "license": "MIT", 3487 | "engines": { 3488 | "node": ">=12" 3489 | }, 3490 | "funding": { 3491 | "url": "https://github.com/sponsors/jonschlinkert" 3492 | } 3493 | }, 3494 | "node_modules/postcss": { 3495 | "version": "8.5.6", 3496 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", 3497 | "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", 3498 | "funding": [ 3499 | { 3500 | "type": "opencollective", 3501 | "url": "https://opencollective.com/postcss/" 3502 | }, 3503 | { 3504 | "type": "tidelift", 3505 | "url": "https://tidelift.com/funding/github/npm/postcss" 3506 | }, 3507 | { 3508 | "type": "github", 3509 | "url": "https://github.com/sponsors/ai" 3510 | } 3511 | ], 3512 | "license": "MIT", 3513 | "dependencies": { 3514 | "nanoid": "^3.3.11", 3515 | "picocolors": "^1.1.1", 3516 | "source-map-js": "^1.2.1" 3517 | }, 3518 | "engines": { 3519 | "node": "^10 || ^12 || >=14" 3520 | } 3521 | }, 3522 | "node_modules/postcss-value-parser": { 3523 | "version": "4.2.0", 3524 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 3525 | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", 3526 | "dev": true, 3527 | "license": "MIT" 3528 | }, 3529 | "node_modules/pretty-ms": { 3530 | "version": "9.2.0", 3531 | "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.2.0.tgz", 3532 | "integrity": "sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==", 3533 | "dev": true, 3534 | "license": "MIT", 3535 | "dependencies": { 3536 | "parse-ms": "^4.0.0" 3537 | }, 3538 | "engines": { 3539 | "node": ">=18" 3540 | }, 3541 | "funding": { 3542 | "url": "https://github.com/sponsors/sindresorhus" 3543 | } 3544 | }, 3545 | "node_modules/prop-types": { 3546 | "version": "15.8.1", 3547 | "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", 3548 | "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", 3549 | "license": "MIT", 3550 | "dependencies": { 3551 | "loose-envify": "^1.4.0", 3552 | "object-assign": "^4.1.1", 3553 | "react-is": "^16.13.1" 3554 | } 3555 | }, 3556 | "node_modules/randombytes": { 3557 | "version": "2.1.0", 3558 | "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", 3559 | "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", 3560 | "license": "MIT", 3561 | "peer": true, 3562 | "dependencies": { 3563 | "safe-buffer": "^5.1.0" 3564 | } 3565 | }, 3566 | "node_modules/react-is": { 3567 | "version": "16.13.1", 3568 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", 3569 | "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", 3570 | "license": "MIT" 3571 | }, 3572 | "node_modules/readdirp": { 3573 | "version": "4.1.2", 3574 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", 3575 | "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", 3576 | "license": "MIT", 3577 | "engines": { 3578 | "node": ">= 14.18.0" 3579 | }, 3580 | "funding": { 3581 | "type": "individual", 3582 | "url": "https://paulmillr.com/funding/" 3583 | } 3584 | }, 3585 | "node_modules/rehackt": { 3586 | "version": "0.1.0", 3587 | "resolved": "https://registry.npmjs.org/rehackt/-/rehackt-0.1.0.tgz", 3588 | "integrity": "sha512-7kRDOuLHB87D/JESKxQoRwv4DzbIdwkAGQ7p6QKGdVlY1IZheUnVhlk/4UZlNUVxdAXpyxikE3URsG067ybVzw==", 3589 | "license": "MIT", 3590 | "peerDependencies": { 3591 | "@types/react": "*", 3592 | "react": "*" 3593 | }, 3594 | "peerDependenciesMeta": { 3595 | "@types/react": { 3596 | "optional": true 3597 | }, 3598 | "react": { 3599 | "optional": true 3600 | } 3601 | } 3602 | }, 3603 | "node_modules/require-from-string": { 3604 | "version": "2.0.2", 3605 | "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", 3606 | "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", 3607 | "license": "MIT", 3608 | "peer": true, 3609 | "engines": { 3610 | "node": ">=0.10.0" 3611 | } 3612 | }, 3613 | "node_modules/rfdc": { 3614 | "version": "1.4.1", 3615 | "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", 3616 | "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", 3617 | "dev": true, 3618 | "license": "MIT" 3619 | }, 3620 | "node_modules/rollup": { 3621 | "version": "4.44.0", 3622 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.44.0.tgz", 3623 | "integrity": "sha512-qHcdEzLCiktQIfwBq420pn2dP+30uzqYxv9ETm91wdt2R9AFcWfjNAmje4NWlnCIQ5RMTzVf0ZyisOKqHR6RwA==", 3624 | "dev": true, 3625 | "license": "MIT", 3626 | "dependencies": { 3627 | "@types/estree": "1.0.8" 3628 | }, 3629 | "bin": { 3630 | "rollup": "dist/bin/rollup" 3631 | }, 3632 | "engines": { 3633 | "node": ">=18.0.0", 3634 | "npm": ">=8.0.0" 3635 | }, 3636 | "optionalDependencies": { 3637 | "@rollup/rollup-android-arm-eabi": "4.44.0", 3638 | "@rollup/rollup-android-arm64": "4.44.0", 3639 | "@rollup/rollup-darwin-arm64": "4.44.0", 3640 | "@rollup/rollup-darwin-x64": "4.44.0", 3641 | "@rollup/rollup-freebsd-arm64": "4.44.0", 3642 | "@rollup/rollup-freebsd-x64": "4.44.0", 3643 | "@rollup/rollup-linux-arm-gnueabihf": "4.44.0", 3644 | "@rollup/rollup-linux-arm-musleabihf": "4.44.0", 3645 | "@rollup/rollup-linux-arm64-gnu": "4.44.0", 3646 | "@rollup/rollup-linux-arm64-musl": "4.44.0", 3647 | "@rollup/rollup-linux-loongarch64-gnu": "4.44.0", 3648 | "@rollup/rollup-linux-powerpc64le-gnu": "4.44.0", 3649 | "@rollup/rollup-linux-riscv64-gnu": "4.44.0", 3650 | "@rollup/rollup-linux-riscv64-musl": "4.44.0", 3651 | "@rollup/rollup-linux-s390x-gnu": "4.44.0", 3652 | "@rollup/rollup-linux-x64-gnu": "4.44.0", 3653 | "@rollup/rollup-linux-x64-musl": "4.44.0", 3654 | "@rollup/rollup-win32-arm64-msvc": "4.44.0", 3655 | "@rollup/rollup-win32-ia32-msvc": "4.44.0", 3656 | "@rollup/rollup-win32-x64-msvc": "4.44.0", 3657 | "fsevents": "~2.3.2" 3658 | } 3659 | }, 3660 | "node_modules/run-applescript": { 3661 | "version": "7.0.0", 3662 | "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.0.0.tgz", 3663 | "integrity": "sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==", 3664 | "dev": true, 3665 | "license": "MIT", 3666 | "engines": { 3667 | "node": ">=18" 3668 | }, 3669 | "funding": { 3670 | "url": "https://github.com/sponsors/sindresorhus" 3671 | } 3672 | }, 3673 | "node_modules/safe-buffer": { 3674 | "version": "5.2.1", 3675 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 3676 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 3677 | "funding": [ 3678 | { 3679 | "type": "github", 3680 | "url": "https://github.com/sponsors/feross" 3681 | }, 3682 | { 3683 | "type": "patreon", 3684 | "url": "https://www.patreon.com/feross" 3685 | }, 3686 | { 3687 | "type": "consulting", 3688 | "url": "https://feross.org/support" 3689 | } 3690 | ], 3691 | "license": "MIT", 3692 | "peer": true 3693 | }, 3694 | "node_modules/sass": { 3695 | "version": "1.89.2", 3696 | "resolved": "https://registry.npmjs.org/sass/-/sass-1.89.2.tgz", 3697 | "integrity": "sha512-xCmtksBKd/jdJ9Bt9p7nPKiuqrlBMBuuGkQlkhZjjQk3Ty48lv93k5Dq6OPkKt4XwxDJ7tvlfrTa1MPA9bf+QA==", 3698 | "license": "MIT", 3699 | "dependencies": { 3700 | "chokidar": "^4.0.0", 3701 | "immutable": "^5.0.2", 3702 | "source-map-js": ">=0.6.2 <2.0.0" 3703 | }, 3704 | "bin": { 3705 | "sass": "sass.js" 3706 | }, 3707 | "engines": { 3708 | "node": ">=14.0.0" 3709 | }, 3710 | "optionalDependencies": { 3711 | "@parcel/watcher": "^2.4.1" 3712 | } 3713 | }, 3714 | "node_modules/sass-loader": { 3715 | "version": "13.3.3", 3716 | "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-13.3.3.tgz", 3717 | "integrity": "sha512-mt5YN2F1MOZr3d/wBRcZxeFgwgkH44wVc2zohO2YF6JiOMkiXe4BYRZpSu2sO1g71mo/j16txzUhsKZlqjVGzA==", 3718 | "license": "MIT", 3719 | "dependencies": { 3720 | "neo-async": "^2.6.2" 3721 | }, 3722 | "engines": { 3723 | "node": ">= 14.15.0" 3724 | }, 3725 | "funding": { 3726 | "type": "opencollective", 3727 | "url": "https://opencollective.com/webpack" 3728 | }, 3729 | "peerDependencies": { 3730 | "fibers": ">= 3.1.0", 3731 | "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0", 3732 | "sass": "^1.3.0", 3733 | "sass-embedded": "*", 3734 | "webpack": "^5.0.0" 3735 | }, 3736 | "peerDependenciesMeta": { 3737 | "fibers": { 3738 | "optional": true 3739 | }, 3740 | "node-sass": { 3741 | "optional": true 3742 | }, 3743 | "sass": { 3744 | "optional": true 3745 | }, 3746 | "sass-embedded": { 3747 | "optional": true 3748 | } 3749 | } 3750 | }, 3751 | "node_modules/schema-utils": { 3752 | "version": "4.3.2", 3753 | "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", 3754 | "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", 3755 | "license": "MIT", 3756 | "peer": true, 3757 | "dependencies": { 3758 | "@types/json-schema": "^7.0.9", 3759 | "ajv": "^8.9.0", 3760 | "ajv-formats": "^2.1.1", 3761 | "ajv-keywords": "^5.1.0" 3762 | }, 3763 | "engines": { 3764 | "node": ">= 10.13.0" 3765 | }, 3766 | "funding": { 3767 | "type": "opencollective", 3768 | "url": "https://opencollective.com/webpack" 3769 | } 3770 | }, 3771 | "node_modules/semver": { 3772 | "version": "6.3.1", 3773 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 3774 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 3775 | "dev": true, 3776 | "license": "ISC", 3777 | "bin": { 3778 | "semver": "bin/semver.js" 3779 | } 3780 | }, 3781 | "node_modules/serialize-javascript": { 3782 | "version": "6.0.2", 3783 | "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", 3784 | "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", 3785 | "license": "BSD-3-Clause", 3786 | "peer": true, 3787 | "dependencies": { 3788 | "randombytes": "^2.1.0" 3789 | } 3790 | }, 3791 | "node_modules/shebang-command": { 3792 | "version": "2.0.0", 3793 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3794 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3795 | "dev": true, 3796 | "license": "MIT", 3797 | "dependencies": { 3798 | "shebang-regex": "^3.0.0" 3799 | }, 3800 | "engines": { 3801 | "node": ">=8" 3802 | } 3803 | }, 3804 | "node_modules/shebang-regex": { 3805 | "version": "3.0.0", 3806 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3807 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3808 | "dev": true, 3809 | "license": "MIT", 3810 | "engines": { 3811 | "node": ">=8" 3812 | } 3813 | }, 3814 | "node_modules/signal-exit": { 3815 | "version": "4.1.0", 3816 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 3817 | "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 3818 | "dev": true, 3819 | "license": "ISC", 3820 | "engines": { 3821 | "node": ">=14" 3822 | }, 3823 | "funding": { 3824 | "url": "https://github.com/sponsors/isaacs" 3825 | } 3826 | }, 3827 | "node_modules/sirv": { 3828 | "version": "3.0.1", 3829 | "resolved": "https://registry.npmjs.org/sirv/-/sirv-3.0.1.tgz", 3830 | "integrity": "sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==", 3831 | "dev": true, 3832 | "license": "MIT", 3833 | "dependencies": { 3834 | "@polka/url": "^1.0.0-next.24", 3835 | "mrmime": "^2.0.0", 3836 | "totalist": "^3.0.0" 3837 | }, 3838 | "engines": { 3839 | "node": ">=18" 3840 | } 3841 | }, 3842 | "node_modules/source-map": { 3843 | "version": "0.6.1", 3844 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 3845 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 3846 | "license": "BSD-3-Clause", 3847 | "peer": true, 3848 | "engines": { 3849 | "node": ">=0.10.0" 3850 | } 3851 | }, 3852 | "node_modules/source-map-js": { 3853 | "version": "1.2.1", 3854 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 3855 | "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 3856 | "license": "BSD-3-Clause", 3857 | "engines": { 3858 | "node": ">=0.10.0" 3859 | } 3860 | }, 3861 | "node_modules/source-map-support": { 3862 | "version": "0.5.21", 3863 | "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", 3864 | "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", 3865 | "license": "MIT", 3866 | "peer": true, 3867 | "dependencies": { 3868 | "buffer-from": "^1.0.0", 3869 | "source-map": "^0.6.0" 3870 | } 3871 | }, 3872 | "node_modules/speakingurl": { 3873 | "version": "14.0.1", 3874 | "resolved": "https://registry.npmjs.org/speakingurl/-/speakingurl-14.0.1.tgz", 3875 | "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==", 3876 | "dev": true, 3877 | "license": "BSD-3-Clause", 3878 | "engines": { 3879 | "node": ">=0.10.0" 3880 | } 3881 | }, 3882 | "node_modules/strip-final-newline": { 3883 | "version": "4.0.0", 3884 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-4.0.0.tgz", 3885 | "integrity": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==", 3886 | "dev": true, 3887 | "license": "MIT", 3888 | "engines": { 3889 | "node": ">=18" 3890 | }, 3891 | "funding": { 3892 | "url": "https://github.com/sponsors/sindresorhus" 3893 | } 3894 | }, 3895 | "node_modules/superjson": { 3896 | "version": "2.2.2", 3897 | "resolved": "https://registry.npmjs.org/superjson/-/superjson-2.2.2.tgz", 3898 | "integrity": "sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==", 3899 | "dev": true, 3900 | "license": "MIT", 3901 | "dependencies": { 3902 | "copy-anything": "^3.0.2" 3903 | }, 3904 | "engines": { 3905 | "node": ">=16" 3906 | } 3907 | }, 3908 | "node_modules/supports-color": { 3909 | "version": "8.1.1", 3910 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", 3911 | "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", 3912 | "license": "MIT", 3913 | "peer": true, 3914 | "dependencies": { 3915 | "has-flag": "^4.0.0" 3916 | }, 3917 | "engines": { 3918 | "node": ">=10" 3919 | }, 3920 | "funding": { 3921 | "url": "https://github.com/chalk/supports-color?sponsor=1" 3922 | } 3923 | }, 3924 | "node_modules/symbol-observable": { 3925 | "version": "4.0.0", 3926 | "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz", 3927 | "integrity": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==", 3928 | "license": "MIT", 3929 | "engines": { 3930 | "node": ">=0.10" 3931 | } 3932 | }, 3933 | "node_modules/tailwindcss": { 3934 | "version": "4.1.10", 3935 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.10.tgz", 3936 | "integrity": "sha512-P3nr6WkvKV/ONsTzj6Gb57sWPMX29EPNPopo7+FcpkQaNsrNpZ1pv8QmrYI2RqEKD7mlGqLnGovlcYnBK0IqUA==", 3937 | "dev": true, 3938 | "license": "MIT" 3939 | }, 3940 | "node_modules/tapable": { 3941 | "version": "2.2.2", 3942 | "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.2.tgz", 3943 | "integrity": "sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==", 3944 | "license": "MIT", 3945 | "peer": true, 3946 | "engines": { 3947 | "node": ">=6" 3948 | } 3949 | }, 3950 | "node_modules/terser": { 3951 | "version": "5.43.1", 3952 | "resolved": "https://registry.npmjs.org/terser/-/terser-5.43.1.tgz", 3953 | "integrity": "sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==", 3954 | "license": "BSD-2-Clause", 3955 | "peer": true, 3956 | "dependencies": { 3957 | "@jridgewell/source-map": "^0.3.3", 3958 | "acorn": "^8.14.0", 3959 | "commander": "^2.20.0", 3960 | "source-map-support": "~0.5.20" 3961 | }, 3962 | "bin": { 3963 | "terser": "bin/terser" 3964 | }, 3965 | "engines": { 3966 | "node": ">=10" 3967 | } 3968 | }, 3969 | "node_modules/terser-webpack-plugin": { 3970 | "version": "5.3.14", 3971 | "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz", 3972 | "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==", 3973 | "license": "MIT", 3974 | "peer": true, 3975 | "dependencies": { 3976 | "@jridgewell/trace-mapping": "^0.3.25", 3977 | "jest-worker": "^27.4.5", 3978 | "schema-utils": "^4.3.0", 3979 | "serialize-javascript": "^6.0.2", 3980 | "terser": "^5.31.1" 3981 | }, 3982 | "engines": { 3983 | "node": ">= 10.13.0" 3984 | }, 3985 | "funding": { 3986 | "type": "opencollective", 3987 | "url": "https://opencollective.com/webpack" 3988 | }, 3989 | "peerDependencies": { 3990 | "webpack": "^5.1.0" 3991 | }, 3992 | "peerDependenciesMeta": { 3993 | "@swc/core": { 3994 | "optional": true 3995 | }, 3996 | "esbuild": { 3997 | "optional": true 3998 | }, 3999 | "uglify-js": { 4000 | "optional": true 4001 | } 4002 | } 4003 | }, 4004 | "node_modules/throttle-debounce": { 4005 | "version": "5.0.2", 4006 | "resolved": "https://registry.npmjs.org/throttle-debounce/-/throttle-debounce-5.0.2.tgz", 4007 | "integrity": "sha512-B71/4oyj61iNH0KeCamLuE2rmKuTO5byTOSVwECM5FA7TiAiAW+UqTKZ9ERueC4qvgSttUhdmq1mXC3kJqGX7A==", 4008 | "license": "MIT", 4009 | "engines": { 4010 | "node": ">=12.22" 4011 | } 4012 | }, 4013 | "node_modules/tinyglobby": { 4014 | "version": "0.2.14", 4015 | "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz", 4016 | "integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==", 4017 | "dev": true, 4018 | "license": "MIT", 4019 | "dependencies": { 4020 | "fdir": "^6.4.4", 4021 | "picomatch": "^4.0.2" 4022 | }, 4023 | "engines": { 4024 | "node": ">=12.0.0" 4025 | }, 4026 | "funding": { 4027 | "url": "https://github.com/sponsors/SuperchupuDev" 4028 | } 4029 | }, 4030 | "node_modules/to-regex-range": { 4031 | "version": "5.0.1", 4032 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 4033 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 4034 | "license": "MIT", 4035 | "optional": true, 4036 | "dependencies": { 4037 | "is-number": "^7.0.0" 4038 | }, 4039 | "engines": { 4040 | "node": ">=8.0" 4041 | } 4042 | }, 4043 | "node_modules/totalist": { 4044 | "version": "3.0.1", 4045 | "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", 4046 | "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", 4047 | "dev": true, 4048 | "license": "MIT", 4049 | "engines": { 4050 | "node": ">=6" 4051 | } 4052 | }, 4053 | "node_modules/ts-essentials": { 4054 | "version": "9.4.2", 4055 | "resolved": "https://registry.npmjs.org/ts-essentials/-/ts-essentials-9.4.2.tgz", 4056 | "integrity": "sha512-mB/cDhOvD7pg3YCLk2rOtejHjjdSi9in/IBYE13S+8WA5FBSraYf4V/ws55uvs0IvQ/l0wBOlXy5yBNZ9Bl8ZQ==", 4057 | "license": "MIT", 4058 | "peerDependencies": { 4059 | "typescript": ">=4.1.0" 4060 | }, 4061 | "peerDependenciesMeta": { 4062 | "typescript": { 4063 | "optional": true 4064 | } 4065 | } 4066 | }, 4067 | "node_modules/ts-invariant": { 4068 | "version": "0.10.3", 4069 | "resolved": "https://registry.npmjs.org/ts-invariant/-/ts-invariant-0.10.3.tgz", 4070 | "integrity": "sha512-uivwYcQaxAucv1CzRp2n/QdYPo4ILf9VXgH19zEIjFx2EJufV16P0JtJVpYHy89DItG6Kwj2oIUjrcK5au+4tQ==", 4071 | "license": "MIT", 4072 | "dependencies": { 4073 | "tslib": "^2.1.0" 4074 | }, 4075 | "engines": { 4076 | "node": ">=8" 4077 | } 4078 | }, 4079 | "node_modules/tslib": { 4080 | "version": "2.8.1", 4081 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", 4082 | "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", 4083 | "license": "0BSD" 4084 | }, 4085 | "node_modules/undici-types": { 4086 | "version": "7.8.0", 4087 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.8.0.tgz", 4088 | "integrity": "sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==", 4089 | "license": "MIT", 4090 | "peer": true 4091 | }, 4092 | "node_modules/unicorn-magic": { 4093 | "version": "0.3.0", 4094 | "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz", 4095 | "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", 4096 | "dev": true, 4097 | "license": "MIT", 4098 | "engines": { 4099 | "node": ">=18" 4100 | }, 4101 | "funding": { 4102 | "url": "https://github.com/sponsors/sindresorhus" 4103 | } 4104 | }, 4105 | "node_modules/universalify": { 4106 | "version": "2.0.1", 4107 | "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", 4108 | "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", 4109 | "dev": true, 4110 | "license": "MIT", 4111 | "engines": { 4112 | "node": ">= 10.0.0" 4113 | } 4114 | }, 4115 | "node_modules/update-browserslist-db": { 4116 | "version": "1.1.3", 4117 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", 4118 | "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", 4119 | "funding": [ 4120 | { 4121 | "type": "opencollective", 4122 | "url": "https://opencollective.com/browserslist" 4123 | }, 4124 | { 4125 | "type": "tidelift", 4126 | "url": "https://tidelift.com/funding/github/npm/browserslist" 4127 | }, 4128 | { 4129 | "type": "github", 4130 | "url": "https://github.com/sponsors/ai" 4131 | } 4132 | ], 4133 | "license": "MIT", 4134 | "dependencies": { 4135 | "escalade": "^3.2.0", 4136 | "picocolors": "^1.1.1" 4137 | }, 4138 | "bin": { 4139 | "update-browserslist-db": "cli.js" 4140 | }, 4141 | "peerDependencies": { 4142 | "browserslist": ">= 4.21.0" 4143 | } 4144 | }, 4145 | "node_modules/vite": { 4146 | "version": "6.3.5", 4147 | "resolved": "https://registry.npmjs.org/vite/-/vite-6.3.5.tgz", 4148 | "integrity": "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==", 4149 | "dev": true, 4150 | "license": "MIT", 4151 | "dependencies": { 4152 | "esbuild": "^0.25.0", 4153 | "fdir": "^6.4.4", 4154 | "picomatch": "^4.0.2", 4155 | "postcss": "^8.5.3", 4156 | "rollup": "^4.34.9", 4157 | "tinyglobby": "^0.2.13" 4158 | }, 4159 | "bin": { 4160 | "vite": "bin/vite.js" 4161 | }, 4162 | "engines": { 4163 | "node": "^18.0.0 || ^20.0.0 || >=22.0.0" 4164 | }, 4165 | "funding": { 4166 | "url": "https://github.com/vitejs/vite?sponsor=1" 4167 | }, 4168 | "optionalDependencies": { 4169 | "fsevents": "~2.3.3" 4170 | }, 4171 | "peerDependencies": { 4172 | "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", 4173 | "jiti": ">=1.21.0", 4174 | "less": "*", 4175 | "lightningcss": "^1.21.0", 4176 | "sass": "*", 4177 | "sass-embedded": "*", 4178 | "stylus": "*", 4179 | "sugarss": "*", 4180 | "terser": "^5.16.0", 4181 | "tsx": "^4.8.1", 4182 | "yaml": "^2.4.2" 4183 | }, 4184 | "peerDependenciesMeta": { 4185 | "@types/node": { 4186 | "optional": true 4187 | }, 4188 | "jiti": { 4189 | "optional": true 4190 | }, 4191 | "less": { 4192 | "optional": true 4193 | }, 4194 | "lightningcss": { 4195 | "optional": true 4196 | }, 4197 | "sass": { 4198 | "optional": true 4199 | }, 4200 | "sass-embedded": { 4201 | "optional": true 4202 | }, 4203 | "stylus": { 4204 | "optional": true 4205 | }, 4206 | "sugarss": { 4207 | "optional": true 4208 | }, 4209 | "terser": { 4210 | "optional": true 4211 | }, 4212 | "tsx": { 4213 | "optional": true 4214 | }, 4215 | "yaml": { 4216 | "optional": true 4217 | } 4218 | } 4219 | }, 4220 | "node_modules/vite-hot-client": { 4221 | "version": "2.0.4", 4222 | "resolved": "https://registry.npmjs.org/vite-hot-client/-/vite-hot-client-2.0.4.tgz", 4223 | "integrity": "sha512-W9LOGAyGMrbGArYJN4LBCdOC5+Zwh7dHvOHC0KmGKkJhsOzaKbpo/jEjpPKVHIW0/jBWj8RZG0NUxfgA8BxgAg==", 4224 | "dev": true, 4225 | "license": "MIT", 4226 | "funding": { 4227 | "url": "https://github.com/sponsors/antfu" 4228 | }, 4229 | "peerDependencies": { 4230 | "vite": "^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0" 4231 | } 4232 | }, 4233 | "node_modules/vite-plugin-inspect": { 4234 | "version": "0.8.9", 4235 | "resolved": "https://registry.npmjs.org/vite-plugin-inspect/-/vite-plugin-inspect-0.8.9.tgz", 4236 | "integrity": "sha512-22/8qn+LYonzibb1VeFZmISdVao5kC22jmEKm24vfFE8siEn47EpVcCLYMv6iKOYMJfjSvSJfueOwcFCkUnV3A==", 4237 | "dev": true, 4238 | "license": "MIT", 4239 | "dependencies": { 4240 | "@antfu/utils": "^0.7.10", 4241 | "@rollup/pluginutils": "^5.1.3", 4242 | "debug": "^4.3.7", 4243 | "error-stack-parser-es": "^0.1.5", 4244 | "fs-extra": "^11.2.0", 4245 | "open": "^10.1.0", 4246 | "perfect-debounce": "^1.0.0", 4247 | "picocolors": "^1.1.1", 4248 | "sirv": "^3.0.0" 4249 | }, 4250 | "engines": { 4251 | "node": ">=14" 4252 | }, 4253 | "funding": { 4254 | "url": "https://github.com/sponsors/antfu" 4255 | }, 4256 | "peerDependencies": { 4257 | "vite": "^3.1.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.1" 4258 | }, 4259 | "peerDependenciesMeta": { 4260 | "@nuxt/kit": { 4261 | "optional": true 4262 | } 4263 | } 4264 | }, 4265 | "node_modules/vite-plugin-vue-devtools": { 4266 | "version": "7.7.7", 4267 | "resolved": "https://registry.npmjs.org/vite-plugin-vue-devtools/-/vite-plugin-vue-devtools-7.7.7.tgz", 4268 | "integrity": "sha512-d0fIh3wRcgSlr4Vz7bAk4va1MkdqhQgj9ANE/rBhsAjOnRfTLs2ocjFMvSUOsv6SRRXU9G+VM7yMgqDb6yI4iQ==", 4269 | "dev": true, 4270 | "license": "MIT", 4271 | "dependencies": { 4272 | "@vue/devtools-core": "^7.7.7", 4273 | "@vue/devtools-kit": "^7.7.7", 4274 | "@vue/devtools-shared": "^7.7.7", 4275 | "execa": "^9.5.2", 4276 | "sirv": "^3.0.1", 4277 | "vite-plugin-inspect": "0.8.9", 4278 | "vite-plugin-vue-inspector": "^5.3.1" 4279 | }, 4280 | "engines": { 4281 | "node": ">=v14.21.3" 4282 | }, 4283 | "peerDependencies": { 4284 | "vite": "^3.1.0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0" 4285 | } 4286 | }, 4287 | "node_modules/vite-plugin-vue-inspector": { 4288 | "version": "5.3.1", 4289 | "resolved": "https://registry.npmjs.org/vite-plugin-vue-inspector/-/vite-plugin-vue-inspector-5.3.1.tgz", 4290 | "integrity": "sha512-cBk172kZKTdvGpJuzCCLg8lJ909wopwsu3Ve9FsL1XsnLBiRT9U3MePcqrgGHgCX2ZgkqZmAGR8taxw+TV6s7A==", 4291 | "dev": true, 4292 | "license": "MIT", 4293 | "dependencies": { 4294 | "@babel/core": "^7.23.0", 4295 | "@babel/plugin-proposal-decorators": "^7.23.0", 4296 | "@babel/plugin-syntax-import-attributes": "^7.22.5", 4297 | "@babel/plugin-syntax-import-meta": "^7.10.4", 4298 | "@babel/plugin-transform-typescript": "^7.22.15", 4299 | "@vue/babel-plugin-jsx": "^1.1.5", 4300 | "@vue/compiler-dom": "^3.3.4", 4301 | "kolorist": "^1.8.0", 4302 | "magic-string": "^0.30.4" 4303 | }, 4304 | "peerDependencies": { 4305 | "vite": "^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0" 4306 | } 4307 | }, 4308 | "node_modules/vue": { 4309 | "version": "3.5.17", 4310 | "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.17.tgz", 4311 | "integrity": "sha512-LbHV3xPN9BeljML+Xctq4lbz2lVHCR6DtbpTf5XIO6gugpXUN49j2QQPcMj086r9+AkJ0FfUT8xjulKKBkkr9g==", 4312 | "license": "MIT", 4313 | "dependencies": { 4314 | "@vue/compiler-dom": "3.5.17", 4315 | "@vue/compiler-sfc": "3.5.17", 4316 | "@vue/runtime-dom": "3.5.17", 4317 | "@vue/server-renderer": "3.5.17", 4318 | "@vue/shared": "3.5.17" 4319 | }, 4320 | "peerDependencies": { 4321 | "typescript": "*" 4322 | }, 4323 | "peerDependenciesMeta": { 4324 | "typescript": { 4325 | "optional": true 4326 | } 4327 | } 4328 | }, 4329 | "node_modules/vue-router": { 4330 | "version": "4.5.1", 4331 | "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.5.1.tgz", 4332 | "integrity": "sha512-ogAF3P97NPm8fJsE4by9dwSYtDwXIY1nFY9T6DyQnGHd1E2Da94w9JIolpe42LJGIl0DwOHBi8TcRPlPGwbTtw==", 4333 | "license": "MIT", 4334 | "dependencies": { 4335 | "@vue/devtools-api": "^6.6.4" 4336 | }, 4337 | "funding": { 4338 | "url": "https://github.com/sponsors/posva" 4339 | }, 4340 | "peerDependencies": { 4341 | "vue": "^3.2.0" 4342 | } 4343 | }, 4344 | "node_modules/vuetify": { 4345 | "version": "3.8.10", 4346 | "resolved": "https://registry.npmjs.org/vuetify/-/vuetify-3.8.10.tgz", 4347 | "integrity": "sha512-3BETdCGh3eB1cV5+dA+L5CYi62Q/Jb09H512GImeYzMHd2R+LntO0F5pNCqVB4KoxymQ4Jej3Q0J6AYmf0KD8w==", 4348 | "license": "MIT", 4349 | "engines": { 4350 | "node": "^12.20 || >=14.13" 4351 | }, 4352 | "funding": { 4353 | "type": "github", 4354 | "url": "https://github.com/sponsors/johnleider" 4355 | }, 4356 | "peerDependencies": { 4357 | "typescript": ">=4.7", 4358 | "vite-plugin-vuetify": ">=2.1.0", 4359 | "vue": "^3.5.0", 4360 | "webpack-plugin-vuetify": ">=3.1.0" 4361 | }, 4362 | "peerDependenciesMeta": { 4363 | "typescript": { 4364 | "optional": true 4365 | }, 4366 | "vite-plugin-vuetify": { 4367 | "optional": true 4368 | }, 4369 | "webpack-plugin-vuetify": { 4370 | "optional": true 4371 | } 4372 | } 4373 | }, 4374 | "node_modules/watchpack": { 4375 | "version": "2.4.4", 4376 | "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.4.tgz", 4377 | "integrity": "sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==", 4378 | "license": "MIT", 4379 | "peer": true, 4380 | "dependencies": { 4381 | "glob-to-regexp": "^0.4.1", 4382 | "graceful-fs": "^4.1.2" 4383 | }, 4384 | "engines": { 4385 | "node": ">=10.13.0" 4386 | } 4387 | }, 4388 | "node_modules/webpack": { 4389 | "version": "5.99.9", 4390 | "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.99.9.tgz", 4391 | "integrity": "sha512-brOPwM3JnmOa+7kd3NsmOUOwbDAj8FT9xDsG3IW0MgbN9yZV7Oi/s/+MNQ/EcSMqw7qfoRyXPoeEWT8zLVdVGg==", 4392 | "license": "MIT", 4393 | "peer": true, 4394 | "dependencies": { 4395 | "@types/eslint-scope": "^3.7.7", 4396 | "@types/estree": "^1.0.6", 4397 | "@types/json-schema": "^7.0.15", 4398 | "@webassemblyjs/ast": "^1.14.1", 4399 | "@webassemblyjs/wasm-edit": "^1.14.1", 4400 | "@webassemblyjs/wasm-parser": "^1.14.1", 4401 | "acorn": "^8.14.0", 4402 | "browserslist": "^4.24.0", 4403 | "chrome-trace-event": "^1.0.2", 4404 | "enhanced-resolve": "^5.17.1", 4405 | "es-module-lexer": "^1.2.1", 4406 | "eslint-scope": "5.1.1", 4407 | "events": "^3.2.0", 4408 | "glob-to-regexp": "^0.4.1", 4409 | "graceful-fs": "^4.2.11", 4410 | "json-parse-even-better-errors": "^2.3.1", 4411 | "loader-runner": "^4.2.0", 4412 | "mime-types": "^2.1.27", 4413 | "neo-async": "^2.6.2", 4414 | "schema-utils": "^4.3.2", 4415 | "tapable": "^2.1.1", 4416 | "terser-webpack-plugin": "^5.3.11", 4417 | "watchpack": "^2.4.1", 4418 | "webpack-sources": "^3.2.3" 4419 | }, 4420 | "bin": { 4421 | "webpack": "bin/webpack.js" 4422 | }, 4423 | "engines": { 4424 | "node": ">=10.13.0" 4425 | }, 4426 | "funding": { 4427 | "type": "opencollective", 4428 | "url": "https://opencollective.com/webpack" 4429 | }, 4430 | "peerDependenciesMeta": { 4431 | "webpack-cli": { 4432 | "optional": true 4433 | } 4434 | } 4435 | }, 4436 | "node_modules/webpack-sources": { 4437 | "version": "3.3.2", 4438 | "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.3.2.tgz", 4439 | "integrity": "sha512-ykKKus8lqlgXX/1WjudpIEjqsafjOTcOJqxnAbMLAu/KCsDCJ6GBtvscewvTkrn24HsnvFwrSCbenFrhtcCsAA==", 4440 | "license": "MIT", 4441 | "peer": true, 4442 | "engines": { 4443 | "node": ">=10.13.0" 4444 | } 4445 | }, 4446 | "node_modules/which": { 4447 | "version": "2.0.2", 4448 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 4449 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 4450 | "dev": true, 4451 | "license": "ISC", 4452 | "dependencies": { 4453 | "isexe": "^2.0.0" 4454 | }, 4455 | "bin": { 4456 | "node-which": "bin/node-which" 4457 | }, 4458 | "engines": { 4459 | "node": ">= 8" 4460 | } 4461 | }, 4462 | "node_modules/yallist": { 4463 | "version": "3.1.1", 4464 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", 4465 | "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", 4466 | "dev": true, 4467 | "license": "ISC" 4468 | }, 4469 | "node_modules/yoctocolors": { 4470 | "version": "2.1.1", 4471 | "resolved": "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.1.tgz", 4472 | "integrity": "sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==", 4473 | "dev": true, 4474 | "license": "MIT", 4475 | "engines": { 4476 | "node": ">=18" 4477 | }, 4478 | "funding": { 4479 | "url": "https://github.com/sponsors/sindresorhus" 4480 | } 4481 | }, 4482 | "node_modules/zen-observable": { 4483 | "version": "0.8.15", 4484 | "resolved": "https://registry.npmjs.org/zen-observable/-/zen-observable-0.8.15.tgz", 4485 | "integrity": "sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==", 4486 | "license": "MIT" 4487 | }, 4488 | "node_modules/zen-observable-ts": { 4489 | "version": "1.2.5", 4490 | "resolved": "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-1.2.5.tgz", 4491 | "integrity": "sha512-QZWQekv6iB72Naeake9hS1KxHlotfRpe+WGNbNx5/ta+R3DNjVO2bswf63gXlWDcs+EMd7XY8HfVQyP1X6T4Zg==", 4492 | "license": "MIT", 4493 | "dependencies": { 4494 | "zen-observable": "0.8.15" 4495 | } 4496 | } 4497 | } 4498 | } 4499 | --------------------------------------------------------------------------------