├── .eslintrc.js ├── .github ├── renovate.json └── workflows │ ├── ci.yaml │ ├── documentation-release.yaml │ └── semantic-release.yaml ├── .gitignore ├── .prettierrc ├── README.md ├── jest.config.js ├── package.json ├── prisma ├── schema-4-9-0.prisma └── schema.prisma ├── src ├── Utils.ts ├── exceptions │ ├── ExceedCount.ts │ ├── ExceedTotalPages.ts │ └── PaginationException.ts ├── index.ts ├── pagination │ ├── IPagination.ts │ ├── Pagination.ts │ ├── PaginationArgs.ts │ ├── PaginationOptions.ts │ └── result │ │ ├── IPaginationResult.ts │ │ ├── PageArgs.ts │ │ └── PaginationResult.ts └── prisma │ ├── IPrismaPaginate.ts │ ├── PrismaFindManyArgs.ts │ ├── PrismaPaginate.ts │ ├── PrismaPaginateResult.ts │ └── PrismaPaginationArgs.ts ├── test ├── extension.test.ts └── utils.ts ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | env: { 3 | node: true, 4 | }, 5 | extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"], 6 | overrides: [], 7 | parser: "@typescript-eslint/parser", 8 | parserOptions: { 9 | ecmaVersion: "latest", 10 | }, 11 | plugins: ["@typescript-eslint"], 12 | rules: { 13 | "no-console": 2, 14 | "@typescript-eslint/no-explicit-any": 0, 15 | }, 16 | }; 17 | -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["config:base"], 3 | "labels": ["dependencies"], 4 | "rangeStrategy": "bump", 5 | "packageRules": [ 6 | { 7 | "matchUpdateTypes": ["minor", "patch", "pin", "digest"], 8 | "automerge": true 9 | }, 10 | { 11 | "matchDepTypes": ["devDependencies"], 12 | "automerge": true 13 | }, 14 | { 15 | "enabled": false, 16 | "matchDepTypes": ["peerDependencies"] 17 | } 18 | ], 19 | "assignees": ["sandrewTx08"], 20 | "reviewers": ["sandrewTx08"], 21 | "assignAutomerge": false, 22 | "automergeType": "branch" 23 | } 24 | -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: 4 | push: 5 | branches: 6 | - "**" 7 | pull_request: 8 | branches: 9 | - "**" 10 | 11 | env: 12 | DATABASE_URL: postgres://postgres:postgres@localhost:5432/test 13 | 14 | jobs: 15 | build: 16 | runs-on: ubuntu-latest 17 | 18 | strategy: 19 | matrix: 20 | include: 21 | - node-version: 18.18.0 22 | prisma-version: 4.9.0 23 | - node-version: 18.18.0 24 | prisma-version: 4.16.0 25 | - node-version: 18.18.0 26 | prisma-version: latest 27 | - node-version: lts/* 28 | prisma-version: latest 29 | 30 | services: 31 | postgres: 32 | image: postgres 33 | env: 34 | POSTGRES_PASSWORD: postgres 35 | POSTGRES_USER: postgres 36 | POSTGRES_DB: postgres 37 | options: >- 38 | --health-cmd pg_isready 39 | --health-interval 10s 40 | --health-timeout 5s 41 | --health-retries 5 42 | ports: 43 | - 5432:5432 44 | 45 | steps: 46 | - uses: actions/checkout@v4 47 | 48 | - uses: actions/setup-node@v4 49 | with: 50 | node-version: ${{ matrix.node-version }} 51 | cache: "yarn" 52 | 53 | - run: yarn add prisma@${{ matrix.prisma-version }} @prisma/client@${{ matrix.prisma-version }} 54 | - run: yarn install 55 | 56 | # Set schema flag for older Prisma versions 57 | - name: Set schema path 58 | id: set-schema 59 | run: | 60 | if [[ "${{ matrix.prisma-version }}" == "4.9.0" || "${{ matrix.prisma-version }}" == "4.16.0" ]]; then 61 | echo "schema=--schema ./prisma/schema-4-9-0.prisma" >> $GITHUB_OUTPUT 62 | else 63 | echo "schema=" >> $GITHUB_OUTPUT 64 | fi 65 | - run: yarn prisma generate ${{ steps.set-schema.outputs.schema }} 66 | - run: yarn prisma db push ${{ steps.set-schema.outputs.schema }} 67 | 68 | - run: yarn build 69 | - run: yarn test 70 | -------------------------------------------------------------------------------- /.github/workflows/documentation-release.yaml: -------------------------------------------------------------------------------- 1 | name: Documentation release 2 | 3 | on: 4 | workflow_run: 5 | workflows: ["CI"] 6 | types: 7 | - completed 8 | branches: 9 | - master 10 | 11 | jobs: 12 | release: 13 | runs-on: ubuntu-latest 14 | 15 | steps: 16 | - uses: actions/checkout@v4 17 | 18 | - uses: actions/setup-node@v4 19 | with: 20 | node-version: lts/* 21 | cache: "yarn" 22 | 23 | - run: yarn install 24 | - run: yarn docs 25 | 26 | - uses: peaceiris/actions-gh-pages@v4 27 | with: 28 | github_token: ${{ secrets.GITHUB_TOKEN }} 29 | publish_dir: ./docs 30 | -------------------------------------------------------------------------------- /.github/workflows/semantic-release.yaml: -------------------------------------------------------------------------------- 1 | name: semantic-release 2 | 3 | on: 4 | workflow_run: 5 | workflows: ["CI"] 6 | types: 7 | - completed 8 | branches: 9 | - master 10 | 11 | jobs: 12 | release: 13 | runs-on: ubuntu-latest 14 | steps: 15 | - uses: actions/checkout@v4 16 | with: 17 | fetch-depth: 0 18 | 19 | - uses: actions/setup-node@v4 20 | with: 21 | node-version: lts/* 22 | 23 | - run: yarn install 24 | - run: yarn build 25 | - run: npx semantic-release 26 | env: 27 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 28 | NPM_TOKEN: ${{ secrets.NPM_TOKEN }} 29 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by https://www.toptal.com/developers/gitignore/api/node 2 | # Edit at https://www.toptal.com/developers/gitignore?templates=node 3 | 4 | ### Node ### 5 | # Logs 6 | logs 7 | *.log 8 | npm-debug.log* 9 | yarn-debug.log* 10 | yarn-error.log* 11 | lerna-debug.log* 12 | .pnpm-debug.log* 13 | 14 | # Diagnostic reports (https://nodejs.org/api/report.html) 15 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 16 | 17 | # Runtime data 18 | pids 19 | *.pid 20 | *.seed 21 | *.pid.lock 22 | 23 | # VSCode 24 | 25 | .vscode 26 | 27 | # Directory for instrumented libs generated by jscoverage/JSCover 28 | lib-cov 29 | 30 | # Coverage directory used by tools like istanbul 31 | coverage 32 | *.lcov 33 | 34 | # nyc test coverage 35 | .nyc_output 36 | 37 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 38 | .grunt 39 | 40 | # Bower dependency directory (https://bower.io/) 41 | bower_components 42 | 43 | # node-waf configuration 44 | .lock-wscript 45 | 46 | # Compiled binary addons (https://nodejs.org/api/addons.html) 47 | build/Release 48 | 49 | # Dependency directories 50 | node_modules/ 51 | jspm_packages/ 52 | 53 | # Snowpack dependency directory (https://snowpack.dev/) 54 | web_modules/ 55 | 56 | # TypeScript cache 57 | *.tsbuildinfo 58 | 59 | # Typedoc 60 | docs/ 61 | 62 | # Optional npm cache directory 63 | .npm 64 | 65 | # Optional eslint cache 66 | .eslintcache 67 | 68 | # Optional stylelint cache 69 | .stylelintcache 70 | 71 | # Microbundle cache 72 | .rpt2_cache/ 73 | .rts2_cache_cjs/ 74 | .rts2_cache_es/ 75 | .rts2_cache_umd/ 76 | 77 | # Optional REPL history 78 | .node_repl_history 79 | 80 | # Output of 'npm pack' 81 | *.tgz 82 | 83 | # Yarn Integrity file 84 | .yarn-integrity 85 | 86 | # dotenv environment variable files 87 | .env 88 | .env.development.local 89 | .env.test.local 90 | .env.production.local 91 | .env.local 92 | 93 | # parcel-bundler cache (https://parceljs.org/) 94 | .cache 95 | .parcel-cache 96 | 97 | # Next.js build output 98 | .next 99 | out 100 | 101 | # Nuxt.js build / generate output 102 | .nuxt 103 | dist 104 | 105 | # Gatsby files 106 | .cache/ 107 | # Comment in the public line in if your project uses Gatsby and not Next.js 108 | # https://nextjs.org/blog/next-9-1#public-directory-support 109 | # public 110 | 111 | # vuepress build output 112 | .vuepress/dist 113 | 114 | # vuepress v2.x temp and cache directory 115 | .temp 116 | 117 | # Docusaurus cache and generated files 118 | .docusaurus 119 | 120 | # Serverless directories 121 | .serverless/ 122 | 123 | # FuseBox cache 124 | .fusebox/ 125 | 126 | # DynamoDB Local files 127 | .dynamodb/ 128 | 129 | # TernJS port file 130 | .tern-port 131 | 132 | # Stores VSCode versions used for testing VSCode extensions 133 | .vscode-test 134 | 135 | # yarn v2 136 | .yarn/cache 137 | .yarn/unplugged 138 | .yarn/build-state.yml 139 | .yarn/install-state.gz 140 | .pnp.* 141 | 142 | ### Node Patch ### 143 | # Serverless Webpack directories 144 | .webpack/ 145 | 146 | # Optional stylelint cache 147 | 148 | # SvelteKit build / generate output 149 | .svelte-kit 150 | 151 | # End of https://www.toptal.com/developers/gitignore/api/node 152 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 1, 3 | "useTabs": true, 4 | "semi": true, 5 | "trailingComma": "all" 6 | } 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 📖 prisma-paginate 2 | 3 | | [![npm version](https://badge.fury.io/js/prisma-paginate.svg)](https://badge.fury.io/js/prisma-paginate) | [![CI](https://github.com/sandrewTx08/prisma-paginate/actions/workflows/ci.yaml/badge.svg)](https://github.com/sandrewTx08/prisma-paginate/actions/workflows/ci.yaml) | [![pages-build-deployment](https://github.com/sandrewTx08/prisma-paginate/actions/workflows/pages/pages-build-deployment/badge.svg)](https://github.com/sandrewTx08/prisma-paginate/actions/workflows/pages/pages-build-deployment) | 4 | | -------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | 5 | 6 | # Install 7 | 8 | ```shell 9 | npm i prisma @prisma/client prisma-paginate@latest 10 | yarn add prisma @prisma/client prisma-paginate@latest 11 | ``` 12 | 13 | # Documentation and usage 14 | 15 | For more details and type definitions see: 16 | 17 | http://sandrewtx08.github.io/prisma-paginate/ 18 | 19 | ## Importing 20 | 21 | ```js 22 | // ESM 23 | import { PrismaClient } from "@prisma/client"; 24 | import { extension } from "prisma-paginate"; 25 | 26 | // Commonjs 27 | const { PrismaClient } = require("@prisma/client"); 28 | const { extension } = require("prisma-paginate"); 29 | ``` 30 | 31 | ## Applying extension 32 | 33 | ```js 34 | const prisma = new PrismaClient(); 35 | const xprisma = prisma.$extends(extension); 36 | 37 | xprisma.model2 38 | .paginate({ limit: 10, page: 1, select: { id: true } }) 39 | .then((result) => { 40 | console.log(result); 41 | }); 42 | 43 | xprisma.table1 44 | .paginate({ where: { id: 5 } }, { limit: 10, page: 1 }) 45 | .then((result) => { 46 | console.log(result); 47 | }); 48 | ``` 49 | 50 | ## Paginating 100 rows 51 | 52 | ```js 53 | // on database = [ { id: 1 }, { id: 2 }, {...}, { id: 100 } ] 54 | xprisma.model1 55 | .paginate( 56 | { 57 | where: { 58 | // query stuff... 59 | }, 60 | }, 61 | { page: 1, limit: 50 }, 62 | ) 63 | .then((result) => { 64 | console.log(result.result); // [ {...}, { id: 48 }, { id: 49 }, { id: 50 } ] 65 | }); 66 | ``` 67 | 68 | ## Paginating SQL queries 69 | 70 | ```ts 71 | const [{ count }] = await prisma.$queryRawUnsafe<[{ count: bigint }]>( 72 | 'SELECT COUNT(*) FROM "Model3";', 73 | ); 74 | 75 | const pagination = new Pagination(limit, page, Number(count)); 76 | ``` 77 | 78 | ```ts 79 | const data = await prisma.$queryRawUnsafe( 80 | 'SELECT name FROM "Model3" LIMIT $1 OFFSET $2;', 81 | limit, 82 | Pagination.offset(limit, page), 83 | ); 84 | ``` 85 | 86 | ## Parameters 87 | 88 | - `findManyArgs` {Object} 89 | - `paginationArgs` {Pagination&onCount?(pagination) => void} 90 | 91 | --- 92 | 93 | - `findManyPaginationArgs` {Object&Pagination} 94 | 95 | ## Return 96 | 97 | - `result` {Array} 98 | - `totalPages` {Number} 99 | - `hasNextPage` {Boolean} 100 | - `hasPrevPage` {Boolean} 101 | - `count` {Number} 102 | - `nextPage` {() => Promise} 103 | - `exceedCount` {Boolean} 104 | - `exceedTotalPages` {Boolean} 105 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('ts-jest').JestConfigWithTsJest} */ 2 | module.exports = { 3 | preset: "ts-jest", 4 | testEnvironment: "node", 5 | }; 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "prisma-paginate", 3 | "version": "0.2.1", 4 | "description": "Paginate ORM Prisma", 5 | "main": "dist/index.js", 6 | "types": "dist/index.d.ts", 7 | "files": [ 8 | "/dist" 9 | ], 10 | "keywords": [ 11 | "orm", 12 | "prisma", 13 | "paginate", 14 | "pagination" 15 | ], 16 | "scripts": { 17 | "test": "jest", 18 | "build": "tsc", 19 | "docs": "typedoc src/index.ts", 20 | "lint": "eslint ./src ./test --ext .ts", 21 | "prettier": "npx prettier 'src/**/*.{js,ts,mjs,cjs,json}' --write" 22 | }, 23 | "repository": { 24 | "type": "git", 25 | "url": "https://github.com/sandrewTx08/prisma-paginate.git" 26 | }, 27 | "author": "sandrewTx08", 28 | "license": "ISC", 29 | "bugs": { 30 | "url": "https://github.com/sandrewTx08/prisma-paginate/issues" 31 | }, 32 | "homepage": "https://github.com/sandrewTx08/prisma-paginate#readme", 33 | "devDependencies": { 34 | "@prisma/client": "6.6.0", 35 | "@types/jest": "^29.5.14", 36 | "@types/node": "^22.14.1", 37 | "@typescript-eslint/eslint-plugin": "^8.29.1", 38 | "@typescript-eslint/parser": "^8.29.1", 39 | "eslint": "^9.24.0", 40 | "jest": "^29.7.0", 41 | "prisma": "6.6.0", 42 | "ts-jest": "^29.3.2", 43 | "typedoc": "^0.28.2", 44 | "typescript": "^5.8.3" 45 | }, 46 | "peerDependencies": { 47 | "@prisma/client": ">=4.9.0", 48 | "prisma": ">=4.9.0" 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /prisma/schema-4-9-0.prisma: -------------------------------------------------------------------------------- 1 | // This is your Prisma schema file, 2 | // learn more about it in the docs: https://pris.ly/d/prisma-schema 3 | 4 | generator client { 5 | provider = "prisma-client-js" 6 | binaryTargets = ["debian-openssl-3.0.x", "debian-openssl-1.1.x", "windows"] 7 | previewFeatures = ["clientExtensions"] 8 | } 9 | 10 | datasource db { 11 | provider = "postgresql" 12 | url = env("DATABASE_URL") 13 | } 14 | 15 | model Model { 16 | id Int @id @default(autoincrement()) 17 | Model2 Model2[] 18 | } 19 | 20 | model Model2 { 21 | id Int @id @default(autoincrement()) 22 | Model Model? @relation(fields: [modelId], references: [id]) 23 | modelId Int? 24 | } 25 | 26 | model Model3 { 27 | id Int @id @default(autoincrement()) 28 | name String 29 | } 30 | -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- 1 | // This is your Prisma schema file, 2 | // learn more about it in the docs: https://pris.ly/d/prisma-schema 3 | 4 | generator client { 5 | provider = "prisma-client-js" 6 | binaryTargets = ["debian-openssl-3.0.x", "debian-openssl-1.1.x", "windows"] 7 | } 8 | 9 | datasource db { 10 | provider = "postgresql" 11 | url = env("DATABASE_URL") 12 | } 13 | 14 | model Model { 15 | id Int @id @default(autoincrement()) 16 | Model2 Model2[] 17 | } 18 | 19 | model Model2 { 20 | id Int @id @default(autoincrement()) 21 | Model Model? @relation(fields: [modelId], references: [id]) 22 | modelId Int? 23 | } 24 | 25 | model Model3 { 26 | id Int @id @default(autoincrement()) 27 | name String 28 | } 29 | -------------------------------------------------------------------------------- /src/Utils.ts: -------------------------------------------------------------------------------- 1 | export class Utils { 2 | static pick< 3 | Object extends Record, 4 | Keys extends ObjectKey[], 5 | ObjectKey extends keyof Object = keyof Object, 6 | >(object: Object, ...keys: Keys): Pick { 7 | const result: Partial = {}; 8 | for (const key of keys) if (key in object) result[key] = object[key]; 9 | return result as Pick; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/exceptions/ExceedCount.ts: -------------------------------------------------------------------------------- 1 | import { PaginationException } from ".."; 2 | import { IPagination } from "../pagination/IPagination"; 3 | 4 | export class ExceedCount extends Error implements PaginationException { 5 | constructor(readonly pagination: IPagination) { 6 | super("Pagination exceed count of rows"); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/exceptions/ExceedTotalPages.ts: -------------------------------------------------------------------------------- 1 | import { PaginationException } from ".."; 2 | import { IPagination } from "../pagination/IPagination"; 3 | 4 | export class ExceedTotalPages extends Error implements PaginationException { 5 | constructor(readonly pagination: IPagination) { 6 | super("Pagination exceed total of pages"); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/exceptions/PaginationException.ts: -------------------------------------------------------------------------------- 1 | import { IPagination } from "../pagination/IPagination"; 2 | 3 | export interface PaginationException { 4 | readonly pagination?: IPagination; 5 | } 6 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import { PrismaPaginate } from "./prisma/PrismaPaginate"; 2 | 3 | export { ExceedCount } from "./exceptions/ExceedCount"; 4 | export { ExceedTotalPages } from "./exceptions/ExceedTotalPages"; 5 | export { PaginationException } from "./exceptions/PaginationException"; 6 | export { IPagination } from "./pagination/IPagination"; 7 | export { Pagination } from "./pagination/Pagination"; 8 | export { PaginationArgs } from "./pagination/PaginationArgs"; 9 | export { PaginationOptions } from "./pagination/PaginationOptions"; 10 | export { PageArgs } from "./pagination/result/PageArgs"; 11 | export { PaginationResult } from "./pagination/result/PaginationResult"; 12 | export { IPaginationResult } from "./pagination/result/IPaginationResult"; 13 | 14 | export default PrismaPaginate.extension; 15 | export const extension = PrismaPaginate.extension; 16 | -------------------------------------------------------------------------------- /src/pagination/IPagination.ts: -------------------------------------------------------------------------------- 1 | import { PaginationArgs } from "./PaginationArgs"; 2 | 3 | export interface IPagination 4 | extends Required> { 5 | /** 6 | * Total of pages based on pagination arguments 7 | */ 8 | totalPages: number; 9 | /** 10 | * If has result on next page index 11 | */ 12 | hasNextPage: boolean; 13 | /** 14 | * If has result on last page index 15 | */ 16 | hasPrevPage: boolean; 17 | /** 18 | * Count how many rows on has on table/model with query filter 19 | */ 20 | count: number; 21 | } 22 | -------------------------------------------------------------------------------- /src/pagination/Pagination.ts: -------------------------------------------------------------------------------- 1 | import util from "util"; 2 | import { ExceedCount } from "../exceptions/ExceedCount"; 3 | import { ExceedTotalPages } from "../exceptions/ExceedTotalPages"; 4 | import { PageArgs } from "./result/PageArgs"; 5 | 6 | export class Pagination { 7 | constructor( 8 | public limit: number = NaN, 9 | public page: number = 1, 10 | public count: number = NaN, 11 | readonly exceedCount: boolean = false, 12 | readonly exceedTotalPages: boolean = false, 13 | ) { 14 | this.#validateExceedTotalPages(); 15 | this.#validateExceedCount(); 16 | } 17 | 18 | [util.inspect.custom]() { 19 | return this.toJSON(); 20 | } 21 | 22 | toJSON(): Omit { 23 | return { 24 | ...this, 25 | hasNextPage: this.hasNextPage, 26 | hasPrevPage: this.hasPrevPage, 27 | totalPages: this.totalPages, 28 | }; 29 | } 30 | 31 | get hasNextPage(): boolean { 32 | return this.page < this.totalPages; 33 | } 34 | 35 | get hasPrevPage(): boolean { 36 | return this.count > 0 && this.page > 1 && this.page <= this.totalPages + 1; 37 | } 38 | 39 | get totalPages(): number { 40 | return Math.ceil(this.count / this.limit); 41 | } 42 | 43 | #validateExceedTotalPages(): void { 44 | if (this.exceedTotalPages && this.page > this.totalPages) 45 | throw new ExceedTotalPages(this); 46 | } 47 | 48 | #validateExceedCount(): void { 49 | if (this.exceedCount && this.limit * this.page > this.count) 50 | throw new ExceedCount(this); 51 | } 52 | 53 | static extractCount(count: any): number { 54 | return typeof count === "number" 55 | ? count 56 | : Array.isArray(count) 57 | ? Number(count.at(0)?.count) 58 | : count?._all || count?._count || NaN; 59 | } 60 | 61 | static #offsetPage(page: PageArgs): number { 62 | return typeof page === "number" 63 | ? page > 0 64 | ? page - 1 65 | : page 66 | : typeof page.page === "number" 67 | ? Pagination.#offsetPage(page.page) 68 | : typeof page.pageIndex === "number" 69 | ? page.pageIndex 70 | : 0; 71 | } 72 | 73 | static offset(limit: number, page: PageArgs): number { 74 | return limit * Pagination.#offsetPage(page); 75 | } 76 | 77 | static initialPage(page: PageArgs): number { 78 | return typeof page === "number" 79 | ? page === 0 80 | ? 1 81 | : page 82 | : typeof page.page === "number" 83 | ? Pagination.initialPage(page.page) 84 | : typeof page.pageIndex === "number" 85 | ? page.pageIndex + 1 86 | : 1; 87 | } 88 | } 89 | -------------------------------------------------------------------------------- /src/pagination/PaginationArgs.ts: -------------------------------------------------------------------------------- 1 | import { PaginationOptions } from "./PaginationOptions"; 2 | 3 | export interface PaginationArgs extends Partial { 4 | /** 5 | * Paginate starting from 1 6 | * 7 | * If enabled it overwrite 'pageIndex' 8 | * 9 | * @see {@link PaginationArgs.pageIndex} 10 | * @default 1 11 | */ 12 | page?: number; 13 | /** 14 | * Paginate like array index staring from 0 15 | * 16 | * @see {@link PaginationArgs.page} 17 | * @default 0 18 | */ 19 | pageIndex?: number; 20 | /** 21 | * Limit how much rows to return 22 | */ 23 | limit: number; 24 | } 25 | -------------------------------------------------------------------------------- /src/pagination/PaginationOptions.ts: -------------------------------------------------------------------------------- 1 | export interface PaginationOptions { 2 | /** 3 | * @see {@link ExceedCount} 4 | * @default false 5 | */ 6 | exceedCount: boolean; 7 | /** 8 | * @default false 9 | * @see {@link ExceedTotalPages} 10 | */ 11 | exceedTotalPages: boolean; 12 | } 13 | -------------------------------------------------------------------------------- /src/pagination/result/IPaginationResult.ts: -------------------------------------------------------------------------------- 1 | import { IPagination } from "../IPagination"; 2 | 3 | export interface IPaginationResult 4 | extends IPagination { 5 | result: Result; 6 | } 7 | -------------------------------------------------------------------------------- /src/pagination/result/PageArgs.ts: -------------------------------------------------------------------------------- 1 | import { PaginationArgs } from "../PaginationArgs"; 2 | 3 | export type PageArgs = 4 | | Partial> 5 | | number; 6 | -------------------------------------------------------------------------------- /src/pagination/result/PaginationResult.ts: -------------------------------------------------------------------------------- 1 | import { Pagination } from "../Pagination"; 2 | import { PaginationArgs } from "../PaginationArgs"; 3 | import { IPaginationResult } from "./IPaginationResult"; 4 | 5 | export class PaginationResult 6 | extends Pagination 7 | implements IPaginationResult 8 | { 9 | result!: Result; 10 | readonly #model: any; 11 | 12 | constructor( 13 | model: any, 14 | ...pagination: ConstructorParameters 15 | ) { 16 | super(...pagination); 17 | this.#model = model; 18 | } 19 | 20 | nextPage(): Promise { 21 | return this.#model.paginate({ 22 | ...this, 23 | page: (this.page || 0) + 1, 24 | } as PaginationArgs); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/prisma/IPrismaPaginate.ts: -------------------------------------------------------------------------------- 1 | import { PrismaPaginateResult } from "./PrismaPaginateResult"; 2 | import { PrismaFindManyArgs } from "./PrismaFindManyArgs"; 3 | import { PrismaPaginationArgs } from "./PrismaPaginationArgs"; 4 | 5 | export interface IPrismaPaginate { 6 | name: "prisma-paginate"; 7 | model: { 8 | $allModels: { 9 | paginate( 10 | this: Model, 11 | args: PrismaFindManyArgs & PrismaPaginationArgs, 12 | ): PrismaPaginateResult; 13 | paginate( 14 | this: Model, 15 | args: PrismaFindManyArgs, 16 | paginationArgs: PrismaPaginationArgs, 17 | ): PrismaPaginateResult; 18 | }; 19 | }; 20 | } 21 | -------------------------------------------------------------------------------- /src/prisma/PrismaFindManyArgs.ts: -------------------------------------------------------------------------------- 1 | import { Prisma } from "@prisma/client"; 2 | 3 | export type PrismaFindManyArgs = Prisma.Exact< 4 | Args, 5 | Omit, "skip" | "take"> 6 | >; 7 | -------------------------------------------------------------------------------- /src/prisma/PrismaPaginate.ts: -------------------------------------------------------------------------------- 1 | import { Prisma } from "@prisma/client"; 2 | import { Utils } from "../Utils"; 3 | import { PaginationResult } from "../pagination/result/PaginationResult"; 4 | import { Pagination } from "../pagination/Pagination"; 5 | import { PrismaPaginateResult } from "./PrismaPaginateResult"; 6 | import { PrismaFindManyArgs } from "./PrismaFindManyArgs"; 7 | import { IPrismaPaginate } from "./IPrismaPaginate"; 8 | import { PrismaPaginationArgs } from "./PrismaPaginationArgs"; 9 | 10 | export class PrismaPaginate { 11 | readonly #model: any; 12 | readonly args: PrismaPaginationArgs & Record; 13 | 14 | constructor( 15 | model: Model, 16 | args: PrismaPaginationArgs & Record, 17 | paginationArgs?: PrismaPaginationArgs, 18 | ) { 19 | this.#model = model; 20 | this.args = { ...args, ...paginationArgs }; 21 | } 22 | 23 | result( 24 | count: number, 25 | ): PaginationResult> { 26 | return new PaginationResult>( 27 | this.#model, 28 | this.args.limit, 29 | Pagination.initialPage(this.args), 30 | Pagination.extractCount(count), 31 | this.args.exceedCount, 32 | this.args.exceedTotalPages, 33 | ); 34 | } 35 | 36 | count() { 37 | return this.#model.count(Utils.pick(this.args, "cursor", "where")); 38 | } 39 | 40 | findMany() { 41 | return this.#model.findMany({ 42 | ...Utils.pick( 43 | this.args, 44 | "distinct", 45 | "orderBy", 46 | "include", 47 | "select", 48 | "where", 49 | "take", 50 | ), 51 | skip: Pagination.offset(this.args.limit, this.args), 52 | take: this.args.limit, 53 | }); 54 | } 55 | 56 | static async paginate( 57 | this: Model, 58 | args: PrismaFindManyArgs & PrismaPaginationArgs, 59 | paginationArgs?: PrismaPaginationArgs, 60 | ): PrismaPaginateResult { 61 | const paginateExtension = new PrismaPaginate( 62 | this, 63 | args, 64 | paginationArgs, 65 | ); 66 | const count = await paginateExtension.count(); 67 | const pagination = paginateExtension.result(count); 68 | if (paginateExtension.args.onCount) 69 | await paginateExtension.args.onCount(pagination); 70 | pagination.result = await paginateExtension.findMany(); 71 | return pagination; 72 | } 73 | 74 | static extension: IPrismaPaginate = 75 | Prisma.getExtensionContext({ 76 | name: "prisma-paginate", 77 | model: { 78 | $allModels: { 79 | paginate: PrismaPaginate.paginate, 80 | }, 81 | }, 82 | }); 83 | } 84 | -------------------------------------------------------------------------------- /src/prisma/PrismaPaginateResult.ts: -------------------------------------------------------------------------------- 1 | import { Prisma } from "@prisma/client"; 2 | import { PaginationResult } from "../pagination/result/PaginationResult"; 3 | 4 | export type PrismaPaginateResult = Promise< 5 | PaginationResult> 6 | >; 7 | -------------------------------------------------------------------------------- /src/prisma/PrismaPaginationArgs.ts: -------------------------------------------------------------------------------- 1 | import { Pagination } from "../pagination/Pagination"; 2 | import { PaginationArgs } from "../pagination/PaginationArgs"; 3 | 4 | export interface PrismaPaginationArgs extends PaginationArgs { 5 | /** 6 | * Aborts the query when error is thrown 7 | * @param pagination 8 | */ 9 | onCount?(pagination: Pagination): void; 10 | } 11 | -------------------------------------------------------------------------------- /test/extension.test.ts: -------------------------------------------------------------------------------- 1 | import { PrismaClient } from "@prisma/client"; 2 | import { 3 | ExceedCount, 4 | ExceedTotalPages, 5 | extension, 6 | Pagination, 7 | PaginationResult, 8 | } from "../src"; 9 | import { createRandomArray } from "./utils"; 10 | 11 | describe("extension", () => { 12 | const prisma = new PrismaClient(); 13 | const xprisma = prisma.$extends(extension); 14 | const randomIds = createRandomArray(100).map((id) => ({ 15 | id, 16 | })); 17 | 18 | beforeAll(async () => { 19 | await prisma.$connect(); 20 | await prisma.model.deleteMany(); 21 | await prisma.model.createMany({ data: randomIds }); 22 | }); 23 | 24 | afterAll(async () => { 25 | await prisma.model.deleteMany(); 26 | await prisma.$disconnect(); 27 | }); 28 | 29 | it("ExceedCount", async () => { 30 | await Promise.all([ 31 | expect( 32 | xprisma.model.paginate({ 33 | limit: randomIds.length + 1, 34 | page: 1, 35 | exceedCount: true, 36 | }), 37 | ).rejects.toThrow(ExceedCount), 38 | 39 | expect( 40 | xprisma.model.paginate({ 41 | limit: randomIds.length - 2, 42 | page: 1, 43 | exceedCount: true, 44 | }), 45 | ).resolves.toMatchObject({ 46 | exceedCount: true, 47 | exceedTotalPages: false, 48 | }), 49 | ]); 50 | }); 51 | 52 | it("ExceedTotalPages", async () => { 53 | await Promise.all([ 54 | expect( 55 | xprisma.model.paginate({ 56 | limit: 1, 57 | page: randomIds.length + 1, 58 | exceedTotalPages: true, 59 | }), 60 | ).rejects.toThrow(ExceedTotalPages), 61 | 62 | expect( 63 | xprisma.model.paginate({ 64 | limit: 1, 65 | page: randomIds.length - 2, 66 | exceedTotalPages: true, 67 | }), 68 | ).resolves.toMatchObject({ 69 | exceedCount: false, 70 | exceedTotalPages: true, 71 | }), 72 | ]); 73 | }); 74 | 75 | it("page == 0", async () => { 76 | const result = await xprisma.model.paginate({ limit: 1, page: 0 }); 77 | 78 | expect(result.result).toStrictEqual([randomIds.at(0)]); 79 | expect(result.count).toBe(randomIds.length); 80 | expect(result.hasNextPage).toBe(true); 81 | expect(result.hasPrevPage).toBe(false); 82 | expect(result.limit).toBe(1); 83 | expect(result.page).toBe(1); 84 | expect(result.totalPages).toBe(randomIds.length); 85 | }); 86 | 87 | it("page == 1", async () => { 88 | const result = await xprisma.model.paginate({}, { limit: 1, page: 1 }); 89 | 90 | expect(result.result).toStrictEqual([randomIds.at(0)]); 91 | expect(result.count).toBe(randomIds.length); 92 | expect(result.hasNextPage).toBe(true); 93 | expect(result.hasPrevPage).toBe(false); 94 | expect(result.limit).toBe(1); 95 | expect(result.page).toBe(1); 96 | expect(result.totalPages).toBe(randomIds.length); 97 | }); 98 | 99 | it("page == totalPages", async () => { 100 | const result = await xprisma.model.paginate({ 101 | limit: 1, 102 | page: randomIds.length, 103 | }); 104 | 105 | expect(result.result).toStrictEqual([randomIds.at(-1)]); 106 | expect(result.count).toBe(randomIds.length); 107 | expect(result.hasNextPage).toBe(false); 108 | expect(result.hasPrevPage).toBe(true); 109 | expect(result.limit).toBe(1); 110 | expect(result.page).toBe(randomIds.length); 111 | expect(result.totalPages).toBe(randomIds.length); 112 | }); 113 | 114 | it("page == totalPages + 1", async () => { 115 | const result = await xprisma.model.paginate( 116 | {}, 117 | { limit: 1, page: randomIds.length + 1 }, 118 | ); 119 | 120 | expect(result.result).toStrictEqual([]); 121 | expect(result.count).toBe(randomIds.length); 122 | expect(result.hasNextPage).toBe(false); 123 | expect(result.hasPrevPage).toBe(true); 124 | expect(result.limit).toBe(1); 125 | expect(result.page).toBe(randomIds.length + 1); 126 | expect(result.totalPages).toBe(randomIds.length); 127 | }); 128 | 129 | it("page == totalPages + 2", async () => { 130 | const result = await xprisma.model.paginate( 131 | {}, 132 | { limit: 1, page: randomIds.length + 2 }, 133 | ); 134 | 135 | expect(result.result).toStrictEqual([]); 136 | expect(result.count).toBe(randomIds.length); 137 | expect(result.hasNextPage).toBe(false); 138 | expect(result.hasPrevPage).toBe(false); 139 | expect(result.limit).toBe(1); 140 | expect(result.page).toBe(randomIds.length + 2); 141 | expect(result.totalPages).toBe(randomIds.length); 142 | }); 143 | 144 | it("toJSON", async () => { 145 | const result = await xprisma.model.paginate({}, { limit: 1, page: 1 }); 146 | 147 | expect(result.toJSON()).toStrictEqual({ 148 | count: randomIds.length, 149 | exceedCount: false, 150 | exceedTotalPages: false, 151 | hasNextPage: true, 152 | hasPrevPage: false, 153 | limit: 1, 154 | page: 1, 155 | result: [{ id: 0 }], 156 | totalPages: randomIds.length, 157 | }); 158 | }); 159 | 160 | it("offset", async () => { 161 | const random = createRandomArray(100).map((randomId) => ({ 162 | id: randomId, 163 | name: randomId.toString(), 164 | })); 165 | 166 | const limit = 10; 167 | const page = 5; 168 | 169 | await xprisma.model3.createMany({ data: random }); 170 | 171 | const [{ count }] = await xprisma.$queryRawUnsafe<[{ count: bigint }]>( 172 | 'SELECT COUNT(*) FROM "Model3";', 173 | ); 174 | 175 | const data = await xprisma.$queryRawUnsafe( 176 | 'SELECT name FROM "Model3" LIMIT $1 OFFSET $2;', 177 | limit, 178 | Pagination.offset(limit, page), 179 | ); 180 | 181 | const result = new PaginationResult( 182 | prisma.model3, 183 | limit, 184 | page, 185 | Number(count), 186 | false, 187 | false, 188 | ); 189 | 190 | expect(data.at(0)).toStrictEqual({ name: "40" }); 191 | expect(data.at(-1)).toStrictEqual({ name: "49" }); 192 | expect(result.page).toBe(page); 193 | expect(result.totalPages).toBe(10); 194 | 195 | await prisma.model3.deleteMany(); 196 | }); 197 | 198 | it("nextPage", async () => { 199 | const firstResult = await xprisma.model.paginate( 200 | {}, 201 | { limit: randomIds.length / 2 }, 202 | ); 203 | 204 | expect(firstResult.result.at(0)).toStrictEqual({ id: 0 }); 205 | expect(firstResult.count).toBe(randomIds.length); 206 | expect(firstResult.hasNextPage).toBe(true); 207 | expect(firstResult.hasPrevPage).toBe(false); 208 | expect(firstResult.limit).toBe(randomIds.length / 2); 209 | expect(firstResult.page).toBe(1); 210 | expect(firstResult.totalPages).toBe(2); 211 | 212 | const secondResult = await firstResult.nextPage(); 213 | 214 | expect(secondResult.result.at(0)).toStrictEqual({ id: 50 }); 215 | expect(secondResult.count).toBe(randomIds.length); 216 | expect(secondResult.hasNextPage).toBe(false); 217 | expect(secondResult.hasPrevPage).toBe(true); 218 | expect(secondResult.limit).toBe(randomIds.length / 2); 219 | expect(secondResult.page).toBe(2); 220 | expect(secondResult.totalPages).toBe(2); 221 | }); 222 | 223 | it("model.count & model.findMany + orderBy", async () => { 224 | expect( 225 | xprisma.model.paginate({ 226 | limit: 100, 227 | orderBy: { 228 | id: "asc", 229 | Model2: { 230 | _count: "desc", 231 | }, 232 | }, 233 | }), 234 | ).rejects.toThrow(Error); 235 | }); 236 | }); 237 | -------------------------------------------------------------------------------- /test/utils.ts: -------------------------------------------------------------------------------- 1 | export function createRandomArray(length = 100) { 2 | return Array.from({ length }, (_, i) => i); 3 | } 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "include": ["src/**/*"], 3 | "exclude": ["node_modules"], 4 | "compilerOptions": { 5 | /* Visit https://aka.ms/tsconfig to read more about this file */ 6 | 7 | /* Projects */ 8 | // "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */ 9 | // "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */ 10 | // "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */ 11 | // "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */ 12 | // "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */ 13 | // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */ 14 | 15 | /* Language and Environment */ 16 | "target": "es2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ 17 | // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ 18 | // "jsx": "preserve", /* Specify what JSX code is generated. */ 19 | // "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */ 20 | // "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */ 21 | // "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'. */ 22 | // "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */ 23 | // "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'. */ 24 | // "reactNamespace": "", /* Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit. */ 25 | // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */ 26 | // "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */ 27 | // "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */ 28 | 29 | /* Modules */ 30 | "module": "commonjs", /* Specify what module code is generated. */ 31 | // "rootDir": "./", /* Specify the root folder within your source files. */ 32 | // "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */ 33 | // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ 34 | // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ 35 | // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ 36 | // "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */ 37 | // "types": [], /* Specify type package names to be included without being referenced in a source file. */ 38 | // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ 39 | // "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */ 40 | // "resolveJsonModule": true, /* Enable importing .json files. */ 41 | // "noResolve": true, /* Disallow 'import's, 'require's or ''s from expanding the number of files TypeScript should add to a project. */ 42 | 43 | /* JavaScript Support */ 44 | // "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */ 45 | // "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */ 46 | // "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */ 47 | 48 | /* Emit */ 49 | "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ 50 | // "declarationMap": true, /* Create sourcemaps for d.ts files. */ 51 | // "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */ 52 | // "sourceMap": true, /* Create source map files for emitted JavaScript files. */ 53 | // "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */ 54 | "outDir": "./dist", /* Specify an output folder for all emitted files. */ 55 | // "removeComments": true, /* Disable emitting comments. */ 56 | // "noEmit": true, /* Disable emitting files from a compilation. */ 57 | // "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */ 58 | // "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types. */ 59 | // "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */ 60 | // "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */ 61 | // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ 62 | // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */ 63 | // "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */ 64 | // "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */ 65 | // "newLine": "crlf", /* Set the newline character for emitting files. */ 66 | // "stripInternal": true, /* Disable emitting declarations that have '@internal' in their JSDoc comments. */ 67 | // "noEmitHelpers": true, /* Disable generating custom helper functions like '__extends' in compiled output. */ 68 | // "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */ 69 | // "preserveConstEnums": true, /* Disable erasing 'const enum' declarations in generated code. */ 70 | // "declarationDir": "./", /* Specify the output directory for generated declaration files. */ 71 | // "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */ 72 | 73 | /* Interop Constraints */ 74 | // "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */ 75 | // "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */ 76 | "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */ 77 | // "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */ 78 | "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */ 79 | 80 | /* Type Checking */ 81 | "strict": true, /* Enable all strict type-checking options. */ 82 | // "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */ 83 | // "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */ 84 | // "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */ 85 | // "strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */ 86 | // "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */ 87 | // "noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */ 88 | // "useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */ 89 | // "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */ 90 | // "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */ 91 | // "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */ 92 | // "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */ 93 | // "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */ 94 | // "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */ 95 | // "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */ 96 | // "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */ 97 | // "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */ 98 | // "allowUnusedLabels": true, /* Disable error reporting for unused labels. */ 99 | // "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */ 100 | 101 | /* Completeness */ 102 | // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ 103 | "skipLibCheck": true /* Skip type checking all .d.ts files. */ 104 | } 105 | } 106 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@aashutoshrathi/word-wrap@^1.2.3": 6 | version "1.2.6" 7 | resolved "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz" 8 | integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== 9 | 10 | "@ampproject/remapping@^2.1.0": 11 | version "2.2.0" 12 | resolved "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz" 13 | integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w== 14 | dependencies: 15 | "@jridgewell/gen-mapping" "^0.1.0" 16 | "@jridgewell/trace-mapping" "^0.3.9" 17 | 18 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.18.6": 19 | version "7.18.6" 20 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz" 21 | integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== 22 | dependencies: 23 | "@babel/highlight" "^7.18.6" 24 | 25 | "@babel/compat-data@^7.20.5": 26 | version "7.20.10" 27 | resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.10.tgz" 28 | integrity sha512-sEnuDPpOJR/fcafHMjpcpGN5M2jbUGUHwmuWKM/YdPzeEDJg8bgmbcWQFUfE32MQjti1koACvoPVsDe8Uq+idg== 29 | 30 | "@babel/core@^7.11.6", "@babel/core@^7.12.3": 31 | version "7.20.12" 32 | resolved "https://registry.npmjs.org/@babel/core/-/core-7.20.12.tgz" 33 | integrity sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg== 34 | dependencies: 35 | "@ampproject/remapping" "^2.1.0" 36 | "@babel/code-frame" "^7.18.6" 37 | "@babel/generator" "^7.20.7" 38 | "@babel/helper-compilation-targets" "^7.20.7" 39 | "@babel/helper-module-transforms" "^7.20.11" 40 | "@babel/helpers" "^7.20.7" 41 | "@babel/parser" "^7.20.7" 42 | "@babel/template" "^7.20.7" 43 | "@babel/traverse" "^7.20.12" 44 | "@babel/types" "^7.20.7" 45 | convert-source-map "^1.7.0" 46 | debug "^4.1.0" 47 | gensync "^1.0.0-beta.2" 48 | json5 "^2.2.2" 49 | semver "^6.3.0" 50 | 51 | "@babel/generator@^7.20.7", "@babel/generator@^7.7.2": 52 | version "7.20.7" 53 | resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.20.7.tgz" 54 | integrity sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw== 55 | dependencies: 56 | "@babel/types" "^7.20.7" 57 | "@jridgewell/gen-mapping" "^0.3.2" 58 | jsesc "^2.5.1" 59 | 60 | "@babel/helper-compilation-targets@^7.20.7": 61 | version "7.20.7" 62 | resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz" 63 | integrity sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ== 64 | dependencies: 65 | "@babel/compat-data" "^7.20.5" 66 | "@babel/helper-validator-option" "^7.18.6" 67 | browserslist "^4.21.3" 68 | lru-cache "^5.1.1" 69 | semver "^6.3.0" 70 | 71 | "@babel/helper-environment-visitor@^7.18.9": 72 | version "7.18.9" 73 | resolved "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz" 74 | integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg== 75 | 76 | "@babel/helper-function-name@^7.19.0": 77 | version "7.19.0" 78 | resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz" 79 | integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w== 80 | dependencies: 81 | "@babel/template" "^7.18.10" 82 | "@babel/types" "^7.19.0" 83 | 84 | "@babel/helper-hoist-variables@^7.18.6": 85 | version "7.18.6" 86 | resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz" 87 | integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== 88 | dependencies: 89 | "@babel/types" "^7.18.6" 90 | 91 | "@babel/helper-module-imports@^7.18.6": 92 | version "7.18.6" 93 | resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz" 94 | integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA== 95 | dependencies: 96 | "@babel/types" "^7.18.6" 97 | 98 | "@babel/helper-module-transforms@^7.20.11": 99 | version "7.20.11" 100 | resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz" 101 | integrity sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg== 102 | dependencies: 103 | "@babel/helper-environment-visitor" "^7.18.9" 104 | "@babel/helper-module-imports" "^7.18.6" 105 | "@babel/helper-simple-access" "^7.20.2" 106 | "@babel/helper-split-export-declaration" "^7.18.6" 107 | "@babel/helper-validator-identifier" "^7.19.1" 108 | "@babel/template" "^7.20.7" 109 | "@babel/traverse" "^7.20.10" 110 | "@babel/types" "^7.20.7" 111 | 112 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.8.0": 113 | version "7.20.2" 114 | resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz" 115 | integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ== 116 | 117 | "@babel/helper-simple-access@^7.20.2": 118 | version "7.20.2" 119 | resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz" 120 | integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA== 121 | dependencies: 122 | "@babel/types" "^7.20.2" 123 | 124 | "@babel/helper-split-export-declaration@^7.18.6": 125 | version "7.18.6" 126 | resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz" 127 | integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== 128 | dependencies: 129 | "@babel/types" "^7.18.6" 130 | 131 | "@babel/helper-string-parser@^7.19.4": 132 | version "7.19.4" 133 | resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz" 134 | integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw== 135 | 136 | "@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": 137 | version "7.19.1" 138 | resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz" 139 | integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== 140 | 141 | "@babel/helper-validator-option@^7.18.6": 142 | version "7.18.6" 143 | resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz" 144 | integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw== 145 | 146 | "@babel/helpers@^7.20.7": 147 | version "7.20.13" 148 | resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.13.tgz" 149 | integrity sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg== 150 | dependencies: 151 | "@babel/template" "^7.20.7" 152 | "@babel/traverse" "^7.20.13" 153 | "@babel/types" "^7.20.7" 154 | 155 | "@babel/highlight@^7.18.6": 156 | version "7.18.6" 157 | resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz" 158 | integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== 159 | dependencies: 160 | "@babel/helper-validator-identifier" "^7.18.6" 161 | chalk "^2.0.0" 162 | js-tokens "^4.0.0" 163 | 164 | "@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.13", "@babel/parser@^7.20.7": 165 | version "7.20.13" 166 | resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.20.13.tgz" 167 | integrity sha512-gFDLKMfpiXCsjt4za2JA9oTMn70CeseCehb11kRZgvd7+F67Hih3OHOK24cRrWECJ/ljfPGac6ygXAs/C8kIvw== 168 | 169 | "@babel/plugin-syntax-async-generators@^7.8.4": 170 | version "7.8.4" 171 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz" 172 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 173 | dependencies: 174 | "@babel/helper-plugin-utils" "^7.8.0" 175 | 176 | "@babel/plugin-syntax-bigint@^7.8.3": 177 | version "7.8.3" 178 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz" 179 | integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== 180 | dependencies: 181 | "@babel/helper-plugin-utils" "^7.8.0" 182 | 183 | "@babel/plugin-syntax-class-properties@^7.8.3": 184 | version "7.12.13" 185 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz" 186 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== 187 | dependencies: 188 | "@babel/helper-plugin-utils" "^7.12.13" 189 | 190 | "@babel/plugin-syntax-import-meta@^7.8.3": 191 | version "7.10.4" 192 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz" 193 | integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== 194 | dependencies: 195 | "@babel/helper-plugin-utils" "^7.10.4" 196 | 197 | "@babel/plugin-syntax-json-strings@^7.8.3": 198 | version "7.8.3" 199 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz" 200 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 201 | dependencies: 202 | "@babel/helper-plugin-utils" "^7.8.0" 203 | 204 | "@babel/plugin-syntax-jsx@^7.7.2": 205 | version "7.18.6" 206 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz" 207 | integrity sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q== 208 | dependencies: 209 | "@babel/helper-plugin-utils" "^7.18.6" 210 | 211 | "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": 212 | version "7.10.4" 213 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz" 214 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== 215 | dependencies: 216 | "@babel/helper-plugin-utils" "^7.10.4" 217 | 218 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": 219 | version "7.8.3" 220 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz" 221 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 222 | dependencies: 223 | "@babel/helper-plugin-utils" "^7.8.0" 224 | 225 | "@babel/plugin-syntax-numeric-separator@^7.8.3": 226 | version "7.10.4" 227 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz" 228 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== 229 | dependencies: 230 | "@babel/helper-plugin-utils" "^7.10.4" 231 | 232 | "@babel/plugin-syntax-object-rest-spread@^7.8.3": 233 | version "7.8.3" 234 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz" 235 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 236 | dependencies: 237 | "@babel/helper-plugin-utils" "^7.8.0" 238 | 239 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3": 240 | version "7.8.3" 241 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz" 242 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 243 | dependencies: 244 | "@babel/helper-plugin-utils" "^7.8.0" 245 | 246 | "@babel/plugin-syntax-optional-chaining@^7.8.3": 247 | version "7.8.3" 248 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz" 249 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 250 | dependencies: 251 | "@babel/helper-plugin-utils" "^7.8.0" 252 | 253 | "@babel/plugin-syntax-top-level-await@^7.8.3": 254 | version "7.14.5" 255 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz" 256 | integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== 257 | dependencies: 258 | "@babel/helper-plugin-utils" "^7.14.5" 259 | 260 | "@babel/plugin-syntax-typescript@^7.7.2": 261 | version "7.20.0" 262 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz" 263 | integrity sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ== 264 | dependencies: 265 | "@babel/helper-plugin-utils" "^7.19.0" 266 | 267 | "@babel/template@^7.18.10", "@babel/template@^7.20.7", "@babel/template@^7.3.3": 268 | version "7.20.7" 269 | resolved "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz" 270 | integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw== 271 | dependencies: 272 | "@babel/code-frame" "^7.18.6" 273 | "@babel/parser" "^7.20.7" 274 | "@babel/types" "^7.20.7" 275 | 276 | "@babel/traverse@^7.20.10", "@babel/traverse@^7.20.12", "@babel/traverse@^7.20.13": 277 | version "7.20.13" 278 | resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.13.tgz" 279 | integrity sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ== 280 | dependencies: 281 | "@babel/code-frame" "^7.18.6" 282 | "@babel/generator" "^7.20.7" 283 | "@babel/helper-environment-visitor" "^7.18.9" 284 | "@babel/helper-function-name" "^7.19.0" 285 | "@babel/helper-hoist-variables" "^7.18.6" 286 | "@babel/helper-split-export-declaration" "^7.18.6" 287 | "@babel/parser" "^7.20.13" 288 | "@babel/types" "^7.20.7" 289 | debug "^4.1.0" 290 | globals "^11.1.0" 291 | 292 | "@babel/types@^7.0.0", "@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.20.2", "@babel/types@^7.20.7", "@babel/types@^7.3.0", "@babel/types@^7.3.3": 293 | version "7.20.7" 294 | resolved "https://registry.npmjs.org/@babel/types/-/types-7.20.7.tgz" 295 | integrity sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg== 296 | dependencies: 297 | "@babel/helper-string-parser" "^7.19.4" 298 | "@babel/helper-validator-identifier" "^7.19.1" 299 | to-fast-properties "^2.0.0" 300 | 301 | "@bcoe/v8-coverage@^0.2.3": 302 | version "0.2.3" 303 | resolved "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz" 304 | integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== 305 | 306 | "@esbuild/aix-ppc64@0.25.2": 307 | version "0.25.2" 308 | resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.2.tgz#b87036f644f572efb2b3c75746c97d1d2d87ace8" 309 | integrity sha512-wCIboOL2yXZym2cgm6mlA742s9QeJ8DjGVaL39dLN4rRwrOgOyYSnOaFPhKZGLb2ngj4EyfAFjsNJwPXZvseag== 310 | 311 | "@esbuild/android-arm64@0.25.2": 312 | version "0.25.2" 313 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.2.tgz#5ca7dc20a18f18960ad8d5e6ef5cf7b0a256e196" 314 | integrity sha512-5ZAX5xOmTligeBaeNEPnPaeEuah53Id2tX4c2CVP3JaROTH+j4fnfHCkr1PjXMd78hMst+TlkfKcW/DlTq0i4w== 315 | 316 | "@esbuild/android-arm@0.25.2": 317 | version "0.25.2" 318 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.2.tgz#3c49f607b7082cde70c6ce0c011c362c57a194ee" 319 | integrity sha512-NQhH7jFstVY5x8CKbcfa166GoV0EFkaPkCKBQkdPJFvo5u+nGXLEH/ooniLb3QI8Fk58YAx7nsPLozUWfCBOJA== 320 | 321 | "@esbuild/android-x64@0.25.2": 322 | version "0.25.2" 323 | resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.2.tgz#8a00147780016aff59e04f1036e7cb1b683859e2" 324 | integrity sha512-Ffcx+nnma8Sge4jzddPHCZVRvIfQ0kMsUsCMcJRHkGJ1cDmhe4SsrYIjLUKn1xpHZybmOqCWwB0zQvsjdEHtkg== 325 | 326 | "@esbuild/darwin-arm64@0.25.2": 327 | version "0.25.2" 328 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.2.tgz#486efe7599a8d90a27780f2bb0318d9a85c6c423" 329 | integrity sha512-MpM6LUVTXAzOvN4KbjzU/q5smzryuoNjlriAIx+06RpecwCkL9JpenNzpKd2YMzLJFOdPqBpuub6eVRP5IgiSA== 330 | 331 | "@esbuild/darwin-x64@0.25.2": 332 | version "0.25.2" 333 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.2.tgz#95ee222aacf668c7a4f3d7ee87b3240a51baf374" 334 | integrity sha512-5eRPrTX7wFyuWe8FqEFPG2cU0+butQQVNcT4sVipqjLYQjjh8a8+vUTfgBKM88ObB85ahsnTwF7PSIt6PG+QkA== 335 | 336 | "@esbuild/freebsd-arm64@0.25.2": 337 | version "0.25.2" 338 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.2.tgz#67efceda8554b6fc6a43476feba068fb37fa2ef6" 339 | integrity sha512-mLwm4vXKiQ2UTSX4+ImyiPdiHjiZhIaE9QvC7sw0tZ6HoNMjYAqQpGyui5VRIi5sGd+uWq940gdCbY3VLvsO1w== 340 | 341 | "@esbuild/freebsd-x64@0.25.2": 342 | version "0.25.2" 343 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.2.tgz#88a9d7ecdd3adadbfe5227c2122d24816959b809" 344 | integrity sha512-6qyyn6TjayJSwGpm8J9QYYGQcRgc90nmfdUb0O7pp1s4lTY+9D0H9O02v5JqGApUyiHOtkz6+1hZNvNtEhbwRQ== 345 | 346 | "@esbuild/linux-arm64@0.25.2": 347 | version "0.25.2" 348 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.2.tgz#87be1099b2bbe61282333b084737d46bc8308058" 349 | integrity sha512-gq/sjLsOyMT19I8obBISvhoYiZIAaGF8JpeXu1u8yPv8BE5HlWYobmlsfijFIZ9hIVGYkbdFhEqC0NvM4kNO0g== 350 | 351 | "@esbuild/linux-arm@0.25.2": 352 | version "0.25.2" 353 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.2.tgz#72a285b0fe64496e191fcad222185d7bf9f816f6" 354 | integrity sha512-UHBRgJcmjJv5oeQF8EpTRZs/1knq6loLxTsjc3nxO9eXAPDLcWW55flrMVc97qFPbmZP31ta1AZVUKQzKTzb0g== 355 | 356 | "@esbuild/linux-ia32@0.25.2": 357 | version "0.25.2" 358 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.2.tgz#337a87a4c4dd48a832baed5cbb022be20809d737" 359 | integrity sha512-bBYCv9obgW2cBP+2ZWfjYTU+f5cxRoGGQ5SeDbYdFCAZpYWrfjjfYwvUpP8MlKbP0nwZ5gyOU/0aUzZ5HWPuvQ== 360 | 361 | "@esbuild/linux-loong64@0.25.2": 362 | version "0.25.2" 363 | resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.2.tgz#1b81aa77103d6b8a8cfa7c094ed3d25c7579ba2a" 364 | integrity sha512-SHNGiKtvnU2dBlM5D8CXRFdd+6etgZ9dXfaPCeJtz+37PIUlixvlIhI23L5khKXs3DIzAn9V8v+qb1TRKrgT5w== 365 | 366 | "@esbuild/linux-mips64el@0.25.2": 367 | version "0.25.2" 368 | resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.2.tgz#afbe380b6992e7459bf7c2c3b9556633b2e47f30" 369 | integrity sha512-hDDRlzE6rPeoj+5fsADqdUZl1OzqDYow4TB4Y/3PlKBD0ph1e6uPHzIQcv2Z65u2K0kpeByIyAjCmjn1hJgG0Q== 370 | 371 | "@esbuild/linux-ppc64@0.25.2": 372 | version "0.25.2" 373 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.2.tgz#6bf8695cab8a2b135cca1aa555226dc932d52067" 374 | integrity sha512-tsHu2RRSWzipmUi9UBDEzc0nLc4HtpZEI5Ba+Omms5456x5WaNuiG3u7xh5AO6sipnJ9r4cRWQB2tUjPyIkc6g== 375 | 376 | "@esbuild/linux-riscv64@0.25.2": 377 | version "0.25.2" 378 | resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.2.tgz#43c2d67a1a39199fb06ba978aebb44992d7becc3" 379 | integrity sha512-k4LtpgV7NJQOml/10uPU0s4SAXGnowi5qBSjaLWMojNCUICNu7TshqHLAEbkBdAszL5TabfvQ48kK84hyFzjnw== 380 | 381 | "@esbuild/linux-s390x@0.25.2": 382 | version "0.25.2" 383 | resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.2.tgz#419e25737ec815c6dce2cd20d026e347cbb7a602" 384 | integrity sha512-GRa4IshOdvKY7M/rDpRR3gkiTNp34M0eLTaC1a08gNrh4u488aPhuZOCpkF6+2wl3zAN7L7XIpOFBhnaE3/Q8Q== 385 | 386 | "@esbuild/linux-x64@0.25.2": 387 | version "0.25.2" 388 | resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.2.tgz#22451f6edbba84abe754a8cbd8528ff6e28d9bcb" 389 | integrity sha512-QInHERlqpTTZ4FRB0fROQWXcYRD64lAoiegezDunLpalZMjcUcld3YzZmVJ2H/Cp0wJRZ8Xtjtj0cEHhYc/uUg== 390 | 391 | "@esbuild/netbsd-arm64@0.25.2": 392 | version "0.25.2" 393 | resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.2.tgz#744affd3b8d8236b08c5210d828b0698a62c58ac" 394 | integrity sha512-talAIBoY5M8vHc6EeI2WW9d/CkiO9MQJ0IOWX8hrLhxGbro/vBXJvaQXefW2cP0z0nQVTdQ/eNyGFV1GSKrxfw== 395 | 396 | "@esbuild/netbsd-x64@0.25.2": 397 | version "0.25.2" 398 | resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.2.tgz#dbbe7521fd6d7352f34328d676af923fc0f8a78f" 399 | integrity sha512-voZT9Z+tpOxrvfKFyfDYPc4DO4rk06qamv1a/fkuzHpiVBMOhpjK+vBmWM8J1eiB3OLSMFYNaOaBNLXGChf5tg== 400 | 401 | "@esbuild/openbsd-arm64@0.25.2": 402 | version "0.25.2" 403 | resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.2.tgz#f9caf987e3e0570500832b487ce3039ca648ce9f" 404 | integrity sha512-dcXYOC6NXOqcykeDlwId9kB6OkPUxOEqU+rkrYVqJbK2hagWOMrsTGsMr8+rW02M+d5Op5NNlgMmjzecaRf7Tg== 405 | 406 | "@esbuild/openbsd-x64@0.25.2": 407 | version "0.25.2" 408 | resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.2.tgz#d2bb6a0f8ffea7b394bb43dfccbb07cabd89f768" 409 | integrity sha512-t/TkWwahkH0Tsgoq1Ju7QfgGhArkGLkF1uYz8nQS/PPFlXbP5YgRpqQR3ARRiC2iXoLTWFxc6DJMSK10dVXluw== 410 | 411 | "@esbuild/sunos-x64@0.25.2": 412 | version "0.25.2" 413 | resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.2.tgz#49b437ed63fe333b92137b7a0c65a65852031afb" 414 | integrity sha512-cfZH1co2+imVdWCjd+D1gf9NjkchVhhdpgb1q5y6Hcv9TP6Zi9ZG/beI3ig8TvwT9lH9dlxLq5MQBBgwuj4xvA== 415 | 416 | "@esbuild/win32-arm64@0.25.2": 417 | version "0.25.2" 418 | resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.2.tgz#081424168463c7d6c7fb78f631aede0c104373cf" 419 | integrity sha512-7Loyjh+D/Nx/sOTzV8vfbB3GJuHdOQyrOryFdZvPHLf42Tk9ivBU5Aedi7iyX+x6rbn2Mh68T4qq1SDqJBQO5Q== 420 | 421 | "@esbuild/win32-ia32@0.25.2": 422 | version "0.25.2" 423 | resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.2.tgz#3f9e87143ddd003133d21384944a6c6cadf9693f" 424 | integrity sha512-WRJgsz9un0nqZJ4MfhabxaD9Ft8KioqU3JMinOTvobbX6MOSUigSBlogP8QB3uxpJDsFS6yN+3FDBdqE5lg9kg== 425 | 426 | "@esbuild/win32-x64@0.25.2": 427 | version "0.25.2" 428 | resolved "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.2.tgz" 429 | integrity sha512-kM3HKb16VIXZyIeVrM1ygYmZBKybX8N4p754bw390wGO3Tf2j4L2/WYL+4suWujpgf6GBYs3jv7TyUivdd05JA== 430 | 431 | "@eslint-community/eslint-utils@^4.2.0": 432 | version "4.2.0" 433 | resolved "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.2.0.tgz" 434 | integrity sha512-gB8T4H4DEfX2IV9zGDJPOBgP1e/DbfCPDTtEqUMckpvzS1OYtva8JdFYBqMwYk7xAQ429WGF/UPqn8uQ//h2vQ== 435 | dependencies: 436 | eslint-visitor-keys "^3.3.0" 437 | 438 | "@eslint-community/eslint-utils@^4.4.0": 439 | version "4.4.0" 440 | resolved "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz" 441 | integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== 442 | dependencies: 443 | eslint-visitor-keys "^3.3.0" 444 | 445 | "@eslint-community/regexpp@^4.10.0", "@eslint-community/regexpp@^4.12.1": 446 | version "4.12.1" 447 | resolved "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz" 448 | integrity sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ== 449 | 450 | "@eslint/config-array@^0.20.0": 451 | version "0.20.0" 452 | resolved "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.20.0.tgz" 453 | integrity sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ== 454 | dependencies: 455 | "@eslint/object-schema" "^2.1.6" 456 | debug "^4.3.1" 457 | minimatch "^3.1.2" 458 | 459 | "@eslint/config-helpers@^0.2.0": 460 | version "0.2.1" 461 | resolved "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.2.1.tgz" 462 | integrity sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw== 463 | 464 | "@eslint/core@^0.12.0": 465 | version "0.12.0" 466 | resolved "https://registry.npmjs.org/@eslint/core/-/core-0.12.0.tgz" 467 | integrity sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg== 468 | dependencies: 469 | "@types/json-schema" "^7.0.15" 470 | 471 | "@eslint/core@^0.13.0": 472 | version "0.13.0" 473 | resolved "https://registry.npmjs.org/@eslint/core/-/core-0.13.0.tgz" 474 | integrity sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw== 475 | dependencies: 476 | "@types/json-schema" "^7.0.15" 477 | 478 | "@eslint/eslintrc@^3.3.1": 479 | version "3.3.1" 480 | resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz" 481 | integrity sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ== 482 | dependencies: 483 | ajv "^6.12.4" 484 | debug "^4.3.2" 485 | espree "^10.0.1" 486 | globals "^14.0.0" 487 | ignore "^5.2.0" 488 | import-fresh "^3.2.1" 489 | js-yaml "^4.1.0" 490 | minimatch "^3.1.2" 491 | strip-json-comments "^3.1.1" 492 | 493 | "@eslint/js@9.24.0": 494 | version "9.24.0" 495 | resolved "https://registry.npmjs.org/@eslint/js/-/js-9.24.0.tgz" 496 | integrity sha512-uIY/y3z0uvOGX8cp1C2fiC4+ZmBhp6yZWkojtHL1YEMnRt1Y63HB9TM17proGEmeG7HeUY+UP36F0aknKYTpYA== 497 | 498 | "@eslint/object-schema@^2.1.6": 499 | version "2.1.6" 500 | resolved "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz" 501 | integrity sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA== 502 | 503 | "@eslint/plugin-kit@^0.2.7": 504 | version "0.2.8" 505 | resolved "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.8.tgz" 506 | integrity sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA== 507 | dependencies: 508 | "@eslint/core" "^0.13.0" 509 | levn "^0.4.1" 510 | 511 | "@gerrit0/mini-shiki@^3.2.2": 512 | version "3.2.3" 513 | resolved "https://registry.npmjs.org/@gerrit0/mini-shiki/-/mini-shiki-3.2.3.tgz" 514 | integrity sha512-yemSYr0Oiqk5NAQRfbD5DKUTlThiZw1MxTMx/YpQTg6m4QRJDtV2JTYSuNevgx1ayy/O7x+uwDjh3IgECGFY/Q== 515 | dependencies: 516 | "@shikijs/engine-oniguruma" "^3.2.2" 517 | "@shikijs/langs" "^3.2.2" 518 | "@shikijs/themes" "^3.2.2" 519 | "@shikijs/types" "^3.2.2" 520 | "@shikijs/vscode-textmate" "^10.0.2" 521 | 522 | "@humanfs/core@^0.19.1": 523 | version "0.19.1" 524 | resolved "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz" 525 | integrity sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA== 526 | 527 | "@humanfs/node@^0.16.6": 528 | version "0.16.6" 529 | resolved "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz" 530 | integrity sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw== 531 | dependencies: 532 | "@humanfs/core" "^0.19.1" 533 | "@humanwhocodes/retry" "^0.3.0" 534 | 535 | "@humanwhocodes/module-importer@^1.0.1": 536 | version "1.0.1" 537 | resolved "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz" 538 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 539 | 540 | "@humanwhocodes/retry@^0.3.0": 541 | version "0.3.1" 542 | resolved "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz" 543 | integrity sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA== 544 | 545 | "@humanwhocodes/retry@^0.4.2": 546 | version "0.4.2" 547 | resolved "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz" 548 | integrity sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ== 549 | 550 | "@istanbuljs/load-nyc-config@^1.0.0": 551 | version "1.1.0" 552 | resolved "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz" 553 | integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== 554 | dependencies: 555 | camelcase "^5.3.1" 556 | find-up "^4.1.0" 557 | get-package-type "^0.1.0" 558 | js-yaml "^3.13.1" 559 | resolve-from "^5.0.0" 560 | 561 | "@istanbuljs/schema@^0.1.2": 562 | version "0.1.3" 563 | resolved "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz" 564 | integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== 565 | 566 | "@jest/console@^29.7.0": 567 | version "29.7.0" 568 | resolved "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz" 569 | integrity sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg== 570 | dependencies: 571 | "@jest/types" "^29.6.3" 572 | "@types/node" "*" 573 | chalk "^4.0.0" 574 | jest-message-util "^29.7.0" 575 | jest-util "^29.7.0" 576 | slash "^3.0.0" 577 | 578 | "@jest/core@^29.7.0": 579 | version "29.7.0" 580 | resolved "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz" 581 | integrity sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg== 582 | dependencies: 583 | "@jest/console" "^29.7.0" 584 | "@jest/reporters" "^29.7.0" 585 | "@jest/test-result" "^29.7.0" 586 | "@jest/transform" "^29.7.0" 587 | "@jest/types" "^29.6.3" 588 | "@types/node" "*" 589 | ansi-escapes "^4.2.1" 590 | chalk "^4.0.0" 591 | ci-info "^3.2.0" 592 | exit "^0.1.2" 593 | graceful-fs "^4.2.9" 594 | jest-changed-files "^29.7.0" 595 | jest-config "^29.7.0" 596 | jest-haste-map "^29.7.0" 597 | jest-message-util "^29.7.0" 598 | jest-regex-util "^29.6.3" 599 | jest-resolve "^29.7.0" 600 | jest-resolve-dependencies "^29.7.0" 601 | jest-runner "^29.7.0" 602 | jest-runtime "^29.7.0" 603 | jest-snapshot "^29.7.0" 604 | jest-util "^29.7.0" 605 | jest-validate "^29.7.0" 606 | jest-watcher "^29.7.0" 607 | micromatch "^4.0.4" 608 | pretty-format "^29.7.0" 609 | slash "^3.0.0" 610 | strip-ansi "^6.0.0" 611 | 612 | "@jest/environment@^29.7.0": 613 | version "29.7.0" 614 | resolved "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz" 615 | integrity sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw== 616 | dependencies: 617 | "@jest/fake-timers" "^29.7.0" 618 | "@jest/types" "^29.6.3" 619 | "@types/node" "*" 620 | jest-mock "^29.7.0" 621 | 622 | "@jest/expect-utils@^29.7.0": 623 | version "29.7.0" 624 | resolved "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz" 625 | integrity sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA== 626 | dependencies: 627 | jest-get-type "^29.6.3" 628 | 629 | "@jest/expect@^29.7.0": 630 | version "29.7.0" 631 | resolved "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz" 632 | integrity sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ== 633 | dependencies: 634 | expect "^29.7.0" 635 | jest-snapshot "^29.7.0" 636 | 637 | "@jest/fake-timers@^29.7.0": 638 | version "29.7.0" 639 | resolved "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz" 640 | integrity sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ== 641 | dependencies: 642 | "@jest/types" "^29.6.3" 643 | "@sinonjs/fake-timers" "^10.0.2" 644 | "@types/node" "*" 645 | jest-message-util "^29.7.0" 646 | jest-mock "^29.7.0" 647 | jest-util "^29.7.0" 648 | 649 | "@jest/globals@^29.7.0": 650 | version "29.7.0" 651 | resolved "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz" 652 | integrity sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ== 653 | dependencies: 654 | "@jest/environment" "^29.7.0" 655 | "@jest/expect" "^29.7.0" 656 | "@jest/types" "^29.6.3" 657 | jest-mock "^29.7.0" 658 | 659 | "@jest/reporters@^29.7.0": 660 | version "29.7.0" 661 | resolved "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz" 662 | integrity sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg== 663 | dependencies: 664 | "@bcoe/v8-coverage" "^0.2.3" 665 | "@jest/console" "^29.7.0" 666 | "@jest/test-result" "^29.7.0" 667 | "@jest/transform" "^29.7.0" 668 | "@jest/types" "^29.6.3" 669 | "@jridgewell/trace-mapping" "^0.3.18" 670 | "@types/node" "*" 671 | chalk "^4.0.0" 672 | collect-v8-coverage "^1.0.0" 673 | exit "^0.1.2" 674 | glob "^7.1.3" 675 | graceful-fs "^4.2.9" 676 | istanbul-lib-coverage "^3.0.0" 677 | istanbul-lib-instrument "^6.0.0" 678 | istanbul-lib-report "^3.0.0" 679 | istanbul-lib-source-maps "^4.0.0" 680 | istanbul-reports "^3.1.3" 681 | jest-message-util "^29.7.0" 682 | jest-util "^29.7.0" 683 | jest-worker "^29.7.0" 684 | slash "^3.0.0" 685 | string-length "^4.0.1" 686 | strip-ansi "^6.0.0" 687 | v8-to-istanbul "^9.0.1" 688 | 689 | "@jest/schemas@^29.6.3": 690 | version "29.6.3" 691 | resolved "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz" 692 | integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA== 693 | dependencies: 694 | "@sinclair/typebox" "^0.27.8" 695 | 696 | "@jest/source-map@^29.6.3": 697 | version "29.6.3" 698 | resolved "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz" 699 | integrity sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw== 700 | dependencies: 701 | "@jridgewell/trace-mapping" "^0.3.18" 702 | callsites "^3.0.0" 703 | graceful-fs "^4.2.9" 704 | 705 | "@jest/test-result@^29.7.0": 706 | version "29.7.0" 707 | resolved "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz" 708 | integrity sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA== 709 | dependencies: 710 | "@jest/console" "^29.7.0" 711 | "@jest/types" "^29.6.3" 712 | "@types/istanbul-lib-coverage" "^2.0.0" 713 | collect-v8-coverage "^1.0.0" 714 | 715 | "@jest/test-sequencer@^29.7.0": 716 | version "29.7.0" 717 | resolved "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz" 718 | integrity sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw== 719 | dependencies: 720 | "@jest/test-result" "^29.7.0" 721 | graceful-fs "^4.2.9" 722 | jest-haste-map "^29.7.0" 723 | slash "^3.0.0" 724 | 725 | "@jest/transform@^29.7.0": 726 | version "29.7.0" 727 | resolved "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz" 728 | integrity sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw== 729 | dependencies: 730 | "@babel/core" "^7.11.6" 731 | "@jest/types" "^29.6.3" 732 | "@jridgewell/trace-mapping" "^0.3.18" 733 | babel-plugin-istanbul "^6.1.1" 734 | chalk "^4.0.0" 735 | convert-source-map "^2.0.0" 736 | fast-json-stable-stringify "^2.1.0" 737 | graceful-fs "^4.2.9" 738 | jest-haste-map "^29.7.0" 739 | jest-regex-util "^29.6.3" 740 | jest-util "^29.7.0" 741 | micromatch "^4.0.4" 742 | pirates "^4.0.4" 743 | slash "^3.0.0" 744 | write-file-atomic "^4.0.2" 745 | 746 | "@jest/types@^29.6.3": 747 | version "29.6.3" 748 | resolved "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz" 749 | integrity sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw== 750 | dependencies: 751 | "@jest/schemas" "^29.6.3" 752 | "@types/istanbul-lib-coverage" "^2.0.0" 753 | "@types/istanbul-reports" "^3.0.0" 754 | "@types/node" "*" 755 | "@types/yargs" "^17.0.8" 756 | chalk "^4.0.0" 757 | 758 | "@jridgewell/gen-mapping@^0.1.0": 759 | version "0.1.1" 760 | resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz" 761 | integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w== 762 | dependencies: 763 | "@jridgewell/set-array" "^1.0.0" 764 | "@jridgewell/sourcemap-codec" "^1.4.10" 765 | 766 | "@jridgewell/gen-mapping@^0.3.2": 767 | version "0.3.2" 768 | resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz" 769 | integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== 770 | dependencies: 771 | "@jridgewell/set-array" "^1.0.1" 772 | "@jridgewell/sourcemap-codec" "^1.4.10" 773 | "@jridgewell/trace-mapping" "^0.3.9" 774 | 775 | "@jridgewell/resolve-uri@3.1.0": 776 | version "3.1.0" 777 | resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz" 778 | integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== 779 | 780 | "@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1": 781 | version "1.1.2" 782 | resolved "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz" 783 | integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== 784 | 785 | "@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10": 786 | version "1.4.14" 787 | resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz" 788 | integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== 789 | 790 | "@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.9": 791 | version "0.3.17" 792 | resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz" 793 | integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g== 794 | dependencies: 795 | "@jridgewell/resolve-uri" "3.1.0" 796 | "@jridgewell/sourcemap-codec" "1.4.14" 797 | 798 | "@jridgewell/trace-mapping@^0.3.18": 799 | version "0.3.18" 800 | resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz" 801 | integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== 802 | dependencies: 803 | "@jridgewell/resolve-uri" "3.1.0" 804 | "@jridgewell/sourcemap-codec" "1.4.14" 805 | 806 | "@nodelib/fs.scandir@2.1.5": 807 | version "2.1.5" 808 | resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" 809 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 810 | dependencies: 811 | "@nodelib/fs.stat" "2.0.5" 812 | run-parallel "^1.1.9" 813 | 814 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 815 | version "2.0.5" 816 | resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" 817 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 818 | 819 | "@nodelib/fs.walk@^1.2.3": 820 | version "1.2.8" 821 | resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" 822 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 823 | dependencies: 824 | "@nodelib/fs.scandir" "2.1.5" 825 | fastq "^1.6.0" 826 | 827 | "@prisma/client@6.6.0": 828 | version "6.6.0" 829 | resolved "https://registry.npmjs.org/@prisma/client/-/client-6.6.0.tgz" 830 | integrity sha512-vfp73YT/BHsWWOAuthKQ/1lBgESSqYqAWZEYyTdGXyFAHpmewwWL2Iz6ErIzkj4aHbuc6/cGSsE6ZY+pBO04Cg== 831 | 832 | "@prisma/config@6.6.0": 833 | version "6.6.0" 834 | resolved "https://registry.npmjs.org/@prisma/config/-/config-6.6.0.tgz" 835 | integrity sha512-d8FlXRHsx72RbN8nA2QCRORNv5AcUnPXgtPvwhXmYkQSMF/j9cKaJg+9VcUzBRXGy9QBckNzEQDEJZdEOZ+ubA== 836 | dependencies: 837 | esbuild ">=0.12 <1" 838 | esbuild-register "3.6.0" 839 | 840 | "@prisma/debug@6.6.0": 841 | version "6.6.0" 842 | resolved "https://registry.npmjs.org/@prisma/debug/-/debug-6.6.0.tgz" 843 | integrity sha512-DL6n4IKlW5k2LEXzpN60SQ1kP/F6fqaCgU/McgaYsxSf43GZ8lwtmXLke9efS+L1uGmrhtBUP4npV/QKF8s2ZQ== 844 | 845 | "@prisma/engines-version@6.6.0-53.f676762280b54cd07c770017ed3711ddde35f37a": 846 | version "6.6.0-53.f676762280b54cd07c770017ed3711ddde35f37a" 847 | resolved "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-6.6.0-53.f676762280b54cd07c770017ed3711ddde35f37a.tgz" 848 | integrity sha512-JzRaQ5Em1fuEcbR3nUsMNYaIYrOT1iMheenjCvzZblJcjv/3JIuxXN7RCNT5i6lRkLodW5ojCGhR7n5yvnNKrw== 849 | 850 | "@prisma/engines@6.6.0": 851 | version "6.6.0" 852 | resolved "https://registry.npmjs.org/@prisma/engines/-/engines-6.6.0.tgz" 853 | integrity sha512-nC0IV4NHh7500cozD1fBoTwTD1ydJERndreIjpZr/S3mno3P6tm8qnXmIND5SwUkibNeSJMpgl4gAnlqJ/gVlg== 854 | dependencies: 855 | "@prisma/debug" "6.6.0" 856 | "@prisma/engines-version" "6.6.0-53.f676762280b54cd07c770017ed3711ddde35f37a" 857 | "@prisma/fetch-engine" "6.6.0" 858 | "@prisma/get-platform" "6.6.0" 859 | 860 | "@prisma/fetch-engine@6.6.0": 861 | version "6.6.0" 862 | resolved "https://registry.npmjs.org/@prisma/fetch-engine/-/fetch-engine-6.6.0.tgz" 863 | integrity sha512-Ohfo8gKp05LFLZaBlPUApM0M7k43a0jmo86YY35u1/4t+vuQH9mRGU7jGwVzGFY3v+9edeb/cowb1oG4buM1yw== 864 | dependencies: 865 | "@prisma/debug" "6.6.0" 866 | "@prisma/engines-version" "6.6.0-53.f676762280b54cd07c770017ed3711ddde35f37a" 867 | "@prisma/get-platform" "6.6.0" 868 | 869 | "@prisma/get-platform@6.6.0": 870 | version "6.6.0" 871 | resolved "https://registry.npmjs.org/@prisma/get-platform/-/get-platform-6.6.0.tgz" 872 | integrity sha512-3qCwmnT4Jh5WCGUrkWcc6VZaw0JY7eWN175/pcb5Z6FiLZZ3ygY93UX0WuV41bG51a6JN/oBH0uywJ90Y+V5eA== 873 | dependencies: 874 | "@prisma/debug" "6.6.0" 875 | 876 | "@shikijs/engine-oniguruma@^3.2.2": 877 | version "3.2.2" 878 | resolved "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-3.2.2.tgz" 879 | integrity sha512-vyXRnWVCSvokwbaUD/8uPn6Gqsf5Hv7XwcW4AgiU4Z2qwy19sdr6VGzMdheKKN58tJOOe5MIKiNb901bgcUXYQ== 880 | dependencies: 881 | "@shikijs/types" "3.2.2" 882 | "@shikijs/vscode-textmate" "^10.0.2" 883 | 884 | "@shikijs/langs@^3.2.2": 885 | version "3.2.2" 886 | resolved "https://registry.npmjs.org/@shikijs/langs/-/langs-3.2.2.tgz" 887 | integrity sha512-NY0Urg2dV9ETt3JIOWoMPuoDNwte3geLZ4M1nrPHbkDS8dWMpKcEwlqiEIGqtwZNmt5gKyWpR26ln2Bg2ecPgw== 888 | dependencies: 889 | "@shikijs/types" "3.2.2" 890 | 891 | "@shikijs/themes@^3.2.2": 892 | version "3.2.2" 893 | resolved "https://registry.npmjs.org/@shikijs/themes/-/themes-3.2.2.tgz" 894 | integrity sha512-Zuq4lgAxVKkb0FFdhHSdDkALuRpsj1so1JdihjKNQfgM78EHxV2JhO10qPsMrm01FkE3mDRTdF68wfmsqjt6HA== 895 | dependencies: 896 | "@shikijs/types" "3.2.2" 897 | 898 | "@shikijs/types@3.2.2", "@shikijs/types@^3.2.2": 899 | version "3.2.2" 900 | resolved "https://registry.npmjs.org/@shikijs/types/-/types-3.2.2.tgz" 901 | integrity sha512-a5TiHk7EH5Lso8sHcLHbVNNhWKP0Wi3yVnXnu73g86n3WoDgEra7n3KszyeCGuyoagspQ2fzvy4cpSc8pKhb0A== 902 | dependencies: 903 | "@shikijs/vscode-textmate" "^10.0.2" 904 | "@types/hast" "^3.0.4" 905 | 906 | "@shikijs/vscode-textmate@^10.0.2": 907 | version "10.0.2" 908 | resolved "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-10.0.2.tgz" 909 | integrity sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg== 910 | 911 | "@sinclair/typebox@^0.27.8": 912 | version "0.27.8" 913 | resolved "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz" 914 | integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== 915 | 916 | "@sinonjs/commons@^2.0.0": 917 | version "2.0.0" 918 | resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz" 919 | integrity sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg== 920 | dependencies: 921 | type-detect "4.0.8" 922 | 923 | "@sinonjs/fake-timers@^10.0.2": 924 | version "10.0.2" 925 | resolved "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.0.2.tgz" 926 | integrity sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw== 927 | dependencies: 928 | "@sinonjs/commons" "^2.0.0" 929 | 930 | "@types/babel__core@^7.1.14": 931 | version "7.20.0" 932 | resolved "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz" 933 | integrity sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ== 934 | dependencies: 935 | "@babel/parser" "^7.20.7" 936 | "@babel/types" "^7.20.7" 937 | "@types/babel__generator" "*" 938 | "@types/babel__template" "*" 939 | "@types/babel__traverse" "*" 940 | 941 | "@types/babel__generator@*": 942 | version "7.6.4" 943 | resolved "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz" 944 | integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== 945 | dependencies: 946 | "@babel/types" "^7.0.0" 947 | 948 | "@types/babel__template@*": 949 | version "7.4.1" 950 | resolved "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz" 951 | integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== 952 | dependencies: 953 | "@babel/parser" "^7.1.0" 954 | "@babel/types" "^7.0.0" 955 | 956 | "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": 957 | version "7.18.3" 958 | resolved "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.3.tgz" 959 | integrity sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w== 960 | dependencies: 961 | "@babel/types" "^7.3.0" 962 | 963 | "@types/estree@^1.0.6": 964 | version "1.0.7" 965 | resolved "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz" 966 | integrity sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ== 967 | 968 | "@types/graceful-fs@^4.1.3": 969 | version "4.1.6" 970 | resolved "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz" 971 | integrity sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw== 972 | dependencies: 973 | "@types/node" "*" 974 | 975 | "@types/hast@^3.0.4": 976 | version "3.0.4" 977 | resolved "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz" 978 | integrity sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ== 979 | dependencies: 980 | "@types/unist" "*" 981 | 982 | "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": 983 | version "2.0.4" 984 | resolved "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz" 985 | integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== 986 | 987 | "@types/istanbul-lib-report@*": 988 | version "3.0.0" 989 | resolved "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz" 990 | integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== 991 | dependencies: 992 | "@types/istanbul-lib-coverage" "*" 993 | 994 | "@types/istanbul-reports@^3.0.0": 995 | version "3.0.1" 996 | resolved "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz" 997 | integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== 998 | dependencies: 999 | "@types/istanbul-lib-report" "*" 1000 | 1001 | "@types/jest@^29.5.14": 1002 | version "29.5.14" 1003 | resolved "https://registry.npmjs.org/@types/jest/-/jest-29.5.14.tgz" 1004 | integrity sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ== 1005 | dependencies: 1006 | expect "^29.0.0" 1007 | pretty-format "^29.0.0" 1008 | 1009 | "@types/json-schema@^7.0.15": 1010 | version "7.0.15" 1011 | resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz" 1012 | integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== 1013 | 1014 | "@types/node@*", "@types/node@^22.14.1": 1015 | version "22.14.1" 1016 | resolved "https://registry.npmjs.org/@types/node/-/node-22.14.1.tgz" 1017 | integrity sha512-u0HuPQwe/dHrItgHHpmw3N2fYCR6x4ivMNbPHRkBVP4CvN+kiRrKHWk3i8tXiO/joPwXLMYvF9TTF0eqgHIuOw== 1018 | dependencies: 1019 | undici-types "~6.21.0" 1020 | 1021 | "@types/stack-utils@^2.0.0": 1022 | version "2.0.1" 1023 | resolved "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz" 1024 | integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== 1025 | 1026 | "@types/unist@*": 1027 | version "3.0.3" 1028 | resolved "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz" 1029 | integrity sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q== 1030 | 1031 | "@types/yargs-parser@*": 1032 | version "21.0.0" 1033 | resolved "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz" 1034 | integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== 1035 | 1036 | "@types/yargs@^17.0.8": 1037 | version "17.0.20" 1038 | resolved "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.20.tgz" 1039 | integrity sha512-eknWrTHofQuPk2iuqDm1waA7V6xPlbgBoaaXEgYkClhLOnB0TtbW+srJaOToAgawPxPlHQzwypFA2bhZaUGP5A== 1040 | dependencies: 1041 | "@types/yargs-parser" "*" 1042 | 1043 | "@typescript-eslint/eslint-plugin@^8.29.1": 1044 | version "8.29.1" 1045 | resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.29.1.tgz" 1046 | integrity sha512-ba0rr4Wfvg23vERs3eB+P3lfj2E+2g3lhWcCVukUuhtcdUx5lSIFZlGFEBHKr+3zizDa/TvZTptdNHVZWAkSBg== 1047 | dependencies: 1048 | "@eslint-community/regexpp" "^4.10.0" 1049 | "@typescript-eslint/scope-manager" "8.29.1" 1050 | "@typescript-eslint/type-utils" "8.29.1" 1051 | "@typescript-eslint/utils" "8.29.1" 1052 | "@typescript-eslint/visitor-keys" "8.29.1" 1053 | graphemer "^1.4.0" 1054 | ignore "^5.3.1" 1055 | natural-compare "^1.4.0" 1056 | ts-api-utils "^2.0.1" 1057 | 1058 | "@typescript-eslint/parser@^8.29.1": 1059 | version "8.29.1" 1060 | resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.29.1.tgz" 1061 | integrity sha512-zczrHVEqEaTwh12gWBIJWj8nx+ayDcCJs06yoNMY0kwjMWDM6+kppljY+BxWI06d2Ja+h4+WdufDcwMnnMEWmg== 1062 | dependencies: 1063 | "@typescript-eslint/scope-manager" "8.29.1" 1064 | "@typescript-eslint/types" "8.29.1" 1065 | "@typescript-eslint/typescript-estree" "8.29.1" 1066 | "@typescript-eslint/visitor-keys" "8.29.1" 1067 | debug "^4.3.4" 1068 | 1069 | "@typescript-eslint/scope-manager@8.29.1": 1070 | version "8.29.1" 1071 | resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.29.1.tgz" 1072 | integrity sha512-2nggXGX5F3YrsGN08pw4XpMLO1Rgtnn4AzTegC2MDesv6q3QaTU5yU7IbS1tf1IwCR0Hv/1EFygLn9ms6LIpDA== 1073 | dependencies: 1074 | "@typescript-eslint/types" "8.29.1" 1075 | "@typescript-eslint/visitor-keys" "8.29.1" 1076 | 1077 | "@typescript-eslint/type-utils@8.29.1": 1078 | version "8.29.1" 1079 | resolved "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.29.1.tgz" 1080 | integrity sha512-DkDUSDwZVCYN71xA4wzySqqcZsHKic53A4BLqmrWFFpOpNSoxX233lwGu/2135ymTCR04PoKiEEEvN1gFYg4Tw== 1081 | dependencies: 1082 | "@typescript-eslint/typescript-estree" "8.29.1" 1083 | "@typescript-eslint/utils" "8.29.1" 1084 | debug "^4.3.4" 1085 | ts-api-utils "^2.0.1" 1086 | 1087 | "@typescript-eslint/types@8.29.1": 1088 | version "8.29.1" 1089 | resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.29.1.tgz" 1090 | integrity sha512-VT7T1PuJF1hpYC3AGm2rCgJBjHL3nc+A/bhOp9sGMKfi5v0WufsX/sHCFBfNTx2F+zA6qBc/PD0/kLRLjdt8mQ== 1091 | 1092 | "@typescript-eslint/typescript-estree@8.29.1": 1093 | version "8.29.1" 1094 | resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.29.1.tgz" 1095 | integrity sha512-l1enRoSaUkQxOQnbi0KPUtqeZkSiFlqrx9/3ns2rEDhGKfTa+88RmXqedC1zmVTOWrLc2e6DEJrTA51C9iLH5g== 1096 | dependencies: 1097 | "@typescript-eslint/types" "8.29.1" 1098 | "@typescript-eslint/visitor-keys" "8.29.1" 1099 | debug "^4.3.4" 1100 | fast-glob "^3.3.2" 1101 | is-glob "^4.0.3" 1102 | minimatch "^9.0.4" 1103 | semver "^7.6.0" 1104 | ts-api-utils "^2.0.1" 1105 | 1106 | "@typescript-eslint/utils@8.29.1": 1107 | version "8.29.1" 1108 | resolved "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.29.1.tgz" 1109 | integrity sha512-QAkFEbytSaB8wnmB+DflhUPz6CLbFWE2SnSCrRMEa+KnXIzDYbpsn++1HGvnfAsUY44doDXmvRkO5shlM/3UfA== 1110 | dependencies: 1111 | "@eslint-community/eslint-utils" "^4.4.0" 1112 | "@typescript-eslint/scope-manager" "8.29.1" 1113 | "@typescript-eslint/types" "8.29.1" 1114 | "@typescript-eslint/typescript-estree" "8.29.1" 1115 | 1116 | "@typescript-eslint/visitor-keys@8.29.1": 1117 | version "8.29.1" 1118 | resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.29.1.tgz" 1119 | integrity sha512-RGLh5CRaUEf02viP5c1Vh1cMGffQscyHe7HPAzGpfmfflFg1wUz2rYxd+OZqwpeypYvZ8UxSxuIpF++fmOzEcg== 1120 | dependencies: 1121 | "@typescript-eslint/types" "8.29.1" 1122 | eslint-visitor-keys "^4.2.0" 1123 | 1124 | acorn-jsx@^5.3.2: 1125 | version "5.3.2" 1126 | resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz" 1127 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 1128 | 1129 | acorn@^8.14.0: 1130 | version "8.14.1" 1131 | resolved "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz" 1132 | integrity sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg== 1133 | 1134 | ajv@^6.12.4: 1135 | version "6.12.6" 1136 | resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" 1137 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 1138 | dependencies: 1139 | fast-deep-equal "^3.1.1" 1140 | fast-json-stable-stringify "^2.0.0" 1141 | json-schema-traverse "^0.4.1" 1142 | uri-js "^4.2.2" 1143 | 1144 | ansi-escapes@^4.2.1: 1145 | version "4.3.2" 1146 | resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz" 1147 | integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== 1148 | dependencies: 1149 | type-fest "^0.21.3" 1150 | 1151 | ansi-regex@^5.0.1: 1152 | version "5.0.1" 1153 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" 1154 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 1155 | 1156 | ansi-styles@^3.2.1: 1157 | version "3.2.1" 1158 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" 1159 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 1160 | dependencies: 1161 | color-convert "^1.9.0" 1162 | 1163 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 1164 | version "4.3.0" 1165 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" 1166 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 1167 | dependencies: 1168 | color-convert "^2.0.1" 1169 | 1170 | ansi-styles@^5.0.0: 1171 | version "5.2.0" 1172 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz" 1173 | integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== 1174 | 1175 | anymatch@^3.0.3: 1176 | version "3.1.3" 1177 | resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz" 1178 | integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== 1179 | dependencies: 1180 | normalize-path "^3.0.0" 1181 | picomatch "^2.0.4" 1182 | 1183 | argparse@^1.0.7: 1184 | version "1.0.10" 1185 | resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" 1186 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 1187 | dependencies: 1188 | sprintf-js "~1.0.2" 1189 | 1190 | argparse@^2.0.1: 1191 | version "2.0.1" 1192 | resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" 1193 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 1194 | 1195 | async@^3.2.3: 1196 | version "3.2.5" 1197 | resolved "https://registry.npmjs.org/async/-/async-3.2.5.tgz" 1198 | integrity sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg== 1199 | 1200 | babel-jest@^29.7.0: 1201 | version "29.7.0" 1202 | resolved "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz" 1203 | integrity sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg== 1204 | dependencies: 1205 | "@jest/transform" "^29.7.0" 1206 | "@types/babel__core" "^7.1.14" 1207 | babel-plugin-istanbul "^6.1.1" 1208 | babel-preset-jest "^29.6.3" 1209 | chalk "^4.0.0" 1210 | graceful-fs "^4.2.9" 1211 | slash "^3.0.0" 1212 | 1213 | babel-plugin-istanbul@^6.1.1: 1214 | version "6.1.1" 1215 | resolved "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz" 1216 | integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== 1217 | dependencies: 1218 | "@babel/helper-plugin-utils" "^7.0.0" 1219 | "@istanbuljs/load-nyc-config" "^1.0.0" 1220 | "@istanbuljs/schema" "^0.1.2" 1221 | istanbul-lib-instrument "^5.0.4" 1222 | test-exclude "^6.0.0" 1223 | 1224 | babel-plugin-jest-hoist@^29.6.3: 1225 | version "29.6.3" 1226 | resolved "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz" 1227 | integrity sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg== 1228 | dependencies: 1229 | "@babel/template" "^7.3.3" 1230 | "@babel/types" "^7.3.3" 1231 | "@types/babel__core" "^7.1.14" 1232 | "@types/babel__traverse" "^7.0.6" 1233 | 1234 | babel-preset-current-node-syntax@^1.0.0: 1235 | version "1.0.1" 1236 | resolved "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz" 1237 | integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== 1238 | dependencies: 1239 | "@babel/plugin-syntax-async-generators" "^7.8.4" 1240 | "@babel/plugin-syntax-bigint" "^7.8.3" 1241 | "@babel/plugin-syntax-class-properties" "^7.8.3" 1242 | "@babel/plugin-syntax-import-meta" "^7.8.3" 1243 | "@babel/plugin-syntax-json-strings" "^7.8.3" 1244 | "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" 1245 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 1246 | "@babel/plugin-syntax-numeric-separator" "^7.8.3" 1247 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 1248 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 1249 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 1250 | "@babel/plugin-syntax-top-level-await" "^7.8.3" 1251 | 1252 | babel-preset-jest@^29.6.3: 1253 | version "29.6.3" 1254 | resolved "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz" 1255 | integrity sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA== 1256 | dependencies: 1257 | babel-plugin-jest-hoist "^29.6.3" 1258 | babel-preset-current-node-syntax "^1.0.0" 1259 | 1260 | balanced-match@^1.0.0: 1261 | version "1.0.2" 1262 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" 1263 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 1264 | 1265 | brace-expansion@^1.1.7: 1266 | version "1.1.11" 1267 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" 1268 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 1269 | dependencies: 1270 | balanced-match "^1.0.0" 1271 | concat-map "0.0.1" 1272 | 1273 | brace-expansion@^2.0.1: 1274 | version "2.0.1" 1275 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz" 1276 | integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== 1277 | dependencies: 1278 | balanced-match "^1.0.0" 1279 | 1280 | braces@^3.0.2: 1281 | version "3.0.2" 1282 | resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" 1283 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 1284 | dependencies: 1285 | fill-range "^7.0.1" 1286 | 1287 | braces@^3.0.3: 1288 | version "3.0.3" 1289 | resolved "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz" 1290 | integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== 1291 | dependencies: 1292 | fill-range "^7.1.1" 1293 | 1294 | browserslist@^4.21.3: 1295 | version "4.21.4" 1296 | resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz" 1297 | integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw== 1298 | dependencies: 1299 | caniuse-lite "^1.0.30001400" 1300 | electron-to-chromium "^1.4.251" 1301 | node-releases "^2.0.6" 1302 | update-browserslist-db "^1.0.9" 1303 | 1304 | bs-logger@^0.2.6: 1305 | version "0.2.6" 1306 | resolved "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz" 1307 | integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== 1308 | dependencies: 1309 | fast-json-stable-stringify "2.x" 1310 | 1311 | bser@2.1.1: 1312 | version "2.1.1" 1313 | resolved "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz" 1314 | integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== 1315 | dependencies: 1316 | node-int64 "^0.4.0" 1317 | 1318 | buffer-from@^1.0.0: 1319 | version "1.1.2" 1320 | resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz" 1321 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== 1322 | 1323 | callsites@^3.0.0: 1324 | version "3.1.0" 1325 | resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" 1326 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 1327 | 1328 | camelcase@^5.3.1: 1329 | version "5.3.1" 1330 | resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz" 1331 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 1332 | 1333 | camelcase@^6.2.0: 1334 | version "6.3.0" 1335 | resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz" 1336 | integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== 1337 | 1338 | caniuse-lite@^1.0.30001400: 1339 | version "1.0.30001448" 1340 | resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001448.tgz" 1341 | integrity sha512-tq2YI+MJnooG96XpbTRYkBxLxklZPOdLmNIOdIhvf7SNJan6u5vCKum8iT7ZfCt70m1GPkuC7P3TtX6UuhupuA== 1342 | 1343 | chalk@^2.0.0: 1344 | version "2.4.2" 1345 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" 1346 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 1347 | dependencies: 1348 | ansi-styles "^3.2.1" 1349 | escape-string-regexp "^1.0.5" 1350 | supports-color "^5.3.0" 1351 | 1352 | chalk@^4.0.0, chalk@^4.0.2: 1353 | version "4.1.2" 1354 | resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" 1355 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 1356 | dependencies: 1357 | ansi-styles "^4.1.0" 1358 | supports-color "^7.1.0" 1359 | 1360 | char-regex@^1.0.2: 1361 | version "1.0.2" 1362 | resolved "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz" 1363 | integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== 1364 | 1365 | ci-info@^3.2.0: 1366 | version "3.7.1" 1367 | resolved "https://registry.npmjs.org/ci-info/-/ci-info-3.7.1.tgz" 1368 | integrity sha512-4jYS4MOAaCIStSRwiuxc4B8MYhIe676yO1sYGzARnjXkWpmzZMMYxY6zu8WYWDhSuth5zhrQ1rhNSibyyvv4/w== 1369 | 1370 | cjs-module-lexer@^1.0.0: 1371 | version "1.2.2" 1372 | resolved "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz" 1373 | integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA== 1374 | 1375 | cliui@^8.0.1: 1376 | version "8.0.1" 1377 | resolved "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz" 1378 | integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== 1379 | dependencies: 1380 | string-width "^4.2.0" 1381 | strip-ansi "^6.0.1" 1382 | wrap-ansi "^7.0.0" 1383 | 1384 | co@^4.6.0: 1385 | version "4.6.0" 1386 | resolved "https://registry.npmjs.org/co/-/co-4.6.0.tgz" 1387 | integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== 1388 | 1389 | collect-v8-coverage@^1.0.0: 1390 | version "1.0.1" 1391 | resolved "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz" 1392 | integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== 1393 | 1394 | color-convert@^1.9.0: 1395 | version "1.9.3" 1396 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" 1397 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 1398 | dependencies: 1399 | color-name "1.1.3" 1400 | 1401 | color-convert@^2.0.1: 1402 | version "2.0.1" 1403 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" 1404 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 1405 | dependencies: 1406 | color-name "~1.1.4" 1407 | 1408 | color-name@1.1.3: 1409 | version "1.1.3" 1410 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" 1411 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== 1412 | 1413 | color-name@~1.1.4: 1414 | version "1.1.4" 1415 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" 1416 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 1417 | 1418 | concat-map@0.0.1: 1419 | version "0.0.1" 1420 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" 1421 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 1422 | 1423 | convert-source-map@^1.6.0, convert-source-map@^1.7.0: 1424 | version "1.9.0" 1425 | resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz" 1426 | integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== 1427 | 1428 | convert-source-map@^2.0.0: 1429 | version "2.0.0" 1430 | resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz" 1431 | integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== 1432 | 1433 | create-jest@^29.7.0: 1434 | version "29.7.0" 1435 | resolved "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz" 1436 | integrity sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q== 1437 | dependencies: 1438 | "@jest/types" "^29.6.3" 1439 | chalk "^4.0.0" 1440 | exit "^0.1.2" 1441 | graceful-fs "^4.2.9" 1442 | jest-config "^29.7.0" 1443 | jest-util "^29.7.0" 1444 | prompts "^2.0.1" 1445 | 1446 | cross-spawn@^7.0.3, cross-spawn@^7.0.6: 1447 | version "7.0.6" 1448 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz" 1449 | integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== 1450 | dependencies: 1451 | path-key "^3.1.0" 1452 | shebang-command "^2.0.0" 1453 | which "^2.0.1" 1454 | 1455 | debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: 1456 | version "4.3.4" 1457 | resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" 1458 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 1459 | dependencies: 1460 | ms "2.1.2" 1461 | 1462 | dedent@^1.0.0: 1463 | version "1.2.0" 1464 | resolved "https://registry.npmjs.org/dedent/-/dedent-1.2.0.tgz" 1465 | integrity sha512-i4tcg0ClgvMUSxwHpt+NHQ01ZJmAkl6eBvDNrSZG9e+oLRTCSHv0wpr/Bzjpf6CwKeIHGevE1M34Y1Axdms5VQ== 1466 | 1467 | deep-is@^0.1.3: 1468 | version "0.1.4" 1469 | resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz" 1470 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 1471 | 1472 | deepmerge@^4.2.2: 1473 | version "4.2.2" 1474 | resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz" 1475 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== 1476 | 1477 | detect-newline@^3.0.0: 1478 | version "3.1.0" 1479 | resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz" 1480 | integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== 1481 | 1482 | diff-sequences@^29.6.3: 1483 | version "29.6.3" 1484 | resolved "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz" 1485 | integrity sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q== 1486 | 1487 | ejs@^3.1.10: 1488 | version "3.1.10" 1489 | resolved "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz" 1490 | integrity sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA== 1491 | dependencies: 1492 | jake "^10.8.5" 1493 | 1494 | electron-to-chromium@^1.4.251: 1495 | version "1.4.284" 1496 | resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz" 1497 | integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA== 1498 | 1499 | emittery@^0.13.1: 1500 | version "0.13.1" 1501 | resolved "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz" 1502 | integrity sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ== 1503 | 1504 | emoji-regex@^8.0.0: 1505 | version "8.0.0" 1506 | resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" 1507 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 1508 | 1509 | entities@^4.4.0: 1510 | version "4.5.0" 1511 | resolved "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz" 1512 | integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== 1513 | 1514 | error-ex@^1.3.1: 1515 | version "1.3.2" 1516 | resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" 1517 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1518 | dependencies: 1519 | is-arrayish "^0.2.1" 1520 | 1521 | esbuild-register@3.6.0: 1522 | version "3.6.0" 1523 | resolved "https://registry.npmjs.org/esbuild-register/-/esbuild-register-3.6.0.tgz" 1524 | integrity sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg== 1525 | dependencies: 1526 | debug "^4.3.4" 1527 | 1528 | "esbuild@>=0.12 <1": 1529 | version "0.25.2" 1530 | resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.25.2.tgz" 1531 | integrity sha512-16854zccKPnC+toMywC+uKNeYSv+/eXkevRAfwRD/G9Cleq66m8XFIrigkbvauLLlCfDL45Q2cWegSg53gGBnQ== 1532 | optionalDependencies: 1533 | "@esbuild/aix-ppc64" "0.25.2" 1534 | "@esbuild/android-arm" "0.25.2" 1535 | "@esbuild/android-arm64" "0.25.2" 1536 | "@esbuild/android-x64" "0.25.2" 1537 | "@esbuild/darwin-arm64" "0.25.2" 1538 | "@esbuild/darwin-x64" "0.25.2" 1539 | "@esbuild/freebsd-arm64" "0.25.2" 1540 | "@esbuild/freebsd-x64" "0.25.2" 1541 | "@esbuild/linux-arm" "0.25.2" 1542 | "@esbuild/linux-arm64" "0.25.2" 1543 | "@esbuild/linux-ia32" "0.25.2" 1544 | "@esbuild/linux-loong64" "0.25.2" 1545 | "@esbuild/linux-mips64el" "0.25.2" 1546 | "@esbuild/linux-ppc64" "0.25.2" 1547 | "@esbuild/linux-riscv64" "0.25.2" 1548 | "@esbuild/linux-s390x" "0.25.2" 1549 | "@esbuild/linux-x64" "0.25.2" 1550 | "@esbuild/netbsd-arm64" "0.25.2" 1551 | "@esbuild/netbsd-x64" "0.25.2" 1552 | "@esbuild/openbsd-arm64" "0.25.2" 1553 | "@esbuild/openbsd-x64" "0.25.2" 1554 | "@esbuild/sunos-x64" "0.25.2" 1555 | "@esbuild/win32-arm64" "0.25.2" 1556 | "@esbuild/win32-ia32" "0.25.2" 1557 | "@esbuild/win32-x64" "0.25.2" 1558 | 1559 | escalade@^3.1.1: 1560 | version "3.1.1" 1561 | resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" 1562 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 1563 | 1564 | escape-string-regexp@^1.0.5: 1565 | version "1.0.5" 1566 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" 1567 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== 1568 | 1569 | escape-string-regexp@^2.0.0: 1570 | version "2.0.0" 1571 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz" 1572 | integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== 1573 | 1574 | escape-string-regexp@^4.0.0: 1575 | version "4.0.0" 1576 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" 1577 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 1578 | 1579 | eslint-scope@^8.3.0: 1580 | version "8.3.0" 1581 | resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.3.0.tgz" 1582 | integrity sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ== 1583 | dependencies: 1584 | esrecurse "^4.3.0" 1585 | estraverse "^5.2.0" 1586 | 1587 | eslint-visitor-keys@^3.3.0: 1588 | version "3.3.0" 1589 | resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz" 1590 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== 1591 | 1592 | eslint-visitor-keys@^4.2.0: 1593 | version "4.2.0" 1594 | resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz" 1595 | integrity sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw== 1596 | 1597 | eslint@^9.24.0: 1598 | version "9.24.0" 1599 | resolved "https://registry.npmjs.org/eslint/-/eslint-9.24.0.tgz" 1600 | integrity sha512-eh/jxIEJyZrvbWRe4XuVclLPDYSYYYgLy5zXGGxD6j8zjSAxFEzI2fL/8xNq6O2yKqVt+eF2YhV+hxjV6UKXwQ== 1601 | dependencies: 1602 | "@eslint-community/eslint-utils" "^4.2.0" 1603 | "@eslint-community/regexpp" "^4.12.1" 1604 | "@eslint/config-array" "^0.20.0" 1605 | "@eslint/config-helpers" "^0.2.0" 1606 | "@eslint/core" "^0.12.0" 1607 | "@eslint/eslintrc" "^3.3.1" 1608 | "@eslint/js" "9.24.0" 1609 | "@eslint/plugin-kit" "^0.2.7" 1610 | "@humanfs/node" "^0.16.6" 1611 | "@humanwhocodes/module-importer" "^1.0.1" 1612 | "@humanwhocodes/retry" "^0.4.2" 1613 | "@types/estree" "^1.0.6" 1614 | "@types/json-schema" "^7.0.15" 1615 | ajv "^6.12.4" 1616 | chalk "^4.0.0" 1617 | cross-spawn "^7.0.6" 1618 | debug "^4.3.2" 1619 | escape-string-regexp "^4.0.0" 1620 | eslint-scope "^8.3.0" 1621 | eslint-visitor-keys "^4.2.0" 1622 | espree "^10.3.0" 1623 | esquery "^1.5.0" 1624 | esutils "^2.0.2" 1625 | fast-deep-equal "^3.1.3" 1626 | file-entry-cache "^8.0.0" 1627 | find-up "^5.0.0" 1628 | glob-parent "^6.0.2" 1629 | ignore "^5.2.0" 1630 | imurmurhash "^0.1.4" 1631 | is-glob "^4.0.0" 1632 | json-stable-stringify-without-jsonify "^1.0.1" 1633 | lodash.merge "^4.6.2" 1634 | minimatch "^3.1.2" 1635 | natural-compare "^1.4.0" 1636 | optionator "^0.9.3" 1637 | 1638 | espree@^10.0.1, espree@^10.3.0: 1639 | version "10.3.0" 1640 | resolved "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz" 1641 | integrity sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg== 1642 | dependencies: 1643 | acorn "^8.14.0" 1644 | acorn-jsx "^5.3.2" 1645 | eslint-visitor-keys "^4.2.0" 1646 | 1647 | esprima@^4.0.0: 1648 | version "4.0.1" 1649 | resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" 1650 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1651 | 1652 | esquery@^1.5.0: 1653 | version "1.6.0" 1654 | resolved "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz" 1655 | integrity sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg== 1656 | dependencies: 1657 | estraverse "^5.1.0" 1658 | 1659 | esrecurse@^4.3.0: 1660 | version "4.3.0" 1661 | resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" 1662 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 1663 | dependencies: 1664 | estraverse "^5.2.0" 1665 | 1666 | estraverse@^5.1.0, estraverse@^5.2.0: 1667 | version "5.3.0" 1668 | resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" 1669 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 1670 | 1671 | esutils@^2.0.2: 1672 | version "2.0.3" 1673 | resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" 1674 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1675 | 1676 | execa@^5.0.0: 1677 | version "5.1.1" 1678 | resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz" 1679 | integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== 1680 | dependencies: 1681 | cross-spawn "^7.0.3" 1682 | get-stream "^6.0.0" 1683 | human-signals "^2.1.0" 1684 | is-stream "^2.0.0" 1685 | merge-stream "^2.0.0" 1686 | npm-run-path "^4.0.1" 1687 | onetime "^5.1.2" 1688 | signal-exit "^3.0.3" 1689 | strip-final-newline "^2.0.0" 1690 | 1691 | exit@^0.1.2: 1692 | version "0.1.2" 1693 | resolved "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz" 1694 | integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== 1695 | 1696 | expect@^29.0.0, expect@^29.7.0: 1697 | version "29.7.0" 1698 | resolved "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz" 1699 | integrity sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw== 1700 | dependencies: 1701 | "@jest/expect-utils" "^29.7.0" 1702 | jest-get-type "^29.6.3" 1703 | jest-matcher-utils "^29.7.0" 1704 | jest-message-util "^29.7.0" 1705 | jest-util "^29.7.0" 1706 | 1707 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 1708 | version "3.1.3" 1709 | resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" 1710 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 1711 | 1712 | fast-glob@^3.3.2: 1713 | version "3.3.3" 1714 | resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz" 1715 | integrity sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg== 1716 | dependencies: 1717 | "@nodelib/fs.stat" "^2.0.2" 1718 | "@nodelib/fs.walk" "^1.2.3" 1719 | glob-parent "^5.1.2" 1720 | merge2 "^1.3.0" 1721 | micromatch "^4.0.8" 1722 | 1723 | fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: 1724 | version "2.1.0" 1725 | resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" 1726 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1727 | 1728 | fast-levenshtein@^2.0.6: 1729 | version "2.0.6" 1730 | resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" 1731 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 1732 | 1733 | fastq@^1.6.0: 1734 | version "1.15.0" 1735 | resolved "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz" 1736 | integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== 1737 | dependencies: 1738 | reusify "^1.0.4" 1739 | 1740 | fb-watchman@^2.0.0: 1741 | version "2.0.2" 1742 | resolved "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz" 1743 | integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== 1744 | dependencies: 1745 | bser "2.1.1" 1746 | 1747 | file-entry-cache@^8.0.0: 1748 | version "8.0.0" 1749 | resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz" 1750 | integrity sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ== 1751 | dependencies: 1752 | flat-cache "^4.0.0" 1753 | 1754 | filelist@^1.0.4: 1755 | version "1.0.4" 1756 | resolved "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz" 1757 | integrity sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q== 1758 | dependencies: 1759 | minimatch "^5.0.1" 1760 | 1761 | fill-range@^7.0.1: 1762 | version "7.0.1" 1763 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" 1764 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1765 | dependencies: 1766 | to-regex-range "^5.0.1" 1767 | 1768 | fill-range@^7.1.1: 1769 | version "7.1.1" 1770 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz" 1771 | integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== 1772 | dependencies: 1773 | to-regex-range "^5.0.1" 1774 | 1775 | find-up@^4.0.0, find-up@^4.1.0: 1776 | version "4.1.0" 1777 | resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" 1778 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 1779 | dependencies: 1780 | locate-path "^5.0.0" 1781 | path-exists "^4.0.0" 1782 | 1783 | find-up@^5.0.0: 1784 | version "5.0.0" 1785 | resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz" 1786 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 1787 | dependencies: 1788 | locate-path "^6.0.0" 1789 | path-exists "^4.0.0" 1790 | 1791 | flat-cache@^4.0.0: 1792 | version "4.0.1" 1793 | resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz" 1794 | integrity sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw== 1795 | dependencies: 1796 | flatted "^3.2.9" 1797 | keyv "^4.5.4" 1798 | 1799 | flatted@^3.2.9: 1800 | version "3.3.3" 1801 | resolved "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz" 1802 | integrity sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg== 1803 | 1804 | fs.realpath@^1.0.0: 1805 | version "1.0.0" 1806 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" 1807 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 1808 | 1809 | fsevents@2.3.3, fsevents@^2.3.2: 1810 | version "2.3.3" 1811 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" 1812 | integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== 1813 | 1814 | function-bind@^1.1.1: 1815 | version "1.1.1" 1816 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" 1817 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1818 | 1819 | gensync@^1.0.0-beta.2: 1820 | version "1.0.0-beta.2" 1821 | resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz" 1822 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 1823 | 1824 | get-caller-file@^2.0.5: 1825 | version "2.0.5" 1826 | resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" 1827 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1828 | 1829 | get-package-type@^0.1.0: 1830 | version "0.1.0" 1831 | resolved "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz" 1832 | integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== 1833 | 1834 | get-stream@^6.0.0: 1835 | version "6.0.1" 1836 | resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz" 1837 | integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== 1838 | 1839 | glob-parent@^5.1.2: 1840 | version "5.1.2" 1841 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" 1842 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 1843 | dependencies: 1844 | is-glob "^4.0.1" 1845 | 1846 | glob-parent@^6.0.2: 1847 | version "6.0.2" 1848 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz" 1849 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 1850 | dependencies: 1851 | is-glob "^4.0.3" 1852 | 1853 | glob@^7.1.3, glob@^7.1.4: 1854 | version "7.2.3" 1855 | resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz" 1856 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 1857 | dependencies: 1858 | fs.realpath "^1.0.0" 1859 | inflight "^1.0.4" 1860 | inherits "2" 1861 | minimatch "^3.1.1" 1862 | once "^1.3.0" 1863 | path-is-absolute "^1.0.0" 1864 | 1865 | globals@^11.1.0: 1866 | version "11.12.0" 1867 | resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz" 1868 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1869 | 1870 | globals@^14.0.0: 1871 | version "14.0.0" 1872 | resolved "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz" 1873 | integrity sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ== 1874 | 1875 | graceful-fs@^4.2.9: 1876 | version "4.2.10" 1877 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz" 1878 | integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== 1879 | 1880 | graphemer@^1.4.0: 1881 | version "1.4.0" 1882 | resolved "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz" 1883 | integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== 1884 | 1885 | has-flag@^3.0.0: 1886 | version "3.0.0" 1887 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" 1888 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== 1889 | 1890 | has-flag@^4.0.0: 1891 | version "4.0.0" 1892 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" 1893 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1894 | 1895 | has@^1.0.3: 1896 | version "1.0.3" 1897 | resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz" 1898 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1899 | dependencies: 1900 | function-bind "^1.1.1" 1901 | 1902 | html-escaper@^2.0.0: 1903 | version "2.0.2" 1904 | resolved "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz" 1905 | integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== 1906 | 1907 | human-signals@^2.1.0: 1908 | version "2.1.0" 1909 | resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz" 1910 | integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== 1911 | 1912 | ignore@^5.2.0: 1913 | version "5.2.4" 1914 | resolved "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz" 1915 | integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== 1916 | 1917 | ignore@^5.3.1: 1918 | version "5.3.2" 1919 | resolved "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz" 1920 | integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== 1921 | 1922 | import-fresh@^3.2.1: 1923 | version "3.3.0" 1924 | resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz" 1925 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1926 | dependencies: 1927 | parent-module "^1.0.0" 1928 | resolve-from "^4.0.0" 1929 | 1930 | import-local@^3.0.2: 1931 | version "3.1.0" 1932 | resolved "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz" 1933 | integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== 1934 | dependencies: 1935 | pkg-dir "^4.2.0" 1936 | resolve-cwd "^3.0.0" 1937 | 1938 | imurmurhash@^0.1.4: 1939 | version "0.1.4" 1940 | resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" 1941 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 1942 | 1943 | inflight@^1.0.4: 1944 | version "1.0.6" 1945 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" 1946 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 1947 | dependencies: 1948 | once "^1.3.0" 1949 | wrappy "1" 1950 | 1951 | inherits@2: 1952 | version "2.0.4" 1953 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" 1954 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1955 | 1956 | is-arrayish@^0.2.1: 1957 | version "0.2.1" 1958 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" 1959 | integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== 1960 | 1961 | is-core-module@^2.9.0: 1962 | version "2.11.0" 1963 | resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz" 1964 | integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== 1965 | dependencies: 1966 | has "^1.0.3" 1967 | 1968 | is-extglob@^2.1.1: 1969 | version "2.1.1" 1970 | resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" 1971 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 1972 | 1973 | is-fullwidth-code-point@^3.0.0: 1974 | version "3.0.0" 1975 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" 1976 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1977 | 1978 | is-generator-fn@^2.0.0: 1979 | version "2.1.0" 1980 | resolved "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz" 1981 | integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== 1982 | 1983 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: 1984 | version "4.0.3" 1985 | resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" 1986 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1987 | dependencies: 1988 | is-extglob "^2.1.1" 1989 | 1990 | is-number@^7.0.0: 1991 | version "7.0.0" 1992 | resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" 1993 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1994 | 1995 | is-stream@^2.0.0: 1996 | version "2.0.1" 1997 | resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz" 1998 | integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== 1999 | 2000 | isexe@^2.0.0: 2001 | version "2.0.0" 2002 | resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" 2003 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 2004 | 2005 | istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: 2006 | version "3.2.0" 2007 | resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz" 2008 | integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== 2009 | 2010 | istanbul-lib-instrument@^5.0.4: 2011 | version "5.2.1" 2012 | resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz" 2013 | integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== 2014 | dependencies: 2015 | "@babel/core" "^7.12.3" 2016 | "@babel/parser" "^7.14.7" 2017 | "@istanbuljs/schema" "^0.1.2" 2018 | istanbul-lib-coverage "^3.2.0" 2019 | semver "^6.3.0" 2020 | 2021 | istanbul-lib-instrument@^6.0.0: 2022 | version "6.0.0" 2023 | resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.0.tgz" 2024 | integrity sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw== 2025 | dependencies: 2026 | "@babel/core" "^7.12.3" 2027 | "@babel/parser" "^7.14.7" 2028 | "@istanbuljs/schema" "^0.1.2" 2029 | istanbul-lib-coverage "^3.2.0" 2030 | semver "^7.5.4" 2031 | 2032 | istanbul-lib-report@^3.0.0: 2033 | version "3.0.0" 2034 | resolved "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz" 2035 | integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== 2036 | dependencies: 2037 | istanbul-lib-coverage "^3.0.0" 2038 | make-dir "^3.0.0" 2039 | supports-color "^7.1.0" 2040 | 2041 | istanbul-lib-source-maps@^4.0.0: 2042 | version "4.0.1" 2043 | resolved "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz" 2044 | integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== 2045 | dependencies: 2046 | debug "^4.1.1" 2047 | istanbul-lib-coverage "^3.0.0" 2048 | source-map "^0.6.1" 2049 | 2050 | istanbul-reports@^3.1.3: 2051 | version "3.1.5" 2052 | resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz" 2053 | integrity sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w== 2054 | dependencies: 2055 | html-escaper "^2.0.0" 2056 | istanbul-lib-report "^3.0.0" 2057 | 2058 | jake@^10.8.5: 2059 | version "10.9.1" 2060 | resolved "https://registry.npmjs.org/jake/-/jake-10.9.1.tgz" 2061 | integrity sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w== 2062 | dependencies: 2063 | async "^3.2.3" 2064 | chalk "^4.0.2" 2065 | filelist "^1.0.4" 2066 | minimatch "^3.1.2" 2067 | 2068 | jest-changed-files@^29.7.0: 2069 | version "29.7.0" 2070 | resolved "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz" 2071 | integrity sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w== 2072 | dependencies: 2073 | execa "^5.0.0" 2074 | jest-util "^29.7.0" 2075 | p-limit "^3.1.0" 2076 | 2077 | jest-circus@^29.7.0: 2078 | version "29.7.0" 2079 | resolved "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz" 2080 | integrity sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw== 2081 | dependencies: 2082 | "@jest/environment" "^29.7.0" 2083 | "@jest/expect" "^29.7.0" 2084 | "@jest/test-result" "^29.7.0" 2085 | "@jest/types" "^29.6.3" 2086 | "@types/node" "*" 2087 | chalk "^4.0.0" 2088 | co "^4.6.0" 2089 | dedent "^1.0.0" 2090 | is-generator-fn "^2.0.0" 2091 | jest-each "^29.7.0" 2092 | jest-matcher-utils "^29.7.0" 2093 | jest-message-util "^29.7.0" 2094 | jest-runtime "^29.7.0" 2095 | jest-snapshot "^29.7.0" 2096 | jest-util "^29.7.0" 2097 | p-limit "^3.1.0" 2098 | pretty-format "^29.7.0" 2099 | pure-rand "^6.0.0" 2100 | slash "^3.0.0" 2101 | stack-utils "^2.0.3" 2102 | 2103 | jest-cli@^29.7.0: 2104 | version "29.7.0" 2105 | resolved "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz" 2106 | integrity sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg== 2107 | dependencies: 2108 | "@jest/core" "^29.7.0" 2109 | "@jest/test-result" "^29.7.0" 2110 | "@jest/types" "^29.6.3" 2111 | chalk "^4.0.0" 2112 | create-jest "^29.7.0" 2113 | exit "^0.1.2" 2114 | import-local "^3.0.2" 2115 | jest-config "^29.7.0" 2116 | jest-util "^29.7.0" 2117 | jest-validate "^29.7.0" 2118 | yargs "^17.3.1" 2119 | 2120 | jest-config@^29.7.0: 2121 | version "29.7.0" 2122 | resolved "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz" 2123 | integrity sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ== 2124 | dependencies: 2125 | "@babel/core" "^7.11.6" 2126 | "@jest/test-sequencer" "^29.7.0" 2127 | "@jest/types" "^29.6.3" 2128 | babel-jest "^29.7.0" 2129 | chalk "^4.0.0" 2130 | ci-info "^3.2.0" 2131 | deepmerge "^4.2.2" 2132 | glob "^7.1.3" 2133 | graceful-fs "^4.2.9" 2134 | jest-circus "^29.7.0" 2135 | jest-environment-node "^29.7.0" 2136 | jest-get-type "^29.6.3" 2137 | jest-regex-util "^29.6.3" 2138 | jest-resolve "^29.7.0" 2139 | jest-runner "^29.7.0" 2140 | jest-util "^29.7.0" 2141 | jest-validate "^29.7.0" 2142 | micromatch "^4.0.4" 2143 | parse-json "^5.2.0" 2144 | pretty-format "^29.7.0" 2145 | slash "^3.0.0" 2146 | strip-json-comments "^3.1.1" 2147 | 2148 | jest-diff@^29.7.0: 2149 | version "29.7.0" 2150 | resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz" 2151 | integrity sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw== 2152 | dependencies: 2153 | chalk "^4.0.0" 2154 | diff-sequences "^29.6.3" 2155 | jest-get-type "^29.6.3" 2156 | pretty-format "^29.7.0" 2157 | 2158 | jest-docblock@^29.7.0: 2159 | version "29.7.0" 2160 | resolved "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz" 2161 | integrity sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g== 2162 | dependencies: 2163 | detect-newline "^3.0.0" 2164 | 2165 | jest-each@^29.7.0: 2166 | version "29.7.0" 2167 | resolved "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz" 2168 | integrity sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ== 2169 | dependencies: 2170 | "@jest/types" "^29.6.3" 2171 | chalk "^4.0.0" 2172 | jest-get-type "^29.6.3" 2173 | jest-util "^29.7.0" 2174 | pretty-format "^29.7.0" 2175 | 2176 | jest-environment-node@^29.7.0: 2177 | version "29.7.0" 2178 | resolved "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz" 2179 | integrity sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw== 2180 | dependencies: 2181 | "@jest/environment" "^29.7.0" 2182 | "@jest/fake-timers" "^29.7.0" 2183 | "@jest/types" "^29.6.3" 2184 | "@types/node" "*" 2185 | jest-mock "^29.7.0" 2186 | jest-util "^29.7.0" 2187 | 2188 | jest-get-type@^29.6.3: 2189 | version "29.6.3" 2190 | resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz" 2191 | integrity sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw== 2192 | 2193 | jest-haste-map@^29.7.0: 2194 | version "29.7.0" 2195 | resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz" 2196 | integrity sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA== 2197 | dependencies: 2198 | "@jest/types" "^29.6.3" 2199 | "@types/graceful-fs" "^4.1.3" 2200 | "@types/node" "*" 2201 | anymatch "^3.0.3" 2202 | fb-watchman "^2.0.0" 2203 | graceful-fs "^4.2.9" 2204 | jest-regex-util "^29.6.3" 2205 | jest-util "^29.7.0" 2206 | jest-worker "^29.7.0" 2207 | micromatch "^4.0.4" 2208 | walker "^1.0.8" 2209 | optionalDependencies: 2210 | fsevents "^2.3.2" 2211 | 2212 | jest-leak-detector@^29.7.0: 2213 | version "29.7.0" 2214 | resolved "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz" 2215 | integrity sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw== 2216 | dependencies: 2217 | jest-get-type "^29.6.3" 2218 | pretty-format "^29.7.0" 2219 | 2220 | jest-matcher-utils@^29.7.0: 2221 | version "29.7.0" 2222 | resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz" 2223 | integrity sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g== 2224 | dependencies: 2225 | chalk "^4.0.0" 2226 | jest-diff "^29.7.0" 2227 | jest-get-type "^29.6.3" 2228 | pretty-format "^29.7.0" 2229 | 2230 | jest-message-util@^29.7.0: 2231 | version "29.7.0" 2232 | resolved "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz" 2233 | integrity sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w== 2234 | dependencies: 2235 | "@babel/code-frame" "^7.12.13" 2236 | "@jest/types" "^29.6.3" 2237 | "@types/stack-utils" "^2.0.0" 2238 | chalk "^4.0.0" 2239 | graceful-fs "^4.2.9" 2240 | micromatch "^4.0.4" 2241 | pretty-format "^29.7.0" 2242 | slash "^3.0.0" 2243 | stack-utils "^2.0.3" 2244 | 2245 | jest-mock@^29.7.0: 2246 | version "29.7.0" 2247 | resolved "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz" 2248 | integrity sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw== 2249 | dependencies: 2250 | "@jest/types" "^29.6.3" 2251 | "@types/node" "*" 2252 | jest-util "^29.7.0" 2253 | 2254 | jest-pnp-resolver@^1.2.2: 2255 | version "1.2.3" 2256 | resolved "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz" 2257 | integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== 2258 | 2259 | jest-regex-util@^29.6.3: 2260 | version "29.6.3" 2261 | resolved "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz" 2262 | integrity sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg== 2263 | 2264 | jest-resolve-dependencies@^29.7.0: 2265 | version "29.7.0" 2266 | resolved "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz" 2267 | integrity sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA== 2268 | dependencies: 2269 | jest-regex-util "^29.6.3" 2270 | jest-snapshot "^29.7.0" 2271 | 2272 | jest-resolve@^29.7.0: 2273 | version "29.7.0" 2274 | resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz" 2275 | integrity sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA== 2276 | dependencies: 2277 | chalk "^4.0.0" 2278 | graceful-fs "^4.2.9" 2279 | jest-haste-map "^29.7.0" 2280 | jest-pnp-resolver "^1.2.2" 2281 | jest-util "^29.7.0" 2282 | jest-validate "^29.7.0" 2283 | resolve "^1.20.0" 2284 | resolve.exports "^2.0.0" 2285 | slash "^3.0.0" 2286 | 2287 | jest-runner@^29.7.0: 2288 | version "29.7.0" 2289 | resolved "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz" 2290 | integrity sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ== 2291 | dependencies: 2292 | "@jest/console" "^29.7.0" 2293 | "@jest/environment" "^29.7.0" 2294 | "@jest/test-result" "^29.7.0" 2295 | "@jest/transform" "^29.7.0" 2296 | "@jest/types" "^29.6.3" 2297 | "@types/node" "*" 2298 | chalk "^4.0.0" 2299 | emittery "^0.13.1" 2300 | graceful-fs "^4.2.9" 2301 | jest-docblock "^29.7.0" 2302 | jest-environment-node "^29.7.0" 2303 | jest-haste-map "^29.7.0" 2304 | jest-leak-detector "^29.7.0" 2305 | jest-message-util "^29.7.0" 2306 | jest-resolve "^29.7.0" 2307 | jest-runtime "^29.7.0" 2308 | jest-util "^29.7.0" 2309 | jest-watcher "^29.7.0" 2310 | jest-worker "^29.7.0" 2311 | p-limit "^3.1.0" 2312 | source-map-support "0.5.13" 2313 | 2314 | jest-runtime@^29.7.0: 2315 | version "29.7.0" 2316 | resolved "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz" 2317 | integrity sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ== 2318 | dependencies: 2319 | "@jest/environment" "^29.7.0" 2320 | "@jest/fake-timers" "^29.7.0" 2321 | "@jest/globals" "^29.7.0" 2322 | "@jest/source-map" "^29.6.3" 2323 | "@jest/test-result" "^29.7.0" 2324 | "@jest/transform" "^29.7.0" 2325 | "@jest/types" "^29.6.3" 2326 | "@types/node" "*" 2327 | chalk "^4.0.0" 2328 | cjs-module-lexer "^1.0.0" 2329 | collect-v8-coverage "^1.0.0" 2330 | glob "^7.1.3" 2331 | graceful-fs "^4.2.9" 2332 | jest-haste-map "^29.7.0" 2333 | jest-message-util "^29.7.0" 2334 | jest-mock "^29.7.0" 2335 | jest-regex-util "^29.6.3" 2336 | jest-resolve "^29.7.0" 2337 | jest-snapshot "^29.7.0" 2338 | jest-util "^29.7.0" 2339 | slash "^3.0.0" 2340 | strip-bom "^4.0.0" 2341 | 2342 | jest-snapshot@^29.7.0: 2343 | version "29.7.0" 2344 | resolved "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz" 2345 | integrity sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw== 2346 | dependencies: 2347 | "@babel/core" "^7.11.6" 2348 | "@babel/generator" "^7.7.2" 2349 | "@babel/plugin-syntax-jsx" "^7.7.2" 2350 | "@babel/plugin-syntax-typescript" "^7.7.2" 2351 | "@babel/types" "^7.3.3" 2352 | "@jest/expect-utils" "^29.7.0" 2353 | "@jest/transform" "^29.7.0" 2354 | "@jest/types" "^29.6.3" 2355 | babel-preset-current-node-syntax "^1.0.0" 2356 | chalk "^4.0.0" 2357 | expect "^29.7.0" 2358 | graceful-fs "^4.2.9" 2359 | jest-diff "^29.7.0" 2360 | jest-get-type "^29.6.3" 2361 | jest-matcher-utils "^29.7.0" 2362 | jest-message-util "^29.7.0" 2363 | jest-util "^29.7.0" 2364 | natural-compare "^1.4.0" 2365 | pretty-format "^29.7.0" 2366 | semver "^7.5.3" 2367 | 2368 | jest-util@^29.0.0, jest-util@^29.7.0: 2369 | version "29.7.0" 2370 | resolved "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz" 2371 | integrity sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA== 2372 | dependencies: 2373 | "@jest/types" "^29.6.3" 2374 | "@types/node" "*" 2375 | chalk "^4.0.0" 2376 | ci-info "^3.2.0" 2377 | graceful-fs "^4.2.9" 2378 | picomatch "^2.2.3" 2379 | 2380 | jest-validate@^29.7.0: 2381 | version "29.7.0" 2382 | resolved "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz" 2383 | integrity sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw== 2384 | dependencies: 2385 | "@jest/types" "^29.6.3" 2386 | camelcase "^6.2.0" 2387 | chalk "^4.0.0" 2388 | jest-get-type "^29.6.3" 2389 | leven "^3.1.0" 2390 | pretty-format "^29.7.0" 2391 | 2392 | jest-watcher@^29.7.0: 2393 | version "29.7.0" 2394 | resolved "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz" 2395 | integrity sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g== 2396 | dependencies: 2397 | "@jest/test-result" "^29.7.0" 2398 | "@jest/types" "^29.6.3" 2399 | "@types/node" "*" 2400 | ansi-escapes "^4.2.1" 2401 | chalk "^4.0.0" 2402 | emittery "^0.13.1" 2403 | jest-util "^29.7.0" 2404 | string-length "^4.0.1" 2405 | 2406 | jest-worker@^29.7.0: 2407 | version "29.7.0" 2408 | resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz" 2409 | integrity sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw== 2410 | dependencies: 2411 | "@types/node" "*" 2412 | jest-util "^29.7.0" 2413 | merge-stream "^2.0.0" 2414 | supports-color "^8.0.0" 2415 | 2416 | jest@^29.7.0: 2417 | version "29.7.0" 2418 | resolved "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz" 2419 | integrity sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw== 2420 | dependencies: 2421 | "@jest/core" "^29.7.0" 2422 | "@jest/types" "^29.6.3" 2423 | import-local "^3.0.2" 2424 | jest-cli "^29.7.0" 2425 | 2426 | js-tokens@^4.0.0: 2427 | version "4.0.0" 2428 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" 2429 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 2430 | 2431 | js-yaml@^3.13.1: 2432 | version "3.14.1" 2433 | resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz" 2434 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== 2435 | dependencies: 2436 | argparse "^1.0.7" 2437 | esprima "^4.0.0" 2438 | 2439 | js-yaml@^4.1.0: 2440 | version "4.1.0" 2441 | resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz" 2442 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 2443 | dependencies: 2444 | argparse "^2.0.1" 2445 | 2446 | jsesc@^2.5.1: 2447 | version "2.5.2" 2448 | resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz" 2449 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 2450 | 2451 | json-buffer@3.0.1: 2452 | version "3.0.1" 2453 | resolved "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz" 2454 | integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== 2455 | 2456 | json-parse-even-better-errors@^2.3.0: 2457 | version "2.3.1" 2458 | resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" 2459 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 2460 | 2461 | json-schema-traverse@^0.4.1: 2462 | version "0.4.1" 2463 | resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" 2464 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 2465 | 2466 | json-stable-stringify-without-jsonify@^1.0.1: 2467 | version "1.0.1" 2468 | resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz" 2469 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 2470 | 2471 | json5@^2.2.2, json5@^2.2.3: 2472 | version "2.2.3" 2473 | resolved "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz" 2474 | integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== 2475 | 2476 | keyv@^4.5.4: 2477 | version "4.5.4" 2478 | resolved "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz" 2479 | integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== 2480 | dependencies: 2481 | json-buffer "3.0.1" 2482 | 2483 | kleur@^3.0.3: 2484 | version "3.0.3" 2485 | resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz" 2486 | integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== 2487 | 2488 | leven@^3.1.0: 2489 | version "3.1.0" 2490 | resolved "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz" 2491 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== 2492 | 2493 | levn@^0.4.1: 2494 | version "0.4.1" 2495 | resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz" 2496 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 2497 | dependencies: 2498 | prelude-ls "^1.2.1" 2499 | type-check "~0.4.0" 2500 | 2501 | lines-and-columns@^1.1.6: 2502 | version "1.2.4" 2503 | resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz" 2504 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== 2505 | 2506 | linkify-it@^5.0.0: 2507 | version "5.0.0" 2508 | resolved "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz" 2509 | integrity sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ== 2510 | dependencies: 2511 | uc.micro "^2.0.0" 2512 | 2513 | locate-path@^5.0.0: 2514 | version "5.0.0" 2515 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" 2516 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 2517 | dependencies: 2518 | p-locate "^4.1.0" 2519 | 2520 | locate-path@^6.0.0: 2521 | version "6.0.0" 2522 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz" 2523 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 2524 | dependencies: 2525 | p-locate "^5.0.0" 2526 | 2527 | lodash.memoize@^4.1.2: 2528 | version "4.1.2" 2529 | resolved "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz" 2530 | integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== 2531 | 2532 | lodash.merge@^4.6.2: 2533 | version "4.6.2" 2534 | resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz" 2535 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 2536 | 2537 | lru-cache@^5.1.1: 2538 | version "5.1.1" 2539 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz" 2540 | integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== 2541 | dependencies: 2542 | yallist "^3.0.2" 2543 | 2544 | lru-cache@^6.0.0: 2545 | version "6.0.0" 2546 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" 2547 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 2548 | dependencies: 2549 | yallist "^4.0.0" 2550 | 2551 | lunr@^2.3.9: 2552 | version "2.3.9" 2553 | resolved "https://registry.npmjs.org/lunr/-/lunr-2.3.9.tgz" 2554 | integrity sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow== 2555 | 2556 | make-dir@^3.0.0: 2557 | version "3.1.0" 2558 | resolved "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz" 2559 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 2560 | dependencies: 2561 | semver "^6.0.0" 2562 | 2563 | make-error@^1.3.6: 2564 | version "1.3.6" 2565 | resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz" 2566 | integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== 2567 | 2568 | makeerror@1.0.12: 2569 | version "1.0.12" 2570 | resolved "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz" 2571 | integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== 2572 | dependencies: 2573 | tmpl "1.0.5" 2574 | 2575 | markdown-it@^14.1.0: 2576 | version "14.1.0" 2577 | resolved "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.0.tgz" 2578 | integrity sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg== 2579 | dependencies: 2580 | argparse "^2.0.1" 2581 | entities "^4.4.0" 2582 | linkify-it "^5.0.0" 2583 | mdurl "^2.0.0" 2584 | punycode.js "^2.3.1" 2585 | uc.micro "^2.1.0" 2586 | 2587 | mdurl@^2.0.0: 2588 | version "2.0.0" 2589 | resolved "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz" 2590 | integrity sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w== 2591 | 2592 | merge-stream@^2.0.0: 2593 | version "2.0.0" 2594 | resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" 2595 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 2596 | 2597 | merge2@^1.3.0: 2598 | version "1.4.1" 2599 | resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" 2600 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 2601 | 2602 | micromatch@^4.0.4: 2603 | version "4.0.5" 2604 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz" 2605 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 2606 | dependencies: 2607 | braces "^3.0.2" 2608 | picomatch "^2.3.1" 2609 | 2610 | micromatch@^4.0.8: 2611 | version "4.0.8" 2612 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz" 2613 | integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== 2614 | dependencies: 2615 | braces "^3.0.3" 2616 | picomatch "^2.3.1" 2617 | 2618 | mimic-fn@^2.1.0: 2619 | version "2.1.0" 2620 | resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" 2621 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 2622 | 2623 | minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: 2624 | version "3.1.2" 2625 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" 2626 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 2627 | dependencies: 2628 | brace-expansion "^1.1.7" 2629 | 2630 | minimatch@^5.0.1: 2631 | version "5.1.6" 2632 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz" 2633 | integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== 2634 | dependencies: 2635 | brace-expansion "^2.0.1" 2636 | 2637 | minimatch@^9.0.4, minimatch@^9.0.5: 2638 | version "9.0.5" 2639 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz" 2640 | integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== 2641 | dependencies: 2642 | brace-expansion "^2.0.1" 2643 | 2644 | ms@2.1.2: 2645 | version "2.1.2" 2646 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" 2647 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 2648 | 2649 | natural-compare@^1.4.0: 2650 | version "1.4.0" 2651 | resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" 2652 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 2653 | 2654 | node-int64@^0.4.0: 2655 | version "0.4.0" 2656 | resolved "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz" 2657 | integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== 2658 | 2659 | node-releases@^2.0.6: 2660 | version "2.0.8" 2661 | resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.8.tgz" 2662 | integrity sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A== 2663 | 2664 | normalize-path@^3.0.0: 2665 | version "3.0.0" 2666 | resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" 2667 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 2668 | 2669 | npm-run-path@^4.0.1: 2670 | version "4.0.1" 2671 | resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz" 2672 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 2673 | dependencies: 2674 | path-key "^3.0.0" 2675 | 2676 | once@^1.3.0: 2677 | version "1.4.0" 2678 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" 2679 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 2680 | dependencies: 2681 | wrappy "1" 2682 | 2683 | onetime@^5.1.2: 2684 | version "5.1.2" 2685 | resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" 2686 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 2687 | dependencies: 2688 | mimic-fn "^2.1.0" 2689 | 2690 | optionator@^0.9.3: 2691 | version "0.9.3" 2692 | resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz" 2693 | integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== 2694 | dependencies: 2695 | "@aashutoshrathi/word-wrap" "^1.2.3" 2696 | deep-is "^0.1.3" 2697 | fast-levenshtein "^2.0.6" 2698 | levn "^0.4.1" 2699 | prelude-ls "^1.2.1" 2700 | type-check "^0.4.0" 2701 | 2702 | p-limit@^2.2.0: 2703 | version "2.3.0" 2704 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" 2705 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 2706 | dependencies: 2707 | p-try "^2.0.0" 2708 | 2709 | p-limit@^3.0.2, p-limit@^3.1.0: 2710 | version "3.1.0" 2711 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz" 2712 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 2713 | dependencies: 2714 | yocto-queue "^0.1.0" 2715 | 2716 | p-locate@^4.1.0: 2717 | version "4.1.0" 2718 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" 2719 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 2720 | dependencies: 2721 | p-limit "^2.2.0" 2722 | 2723 | p-locate@^5.0.0: 2724 | version "5.0.0" 2725 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz" 2726 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 2727 | dependencies: 2728 | p-limit "^3.0.2" 2729 | 2730 | p-try@^2.0.0: 2731 | version "2.2.0" 2732 | resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" 2733 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 2734 | 2735 | parent-module@^1.0.0: 2736 | version "1.0.1" 2737 | resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz" 2738 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 2739 | dependencies: 2740 | callsites "^3.0.0" 2741 | 2742 | parse-json@^5.2.0: 2743 | version "5.2.0" 2744 | resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" 2745 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 2746 | dependencies: 2747 | "@babel/code-frame" "^7.0.0" 2748 | error-ex "^1.3.1" 2749 | json-parse-even-better-errors "^2.3.0" 2750 | lines-and-columns "^1.1.6" 2751 | 2752 | path-exists@^4.0.0: 2753 | version "4.0.0" 2754 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" 2755 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 2756 | 2757 | path-is-absolute@^1.0.0: 2758 | version "1.0.1" 2759 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" 2760 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 2761 | 2762 | path-key@^3.0.0, path-key@^3.1.0: 2763 | version "3.1.1" 2764 | resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" 2765 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 2766 | 2767 | path-parse@^1.0.7: 2768 | version "1.0.7" 2769 | resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" 2770 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 2771 | 2772 | picocolors@^1.0.0: 2773 | version "1.0.0" 2774 | resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz" 2775 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 2776 | 2777 | picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1: 2778 | version "2.3.1" 2779 | resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" 2780 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 2781 | 2782 | pirates@^4.0.4: 2783 | version "4.0.5" 2784 | resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz" 2785 | integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== 2786 | 2787 | pkg-dir@^4.2.0: 2788 | version "4.2.0" 2789 | resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz" 2790 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 2791 | dependencies: 2792 | find-up "^4.0.0" 2793 | 2794 | prelude-ls@^1.2.1: 2795 | version "1.2.1" 2796 | resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz" 2797 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 2798 | 2799 | pretty-format@^29.0.0, pretty-format@^29.7.0: 2800 | version "29.7.0" 2801 | resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz" 2802 | integrity sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ== 2803 | dependencies: 2804 | "@jest/schemas" "^29.6.3" 2805 | ansi-styles "^5.0.0" 2806 | react-is "^18.0.0" 2807 | 2808 | prisma@6.6.0: 2809 | version "6.6.0" 2810 | resolved "https://registry.npmjs.org/prisma/-/prisma-6.6.0.tgz" 2811 | integrity sha512-SYCUykz+1cnl6Ugd8VUvtTQq5+j1Q7C0CtzKPjQ8JyA2ALh0EEJkMCS+KgdnvKW1lrxjtjCyJSHOOT236mENYg== 2812 | dependencies: 2813 | "@prisma/config" "6.6.0" 2814 | "@prisma/engines" "6.6.0" 2815 | optionalDependencies: 2816 | fsevents "2.3.3" 2817 | 2818 | prompts@^2.0.1: 2819 | version "2.4.2" 2820 | resolved "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz" 2821 | integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== 2822 | dependencies: 2823 | kleur "^3.0.3" 2824 | sisteransi "^1.0.5" 2825 | 2826 | punycode.js@^2.3.1: 2827 | version "2.3.1" 2828 | resolved "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz" 2829 | integrity sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA== 2830 | 2831 | punycode@^2.1.0: 2832 | version "2.3.0" 2833 | resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz" 2834 | integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== 2835 | 2836 | pure-rand@^6.0.0: 2837 | version "6.0.0" 2838 | resolved "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.0.tgz" 2839 | integrity sha512-rLSBxJjP+4DQOgcJAx6RZHT2he2pkhQdSnofG5VWyVl6GRq/K02ISOuOLcsMOrtKDIJb8JN2zm3FFzWNbezdPw== 2840 | 2841 | queue-microtask@^1.2.2: 2842 | version "1.2.3" 2843 | resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" 2844 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 2845 | 2846 | react-is@^18.0.0: 2847 | version "18.2.0" 2848 | resolved "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz" 2849 | integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== 2850 | 2851 | require-directory@^2.1.1: 2852 | version "2.1.1" 2853 | resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz" 2854 | integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== 2855 | 2856 | resolve-cwd@^3.0.0: 2857 | version "3.0.0" 2858 | resolved "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz" 2859 | integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== 2860 | dependencies: 2861 | resolve-from "^5.0.0" 2862 | 2863 | resolve-from@^4.0.0: 2864 | version "4.0.0" 2865 | resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" 2866 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 2867 | 2868 | resolve-from@^5.0.0: 2869 | version "5.0.0" 2870 | resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz" 2871 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 2872 | 2873 | resolve.exports@^2.0.0: 2874 | version "2.0.0" 2875 | resolved "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.0.tgz" 2876 | integrity sha512-6K/gDlqgQscOlg9fSRpWstA8sYe8rbELsSTNpx+3kTrsVCzvSl0zIvRErM7fdl9ERWDsKnrLnwB+Ne89918XOg== 2877 | 2878 | resolve@^1.20.0: 2879 | version "1.22.1" 2880 | resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz" 2881 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== 2882 | dependencies: 2883 | is-core-module "^2.9.0" 2884 | path-parse "^1.0.7" 2885 | supports-preserve-symlinks-flag "^1.0.0" 2886 | 2887 | reusify@^1.0.4: 2888 | version "1.0.4" 2889 | resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" 2890 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 2891 | 2892 | run-parallel@^1.1.9: 2893 | version "1.2.0" 2894 | resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" 2895 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 2896 | dependencies: 2897 | queue-microtask "^1.2.2" 2898 | 2899 | semver@^6.0.0, semver@^6.3.0: 2900 | version "6.3.0" 2901 | resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" 2902 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 2903 | 2904 | semver@^7.5.3: 2905 | version "7.5.3" 2906 | resolved "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz" 2907 | integrity sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ== 2908 | dependencies: 2909 | lru-cache "^6.0.0" 2910 | 2911 | semver@^7.5.4: 2912 | version "7.5.4" 2913 | resolved "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz" 2914 | integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== 2915 | dependencies: 2916 | lru-cache "^6.0.0" 2917 | 2918 | semver@^7.6.0, semver@^7.7.1: 2919 | version "7.7.1" 2920 | resolved "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz" 2921 | integrity sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA== 2922 | 2923 | shebang-command@^2.0.0: 2924 | version "2.0.0" 2925 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" 2926 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 2927 | dependencies: 2928 | shebang-regex "^3.0.0" 2929 | 2930 | shebang-regex@^3.0.0: 2931 | version "3.0.0" 2932 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" 2933 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 2934 | 2935 | signal-exit@^3.0.3, signal-exit@^3.0.7: 2936 | version "3.0.7" 2937 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz" 2938 | integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== 2939 | 2940 | sisteransi@^1.0.5: 2941 | version "1.0.5" 2942 | resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz" 2943 | integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== 2944 | 2945 | slash@^3.0.0: 2946 | version "3.0.0" 2947 | resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" 2948 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 2949 | 2950 | source-map-support@0.5.13: 2951 | version "0.5.13" 2952 | resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz" 2953 | integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== 2954 | dependencies: 2955 | buffer-from "^1.0.0" 2956 | source-map "^0.6.0" 2957 | 2958 | source-map@^0.6.0, source-map@^0.6.1: 2959 | version "0.6.1" 2960 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" 2961 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 2962 | 2963 | sprintf-js@~1.0.2: 2964 | version "1.0.3" 2965 | resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" 2966 | integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== 2967 | 2968 | stack-utils@^2.0.3: 2969 | version "2.0.6" 2970 | resolved "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz" 2971 | integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== 2972 | dependencies: 2973 | escape-string-regexp "^2.0.0" 2974 | 2975 | string-length@^4.0.1: 2976 | version "4.0.2" 2977 | resolved "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz" 2978 | integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== 2979 | dependencies: 2980 | char-regex "^1.0.2" 2981 | strip-ansi "^6.0.0" 2982 | 2983 | string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: 2984 | version "4.2.3" 2985 | resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" 2986 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 2987 | dependencies: 2988 | emoji-regex "^8.0.0" 2989 | is-fullwidth-code-point "^3.0.0" 2990 | strip-ansi "^6.0.1" 2991 | 2992 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 2993 | version "6.0.1" 2994 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" 2995 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 2996 | dependencies: 2997 | ansi-regex "^5.0.1" 2998 | 2999 | strip-bom@^4.0.0: 3000 | version "4.0.0" 3001 | resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz" 3002 | integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== 3003 | 3004 | strip-final-newline@^2.0.0: 3005 | version "2.0.0" 3006 | resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz" 3007 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 3008 | 3009 | strip-json-comments@^3.1.1: 3010 | version "3.1.1" 3011 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" 3012 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 3013 | 3014 | supports-color@^5.3.0: 3015 | version "5.5.0" 3016 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" 3017 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 3018 | dependencies: 3019 | has-flag "^3.0.0" 3020 | 3021 | supports-color@^7.1.0: 3022 | version "7.2.0" 3023 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" 3024 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 3025 | dependencies: 3026 | has-flag "^4.0.0" 3027 | 3028 | supports-color@^8.0.0: 3029 | version "8.1.1" 3030 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz" 3031 | integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== 3032 | dependencies: 3033 | has-flag "^4.0.0" 3034 | 3035 | supports-preserve-symlinks-flag@^1.0.0: 3036 | version "1.0.0" 3037 | resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" 3038 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 3039 | 3040 | test-exclude@^6.0.0: 3041 | version "6.0.0" 3042 | resolved "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz" 3043 | integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== 3044 | dependencies: 3045 | "@istanbuljs/schema" "^0.1.2" 3046 | glob "^7.1.4" 3047 | minimatch "^3.0.4" 3048 | 3049 | tmpl@1.0.5: 3050 | version "1.0.5" 3051 | resolved "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz" 3052 | integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== 3053 | 3054 | to-fast-properties@^2.0.0: 3055 | version "2.0.0" 3056 | resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz" 3057 | integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== 3058 | 3059 | to-regex-range@^5.0.1: 3060 | version "5.0.1" 3061 | resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" 3062 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 3063 | dependencies: 3064 | is-number "^7.0.0" 3065 | 3066 | ts-api-utils@^2.0.1: 3067 | version "2.1.0" 3068 | resolved "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz" 3069 | integrity sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ== 3070 | 3071 | ts-jest@^29.3.2: 3072 | version "29.3.2" 3073 | resolved "https://registry.npmjs.org/ts-jest/-/ts-jest-29.3.2.tgz" 3074 | integrity sha512-bJJkrWc6PjFVz5g2DGCNUo8z7oFEYaz1xP1NpeDU7KNLMWPpEyV8Chbpkn8xjzgRDpQhnGMyvyldoL7h8JXyug== 3075 | dependencies: 3076 | bs-logger "^0.2.6" 3077 | ejs "^3.1.10" 3078 | fast-json-stable-stringify "^2.1.0" 3079 | jest-util "^29.0.0" 3080 | json5 "^2.2.3" 3081 | lodash.memoize "^4.1.2" 3082 | make-error "^1.3.6" 3083 | semver "^7.7.1" 3084 | type-fest "^4.39.1" 3085 | yargs-parser "^21.1.1" 3086 | 3087 | type-check@^0.4.0, type-check@~0.4.0: 3088 | version "0.4.0" 3089 | resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" 3090 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 3091 | dependencies: 3092 | prelude-ls "^1.2.1" 3093 | 3094 | type-detect@4.0.8: 3095 | version "4.0.8" 3096 | resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz" 3097 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== 3098 | 3099 | type-fest@^0.21.3: 3100 | version "0.21.3" 3101 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz" 3102 | integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== 3103 | 3104 | type-fest@^4.39.1: 3105 | version "4.39.1" 3106 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-4.39.1.tgz" 3107 | integrity sha512-uW9qzd66uyHYxwyVBYiwS4Oi0qZyUqwjU+Oevr6ZogYiXt99EOYtwvzMSLw1c3lYo2HzJsep/NB23iEVEgjG/w== 3108 | 3109 | typedoc@^0.28.2: 3110 | version "0.28.2" 3111 | resolved "https://registry.npmjs.org/typedoc/-/typedoc-0.28.2.tgz" 3112 | integrity sha512-9Giuv+eppFKnJ0oi+vxqLM817b/IrIsEMYgy3jj6zdvppAfDqV3d6DXL2vXUg2TnlL62V48th25Zf/tcQKAJdg== 3113 | dependencies: 3114 | "@gerrit0/mini-shiki" "^3.2.2" 3115 | lunr "^2.3.9" 3116 | markdown-it "^14.1.0" 3117 | minimatch "^9.0.5" 3118 | yaml "^2.7.1" 3119 | 3120 | typescript@^5.8.3: 3121 | version "5.8.3" 3122 | resolved "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz" 3123 | integrity sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ== 3124 | 3125 | uc.micro@^2.0.0, uc.micro@^2.1.0: 3126 | version "2.1.0" 3127 | resolved "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz" 3128 | integrity sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A== 3129 | 3130 | undici-types@~6.21.0: 3131 | version "6.21.0" 3132 | resolved "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz" 3133 | integrity sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ== 3134 | 3135 | update-browserslist-db@^1.0.9: 3136 | version "1.0.10" 3137 | resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz" 3138 | integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ== 3139 | dependencies: 3140 | escalade "^3.1.1" 3141 | picocolors "^1.0.0" 3142 | 3143 | uri-js@^4.2.2: 3144 | version "4.4.1" 3145 | resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" 3146 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 3147 | dependencies: 3148 | punycode "^2.1.0" 3149 | 3150 | v8-to-istanbul@^9.0.1: 3151 | version "9.0.1" 3152 | resolved "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.0.1.tgz" 3153 | integrity sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w== 3154 | dependencies: 3155 | "@jridgewell/trace-mapping" "^0.3.12" 3156 | "@types/istanbul-lib-coverage" "^2.0.1" 3157 | convert-source-map "^1.6.0" 3158 | 3159 | walker@^1.0.8: 3160 | version "1.0.8" 3161 | resolved "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz" 3162 | integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== 3163 | dependencies: 3164 | makeerror "1.0.12" 3165 | 3166 | which@^2.0.1: 3167 | version "2.0.2" 3168 | resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" 3169 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 3170 | dependencies: 3171 | isexe "^2.0.0" 3172 | 3173 | wrap-ansi@^7.0.0: 3174 | version "7.0.0" 3175 | resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" 3176 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 3177 | dependencies: 3178 | ansi-styles "^4.0.0" 3179 | string-width "^4.1.0" 3180 | strip-ansi "^6.0.0" 3181 | 3182 | wrappy@1: 3183 | version "1.0.2" 3184 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" 3185 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 3186 | 3187 | write-file-atomic@^4.0.2: 3188 | version "4.0.2" 3189 | resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz" 3190 | integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== 3191 | dependencies: 3192 | imurmurhash "^0.1.4" 3193 | signal-exit "^3.0.7" 3194 | 3195 | y18n@^5.0.5: 3196 | version "5.0.8" 3197 | resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz" 3198 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 3199 | 3200 | yallist@^3.0.2: 3201 | version "3.1.1" 3202 | resolved "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz" 3203 | integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== 3204 | 3205 | yallist@^4.0.0: 3206 | version "4.0.0" 3207 | resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" 3208 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 3209 | 3210 | yaml@^2.7.1: 3211 | version "2.7.1" 3212 | resolved "https://registry.npmjs.org/yaml/-/yaml-2.7.1.tgz" 3213 | integrity sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ== 3214 | 3215 | yargs-parser@^21.1.1: 3216 | version "21.1.1" 3217 | resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz" 3218 | integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== 3219 | 3220 | yargs@^17.3.1: 3221 | version "17.6.2" 3222 | resolved "https://registry.npmjs.org/yargs/-/yargs-17.6.2.tgz" 3223 | integrity sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw== 3224 | dependencies: 3225 | cliui "^8.0.1" 3226 | escalade "^3.1.1" 3227 | get-caller-file "^2.0.5" 3228 | require-directory "^2.1.1" 3229 | string-width "^4.2.3" 3230 | y18n "^5.0.5" 3231 | yargs-parser "^21.1.1" 3232 | 3233 | yocto-queue@^0.1.0: 3234 | version "0.1.0" 3235 | resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz" 3236 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 3237 | --------------------------------------------------------------------------------