├── .eslintignore ├── .eslintrc ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json ├── settings.json └── tasks.json ├── README.md ├── package.json ├── packages ├── eslint-config-node │ ├── .eslintrc │ ├── index.cjs │ ├── index.d.ts │ ├── package.json │ └── tsconfig.json └── tsconfig │ ├── package.json │ └── tsconfig.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── tsconfig.json ├── turbo.json └── turbo └── generators └── config.ts /.eslintignore: -------------------------------------------------------------------------------- 1 | /apps/* 2 | /packages/* 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | "extends": ["node"] 4 | } 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | .turbo 4 | .build 5 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /pnpm-lock.yaml 2 | *.hbs 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["prettier-plugin-packagejson"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "typescript.tsdk": "node_modules/typescript/lib", 3 | "typescript.enablePromptUseWorkspaceTsdk": true, 4 | "eslint.workingDirectories": [{ "mode": "auto" }], 5 | "editor.codeActionsOnSave": { "source.fixAll": "always" }, 6 | "editor.defaultFormatter": "esbenp.prettier-vscode", 7 | "editor.formatOnSave": true, 8 | "files.trimTrailingWhitespace": true, 9 | "files.trimFinalNewlines": true, 10 | "files.insertFinalNewline": true, 11 | "files.exclude": { 12 | "pnpm-lock.yaml": true, 13 | "**/node_modules": true, 14 | "**/.turbo": true, 15 | "**/.build": true 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0.0", 3 | "tasks": [ 4 | { 5 | "label": "format", 6 | "icon": { "id": "replace-all" }, 7 | "type": "process", 8 | "command": "turbo", 9 | "args": ["format"], 10 | "problemMatcher": [] 11 | }, 12 | { 13 | "label": "typecheck", 14 | "icon": { "id": "symbol-type-parameter" }, 15 | "type": "process", 16 | "command": "turbo", 17 | "args": ["typecheck"], 18 | "problemMatcher": [] 19 | }, 20 | { 21 | "label": "lint", 22 | "icon": { "id": "debug" }, 23 | "type": "process", 24 | "command": "turbo", 25 | "args": ["lint"], 26 | "problemMatcher": [] 27 | }, 28 | { 29 | "label": "build", 30 | "icon": { "id": "tools" }, 31 | "isBuildCommand": true, 32 | "group": { "kind": "build", "isDefault": true }, 33 | "type": "process", 34 | "command": "turbo", 35 | "args": ["format", "typecheck", "lint", "build"], 36 | "problemMatcher": [] 37 | }, 38 | { 39 | "label": "publish", 40 | "icon": { "id": "cloud-upload" }, 41 | "dependsOn": ["build"], 42 | "type": "process", 43 | "command": "pnpm", 44 | "args": ["-r", "publish"], 45 | "problemMatcher": [] 46 | }, 47 | { 48 | "label": "generate", 49 | "icon": { "id": "zap" }, 50 | "presentation": { "focus": true }, 51 | "type": "process", 52 | "command": "turbo", 53 | "args": ["gen"], 54 | "problemMatcher": [] 55 | } 56 | ] 57 | } 58 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # turbo-template 2 | 3 | Create a [Turbo] monorepo 4 | 5 | ## Requirements 6 | 7 | - [Node.js] `>=20` 8 | 9 | - [pnpm] `>=8` 10 | 11 | - [Turborepo] ([installed globally](https://turbo.build/repo/docs/installing#install-globally)) 12 | 13 | - [Visual Studio Code] 14 | 15 | ## Features 16 | 17 | - First-class TypeScript, JavaScript ESM, and CJS support 18 | 19 | - Format code with [Prettier] (and [Prettier plugins]) 20 | 21 | ```sh 22 | turbo format 23 | ``` 24 | 25 | - Typecheck code in TypeScript 26 | 27 | ```sh 28 | turbo typecheck 29 | ``` 30 | 31 | - Lint code with [ESLint], automatically detect TypeScript, JavaScript ESM, and CJS modules 32 | 33 | ```sh 34 | turbo lint 35 | ``` 36 | 37 | - Build code with any tools ([Next.js], [Vite], [Rollup], [tsup], [esbuild], etc.) 38 | 39 | ```sh 40 | turbo build 41 | ``` 42 | 43 | - Format, typecheck, lint, and build code with [Turborepo] pipeline 44 | 45 | ```sh 46 | turbo format typecheck lint build 47 | ``` 48 | 49 | - Publish npm packages with [pnpm] 50 | 51 | ```sh 52 | pnpm -r publish 53 | ``` 54 | 55 | - Generate code with [Turborepo] generators (in TypeScript) 56 | 57 | ```sh 58 | turbo gen 59 | ``` 60 | 61 | - Best-in-class [Visual Studio Code] integration 62 | 63 | - UI to run format, typecheck, lint, build, publish, and generate tasks 64 | 65 | - Work flawlessly with TypeScript, ESLint, and Prettier 66 | 67 | - Debug code with breakpoints 68 | 69 | - Fix and format code automatically 70 | 71 | - Use workspace TypeScript version 72 | 73 | - Recommend extensions 74 | 75 | ## Usage 76 | 77 | 1. [Create a repository from this template](https://docs.github.com/en/repositories/creating-and-managing-repositories/creating-a-repository-from-a-template) 78 | 79 | 2. Remove irrelevant files 80 | 81 | ```sh 82 | rm -rf .git README.md 83 | ``` 84 | 85 | 3. Install dependencies 86 | 87 | ```sh 88 | pnpm i 89 | ``` 90 | 91 | 4. Open in [Visual Studio Code] 92 | 93 | ```sh 94 | code . 95 | ``` 96 | 97 | 98 | 99 | [visual studio code]: https://code.visualstudio.com/ 100 | [node.js]: https://nodejs.org/ 101 | [turbo]: https://turbo.build 102 | [turborepo]: https://turbo.build/repo 103 | [pnpm]: https://pnpm.io 104 | [eslint]: https://eslint.org 105 | [prettier]: https://prettier.io 106 | [prettier plugins]: https://prettier.io/docs/en/plugins.html 107 | [next.js]: https://nextjs.org 108 | [vite]: https://vitejs.dev 109 | [rollup]: https://rollupjs.org 110 | [tsup]: https://tsup.egoist.dev 111 | [esbuild]: https://esbuild.github.io 112 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "scripts": { 3 | "format": "prettier -w .", 4 | "lint": "eslint .", 5 | "typecheck": "tsc --noEmit" 6 | }, 7 | "devDependencies": { 8 | "@turbo/gen": "^1.12.2", 9 | "@types/node": "^20.11.16", 10 | "eslint": "^8.56.0", 11 | "eslint-config-node": "workspace:^", 12 | "prettier": "^3.2.4", 13 | "prettier-plugin-packagejson": "^2.4.10", 14 | "tsconfig": "workspace:^", 15 | "turbo": "^1.12.2", 16 | "typescript": "^5.3.3" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /packages/eslint-config-node/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | "extends": ["."] 4 | } 5 | -------------------------------------------------------------------------------- /packages/eslint-config-node/index.cjs: -------------------------------------------------------------------------------- 1 | const jsExtensions = ["js", "jsx", "mjs", "cjs"]; 2 | 3 | /** @type {import('eslint').Linter.ConfigOverride} */ 4 | const jsConfigOverride = { 5 | env: { es2023: true, node: true }, 6 | parserOptions: { ecmaVersion: 2022 }, 7 | files: jsExtensions.map((ext) => `**/*.${ext}`), 8 | extends: ["eslint:recommended", "plugin:import/recommended", "prettier"], 9 | plugins: ["simple-import-sort"], 10 | rules: { 11 | quotes: ["error", "double", { avoidEscape: true }], 12 | "simple-import-sort/imports": [ 13 | "error", 14 | { 15 | groups: [ 16 | ["client", "server"].map((env) => `^\\u0000${env}-only$`), // Runtime environments 17 | ["^\\u0000[^\\.]"], // External side-effects 18 | ["^\\u0000~\\/"], // Internal side-effects 19 | ["^\\u0000\\.\\."], // Parent side-effects 20 | ["^\\u0000\\.[^\\.]"], // Relative side-effects 21 | ["\\u0000$"], // External types 22 | ["^~\\/.*\\u0000$"], // Internal types 23 | ["^\\.\\..*\\u0000$"], // Parent types 24 | ["^\\.[^\\.].*\\u0000$"], // Relative types 25 | ["^[^\\.]"], // External modules 26 | ["^~\\/"], // Internal modules 27 | ["^\\.\\."], // Parent modules 28 | ["^\\.[^\\.]"], // Relative modules 29 | ], 30 | }, 31 | ], 32 | "simple-import-sort/exports": "error", 33 | }, 34 | }; 35 | 36 | const tsExtensions = jsExtensions.map((ext) => ext.replace("js", "ts")); 37 | 38 | /** @type {import('eslint').Linter.ConfigOverride} */ 39 | const tsConfigOverride = { 40 | ...jsConfigOverride, 41 | parserOptions: { ...jsConfigOverride.parserOptions, project: true }, 42 | settings: { "import/resolver": "typescript" }, 43 | files: tsExtensions.map((ext) => `**/*.${ext}`), 44 | extends: [ 45 | "eslint:recommended", 46 | "plugin:@typescript-eslint/strict-type-checked", 47 | "plugin:@typescript-eslint/stylistic-type-checked", 48 | "plugin:import/recommended", 49 | "plugin:import/typescript", 50 | "prettier", 51 | ], 52 | rules: { 53 | ...jsConfigOverride.rules, 54 | quotes: "off", 55 | "@typescript-eslint/quotes": ["error", "double", { avoidEscape: true }], 56 | "@typescript-eslint/consistent-type-imports": "error", 57 | }, 58 | }; 59 | 60 | /** @type {import('eslint').Linter.Config} */ 61 | module.exports = { overrides: [jsConfigOverride, tsConfigOverride] }; 62 | -------------------------------------------------------------------------------- /packages/eslint-config-node/index.d.ts: -------------------------------------------------------------------------------- 1 | import type { Linter } from "eslint"; 2 | 3 | declare const config: Linter.Config; 4 | 5 | export = config; 6 | -------------------------------------------------------------------------------- /packages/eslint-config-node/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "eslint-config-node", 3 | "version": "0.0.0", 4 | "private": true, 5 | "type": "module", 6 | "main": "index.cjs", 7 | "scripts": { 8 | "lint": "eslint .", 9 | "typecheck": "tsc --noEmit" 10 | }, 11 | "dependencies": { 12 | "@typescript-eslint/eslint-plugin": "^6.20.0", 13 | "@typescript-eslint/parser": "^6.20.0", 14 | "eslint-config-prettier": "^9.1.0", 15 | "eslint-import-resolver-node": "^0.3.9", 16 | "eslint-import-resolver-typescript": "^3.6.1", 17 | "eslint-plugin-import": "^2.29.1", 18 | "eslint-plugin-simple-import-sort": "^10.0.0" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/eslint-config-node/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "tsconfig/tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/tsconfig/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tsconfig", 3 | "version": "0.0.0", 4 | "private": true, 5 | "type": "module", 6 | "dependencies": { 7 | "@tsconfig/node20": "^20.1.2" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /packages/tsconfig/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/@tsconfig/node20/tsconfig.json", 3 | "compilerOptions": { "module": "es2022", "moduleResolution": "bundler" } 4 | } 5 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '6.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | devDependencies: 11 | '@turbo/gen': 12 | specifier: ^1.12.2 13 | version: 1.12.2(@types/node@20.11.16)(typescript@5.3.3) 14 | '@types/node': 15 | specifier: ^20.11.16 16 | version: 20.11.16 17 | eslint: 18 | specifier: ^8.56.0 19 | version: 8.56.0 20 | eslint-config-node: 21 | specifier: workspace:^ 22 | version: link:packages/eslint-config-node 23 | prettier: 24 | specifier: ^3.2.4 25 | version: 3.2.4 26 | prettier-plugin-packagejson: 27 | specifier: ^2.4.10 28 | version: 2.4.10(prettier@3.2.4) 29 | tsconfig: 30 | specifier: workspace:^ 31 | version: link:packages/tsconfig 32 | turbo: 33 | specifier: ^1.12.2 34 | version: 1.12.2 35 | typescript: 36 | specifier: ^5.3.3 37 | version: 5.3.3 38 | 39 | packages/eslint-config-node: 40 | dependencies: 41 | '@typescript-eslint/eslint-plugin': 42 | specifier: ^6.20.0 43 | version: 6.20.0(@typescript-eslint/parser@6.20.0)(eslint@8.56.0)(typescript@5.3.3) 44 | '@typescript-eslint/parser': 45 | specifier: ^6.20.0 46 | version: 6.20.0(eslint@8.56.0)(typescript@5.3.3) 47 | eslint-config-prettier: 48 | specifier: ^9.1.0 49 | version: 9.1.0(eslint@8.56.0) 50 | eslint-import-resolver-node: 51 | specifier: ^0.3.9 52 | version: 0.3.9 53 | eslint-import-resolver-typescript: 54 | specifier: ^3.6.1 55 | version: 3.6.1(@typescript-eslint/parser@6.20.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0) 56 | eslint-plugin-import: 57 | specifier: ^2.29.1 58 | version: 2.29.1(@typescript-eslint/parser@6.20.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 59 | eslint-plugin-simple-import-sort: 60 | specifier: ^10.0.0 61 | version: 10.0.0(eslint@8.56.0) 62 | 63 | packages/tsconfig: 64 | dependencies: 65 | '@tsconfig/node20': 66 | specifier: ^20.1.2 67 | version: 20.1.2 68 | 69 | packages: 70 | 71 | /@aashutoshrathi/word-wrap@1.2.6: 72 | resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} 73 | engines: {node: '>=0.10.0'} 74 | 75 | /@babel/runtime-corejs3@7.23.9: 76 | resolution: {integrity: sha512-oeOFTrYWdWXCvXGB5orvMTJ6gCZ9I6FBjR+M38iKNXCsPxr4xT0RTdg5uz1H7QP8pp74IzPtwritEr+JscqHXQ==} 77 | engines: {node: '>=6.9.0'} 78 | dependencies: 79 | core-js-pure: 3.35.1 80 | regenerator-runtime: 0.14.1 81 | dev: true 82 | 83 | /@cspotcode/source-map-support@0.8.1: 84 | resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} 85 | engines: {node: '>=12'} 86 | dependencies: 87 | '@jridgewell/trace-mapping': 0.3.9 88 | dev: true 89 | 90 | /@eslint-community/eslint-utils@4.4.0(eslint@8.56.0): 91 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 92 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 93 | peerDependencies: 94 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 95 | dependencies: 96 | eslint: 8.56.0 97 | eslint-visitor-keys: 3.4.3 98 | 99 | /@eslint-community/regexpp@4.10.0: 100 | resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} 101 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 102 | 103 | /@eslint/eslintrc@2.1.4: 104 | resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} 105 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 106 | dependencies: 107 | ajv: 6.12.6 108 | debug: 4.3.4 109 | espree: 9.6.1 110 | globals: 13.24.0 111 | ignore: 5.3.1 112 | import-fresh: 3.3.0 113 | js-yaml: 4.1.0 114 | minimatch: 3.1.2 115 | strip-json-comments: 3.1.1 116 | transitivePeerDependencies: 117 | - supports-color 118 | 119 | /@eslint/js@8.56.0: 120 | resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==} 121 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 122 | 123 | /@humanwhocodes/config-array@0.11.14: 124 | resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} 125 | engines: {node: '>=10.10.0'} 126 | dependencies: 127 | '@humanwhocodes/object-schema': 2.0.2 128 | debug: 4.3.4 129 | minimatch: 3.1.2 130 | transitivePeerDependencies: 131 | - supports-color 132 | 133 | /@humanwhocodes/module-importer@1.0.1: 134 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 135 | engines: {node: '>=12.22'} 136 | 137 | /@humanwhocodes/object-schema@2.0.2: 138 | resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==} 139 | 140 | /@jridgewell/resolve-uri@3.1.1: 141 | resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} 142 | engines: {node: '>=6.0.0'} 143 | dev: true 144 | 145 | /@jridgewell/sourcemap-codec@1.4.15: 146 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} 147 | dev: true 148 | 149 | /@jridgewell/trace-mapping@0.3.9: 150 | resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} 151 | dependencies: 152 | '@jridgewell/resolve-uri': 3.1.1 153 | '@jridgewell/sourcemap-codec': 1.4.15 154 | dev: true 155 | 156 | /@nodelib/fs.scandir@2.1.5: 157 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 158 | engines: {node: '>= 8'} 159 | dependencies: 160 | '@nodelib/fs.stat': 2.0.5 161 | run-parallel: 1.2.0 162 | 163 | /@nodelib/fs.stat@2.0.5: 164 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 165 | engines: {node: '>= 8'} 166 | 167 | /@nodelib/fs.walk@1.2.8: 168 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 169 | engines: {node: '>= 8'} 170 | dependencies: 171 | '@nodelib/fs.scandir': 2.1.5 172 | fastq: 1.17.0 173 | 174 | /@pkgr/core@0.1.1: 175 | resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==} 176 | engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} 177 | dev: true 178 | 179 | /@tootallnate/quickjs-emscripten@0.23.0: 180 | resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==} 181 | dev: true 182 | 183 | /@tsconfig/node10@1.0.9: 184 | resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} 185 | dev: true 186 | 187 | /@tsconfig/node12@1.0.11: 188 | resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} 189 | dev: true 190 | 191 | /@tsconfig/node14@1.0.3: 192 | resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} 193 | dev: true 194 | 195 | /@tsconfig/node16@1.0.4: 196 | resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} 197 | dev: true 198 | 199 | /@tsconfig/node20@20.1.2: 200 | resolution: {integrity: sha512-madaWq2k+LYMEhmcp0fs+OGaLFk0OenpHa4gmI4VEmCKX4PJntQ6fnnGADVFrVkBj0wIdAlQnK/MrlYTHsa1gQ==} 201 | dev: false 202 | 203 | /@turbo/gen@1.12.2(@types/node@20.11.16)(typescript@5.3.3): 204 | resolution: {integrity: sha512-XmdaB4J3JvDs6/L+JkCHTf/s74+O4xKZC0HDQxvV+cyicvYocPcR5NTOuH5gdG81roR9tVQWhkAza2hgGOlSyw==} 205 | hasBin: true 206 | dependencies: 207 | '@turbo/workspaces': 1.12.2 208 | chalk: 2.4.2 209 | commander: 10.0.1 210 | fs-extra: 10.1.0 211 | inquirer: 8.2.6 212 | minimatch: 9.0.3 213 | node-plop: 0.26.3 214 | proxy-agent: 6.3.1 215 | ts-node: 10.9.2(@types/node@20.11.16)(typescript@5.3.3) 216 | update-check: 1.5.4 217 | validate-npm-package-name: 5.0.0 218 | transitivePeerDependencies: 219 | - '@swc/core' 220 | - '@swc/wasm' 221 | - '@types/node' 222 | - supports-color 223 | - typescript 224 | dev: true 225 | 226 | /@turbo/workspaces@1.12.2: 227 | resolution: {integrity: sha512-B1WybqMR2/7jq9j3EqSuWiYHK/9ZUQPZjy7DIt8PGc+AdrP1nVYW2vOpApKO9j/dLvycDGAmn5LtL5vcSrMlfg==} 228 | hasBin: true 229 | dependencies: 230 | chalk: 2.4.2 231 | commander: 10.0.1 232 | execa: 5.1.1 233 | fast-glob: 3.3.2 234 | fs-extra: 10.1.0 235 | gradient-string: 2.0.2 236 | inquirer: 8.2.6 237 | js-yaml: 4.1.0 238 | ora: 4.1.1 239 | rimraf: 3.0.2 240 | semver: 7.5.4 241 | update-check: 1.5.4 242 | dev: true 243 | 244 | /@types/glob@7.2.0: 245 | resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} 246 | dependencies: 247 | '@types/minimatch': 5.1.2 248 | '@types/node': 20.11.16 249 | dev: true 250 | 251 | /@types/inquirer@6.5.0: 252 | resolution: {integrity: sha512-rjaYQ9b9y/VFGOpqBEXRavc3jh0a+e6evAbI31tMda8VlPaSy0AZJfXsvmIe3wklc7W6C3zCSfleuMXR7NOyXw==} 253 | dependencies: 254 | '@types/through': 0.0.33 255 | rxjs: 6.6.7 256 | dev: true 257 | 258 | /@types/json-schema@7.0.15: 259 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 260 | dev: false 261 | 262 | /@types/json5@0.0.29: 263 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 264 | dev: false 265 | 266 | /@types/minimatch@5.1.2: 267 | resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} 268 | dev: true 269 | 270 | /@types/node@20.11.16: 271 | resolution: {integrity: sha512-gKb0enTmRCzXSSUJDq6/sPcqrfCv2mkkG6Jt/clpn5eiCbKTY+SgZUxo+p8ZKMof5dCp9vHQUAB7wOUTod22wQ==} 272 | dependencies: 273 | undici-types: 5.26.5 274 | dev: true 275 | 276 | /@types/semver@7.5.6: 277 | resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==} 278 | dev: false 279 | 280 | /@types/through@0.0.33: 281 | resolution: {integrity: sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==} 282 | dependencies: 283 | '@types/node': 20.11.16 284 | dev: true 285 | 286 | /@types/tinycolor2@1.4.6: 287 | resolution: {integrity: sha512-iEN8J0BoMnsWBqjVbWH/c0G0Hh7O21lpR2/+PrvAVgWdzL7eexIFm4JN/Wn10PTcmNdtS6U67r499mlWMXOxNw==} 288 | dev: true 289 | 290 | /@typescript-eslint/eslint-plugin@6.20.0(@typescript-eslint/parser@6.20.0)(eslint@8.56.0)(typescript@5.3.3): 291 | resolution: {integrity: sha512-fTwGQUnjhoYHeSF6m5pWNkzmDDdsKELYrOBxhjMrofPqCkoC2k3B2wvGHFxa1CTIqkEn88nlW1HVMztjo2K8Hg==} 292 | engines: {node: ^16.0.0 || >=18.0.0} 293 | peerDependencies: 294 | '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha 295 | eslint: ^7.0.0 || ^8.0.0 296 | typescript: '*' 297 | peerDependenciesMeta: 298 | typescript: 299 | optional: true 300 | dependencies: 301 | '@eslint-community/regexpp': 4.10.0 302 | '@typescript-eslint/parser': 6.20.0(eslint@8.56.0)(typescript@5.3.3) 303 | '@typescript-eslint/scope-manager': 6.20.0 304 | '@typescript-eslint/type-utils': 6.20.0(eslint@8.56.0)(typescript@5.3.3) 305 | '@typescript-eslint/utils': 6.20.0(eslint@8.56.0)(typescript@5.3.3) 306 | '@typescript-eslint/visitor-keys': 6.20.0 307 | debug: 4.3.4 308 | eslint: 8.56.0 309 | graphemer: 1.4.0 310 | ignore: 5.3.1 311 | natural-compare: 1.4.0 312 | semver: 7.5.4 313 | ts-api-utils: 1.0.3(typescript@5.3.3) 314 | typescript: 5.3.3 315 | transitivePeerDependencies: 316 | - supports-color 317 | dev: false 318 | 319 | /@typescript-eslint/parser@6.20.0(eslint@8.56.0)(typescript@5.3.3): 320 | resolution: {integrity: sha512-bYerPDF/H5v6V76MdMYhjwmwgMA+jlPVqjSDq2cRqMi8bP5sR3Z+RLOiOMad3nsnmDVmn2gAFCyNgh/dIrfP/w==} 321 | engines: {node: ^16.0.0 || >=18.0.0} 322 | peerDependencies: 323 | eslint: ^7.0.0 || ^8.0.0 324 | typescript: '*' 325 | peerDependenciesMeta: 326 | typescript: 327 | optional: true 328 | dependencies: 329 | '@typescript-eslint/scope-manager': 6.20.0 330 | '@typescript-eslint/types': 6.20.0 331 | '@typescript-eslint/typescript-estree': 6.20.0(typescript@5.3.3) 332 | '@typescript-eslint/visitor-keys': 6.20.0 333 | debug: 4.3.4 334 | eslint: 8.56.0 335 | typescript: 5.3.3 336 | transitivePeerDependencies: 337 | - supports-color 338 | dev: false 339 | 340 | /@typescript-eslint/scope-manager@6.20.0: 341 | resolution: {integrity: sha512-p4rvHQRDTI1tGGMDFQm+GtxP1ZHyAh64WANVoyEcNMpaTFn3ox/3CcgtIlELnRfKzSs/DwYlDccJEtr3O6qBvA==} 342 | engines: {node: ^16.0.0 || >=18.0.0} 343 | dependencies: 344 | '@typescript-eslint/types': 6.20.0 345 | '@typescript-eslint/visitor-keys': 6.20.0 346 | dev: false 347 | 348 | /@typescript-eslint/type-utils@6.20.0(eslint@8.56.0)(typescript@5.3.3): 349 | resolution: {integrity: sha512-qnSobiJQb1F5JjN0YDRPHruQTrX7ICsmltXhkV536mp4idGAYrIyr47zF/JmkJtEcAVnIz4gUYJ7gOZa6SmN4g==} 350 | engines: {node: ^16.0.0 || >=18.0.0} 351 | peerDependencies: 352 | eslint: ^7.0.0 || ^8.0.0 353 | typescript: '*' 354 | peerDependenciesMeta: 355 | typescript: 356 | optional: true 357 | dependencies: 358 | '@typescript-eslint/typescript-estree': 6.20.0(typescript@5.3.3) 359 | '@typescript-eslint/utils': 6.20.0(eslint@8.56.0)(typescript@5.3.3) 360 | debug: 4.3.4 361 | eslint: 8.56.0 362 | ts-api-utils: 1.0.3(typescript@5.3.3) 363 | typescript: 5.3.3 364 | transitivePeerDependencies: 365 | - supports-color 366 | dev: false 367 | 368 | /@typescript-eslint/types@6.20.0: 369 | resolution: {integrity: sha512-MM9mfZMAhiN4cOEcUOEx+0HmuaW3WBfukBZPCfwSqFnQy0grXYtngKCqpQN339X3RrwtzspWJrpbrupKYUSBXQ==} 370 | engines: {node: ^16.0.0 || >=18.0.0} 371 | dev: false 372 | 373 | /@typescript-eslint/typescript-estree@6.20.0(typescript@5.3.3): 374 | resolution: {integrity: sha512-RnRya9q5m6YYSpBN7IzKu9FmLcYtErkDkc8/dKv81I9QiLLtVBHrjz+Ev/crAqgMNW2FCsoZF4g2QUylMnJz+g==} 375 | engines: {node: ^16.0.0 || >=18.0.0} 376 | peerDependencies: 377 | typescript: '*' 378 | peerDependenciesMeta: 379 | typescript: 380 | optional: true 381 | dependencies: 382 | '@typescript-eslint/types': 6.20.0 383 | '@typescript-eslint/visitor-keys': 6.20.0 384 | debug: 4.3.4 385 | globby: 11.1.0 386 | is-glob: 4.0.3 387 | minimatch: 9.0.3 388 | semver: 7.5.4 389 | ts-api-utils: 1.0.3(typescript@5.3.3) 390 | typescript: 5.3.3 391 | transitivePeerDependencies: 392 | - supports-color 393 | dev: false 394 | 395 | /@typescript-eslint/utils@6.20.0(eslint@8.56.0)(typescript@5.3.3): 396 | resolution: {integrity: sha512-/EKuw+kRu2vAqCoDwDCBtDRU6CTKbUmwwI7SH7AashZ+W+7o8eiyy6V2cdOqN49KsTcASWsC5QeghYuRDTyOOg==} 397 | engines: {node: ^16.0.0 || >=18.0.0} 398 | peerDependencies: 399 | eslint: ^7.0.0 || ^8.0.0 400 | dependencies: 401 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) 402 | '@types/json-schema': 7.0.15 403 | '@types/semver': 7.5.6 404 | '@typescript-eslint/scope-manager': 6.20.0 405 | '@typescript-eslint/types': 6.20.0 406 | '@typescript-eslint/typescript-estree': 6.20.0(typescript@5.3.3) 407 | eslint: 8.56.0 408 | semver: 7.5.4 409 | transitivePeerDependencies: 410 | - supports-color 411 | - typescript 412 | dev: false 413 | 414 | /@typescript-eslint/visitor-keys@6.20.0: 415 | resolution: {integrity: sha512-E8Cp98kRe4gKHjJD4NExXKz/zOJ1A2hhZc+IMVD6i7w4yjIvh6VyuRI0gRtxAsXtoC35uGMaQ9rjI2zJaXDEAw==} 416 | engines: {node: ^16.0.0 || >=18.0.0} 417 | dependencies: 418 | '@typescript-eslint/types': 6.20.0 419 | eslint-visitor-keys: 3.4.3 420 | dev: false 421 | 422 | /@ungap/structured-clone@1.2.0: 423 | resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} 424 | 425 | /acorn-jsx@5.3.2(acorn@8.11.3): 426 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 427 | peerDependencies: 428 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 429 | dependencies: 430 | acorn: 8.11.3 431 | 432 | /acorn-walk@8.3.2: 433 | resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==} 434 | engines: {node: '>=0.4.0'} 435 | dev: true 436 | 437 | /acorn@8.11.3: 438 | resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} 439 | engines: {node: '>=0.4.0'} 440 | hasBin: true 441 | 442 | /agent-base@7.1.0: 443 | resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==} 444 | engines: {node: '>= 14'} 445 | dependencies: 446 | debug: 4.3.4 447 | transitivePeerDependencies: 448 | - supports-color 449 | dev: true 450 | 451 | /aggregate-error@3.1.0: 452 | resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} 453 | engines: {node: '>=8'} 454 | dependencies: 455 | clean-stack: 2.2.0 456 | indent-string: 4.0.0 457 | dev: true 458 | 459 | /ajv@6.12.6: 460 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 461 | dependencies: 462 | fast-deep-equal: 3.1.3 463 | fast-json-stable-stringify: 2.1.0 464 | json-schema-traverse: 0.4.1 465 | uri-js: 4.4.1 466 | 467 | /ansi-escapes@4.3.2: 468 | resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} 469 | engines: {node: '>=8'} 470 | dependencies: 471 | type-fest: 0.21.3 472 | dev: true 473 | 474 | /ansi-regex@5.0.1: 475 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 476 | engines: {node: '>=8'} 477 | 478 | /ansi-styles@3.2.1: 479 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 480 | engines: {node: '>=4'} 481 | dependencies: 482 | color-convert: 1.9.3 483 | dev: true 484 | 485 | /ansi-styles@4.3.0: 486 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 487 | engines: {node: '>=8'} 488 | dependencies: 489 | color-convert: 2.0.1 490 | 491 | /arg@4.1.3: 492 | resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} 493 | dev: true 494 | 495 | /argparse@2.0.1: 496 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 497 | 498 | /array-buffer-byte-length@1.0.0: 499 | resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} 500 | dependencies: 501 | call-bind: 1.0.5 502 | is-array-buffer: 3.0.2 503 | dev: false 504 | 505 | /array-includes@3.1.7: 506 | resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==} 507 | engines: {node: '>= 0.4'} 508 | dependencies: 509 | call-bind: 1.0.5 510 | define-properties: 1.2.1 511 | es-abstract: 1.22.3 512 | get-intrinsic: 1.2.2 513 | is-string: 1.0.7 514 | dev: false 515 | 516 | /array-union@2.1.0: 517 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 518 | engines: {node: '>=8'} 519 | 520 | /array.prototype.findlastindex@1.2.3: 521 | resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==} 522 | engines: {node: '>= 0.4'} 523 | dependencies: 524 | call-bind: 1.0.5 525 | define-properties: 1.2.1 526 | es-abstract: 1.22.3 527 | es-shim-unscopables: 1.0.2 528 | get-intrinsic: 1.2.2 529 | dev: false 530 | 531 | /array.prototype.flat@1.3.2: 532 | resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} 533 | engines: {node: '>= 0.4'} 534 | dependencies: 535 | call-bind: 1.0.5 536 | define-properties: 1.2.1 537 | es-abstract: 1.22.3 538 | es-shim-unscopables: 1.0.2 539 | dev: false 540 | 541 | /array.prototype.flatmap@1.3.2: 542 | resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} 543 | engines: {node: '>= 0.4'} 544 | dependencies: 545 | call-bind: 1.0.5 546 | define-properties: 1.2.1 547 | es-abstract: 1.22.3 548 | es-shim-unscopables: 1.0.2 549 | dev: false 550 | 551 | /arraybuffer.prototype.slice@1.0.2: 552 | resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} 553 | engines: {node: '>= 0.4'} 554 | dependencies: 555 | array-buffer-byte-length: 1.0.0 556 | call-bind: 1.0.5 557 | define-properties: 1.2.1 558 | es-abstract: 1.22.3 559 | get-intrinsic: 1.2.2 560 | is-array-buffer: 3.0.2 561 | is-shared-array-buffer: 1.0.2 562 | dev: false 563 | 564 | /ast-types@0.13.4: 565 | resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==} 566 | engines: {node: '>=4'} 567 | dependencies: 568 | tslib: 2.6.2 569 | dev: true 570 | 571 | /available-typed-arrays@1.0.6: 572 | resolution: {integrity: sha512-j1QzY8iPNPG4o4xmO3ptzpRxTciqD3MgEHtifP/YnJpIo58Xu+ne4BejlbkuaLfXn/nz6HFiw29bLpj2PNMdGg==} 573 | engines: {node: '>= 0.4'} 574 | dev: false 575 | 576 | /balanced-match@1.0.2: 577 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 578 | 579 | /base64-js@1.5.1: 580 | resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 581 | dev: true 582 | 583 | /basic-ftp@5.0.4: 584 | resolution: {integrity: sha512-8PzkB0arJFV4jJWSGOYR+OEic6aeKMu/osRhBULN6RY0ykby6LKhbmuQ5ublvaas5BOwboah5D87nrHyuh8PPA==} 585 | engines: {node: '>=10.0.0'} 586 | dev: true 587 | 588 | /bl@4.1.0: 589 | resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} 590 | dependencies: 591 | buffer: 5.7.1 592 | inherits: 2.0.4 593 | readable-stream: 3.6.2 594 | dev: true 595 | 596 | /brace-expansion@1.1.11: 597 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 598 | dependencies: 599 | balanced-match: 1.0.2 600 | concat-map: 0.0.1 601 | 602 | /brace-expansion@2.0.1: 603 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 604 | dependencies: 605 | balanced-match: 1.0.2 606 | 607 | /braces@3.0.2: 608 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 609 | engines: {node: '>=8'} 610 | dependencies: 611 | fill-range: 7.0.1 612 | 613 | /buffer@5.7.1: 614 | resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} 615 | dependencies: 616 | base64-js: 1.5.1 617 | ieee754: 1.2.1 618 | dev: true 619 | 620 | /builtins@5.0.1: 621 | resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} 622 | dependencies: 623 | semver: 7.5.4 624 | dev: true 625 | 626 | /call-bind@1.0.5: 627 | resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} 628 | dependencies: 629 | function-bind: 1.1.2 630 | get-intrinsic: 1.2.2 631 | set-function-length: 1.2.0 632 | dev: false 633 | 634 | /callsites@3.1.0: 635 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 636 | engines: {node: '>=6'} 637 | 638 | /camel-case@3.0.0: 639 | resolution: {integrity: sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==} 640 | dependencies: 641 | no-case: 2.3.2 642 | upper-case: 1.1.3 643 | dev: true 644 | 645 | /chalk@2.4.2: 646 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 647 | engines: {node: '>=4'} 648 | dependencies: 649 | ansi-styles: 3.2.1 650 | escape-string-regexp: 1.0.5 651 | supports-color: 5.5.0 652 | dev: true 653 | 654 | /chalk@3.0.0: 655 | resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} 656 | engines: {node: '>=8'} 657 | dependencies: 658 | ansi-styles: 4.3.0 659 | supports-color: 7.2.0 660 | dev: true 661 | 662 | /chalk@4.1.2: 663 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 664 | engines: {node: '>=10'} 665 | dependencies: 666 | ansi-styles: 4.3.0 667 | supports-color: 7.2.0 668 | 669 | /change-case@3.1.0: 670 | resolution: {integrity: sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==} 671 | dependencies: 672 | camel-case: 3.0.0 673 | constant-case: 2.0.0 674 | dot-case: 2.1.1 675 | header-case: 1.0.1 676 | is-lower-case: 1.1.3 677 | is-upper-case: 1.1.2 678 | lower-case: 1.1.4 679 | lower-case-first: 1.0.2 680 | no-case: 2.3.2 681 | param-case: 2.1.1 682 | pascal-case: 2.0.1 683 | path-case: 2.1.1 684 | sentence-case: 2.1.1 685 | snake-case: 2.1.0 686 | swap-case: 1.1.2 687 | title-case: 2.1.1 688 | upper-case: 1.1.3 689 | upper-case-first: 1.1.2 690 | dev: true 691 | 692 | /chardet@0.7.0: 693 | resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} 694 | dev: true 695 | 696 | /clean-stack@2.2.0: 697 | resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} 698 | engines: {node: '>=6'} 699 | dev: true 700 | 701 | /cli-cursor@3.1.0: 702 | resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} 703 | engines: {node: '>=8'} 704 | dependencies: 705 | restore-cursor: 3.1.0 706 | dev: true 707 | 708 | /cli-spinners@2.9.2: 709 | resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} 710 | engines: {node: '>=6'} 711 | dev: true 712 | 713 | /cli-width@3.0.0: 714 | resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} 715 | engines: {node: '>= 10'} 716 | dev: true 717 | 718 | /clone@1.0.4: 719 | resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} 720 | engines: {node: '>=0.8'} 721 | dev: true 722 | 723 | /color-convert@1.9.3: 724 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 725 | dependencies: 726 | color-name: 1.1.3 727 | dev: true 728 | 729 | /color-convert@2.0.1: 730 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 731 | engines: {node: '>=7.0.0'} 732 | dependencies: 733 | color-name: 1.1.4 734 | 735 | /color-name@1.1.3: 736 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} 737 | dev: true 738 | 739 | /color-name@1.1.4: 740 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 741 | 742 | /commander@10.0.1: 743 | resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} 744 | engines: {node: '>=14'} 745 | dev: true 746 | 747 | /concat-map@0.0.1: 748 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 749 | 750 | /constant-case@2.0.0: 751 | resolution: {integrity: sha512-eS0N9WwmjTqrOmR3o83F5vW8Z+9R1HnVz3xmzT2PMFug9ly+Au/fxRWlEBSb6LcZwspSsEn9Xs1uw9YgzAg1EQ==} 752 | dependencies: 753 | snake-case: 2.1.0 754 | upper-case: 1.1.3 755 | dev: true 756 | 757 | /core-js-pure@3.35.1: 758 | resolution: {integrity: sha512-zcIdi/CL3MWbBJYo5YCeVAAx+Sy9yJE9I3/u9LkFABwbeaPhTMRWraM8mYFp9jW5Z50hOy7FVzCc8dCrpZqtIQ==} 759 | requiresBuild: true 760 | dev: true 761 | 762 | /create-require@1.1.1: 763 | resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} 764 | dev: true 765 | 766 | /cross-spawn@7.0.3: 767 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 768 | engines: {node: '>= 8'} 769 | dependencies: 770 | path-key: 3.1.1 771 | shebang-command: 2.0.0 772 | which: 2.0.2 773 | 774 | /data-uri-to-buffer@6.0.1: 775 | resolution: {integrity: sha512-MZd3VlchQkp8rdend6vrx7MmVDJzSNTBvghvKjirLkD+WTChA3KUf0jkE68Q4UyctNqI11zZO9/x2Yx+ub5Cvg==} 776 | engines: {node: '>= 14'} 777 | dev: true 778 | 779 | /debug@3.2.7: 780 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 781 | peerDependencies: 782 | supports-color: '*' 783 | peerDependenciesMeta: 784 | supports-color: 785 | optional: true 786 | dependencies: 787 | ms: 2.1.3 788 | dev: false 789 | 790 | /debug@4.3.4: 791 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 792 | engines: {node: '>=6.0'} 793 | peerDependencies: 794 | supports-color: '*' 795 | peerDependenciesMeta: 796 | supports-color: 797 | optional: true 798 | dependencies: 799 | ms: 2.1.2 800 | 801 | /deep-extend@0.6.0: 802 | resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} 803 | engines: {node: '>=4.0.0'} 804 | dev: true 805 | 806 | /deep-is@0.1.4: 807 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 808 | 809 | /defaults@1.0.4: 810 | resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} 811 | dependencies: 812 | clone: 1.0.4 813 | dev: true 814 | 815 | /define-data-property@1.1.1: 816 | resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} 817 | engines: {node: '>= 0.4'} 818 | dependencies: 819 | get-intrinsic: 1.2.2 820 | gopd: 1.0.1 821 | has-property-descriptors: 1.0.1 822 | dev: false 823 | 824 | /define-properties@1.2.1: 825 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 826 | engines: {node: '>= 0.4'} 827 | dependencies: 828 | define-data-property: 1.1.1 829 | has-property-descriptors: 1.0.1 830 | object-keys: 1.1.1 831 | dev: false 832 | 833 | /degenerator@5.0.1: 834 | resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==} 835 | engines: {node: '>= 14'} 836 | dependencies: 837 | ast-types: 0.13.4 838 | escodegen: 2.1.0 839 | esprima: 4.0.1 840 | dev: true 841 | 842 | /del@5.1.0: 843 | resolution: {integrity: sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==} 844 | engines: {node: '>=8'} 845 | dependencies: 846 | globby: 10.0.2 847 | graceful-fs: 4.2.11 848 | is-glob: 4.0.3 849 | is-path-cwd: 2.2.0 850 | is-path-inside: 3.0.3 851 | p-map: 3.0.0 852 | rimraf: 3.0.2 853 | slash: 3.0.0 854 | dev: true 855 | 856 | /detect-indent@7.0.1: 857 | resolution: {integrity: sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==} 858 | engines: {node: '>=12.20'} 859 | dev: true 860 | 861 | /detect-newline@4.0.1: 862 | resolution: {integrity: sha512-qE3Veg1YXzGHQhlA6jzebZN2qVf6NX+A7m7qlhCGG30dJixrAQhYOsJjsnBjJkCSmuOPpCk30145fr8FV0bzog==} 863 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 864 | dev: true 865 | 866 | /diff@4.0.2: 867 | resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} 868 | engines: {node: '>=0.3.1'} 869 | dev: true 870 | 871 | /dir-glob@3.0.1: 872 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 873 | engines: {node: '>=8'} 874 | dependencies: 875 | path-type: 4.0.0 876 | 877 | /doctrine@2.1.0: 878 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 879 | engines: {node: '>=0.10.0'} 880 | dependencies: 881 | esutils: 2.0.3 882 | dev: false 883 | 884 | /doctrine@3.0.0: 885 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 886 | engines: {node: '>=6.0.0'} 887 | dependencies: 888 | esutils: 2.0.3 889 | 890 | /dot-case@2.1.1: 891 | resolution: {integrity: sha512-HnM6ZlFqcajLsyudHq7LeeLDr2rFAVYtDv/hV5qchQEidSck8j9OPUsXY9KwJv/lHMtYlX4DjRQqwFYa+0r8Ug==} 892 | dependencies: 893 | no-case: 2.3.2 894 | dev: true 895 | 896 | /emoji-regex@8.0.0: 897 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 898 | dev: true 899 | 900 | /enhanced-resolve@5.15.0: 901 | resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} 902 | engines: {node: '>=10.13.0'} 903 | dependencies: 904 | graceful-fs: 4.2.11 905 | tapable: 2.2.1 906 | dev: false 907 | 908 | /es-abstract@1.22.3: 909 | resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==} 910 | engines: {node: '>= 0.4'} 911 | dependencies: 912 | array-buffer-byte-length: 1.0.0 913 | arraybuffer.prototype.slice: 1.0.2 914 | available-typed-arrays: 1.0.6 915 | call-bind: 1.0.5 916 | es-set-tostringtag: 2.0.2 917 | es-to-primitive: 1.2.1 918 | function.prototype.name: 1.1.6 919 | get-intrinsic: 1.2.2 920 | get-symbol-description: 1.0.0 921 | globalthis: 1.0.3 922 | gopd: 1.0.1 923 | has-property-descriptors: 1.0.1 924 | has-proto: 1.0.1 925 | has-symbols: 1.0.3 926 | hasown: 2.0.0 927 | internal-slot: 1.0.6 928 | is-array-buffer: 3.0.2 929 | is-callable: 1.2.7 930 | is-negative-zero: 2.0.2 931 | is-regex: 1.1.4 932 | is-shared-array-buffer: 1.0.2 933 | is-string: 1.0.7 934 | is-typed-array: 1.1.13 935 | is-weakref: 1.0.2 936 | object-inspect: 1.13.1 937 | object-keys: 1.1.1 938 | object.assign: 4.1.5 939 | regexp.prototype.flags: 1.5.1 940 | safe-array-concat: 1.1.0 941 | safe-regex-test: 1.0.2 942 | string.prototype.trim: 1.2.8 943 | string.prototype.trimend: 1.0.7 944 | string.prototype.trimstart: 1.0.7 945 | typed-array-buffer: 1.0.0 946 | typed-array-byte-length: 1.0.0 947 | typed-array-byte-offset: 1.0.0 948 | typed-array-length: 1.0.4 949 | unbox-primitive: 1.0.2 950 | which-typed-array: 1.1.14 951 | dev: false 952 | 953 | /es-set-tostringtag@2.0.2: 954 | resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} 955 | engines: {node: '>= 0.4'} 956 | dependencies: 957 | get-intrinsic: 1.2.2 958 | has-tostringtag: 1.0.2 959 | hasown: 2.0.0 960 | dev: false 961 | 962 | /es-shim-unscopables@1.0.2: 963 | resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} 964 | dependencies: 965 | hasown: 2.0.0 966 | dev: false 967 | 968 | /es-to-primitive@1.2.1: 969 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 970 | engines: {node: '>= 0.4'} 971 | dependencies: 972 | is-callable: 1.2.7 973 | is-date-object: 1.0.5 974 | is-symbol: 1.0.4 975 | dev: false 976 | 977 | /escape-string-regexp@1.0.5: 978 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} 979 | engines: {node: '>=0.8.0'} 980 | dev: true 981 | 982 | /escape-string-regexp@4.0.0: 983 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 984 | engines: {node: '>=10'} 985 | 986 | /escodegen@2.1.0: 987 | resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} 988 | engines: {node: '>=6.0'} 989 | hasBin: true 990 | dependencies: 991 | esprima: 4.0.1 992 | estraverse: 5.3.0 993 | esutils: 2.0.3 994 | optionalDependencies: 995 | source-map: 0.6.1 996 | dev: true 997 | 998 | /eslint-config-prettier@9.1.0(eslint@8.56.0): 999 | resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} 1000 | hasBin: true 1001 | peerDependencies: 1002 | eslint: '>=7.0.0' 1003 | dependencies: 1004 | eslint: 8.56.0 1005 | dev: false 1006 | 1007 | /eslint-import-resolver-node@0.3.9: 1008 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 1009 | dependencies: 1010 | debug: 3.2.7 1011 | is-core-module: 2.13.1 1012 | resolve: 1.22.8 1013 | transitivePeerDependencies: 1014 | - supports-color 1015 | dev: false 1016 | 1017 | /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.20.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0): 1018 | resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==} 1019 | engines: {node: ^14.18.0 || >=16.0.0} 1020 | peerDependencies: 1021 | eslint: '*' 1022 | eslint-plugin-import: '*' 1023 | dependencies: 1024 | debug: 4.3.4 1025 | enhanced-resolve: 5.15.0 1026 | eslint: 8.56.0 1027 | eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.20.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 1028 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.20.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 1029 | fast-glob: 3.3.2 1030 | get-tsconfig: 4.7.2 1031 | is-core-module: 2.13.1 1032 | is-glob: 4.0.3 1033 | transitivePeerDependencies: 1034 | - '@typescript-eslint/parser' 1035 | - eslint-import-resolver-node 1036 | - eslint-import-resolver-webpack 1037 | - supports-color 1038 | dev: false 1039 | 1040 | /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.20.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0): 1041 | resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} 1042 | engines: {node: '>=4'} 1043 | peerDependencies: 1044 | '@typescript-eslint/parser': '*' 1045 | eslint: '*' 1046 | eslint-import-resolver-node: '*' 1047 | eslint-import-resolver-typescript: '*' 1048 | eslint-import-resolver-webpack: '*' 1049 | peerDependenciesMeta: 1050 | '@typescript-eslint/parser': 1051 | optional: true 1052 | eslint: 1053 | optional: true 1054 | eslint-import-resolver-node: 1055 | optional: true 1056 | eslint-import-resolver-typescript: 1057 | optional: true 1058 | eslint-import-resolver-webpack: 1059 | optional: true 1060 | dependencies: 1061 | '@typescript-eslint/parser': 6.20.0(eslint@8.56.0)(typescript@5.3.3) 1062 | debug: 3.2.7 1063 | eslint: 8.56.0 1064 | eslint-import-resolver-node: 0.3.9 1065 | eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.20.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0) 1066 | transitivePeerDependencies: 1067 | - supports-color 1068 | dev: false 1069 | 1070 | /eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.20.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0): 1071 | resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} 1072 | engines: {node: '>=4'} 1073 | peerDependencies: 1074 | '@typescript-eslint/parser': '*' 1075 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 1076 | peerDependenciesMeta: 1077 | '@typescript-eslint/parser': 1078 | optional: true 1079 | dependencies: 1080 | '@typescript-eslint/parser': 6.20.0(eslint@8.56.0)(typescript@5.3.3) 1081 | array-includes: 3.1.7 1082 | array.prototype.findlastindex: 1.2.3 1083 | array.prototype.flat: 1.3.2 1084 | array.prototype.flatmap: 1.3.2 1085 | debug: 3.2.7 1086 | doctrine: 2.1.0 1087 | eslint: 8.56.0 1088 | eslint-import-resolver-node: 0.3.9 1089 | eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.20.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 1090 | hasown: 2.0.0 1091 | is-core-module: 2.13.1 1092 | is-glob: 4.0.3 1093 | minimatch: 3.1.2 1094 | object.fromentries: 2.0.7 1095 | object.groupby: 1.0.1 1096 | object.values: 1.1.7 1097 | semver: 6.3.1 1098 | tsconfig-paths: 3.15.0 1099 | transitivePeerDependencies: 1100 | - eslint-import-resolver-typescript 1101 | - eslint-import-resolver-webpack 1102 | - supports-color 1103 | dev: false 1104 | 1105 | /eslint-plugin-simple-import-sort@10.0.0(eslint@8.56.0): 1106 | resolution: {integrity: sha512-AeTvO9UCMSNzIHRkg8S6c3RPy5YEwKWSQPx3DYghLedo2ZQxowPFLGDN1AZ2evfg6r6mjBSZSLxLFsWSu3acsw==} 1107 | peerDependencies: 1108 | eslint: '>=5.0.0' 1109 | dependencies: 1110 | eslint: 8.56.0 1111 | dev: false 1112 | 1113 | /eslint-scope@7.2.2: 1114 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 1115 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1116 | dependencies: 1117 | esrecurse: 4.3.0 1118 | estraverse: 5.3.0 1119 | 1120 | /eslint-visitor-keys@3.4.3: 1121 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 1122 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1123 | 1124 | /eslint@8.56.0: 1125 | resolution: {integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==} 1126 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1127 | hasBin: true 1128 | dependencies: 1129 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) 1130 | '@eslint-community/regexpp': 4.10.0 1131 | '@eslint/eslintrc': 2.1.4 1132 | '@eslint/js': 8.56.0 1133 | '@humanwhocodes/config-array': 0.11.14 1134 | '@humanwhocodes/module-importer': 1.0.1 1135 | '@nodelib/fs.walk': 1.2.8 1136 | '@ungap/structured-clone': 1.2.0 1137 | ajv: 6.12.6 1138 | chalk: 4.1.2 1139 | cross-spawn: 7.0.3 1140 | debug: 4.3.4 1141 | doctrine: 3.0.0 1142 | escape-string-regexp: 4.0.0 1143 | eslint-scope: 7.2.2 1144 | eslint-visitor-keys: 3.4.3 1145 | espree: 9.6.1 1146 | esquery: 1.5.0 1147 | esutils: 2.0.3 1148 | fast-deep-equal: 3.1.3 1149 | file-entry-cache: 6.0.1 1150 | find-up: 5.0.0 1151 | glob-parent: 6.0.2 1152 | globals: 13.24.0 1153 | graphemer: 1.4.0 1154 | ignore: 5.3.1 1155 | imurmurhash: 0.1.4 1156 | is-glob: 4.0.3 1157 | is-path-inside: 3.0.3 1158 | js-yaml: 4.1.0 1159 | json-stable-stringify-without-jsonify: 1.0.1 1160 | levn: 0.4.1 1161 | lodash.merge: 4.6.2 1162 | minimatch: 3.1.2 1163 | natural-compare: 1.4.0 1164 | optionator: 0.9.3 1165 | strip-ansi: 6.0.1 1166 | text-table: 0.2.0 1167 | transitivePeerDependencies: 1168 | - supports-color 1169 | 1170 | /espree@9.6.1: 1171 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 1172 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1173 | dependencies: 1174 | acorn: 8.11.3 1175 | acorn-jsx: 5.3.2(acorn@8.11.3) 1176 | eslint-visitor-keys: 3.4.3 1177 | 1178 | /esprima@4.0.1: 1179 | resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} 1180 | engines: {node: '>=4'} 1181 | hasBin: true 1182 | dev: true 1183 | 1184 | /esquery@1.5.0: 1185 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} 1186 | engines: {node: '>=0.10'} 1187 | dependencies: 1188 | estraverse: 5.3.0 1189 | 1190 | /esrecurse@4.3.0: 1191 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1192 | engines: {node: '>=4.0'} 1193 | dependencies: 1194 | estraverse: 5.3.0 1195 | 1196 | /estraverse@5.3.0: 1197 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1198 | engines: {node: '>=4.0'} 1199 | 1200 | /esutils@2.0.3: 1201 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1202 | engines: {node: '>=0.10.0'} 1203 | 1204 | /execa@5.1.1: 1205 | resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} 1206 | engines: {node: '>=10'} 1207 | dependencies: 1208 | cross-spawn: 7.0.3 1209 | get-stream: 6.0.1 1210 | human-signals: 2.1.0 1211 | is-stream: 2.0.1 1212 | merge-stream: 2.0.0 1213 | npm-run-path: 4.0.1 1214 | onetime: 5.1.2 1215 | signal-exit: 3.0.7 1216 | strip-final-newline: 2.0.0 1217 | dev: true 1218 | 1219 | /external-editor@3.1.0: 1220 | resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} 1221 | engines: {node: '>=4'} 1222 | dependencies: 1223 | chardet: 0.7.0 1224 | iconv-lite: 0.4.24 1225 | tmp: 0.0.33 1226 | dev: true 1227 | 1228 | /fast-deep-equal@3.1.3: 1229 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1230 | 1231 | /fast-glob@3.3.2: 1232 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 1233 | engines: {node: '>=8.6.0'} 1234 | dependencies: 1235 | '@nodelib/fs.stat': 2.0.5 1236 | '@nodelib/fs.walk': 1.2.8 1237 | glob-parent: 5.1.2 1238 | merge2: 1.4.1 1239 | micromatch: 4.0.5 1240 | 1241 | /fast-json-stable-stringify@2.1.0: 1242 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1243 | 1244 | /fast-levenshtein@2.0.6: 1245 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 1246 | 1247 | /fastq@1.17.0: 1248 | resolution: {integrity: sha512-zGygtijUMT7jnk3h26kUms3BkSDp4IfIKjmnqI2tvx6nuBfiF1UqOxbnLfzdv+apBy+53oaImsKtMw/xYbW+1w==} 1249 | dependencies: 1250 | reusify: 1.0.4 1251 | 1252 | /figures@3.2.0: 1253 | resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} 1254 | engines: {node: '>=8'} 1255 | dependencies: 1256 | escape-string-regexp: 1.0.5 1257 | dev: true 1258 | 1259 | /file-entry-cache@6.0.1: 1260 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 1261 | engines: {node: ^10.12.0 || >=12.0.0} 1262 | dependencies: 1263 | flat-cache: 3.2.0 1264 | 1265 | /fill-range@7.0.1: 1266 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 1267 | engines: {node: '>=8'} 1268 | dependencies: 1269 | to-regex-range: 5.0.1 1270 | 1271 | /find-up@5.0.0: 1272 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 1273 | engines: {node: '>=10'} 1274 | dependencies: 1275 | locate-path: 6.0.0 1276 | path-exists: 4.0.0 1277 | 1278 | /flat-cache@3.2.0: 1279 | resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} 1280 | engines: {node: ^10.12.0 || >=12.0.0} 1281 | dependencies: 1282 | flatted: 3.2.9 1283 | keyv: 4.5.4 1284 | rimraf: 3.0.2 1285 | 1286 | /flatted@3.2.9: 1287 | resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} 1288 | 1289 | /for-each@0.3.3: 1290 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 1291 | dependencies: 1292 | is-callable: 1.2.7 1293 | dev: false 1294 | 1295 | /fs-extra@10.1.0: 1296 | resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} 1297 | engines: {node: '>=12'} 1298 | dependencies: 1299 | graceful-fs: 4.2.11 1300 | jsonfile: 6.1.0 1301 | universalify: 2.0.1 1302 | dev: true 1303 | 1304 | /fs-extra@8.1.0: 1305 | resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} 1306 | engines: {node: '>=6 <7 || >=8'} 1307 | dependencies: 1308 | graceful-fs: 4.2.11 1309 | jsonfile: 4.0.0 1310 | universalify: 0.1.2 1311 | dev: true 1312 | 1313 | /fs.realpath@1.0.0: 1314 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 1315 | 1316 | /function-bind@1.1.2: 1317 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 1318 | 1319 | /function.prototype.name@1.1.6: 1320 | resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} 1321 | engines: {node: '>= 0.4'} 1322 | dependencies: 1323 | call-bind: 1.0.5 1324 | define-properties: 1.2.1 1325 | es-abstract: 1.22.3 1326 | functions-have-names: 1.2.3 1327 | dev: false 1328 | 1329 | /functions-have-names@1.2.3: 1330 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 1331 | dev: false 1332 | 1333 | /get-intrinsic@1.2.2: 1334 | resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} 1335 | dependencies: 1336 | function-bind: 1.1.2 1337 | has-proto: 1.0.1 1338 | has-symbols: 1.0.3 1339 | hasown: 2.0.0 1340 | dev: false 1341 | 1342 | /get-stdin@9.0.0: 1343 | resolution: {integrity: sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==} 1344 | engines: {node: '>=12'} 1345 | dev: true 1346 | 1347 | /get-stream@6.0.1: 1348 | resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} 1349 | engines: {node: '>=10'} 1350 | dev: true 1351 | 1352 | /get-symbol-description@1.0.0: 1353 | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} 1354 | engines: {node: '>= 0.4'} 1355 | dependencies: 1356 | call-bind: 1.0.5 1357 | get-intrinsic: 1.2.2 1358 | dev: false 1359 | 1360 | /get-tsconfig@4.7.2: 1361 | resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==} 1362 | dependencies: 1363 | resolve-pkg-maps: 1.0.0 1364 | dev: false 1365 | 1366 | /get-uri@6.0.2: 1367 | resolution: {integrity: sha512-5KLucCJobh8vBY1K07EFV4+cPZH3mrV9YeAruUseCQKHB58SGjjT2l9/eA9LD082IiuMjSlFJEcdJ27TXvbZNw==} 1368 | engines: {node: '>= 14'} 1369 | dependencies: 1370 | basic-ftp: 5.0.4 1371 | data-uri-to-buffer: 6.0.1 1372 | debug: 4.3.4 1373 | fs-extra: 8.1.0 1374 | transitivePeerDependencies: 1375 | - supports-color 1376 | dev: true 1377 | 1378 | /git-hooks-list@3.1.0: 1379 | resolution: {integrity: sha512-LF8VeHeR7v+wAbXqfgRlTSX/1BJR9Q1vEMR8JAz1cEg6GX07+zyj3sAdDvYjj/xnlIfVuGgj4qBei1K3hKH+PA==} 1380 | dev: true 1381 | 1382 | /glob-parent@5.1.2: 1383 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1384 | engines: {node: '>= 6'} 1385 | dependencies: 1386 | is-glob: 4.0.3 1387 | 1388 | /glob-parent@6.0.2: 1389 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1390 | engines: {node: '>=10.13.0'} 1391 | dependencies: 1392 | is-glob: 4.0.3 1393 | 1394 | /glob@7.2.3: 1395 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 1396 | dependencies: 1397 | fs.realpath: 1.0.0 1398 | inflight: 1.0.6 1399 | inherits: 2.0.4 1400 | minimatch: 3.1.2 1401 | once: 1.4.0 1402 | path-is-absolute: 1.0.1 1403 | 1404 | /globals@13.24.0: 1405 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} 1406 | engines: {node: '>=8'} 1407 | dependencies: 1408 | type-fest: 0.20.2 1409 | 1410 | /globalthis@1.0.3: 1411 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} 1412 | engines: {node: '>= 0.4'} 1413 | dependencies: 1414 | define-properties: 1.2.1 1415 | dev: false 1416 | 1417 | /globby@10.0.2: 1418 | resolution: {integrity: sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==} 1419 | engines: {node: '>=8'} 1420 | dependencies: 1421 | '@types/glob': 7.2.0 1422 | array-union: 2.1.0 1423 | dir-glob: 3.0.1 1424 | fast-glob: 3.3.2 1425 | glob: 7.2.3 1426 | ignore: 5.3.1 1427 | merge2: 1.4.1 1428 | slash: 3.0.0 1429 | dev: true 1430 | 1431 | /globby@11.1.0: 1432 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 1433 | engines: {node: '>=10'} 1434 | dependencies: 1435 | array-union: 2.1.0 1436 | dir-glob: 3.0.1 1437 | fast-glob: 3.3.2 1438 | ignore: 5.3.1 1439 | merge2: 1.4.1 1440 | slash: 3.0.0 1441 | dev: false 1442 | 1443 | /globby@13.2.2: 1444 | resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==} 1445 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1446 | dependencies: 1447 | dir-glob: 3.0.1 1448 | fast-glob: 3.3.2 1449 | ignore: 5.3.1 1450 | merge2: 1.4.1 1451 | slash: 4.0.0 1452 | dev: true 1453 | 1454 | /gopd@1.0.1: 1455 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 1456 | dependencies: 1457 | get-intrinsic: 1.2.2 1458 | dev: false 1459 | 1460 | /graceful-fs@4.2.11: 1461 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 1462 | 1463 | /gradient-string@2.0.2: 1464 | resolution: {integrity: sha512-rEDCuqUQ4tbD78TpzsMtt5OIf0cBCSDWSJtUDaF6JsAh+k0v9r++NzxNEG87oDZx9ZwGhD8DaezR2L/yrw0Jdw==} 1465 | engines: {node: '>=10'} 1466 | dependencies: 1467 | chalk: 4.1.2 1468 | tinygradient: 1.1.5 1469 | dev: true 1470 | 1471 | /graphemer@1.4.0: 1472 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 1473 | 1474 | /handlebars@4.7.8: 1475 | resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} 1476 | engines: {node: '>=0.4.7'} 1477 | hasBin: true 1478 | dependencies: 1479 | minimist: 1.2.8 1480 | neo-async: 2.6.2 1481 | source-map: 0.6.1 1482 | wordwrap: 1.0.0 1483 | optionalDependencies: 1484 | uglify-js: 3.17.4 1485 | dev: true 1486 | 1487 | /has-bigints@1.0.2: 1488 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 1489 | dev: false 1490 | 1491 | /has-flag@3.0.0: 1492 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} 1493 | engines: {node: '>=4'} 1494 | dev: true 1495 | 1496 | /has-flag@4.0.0: 1497 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1498 | engines: {node: '>=8'} 1499 | 1500 | /has-property-descriptors@1.0.1: 1501 | resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} 1502 | dependencies: 1503 | get-intrinsic: 1.2.2 1504 | dev: false 1505 | 1506 | /has-proto@1.0.1: 1507 | resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} 1508 | engines: {node: '>= 0.4'} 1509 | dev: false 1510 | 1511 | /has-symbols@1.0.3: 1512 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 1513 | engines: {node: '>= 0.4'} 1514 | dev: false 1515 | 1516 | /has-tostringtag@1.0.2: 1517 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} 1518 | engines: {node: '>= 0.4'} 1519 | dependencies: 1520 | has-symbols: 1.0.3 1521 | dev: false 1522 | 1523 | /hasown@2.0.0: 1524 | resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} 1525 | engines: {node: '>= 0.4'} 1526 | dependencies: 1527 | function-bind: 1.1.2 1528 | 1529 | /header-case@1.0.1: 1530 | resolution: {integrity: sha512-i0q9mkOeSuhXw6bGgiQCCBgY/jlZuV/7dZXyZ9c6LcBrqwvT8eT719E9uxE5LiZftdl+z81Ugbg/VvXV4OJOeQ==} 1531 | dependencies: 1532 | no-case: 2.3.2 1533 | upper-case: 1.1.3 1534 | dev: true 1535 | 1536 | /http-proxy-agent@7.0.0: 1537 | resolution: {integrity: sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==} 1538 | engines: {node: '>= 14'} 1539 | dependencies: 1540 | agent-base: 7.1.0 1541 | debug: 4.3.4 1542 | transitivePeerDependencies: 1543 | - supports-color 1544 | dev: true 1545 | 1546 | /https-proxy-agent@7.0.2: 1547 | resolution: {integrity: sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==} 1548 | engines: {node: '>= 14'} 1549 | dependencies: 1550 | agent-base: 7.1.0 1551 | debug: 4.3.4 1552 | transitivePeerDependencies: 1553 | - supports-color 1554 | dev: true 1555 | 1556 | /human-signals@2.1.0: 1557 | resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} 1558 | engines: {node: '>=10.17.0'} 1559 | dev: true 1560 | 1561 | /iconv-lite@0.4.24: 1562 | resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} 1563 | engines: {node: '>=0.10.0'} 1564 | dependencies: 1565 | safer-buffer: 2.1.2 1566 | dev: true 1567 | 1568 | /ieee754@1.2.1: 1569 | resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 1570 | dev: true 1571 | 1572 | /ignore@5.3.1: 1573 | resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} 1574 | engines: {node: '>= 4'} 1575 | 1576 | /import-fresh@3.3.0: 1577 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1578 | engines: {node: '>=6'} 1579 | dependencies: 1580 | parent-module: 1.0.1 1581 | resolve-from: 4.0.0 1582 | 1583 | /imurmurhash@0.1.4: 1584 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1585 | engines: {node: '>=0.8.19'} 1586 | 1587 | /indent-string@4.0.0: 1588 | resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} 1589 | engines: {node: '>=8'} 1590 | dev: true 1591 | 1592 | /inflight@1.0.6: 1593 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 1594 | dependencies: 1595 | once: 1.4.0 1596 | wrappy: 1.0.2 1597 | 1598 | /inherits@2.0.4: 1599 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1600 | 1601 | /ini@1.3.8: 1602 | resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} 1603 | dev: true 1604 | 1605 | /inquirer@7.3.3: 1606 | resolution: {integrity: sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==} 1607 | engines: {node: '>=8.0.0'} 1608 | dependencies: 1609 | ansi-escapes: 4.3.2 1610 | chalk: 4.1.2 1611 | cli-cursor: 3.1.0 1612 | cli-width: 3.0.0 1613 | external-editor: 3.1.0 1614 | figures: 3.2.0 1615 | lodash: 4.17.21 1616 | mute-stream: 0.0.8 1617 | run-async: 2.4.1 1618 | rxjs: 6.6.7 1619 | string-width: 4.2.3 1620 | strip-ansi: 6.0.1 1621 | through: 2.3.8 1622 | dev: true 1623 | 1624 | /inquirer@8.2.6: 1625 | resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} 1626 | engines: {node: '>=12.0.0'} 1627 | dependencies: 1628 | ansi-escapes: 4.3.2 1629 | chalk: 4.1.2 1630 | cli-cursor: 3.1.0 1631 | cli-width: 3.0.0 1632 | external-editor: 3.1.0 1633 | figures: 3.2.0 1634 | lodash: 4.17.21 1635 | mute-stream: 0.0.8 1636 | ora: 5.4.1 1637 | run-async: 2.4.1 1638 | rxjs: 7.8.1 1639 | string-width: 4.2.3 1640 | strip-ansi: 6.0.1 1641 | through: 2.3.8 1642 | wrap-ansi: 6.2.0 1643 | dev: true 1644 | 1645 | /internal-slot@1.0.6: 1646 | resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==} 1647 | engines: {node: '>= 0.4'} 1648 | dependencies: 1649 | get-intrinsic: 1.2.2 1650 | hasown: 2.0.0 1651 | side-channel: 1.0.4 1652 | dev: false 1653 | 1654 | /ip@1.1.8: 1655 | resolution: {integrity: sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==} 1656 | dev: true 1657 | 1658 | /ip@2.0.0: 1659 | resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==} 1660 | dev: true 1661 | 1662 | /is-array-buffer@3.0.2: 1663 | resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} 1664 | dependencies: 1665 | call-bind: 1.0.5 1666 | get-intrinsic: 1.2.2 1667 | is-typed-array: 1.1.13 1668 | dev: false 1669 | 1670 | /is-bigint@1.0.4: 1671 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 1672 | dependencies: 1673 | has-bigints: 1.0.2 1674 | dev: false 1675 | 1676 | /is-boolean-object@1.1.2: 1677 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 1678 | engines: {node: '>= 0.4'} 1679 | dependencies: 1680 | call-bind: 1.0.5 1681 | has-tostringtag: 1.0.2 1682 | dev: false 1683 | 1684 | /is-callable@1.2.7: 1685 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 1686 | engines: {node: '>= 0.4'} 1687 | dev: false 1688 | 1689 | /is-core-module@2.13.1: 1690 | resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} 1691 | dependencies: 1692 | hasown: 2.0.0 1693 | 1694 | /is-date-object@1.0.5: 1695 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 1696 | engines: {node: '>= 0.4'} 1697 | dependencies: 1698 | has-tostringtag: 1.0.2 1699 | dev: false 1700 | 1701 | /is-extglob@2.1.1: 1702 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1703 | engines: {node: '>=0.10.0'} 1704 | 1705 | /is-fullwidth-code-point@3.0.0: 1706 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1707 | engines: {node: '>=8'} 1708 | dev: true 1709 | 1710 | /is-glob@4.0.3: 1711 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1712 | engines: {node: '>=0.10.0'} 1713 | dependencies: 1714 | is-extglob: 2.1.1 1715 | 1716 | /is-interactive@1.0.0: 1717 | resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} 1718 | engines: {node: '>=8'} 1719 | dev: true 1720 | 1721 | /is-lower-case@1.1.3: 1722 | resolution: {integrity: sha512-+5A1e/WJpLLXZEDlgz4G//WYSHyQBD32qa4Jd3Lw06qQlv3fJHnp3YIHjTQSGzHMgzmVKz2ZP3rBxTHkPw/lxA==} 1723 | dependencies: 1724 | lower-case: 1.1.4 1725 | dev: true 1726 | 1727 | /is-negative-zero@2.0.2: 1728 | resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} 1729 | engines: {node: '>= 0.4'} 1730 | dev: false 1731 | 1732 | /is-number-object@1.0.7: 1733 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 1734 | engines: {node: '>= 0.4'} 1735 | dependencies: 1736 | has-tostringtag: 1.0.2 1737 | dev: false 1738 | 1739 | /is-number@7.0.0: 1740 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1741 | engines: {node: '>=0.12.0'} 1742 | 1743 | /is-path-cwd@2.2.0: 1744 | resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} 1745 | engines: {node: '>=6'} 1746 | dev: true 1747 | 1748 | /is-path-inside@3.0.3: 1749 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 1750 | engines: {node: '>=8'} 1751 | 1752 | /is-plain-obj@4.1.0: 1753 | resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} 1754 | engines: {node: '>=12'} 1755 | dev: true 1756 | 1757 | /is-regex@1.1.4: 1758 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 1759 | engines: {node: '>= 0.4'} 1760 | dependencies: 1761 | call-bind: 1.0.5 1762 | has-tostringtag: 1.0.2 1763 | dev: false 1764 | 1765 | /is-shared-array-buffer@1.0.2: 1766 | resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} 1767 | dependencies: 1768 | call-bind: 1.0.5 1769 | dev: false 1770 | 1771 | /is-stream@2.0.1: 1772 | resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} 1773 | engines: {node: '>=8'} 1774 | dev: true 1775 | 1776 | /is-string@1.0.7: 1777 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 1778 | engines: {node: '>= 0.4'} 1779 | dependencies: 1780 | has-tostringtag: 1.0.2 1781 | dev: false 1782 | 1783 | /is-symbol@1.0.4: 1784 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 1785 | engines: {node: '>= 0.4'} 1786 | dependencies: 1787 | has-symbols: 1.0.3 1788 | dev: false 1789 | 1790 | /is-typed-array@1.1.13: 1791 | resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} 1792 | engines: {node: '>= 0.4'} 1793 | dependencies: 1794 | which-typed-array: 1.1.14 1795 | dev: false 1796 | 1797 | /is-unicode-supported@0.1.0: 1798 | resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} 1799 | engines: {node: '>=10'} 1800 | dev: true 1801 | 1802 | /is-upper-case@1.1.2: 1803 | resolution: {integrity: sha512-GQYSJMgfeAmVwh9ixyk888l7OIhNAGKtY6QA+IrWlu9MDTCaXmeozOZ2S9Knj7bQwBO/H6J2kb+pbyTUiMNbsw==} 1804 | dependencies: 1805 | upper-case: 1.1.3 1806 | dev: true 1807 | 1808 | /is-weakref@1.0.2: 1809 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 1810 | dependencies: 1811 | call-bind: 1.0.5 1812 | dev: false 1813 | 1814 | /isarray@2.0.5: 1815 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 1816 | dev: false 1817 | 1818 | /isbinaryfile@4.0.10: 1819 | resolution: {integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==} 1820 | engines: {node: '>= 8.0.0'} 1821 | dev: true 1822 | 1823 | /isexe@2.0.0: 1824 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1825 | 1826 | /js-yaml@4.1.0: 1827 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1828 | hasBin: true 1829 | dependencies: 1830 | argparse: 2.0.1 1831 | 1832 | /json-buffer@3.0.1: 1833 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 1834 | 1835 | /json-schema-traverse@0.4.1: 1836 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1837 | 1838 | /json-stable-stringify-without-jsonify@1.0.1: 1839 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1840 | 1841 | /json5@1.0.2: 1842 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 1843 | hasBin: true 1844 | dependencies: 1845 | minimist: 1.2.8 1846 | dev: false 1847 | 1848 | /jsonfile@4.0.0: 1849 | resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} 1850 | optionalDependencies: 1851 | graceful-fs: 4.2.11 1852 | dev: true 1853 | 1854 | /jsonfile@6.1.0: 1855 | resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} 1856 | dependencies: 1857 | universalify: 2.0.1 1858 | optionalDependencies: 1859 | graceful-fs: 4.2.11 1860 | dev: true 1861 | 1862 | /keyv@4.5.4: 1863 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 1864 | dependencies: 1865 | json-buffer: 3.0.1 1866 | 1867 | /levn@0.4.1: 1868 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1869 | engines: {node: '>= 0.8.0'} 1870 | dependencies: 1871 | prelude-ls: 1.2.1 1872 | type-check: 0.4.0 1873 | 1874 | /locate-path@6.0.0: 1875 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1876 | engines: {node: '>=10'} 1877 | dependencies: 1878 | p-locate: 5.0.0 1879 | 1880 | /lodash.get@4.4.2: 1881 | resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} 1882 | dev: true 1883 | 1884 | /lodash.merge@4.6.2: 1885 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1886 | 1887 | /lodash@4.17.21: 1888 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 1889 | dev: true 1890 | 1891 | /log-symbols@3.0.0: 1892 | resolution: {integrity: sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==} 1893 | engines: {node: '>=8'} 1894 | dependencies: 1895 | chalk: 2.4.2 1896 | dev: true 1897 | 1898 | /log-symbols@4.1.0: 1899 | resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} 1900 | engines: {node: '>=10'} 1901 | dependencies: 1902 | chalk: 4.1.2 1903 | is-unicode-supported: 0.1.0 1904 | dev: true 1905 | 1906 | /lower-case-first@1.0.2: 1907 | resolution: {integrity: sha512-UuxaYakO7XeONbKrZf5FEgkantPf5DUqDayzP5VXZrtRPdH86s4kN47I8B3TW10S4QKiE3ziHNf3kRN//okHjA==} 1908 | dependencies: 1909 | lower-case: 1.1.4 1910 | dev: true 1911 | 1912 | /lower-case@1.1.4: 1913 | resolution: {integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==} 1914 | dev: true 1915 | 1916 | /lru-cache@6.0.0: 1917 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 1918 | engines: {node: '>=10'} 1919 | dependencies: 1920 | yallist: 4.0.0 1921 | 1922 | /lru-cache@7.18.3: 1923 | resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} 1924 | engines: {node: '>=12'} 1925 | dev: true 1926 | 1927 | /make-error@1.3.6: 1928 | resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} 1929 | dev: true 1930 | 1931 | /merge-stream@2.0.0: 1932 | resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 1933 | dev: true 1934 | 1935 | /merge2@1.4.1: 1936 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1937 | engines: {node: '>= 8'} 1938 | 1939 | /micromatch@4.0.5: 1940 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 1941 | engines: {node: '>=8.6'} 1942 | dependencies: 1943 | braces: 3.0.2 1944 | picomatch: 2.3.1 1945 | 1946 | /mimic-fn@2.1.0: 1947 | resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} 1948 | engines: {node: '>=6'} 1949 | dev: true 1950 | 1951 | /minimatch@3.1.2: 1952 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1953 | dependencies: 1954 | brace-expansion: 1.1.11 1955 | 1956 | /minimatch@9.0.3: 1957 | resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} 1958 | engines: {node: '>=16 || 14 >=14.17'} 1959 | dependencies: 1960 | brace-expansion: 2.0.1 1961 | 1962 | /minimist@1.2.8: 1963 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1964 | 1965 | /mkdirp@0.5.6: 1966 | resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} 1967 | hasBin: true 1968 | dependencies: 1969 | minimist: 1.2.8 1970 | dev: true 1971 | 1972 | /ms@2.1.2: 1973 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 1974 | 1975 | /ms@2.1.3: 1976 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1977 | dev: false 1978 | 1979 | /mute-stream@0.0.8: 1980 | resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} 1981 | dev: true 1982 | 1983 | /natural-compare@1.4.0: 1984 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1985 | 1986 | /neo-async@2.6.2: 1987 | resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} 1988 | dev: true 1989 | 1990 | /netmask@2.0.2: 1991 | resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==} 1992 | engines: {node: '>= 0.4.0'} 1993 | dev: true 1994 | 1995 | /no-case@2.3.2: 1996 | resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==} 1997 | dependencies: 1998 | lower-case: 1.1.4 1999 | dev: true 2000 | 2001 | /node-plop@0.26.3: 2002 | resolution: {integrity: sha512-Cov028YhBZ5aB7MdMWJEmwyBig43aGL5WT4vdoB28Oitau1zZAcHUn8Sgfk9HM33TqhtLJ9PlM/O0Mv+QpV/4Q==} 2003 | engines: {node: '>=8.9.4'} 2004 | dependencies: 2005 | '@babel/runtime-corejs3': 7.23.9 2006 | '@types/inquirer': 6.5.0 2007 | change-case: 3.1.0 2008 | del: 5.1.0 2009 | globby: 10.0.2 2010 | handlebars: 4.7.8 2011 | inquirer: 7.3.3 2012 | isbinaryfile: 4.0.10 2013 | lodash.get: 4.4.2 2014 | mkdirp: 0.5.6 2015 | resolve: 1.22.8 2016 | dev: true 2017 | 2018 | /npm-run-path@4.0.1: 2019 | resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} 2020 | engines: {node: '>=8'} 2021 | dependencies: 2022 | path-key: 3.1.1 2023 | dev: true 2024 | 2025 | /object-inspect@1.13.1: 2026 | resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} 2027 | dev: false 2028 | 2029 | /object-keys@1.1.1: 2030 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 2031 | engines: {node: '>= 0.4'} 2032 | dev: false 2033 | 2034 | /object.assign@4.1.5: 2035 | resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} 2036 | engines: {node: '>= 0.4'} 2037 | dependencies: 2038 | call-bind: 1.0.5 2039 | define-properties: 1.2.1 2040 | has-symbols: 1.0.3 2041 | object-keys: 1.1.1 2042 | dev: false 2043 | 2044 | /object.fromentries@2.0.7: 2045 | resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==} 2046 | engines: {node: '>= 0.4'} 2047 | dependencies: 2048 | call-bind: 1.0.5 2049 | define-properties: 1.2.1 2050 | es-abstract: 1.22.3 2051 | dev: false 2052 | 2053 | /object.groupby@1.0.1: 2054 | resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==} 2055 | dependencies: 2056 | call-bind: 1.0.5 2057 | define-properties: 1.2.1 2058 | es-abstract: 1.22.3 2059 | get-intrinsic: 1.2.2 2060 | dev: false 2061 | 2062 | /object.values@1.1.7: 2063 | resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==} 2064 | engines: {node: '>= 0.4'} 2065 | dependencies: 2066 | call-bind: 1.0.5 2067 | define-properties: 1.2.1 2068 | es-abstract: 1.22.3 2069 | dev: false 2070 | 2071 | /once@1.4.0: 2072 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 2073 | dependencies: 2074 | wrappy: 1.0.2 2075 | 2076 | /onetime@5.1.2: 2077 | resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} 2078 | engines: {node: '>=6'} 2079 | dependencies: 2080 | mimic-fn: 2.1.0 2081 | dev: true 2082 | 2083 | /optionator@0.9.3: 2084 | resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} 2085 | engines: {node: '>= 0.8.0'} 2086 | dependencies: 2087 | '@aashutoshrathi/word-wrap': 1.2.6 2088 | deep-is: 0.1.4 2089 | fast-levenshtein: 2.0.6 2090 | levn: 0.4.1 2091 | prelude-ls: 1.2.1 2092 | type-check: 0.4.0 2093 | 2094 | /ora@4.1.1: 2095 | resolution: {integrity: sha512-sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A==} 2096 | engines: {node: '>=8'} 2097 | dependencies: 2098 | chalk: 3.0.0 2099 | cli-cursor: 3.1.0 2100 | cli-spinners: 2.9.2 2101 | is-interactive: 1.0.0 2102 | log-symbols: 3.0.0 2103 | mute-stream: 0.0.8 2104 | strip-ansi: 6.0.1 2105 | wcwidth: 1.0.1 2106 | dev: true 2107 | 2108 | /ora@5.4.1: 2109 | resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} 2110 | engines: {node: '>=10'} 2111 | dependencies: 2112 | bl: 4.1.0 2113 | chalk: 4.1.2 2114 | cli-cursor: 3.1.0 2115 | cli-spinners: 2.9.2 2116 | is-interactive: 1.0.0 2117 | is-unicode-supported: 0.1.0 2118 | log-symbols: 4.1.0 2119 | strip-ansi: 6.0.1 2120 | wcwidth: 1.0.1 2121 | dev: true 2122 | 2123 | /os-tmpdir@1.0.2: 2124 | resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} 2125 | engines: {node: '>=0.10.0'} 2126 | dev: true 2127 | 2128 | /p-limit@3.1.0: 2129 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 2130 | engines: {node: '>=10'} 2131 | dependencies: 2132 | yocto-queue: 0.1.0 2133 | 2134 | /p-locate@5.0.0: 2135 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 2136 | engines: {node: '>=10'} 2137 | dependencies: 2138 | p-limit: 3.1.0 2139 | 2140 | /p-map@3.0.0: 2141 | resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==} 2142 | engines: {node: '>=8'} 2143 | dependencies: 2144 | aggregate-error: 3.1.0 2145 | dev: true 2146 | 2147 | /pac-proxy-agent@7.0.1: 2148 | resolution: {integrity: sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==} 2149 | engines: {node: '>= 14'} 2150 | dependencies: 2151 | '@tootallnate/quickjs-emscripten': 0.23.0 2152 | agent-base: 7.1.0 2153 | debug: 4.3.4 2154 | get-uri: 6.0.2 2155 | http-proxy-agent: 7.0.0 2156 | https-proxy-agent: 7.0.2 2157 | pac-resolver: 7.0.0 2158 | socks-proxy-agent: 8.0.2 2159 | transitivePeerDependencies: 2160 | - supports-color 2161 | dev: true 2162 | 2163 | /pac-resolver@7.0.0: 2164 | resolution: {integrity: sha512-Fd9lT9vJbHYRACT8OhCbZBbxr6KRSawSovFpy8nDGshaK99S/EBhVIHp9+crhxrsZOuvLpgL1n23iyPg6Rl2hg==} 2165 | engines: {node: '>= 14'} 2166 | dependencies: 2167 | degenerator: 5.0.1 2168 | ip: 1.1.8 2169 | netmask: 2.0.2 2170 | dev: true 2171 | 2172 | /param-case@2.1.1: 2173 | resolution: {integrity: sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==} 2174 | dependencies: 2175 | no-case: 2.3.2 2176 | dev: true 2177 | 2178 | /parent-module@1.0.1: 2179 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 2180 | engines: {node: '>=6'} 2181 | dependencies: 2182 | callsites: 3.1.0 2183 | 2184 | /pascal-case@2.0.1: 2185 | resolution: {integrity: sha512-qjS4s8rBOJa2Xm0jmxXiyh1+OFf6ekCWOvUaRgAQSktzlTbMotS0nmG9gyYAybCWBcuP4fsBeRCKNwGBnMe2OQ==} 2186 | dependencies: 2187 | camel-case: 3.0.0 2188 | upper-case-first: 1.1.2 2189 | dev: true 2190 | 2191 | /path-case@2.1.1: 2192 | resolution: {integrity: sha512-Ou0N05MioItesaLr9q8TtHVWmJ6fxWdqKB2RohFmNWVyJ+2zeKIeDNWAN6B/Pe7wpzWChhZX6nONYmOnMeJQ/Q==} 2193 | dependencies: 2194 | no-case: 2.3.2 2195 | dev: true 2196 | 2197 | /path-exists@4.0.0: 2198 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 2199 | engines: {node: '>=8'} 2200 | 2201 | /path-is-absolute@1.0.1: 2202 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 2203 | engines: {node: '>=0.10.0'} 2204 | 2205 | /path-key@3.1.1: 2206 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 2207 | engines: {node: '>=8'} 2208 | 2209 | /path-parse@1.0.7: 2210 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 2211 | 2212 | /path-type@4.0.0: 2213 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 2214 | engines: {node: '>=8'} 2215 | 2216 | /picomatch@2.3.1: 2217 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 2218 | engines: {node: '>=8.6'} 2219 | 2220 | /prelude-ls@1.2.1: 2221 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 2222 | engines: {node: '>= 0.8.0'} 2223 | 2224 | /prettier-plugin-packagejson@2.4.10(prettier@3.2.4): 2225 | resolution: {integrity: sha512-qFzOfQDHi1tzvVJRuZ2jh1j6IFV5MURh5m5WDt+qfEMOf4SSL5RpwSysiX8u0W1PJYsM0vKJGNULt43wwteKiQ==} 2226 | peerDependencies: 2227 | prettier: '>= 1.16.0' 2228 | peerDependenciesMeta: 2229 | prettier: 2230 | optional: true 2231 | dependencies: 2232 | prettier: 3.2.4 2233 | sort-package-json: 2.7.0 2234 | synckit: 0.9.0 2235 | dev: true 2236 | 2237 | /prettier@3.2.4: 2238 | resolution: {integrity: sha512-FWu1oLHKCrtpO1ypU6J0SbK2d9Ckwysq6bHj/uaCP26DxrPpppCLQRGVuqAxSTvhF00AcvDRyYrLNW7ocBhFFQ==} 2239 | engines: {node: '>=14'} 2240 | hasBin: true 2241 | dev: true 2242 | 2243 | /proxy-agent@6.3.1: 2244 | resolution: {integrity: sha512-Rb5RVBy1iyqOtNl15Cw/llpeLH8bsb37gM1FUfKQ+Wck6xHlbAhWGUFiTRHtkjqGTA5pSHz6+0hrPW/oECihPQ==} 2245 | engines: {node: '>= 14'} 2246 | dependencies: 2247 | agent-base: 7.1.0 2248 | debug: 4.3.4 2249 | http-proxy-agent: 7.0.0 2250 | https-proxy-agent: 7.0.2 2251 | lru-cache: 7.18.3 2252 | pac-proxy-agent: 7.0.1 2253 | proxy-from-env: 1.1.0 2254 | socks-proxy-agent: 8.0.2 2255 | transitivePeerDependencies: 2256 | - supports-color 2257 | dev: true 2258 | 2259 | /proxy-from-env@1.1.0: 2260 | resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} 2261 | dev: true 2262 | 2263 | /punycode@2.3.1: 2264 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 2265 | engines: {node: '>=6'} 2266 | 2267 | /queue-microtask@1.2.3: 2268 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 2269 | 2270 | /rc@1.2.8: 2271 | resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} 2272 | hasBin: true 2273 | dependencies: 2274 | deep-extend: 0.6.0 2275 | ini: 1.3.8 2276 | minimist: 1.2.8 2277 | strip-json-comments: 2.0.1 2278 | dev: true 2279 | 2280 | /readable-stream@3.6.2: 2281 | resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} 2282 | engines: {node: '>= 6'} 2283 | dependencies: 2284 | inherits: 2.0.4 2285 | string_decoder: 1.3.0 2286 | util-deprecate: 1.0.2 2287 | dev: true 2288 | 2289 | /regenerator-runtime@0.14.1: 2290 | resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} 2291 | dev: true 2292 | 2293 | /regexp.prototype.flags@1.5.1: 2294 | resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} 2295 | engines: {node: '>= 0.4'} 2296 | dependencies: 2297 | call-bind: 1.0.5 2298 | define-properties: 1.2.1 2299 | set-function-name: 2.0.1 2300 | dev: false 2301 | 2302 | /registry-auth-token@3.3.2: 2303 | resolution: {integrity: sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==} 2304 | dependencies: 2305 | rc: 1.2.8 2306 | safe-buffer: 5.2.1 2307 | dev: true 2308 | 2309 | /registry-url@3.1.0: 2310 | resolution: {integrity: sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA==} 2311 | engines: {node: '>=0.10.0'} 2312 | dependencies: 2313 | rc: 1.2.8 2314 | dev: true 2315 | 2316 | /resolve-from@4.0.0: 2317 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 2318 | engines: {node: '>=4'} 2319 | 2320 | /resolve-pkg-maps@1.0.0: 2321 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 2322 | dev: false 2323 | 2324 | /resolve@1.22.8: 2325 | resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} 2326 | hasBin: true 2327 | dependencies: 2328 | is-core-module: 2.13.1 2329 | path-parse: 1.0.7 2330 | supports-preserve-symlinks-flag: 1.0.0 2331 | 2332 | /restore-cursor@3.1.0: 2333 | resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} 2334 | engines: {node: '>=8'} 2335 | dependencies: 2336 | onetime: 5.1.2 2337 | signal-exit: 3.0.7 2338 | dev: true 2339 | 2340 | /reusify@1.0.4: 2341 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 2342 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 2343 | 2344 | /rimraf@3.0.2: 2345 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 2346 | hasBin: true 2347 | dependencies: 2348 | glob: 7.2.3 2349 | 2350 | /run-async@2.4.1: 2351 | resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} 2352 | engines: {node: '>=0.12.0'} 2353 | dev: true 2354 | 2355 | /run-parallel@1.2.0: 2356 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 2357 | dependencies: 2358 | queue-microtask: 1.2.3 2359 | 2360 | /rxjs@6.6.7: 2361 | resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} 2362 | engines: {npm: '>=2.0.0'} 2363 | dependencies: 2364 | tslib: 1.14.1 2365 | dev: true 2366 | 2367 | /rxjs@7.8.1: 2368 | resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} 2369 | dependencies: 2370 | tslib: 2.6.2 2371 | dev: true 2372 | 2373 | /safe-array-concat@1.1.0: 2374 | resolution: {integrity: sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==} 2375 | engines: {node: '>=0.4'} 2376 | dependencies: 2377 | call-bind: 1.0.5 2378 | get-intrinsic: 1.2.2 2379 | has-symbols: 1.0.3 2380 | isarray: 2.0.5 2381 | dev: false 2382 | 2383 | /safe-buffer@5.2.1: 2384 | resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 2385 | dev: true 2386 | 2387 | /safe-regex-test@1.0.2: 2388 | resolution: {integrity: sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==} 2389 | engines: {node: '>= 0.4'} 2390 | dependencies: 2391 | call-bind: 1.0.5 2392 | get-intrinsic: 1.2.2 2393 | is-regex: 1.1.4 2394 | dev: false 2395 | 2396 | /safer-buffer@2.1.2: 2397 | resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 2398 | dev: true 2399 | 2400 | /semver@6.3.1: 2401 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 2402 | hasBin: true 2403 | dev: false 2404 | 2405 | /semver@7.5.4: 2406 | resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} 2407 | engines: {node: '>=10'} 2408 | hasBin: true 2409 | dependencies: 2410 | lru-cache: 6.0.0 2411 | 2412 | /sentence-case@2.1.1: 2413 | resolution: {integrity: sha512-ENl7cYHaK/Ktwk5OTD+aDbQ3uC8IByu/6Bkg+HDv8Mm+XnBnppVNalcfJTNsp1ibstKh030/JKQQWglDvtKwEQ==} 2414 | dependencies: 2415 | no-case: 2.3.2 2416 | upper-case-first: 1.1.2 2417 | dev: true 2418 | 2419 | /set-function-length@1.2.0: 2420 | resolution: {integrity: sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==} 2421 | engines: {node: '>= 0.4'} 2422 | dependencies: 2423 | define-data-property: 1.1.1 2424 | function-bind: 1.1.2 2425 | get-intrinsic: 1.2.2 2426 | gopd: 1.0.1 2427 | has-property-descriptors: 1.0.1 2428 | dev: false 2429 | 2430 | /set-function-name@2.0.1: 2431 | resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} 2432 | engines: {node: '>= 0.4'} 2433 | dependencies: 2434 | define-data-property: 1.1.1 2435 | functions-have-names: 1.2.3 2436 | has-property-descriptors: 1.0.1 2437 | dev: false 2438 | 2439 | /shebang-command@2.0.0: 2440 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 2441 | engines: {node: '>=8'} 2442 | dependencies: 2443 | shebang-regex: 3.0.0 2444 | 2445 | /shebang-regex@3.0.0: 2446 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 2447 | engines: {node: '>=8'} 2448 | 2449 | /side-channel@1.0.4: 2450 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} 2451 | dependencies: 2452 | call-bind: 1.0.5 2453 | get-intrinsic: 1.2.2 2454 | object-inspect: 1.13.1 2455 | dev: false 2456 | 2457 | /signal-exit@3.0.7: 2458 | resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} 2459 | dev: true 2460 | 2461 | /slash@3.0.0: 2462 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 2463 | engines: {node: '>=8'} 2464 | 2465 | /slash@4.0.0: 2466 | resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} 2467 | engines: {node: '>=12'} 2468 | dev: true 2469 | 2470 | /smart-buffer@4.2.0: 2471 | resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} 2472 | engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} 2473 | dev: true 2474 | 2475 | /snake-case@2.1.0: 2476 | resolution: {integrity: sha512-FMR5YoPFwOLuh4rRz92dywJjyKYZNLpMn1R5ujVpIYkbA9p01fq8RMg0FkO4M+Yobt4MjHeLTJVm5xFFBHSV2Q==} 2477 | dependencies: 2478 | no-case: 2.3.2 2479 | dev: true 2480 | 2481 | /socks-proxy-agent@8.0.2: 2482 | resolution: {integrity: sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==} 2483 | engines: {node: '>= 14'} 2484 | dependencies: 2485 | agent-base: 7.1.0 2486 | debug: 4.3.4 2487 | socks: 2.7.1 2488 | transitivePeerDependencies: 2489 | - supports-color 2490 | dev: true 2491 | 2492 | /socks@2.7.1: 2493 | resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==} 2494 | engines: {node: '>= 10.13.0', npm: '>= 3.0.0'} 2495 | dependencies: 2496 | ip: 2.0.0 2497 | smart-buffer: 4.2.0 2498 | dev: true 2499 | 2500 | /sort-object-keys@1.1.3: 2501 | resolution: {integrity: sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==} 2502 | dev: true 2503 | 2504 | /sort-package-json@2.7.0: 2505 | resolution: {integrity: sha512-6AayF8bp6L+WROgpbhTMUtB9JSFmpGHjmW7DyaNPS1HwlTw2oSVlUUtlkHSEZmg5o89F3zvLBZNvMeZ1T4fjQg==} 2506 | hasBin: true 2507 | dependencies: 2508 | detect-indent: 7.0.1 2509 | detect-newline: 4.0.1 2510 | get-stdin: 9.0.0 2511 | git-hooks-list: 3.1.0 2512 | globby: 13.2.2 2513 | is-plain-obj: 4.1.0 2514 | sort-object-keys: 1.1.3 2515 | dev: true 2516 | 2517 | /source-map@0.6.1: 2518 | resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} 2519 | engines: {node: '>=0.10.0'} 2520 | dev: true 2521 | 2522 | /string-width@4.2.3: 2523 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 2524 | engines: {node: '>=8'} 2525 | dependencies: 2526 | emoji-regex: 8.0.0 2527 | is-fullwidth-code-point: 3.0.0 2528 | strip-ansi: 6.0.1 2529 | dev: true 2530 | 2531 | /string.prototype.trim@1.2.8: 2532 | resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} 2533 | engines: {node: '>= 0.4'} 2534 | dependencies: 2535 | call-bind: 1.0.5 2536 | define-properties: 1.2.1 2537 | es-abstract: 1.22.3 2538 | dev: false 2539 | 2540 | /string.prototype.trimend@1.0.7: 2541 | resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} 2542 | dependencies: 2543 | call-bind: 1.0.5 2544 | define-properties: 1.2.1 2545 | es-abstract: 1.22.3 2546 | dev: false 2547 | 2548 | /string.prototype.trimstart@1.0.7: 2549 | resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} 2550 | dependencies: 2551 | call-bind: 1.0.5 2552 | define-properties: 1.2.1 2553 | es-abstract: 1.22.3 2554 | dev: false 2555 | 2556 | /string_decoder@1.3.0: 2557 | resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 2558 | dependencies: 2559 | safe-buffer: 5.2.1 2560 | dev: true 2561 | 2562 | /strip-ansi@6.0.1: 2563 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 2564 | engines: {node: '>=8'} 2565 | dependencies: 2566 | ansi-regex: 5.0.1 2567 | 2568 | /strip-bom@3.0.0: 2569 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 2570 | engines: {node: '>=4'} 2571 | dev: false 2572 | 2573 | /strip-final-newline@2.0.0: 2574 | resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} 2575 | engines: {node: '>=6'} 2576 | dev: true 2577 | 2578 | /strip-json-comments@2.0.1: 2579 | resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} 2580 | engines: {node: '>=0.10.0'} 2581 | dev: true 2582 | 2583 | /strip-json-comments@3.1.1: 2584 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 2585 | engines: {node: '>=8'} 2586 | 2587 | /supports-color@5.5.0: 2588 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 2589 | engines: {node: '>=4'} 2590 | dependencies: 2591 | has-flag: 3.0.0 2592 | dev: true 2593 | 2594 | /supports-color@7.2.0: 2595 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 2596 | engines: {node: '>=8'} 2597 | dependencies: 2598 | has-flag: 4.0.0 2599 | 2600 | /supports-preserve-symlinks-flag@1.0.0: 2601 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 2602 | engines: {node: '>= 0.4'} 2603 | 2604 | /swap-case@1.1.2: 2605 | resolution: {integrity: sha512-BAmWG6/bx8syfc6qXPprof3Mn5vQgf5dwdUNJhsNqU9WdPt5P+ES/wQ5bxfijy8zwZgZZHslC3iAsxsuQMCzJQ==} 2606 | dependencies: 2607 | lower-case: 1.1.4 2608 | upper-case: 1.1.3 2609 | dev: true 2610 | 2611 | /synckit@0.9.0: 2612 | resolution: {integrity: sha512-7RnqIMq572L8PeEzKeBINYEJDDxpcH8JEgLwUqBd3TkofhFRbkq4QLR0u+36avGAhCRbk2nnmjcW9SE531hPDg==} 2613 | engines: {node: ^14.18.0 || >=16.0.0} 2614 | dependencies: 2615 | '@pkgr/core': 0.1.1 2616 | tslib: 2.6.2 2617 | dev: true 2618 | 2619 | /tapable@2.2.1: 2620 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 2621 | engines: {node: '>=6'} 2622 | dev: false 2623 | 2624 | /text-table@0.2.0: 2625 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 2626 | 2627 | /through@2.3.8: 2628 | resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} 2629 | dev: true 2630 | 2631 | /tinycolor2@1.6.0: 2632 | resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} 2633 | dev: true 2634 | 2635 | /tinygradient@1.1.5: 2636 | resolution: {integrity: sha512-8nIfc2vgQ4TeLnk2lFj4tRLvvJwEfQuabdsmvDdQPT0xlk9TaNtpGd6nNRxXoK6vQhN6RSzj+Cnp5tTQmpxmbw==} 2637 | dependencies: 2638 | '@types/tinycolor2': 1.4.6 2639 | tinycolor2: 1.6.0 2640 | dev: true 2641 | 2642 | /title-case@2.1.1: 2643 | resolution: {integrity: sha512-EkJoZ2O3zdCz3zJsYCsxyq2OC5hrxR9mfdd5I+w8h/tmFfeOxJ+vvkxsKxdmN0WtS9zLdHEgfgVOiMVgv+Po4Q==} 2644 | dependencies: 2645 | no-case: 2.3.2 2646 | upper-case: 1.1.3 2647 | dev: true 2648 | 2649 | /tmp@0.0.33: 2650 | resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} 2651 | engines: {node: '>=0.6.0'} 2652 | dependencies: 2653 | os-tmpdir: 1.0.2 2654 | dev: true 2655 | 2656 | /to-regex-range@5.0.1: 2657 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 2658 | engines: {node: '>=8.0'} 2659 | dependencies: 2660 | is-number: 7.0.0 2661 | 2662 | /ts-api-utils@1.0.3(typescript@5.3.3): 2663 | resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==} 2664 | engines: {node: '>=16.13.0'} 2665 | peerDependencies: 2666 | typescript: '>=4.2.0' 2667 | dependencies: 2668 | typescript: 5.3.3 2669 | dev: false 2670 | 2671 | /ts-node@10.9.2(@types/node@20.11.16)(typescript@5.3.3): 2672 | resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} 2673 | hasBin: true 2674 | peerDependencies: 2675 | '@swc/core': '>=1.2.50' 2676 | '@swc/wasm': '>=1.2.50' 2677 | '@types/node': '*' 2678 | typescript: '>=2.7' 2679 | peerDependenciesMeta: 2680 | '@swc/core': 2681 | optional: true 2682 | '@swc/wasm': 2683 | optional: true 2684 | dependencies: 2685 | '@cspotcode/source-map-support': 0.8.1 2686 | '@tsconfig/node10': 1.0.9 2687 | '@tsconfig/node12': 1.0.11 2688 | '@tsconfig/node14': 1.0.3 2689 | '@tsconfig/node16': 1.0.4 2690 | '@types/node': 20.11.16 2691 | acorn: 8.11.3 2692 | acorn-walk: 8.3.2 2693 | arg: 4.1.3 2694 | create-require: 1.1.1 2695 | diff: 4.0.2 2696 | make-error: 1.3.6 2697 | typescript: 5.3.3 2698 | v8-compile-cache-lib: 3.0.1 2699 | yn: 3.1.1 2700 | dev: true 2701 | 2702 | /tsconfig-paths@3.15.0: 2703 | resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} 2704 | dependencies: 2705 | '@types/json5': 0.0.29 2706 | json5: 1.0.2 2707 | minimist: 1.2.8 2708 | strip-bom: 3.0.0 2709 | dev: false 2710 | 2711 | /tslib@1.14.1: 2712 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} 2713 | dev: true 2714 | 2715 | /tslib@2.6.2: 2716 | resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} 2717 | dev: true 2718 | 2719 | /turbo-darwin-64@1.12.2: 2720 | resolution: {integrity: sha512-Aq/ePQ5KNx6XGwlZWTVTqpQYfysm1vkwkI6kAYgrX5DjMWn+tUXrSgNx4YNte0F+V4DQ7PtuWX+jRG0h0ZNg0A==} 2721 | cpu: [x64] 2722 | os: [darwin] 2723 | requiresBuild: true 2724 | dev: true 2725 | optional: true 2726 | 2727 | /turbo-darwin-arm64@1.12.2: 2728 | resolution: {integrity: sha512-wTr+dqkwJo/eXE+4SPTSeNBKyyfQJhI6I9sKVlCSBmtaNEqoGNgdVzgMUdqrg9AIFzLIiKO+zhfskNaSWpVFow==} 2729 | cpu: [arm64] 2730 | os: [darwin] 2731 | requiresBuild: true 2732 | dev: true 2733 | optional: true 2734 | 2735 | /turbo-linux-64@1.12.2: 2736 | resolution: {integrity: sha512-BggBKrLojGarDaa2zBo+kUR3fmjpd6bLA8Unm3Aa2oJw0UvEi3Brd+w9lNsPZHXXQYBUzNUY2gCdxf3RteWb0g==} 2737 | cpu: [x64] 2738 | os: [linux] 2739 | requiresBuild: true 2740 | dev: true 2741 | optional: true 2742 | 2743 | /turbo-linux-arm64@1.12.2: 2744 | resolution: {integrity: sha512-v/apSRvVuwYjq1D9MJFsHv2EpGd1S4VoSdZvVfW6FaM06L8CFZa92urNR1svdGYN28YVKwK9Ikc9qudC6t/d5A==} 2745 | cpu: [arm64] 2746 | os: [linux] 2747 | requiresBuild: true 2748 | dev: true 2749 | optional: true 2750 | 2751 | /turbo-windows-64@1.12.2: 2752 | resolution: {integrity: sha512-3uDdwXcRGkgopYFdPDpxQiuQjfQ12Fxq0fhj+iGymav0eWA4W4wzYwSdlUp6rT22qOBIzaEsrIspRwx1DsMkNg==} 2753 | cpu: [x64] 2754 | os: [win32] 2755 | requiresBuild: true 2756 | dev: true 2757 | optional: true 2758 | 2759 | /turbo-windows-arm64@1.12.2: 2760 | resolution: {integrity: sha512-zNIHnwtQfJSjFi7movwhPQh2rfrcKZ7Xv609EN1yX0gEp9GxooCUi2yNnBQ8wTqFjioA2M5hZtGJQ0RrKaEm/Q==} 2761 | cpu: [arm64] 2762 | os: [win32] 2763 | requiresBuild: true 2764 | dev: true 2765 | optional: true 2766 | 2767 | /turbo@1.12.2: 2768 | resolution: {integrity: sha512-BcoQjBZ+LJCMdjzWhzQflOinUjek28rWXj07aaaAQ8T3Ehs0JFSjIsXOm4qIbo52G4xk3gFVcUtJhh/QRADl7g==} 2769 | hasBin: true 2770 | optionalDependencies: 2771 | turbo-darwin-64: 1.12.2 2772 | turbo-darwin-arm64: 1.12.2 2773 | turbo-linux-64: 1.12.2 2774 | turbo-linux-arm64: 1.12.2 2775 | turbo-windows-64: 1.12.2 2776 | turbo-windows-arm64: 1.12.2 2777 | dev: true 2778 | 2779 | /type-check@0.4.0: 2780 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 2781 | engines: {node: '>= 0.8.0'} 2782 | dependencies: 2783 | prelude-ls: 1.2.1 2784 | 2785 | /type-fest@0.20.2: 2786 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 2787 | engines: {node: '>=10'} 2788 | 2789 | /type-fest@0.21.3: 2790 | resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} 2791 | engines: {node: '>=10'} 2792 | dev: true 2793 | 2794 | /typed-array-buffer@1.0.0: 2795 | resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} 2796 | engines: {node: '>= 0.4'} 2797 | dependencies: 2798 | call-bind: 1.0.5 2799 | get-intrinsic: 1.2.2 2800 | is-typed-array: 1.1.13 2801 | dev: false 2802 | 2803 | /typed-array-byte-length@1.0.0: 2804 | resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} 2805 | engines: {node: '>= 0.4'} 2806 | dependencies: 2807 | call-bind: 1.0.5 2808 | for-each: 0.3.3 2809 | has-proto: 1.0.1 2810 | is-typed-array: 1.1.13 2811 | dev: false 2812 | 2813 | /typed-array-byte-offset@1.0.0: 2814 | resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} 2815 | engines: {node: '>= 0.4'} 2816 | dependencies: 2817 | available-typed-arrays: 1.0.6 2818 | call-bind: 1.0.5 2819 | for-each: 0.3.3 2820 | has-proto: 1.0.1 2821 | is-typed-array: 1.1.13 2822 | dev: false 2823 | 2824 | /typed-array-length@1.0.4: 2825 | resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} 2826 | dependencies: 2827 | call-bind: 1.0.5 2828 | for-each: 0.3.3 2829 | is-typed-array: 1.1.13 2830 | dev: false 2831 | 2832 | /typescript@5.3.3: 2833 | resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} 2834 | engines: {node: '>=14.17'} 2835 | hasBin: true 2836 | 2837 | /uglify-js@3.17.4: 2838 | resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} 2839 | engines: {node: '>=0.8.0'} 2840 | hasBin: true 2841 | requiresBuild: true 2842 | dev: true 2843 | optional: true 2844 | 2845 | /unbox-primitive@1.0.2: 2846 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 2847 | dependencies: 2848 | call-bind: 1.0.5 2849 | has-bigints: 1.0.2 2850 | has-symbols: 1.0.3 2851 | which-boxed-primitive: 1.0.2 2852 | dev: false 2853 | 2854 | /undici-types@5.26.5: 2855 | resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} 2856 | dev: true 2857 | 2858 | /universalify@0.1.2: 2859 | resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} 2860 | engines: {node: '>= 4.0.0'} 2861 | dev: true 2862 | 2863 | /universalify@2.0.1: 2864 | resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} 2865 | engines: {node: '>= 10.0.0'} 2866 | dev: true 2867 | 2868 | /update-check@1.5.4: 2869 | resolution: {integrity: sha512-5YHsflzHP4t1G+8WGPlvKbJEbAJGCgw+Em+dGR1KmBUbr1J36SJBqlHLjR7oob7sco5hWHGQVcr9B2poIVDDTQ==} 2870 | dependencies: 2871 | registry-auth-token: 3.3.2 2872 | registry-url: 3.1.0 2873 | dev: true 2874 | 2875 | /upper-case-first@1.1.2: 2876 | resolution: {integrity: sha512-wINKYvI3Db8dtjikdAqoBbZoP6Q+PZUyfMR7pmwHzjC2quzSkUq5DmPrTtPEqHaz8AGtmsB4TqwapMTM1QAQOQ==} 2877 | dependencies: 2878 | upper-case: 1.1.3 2879 | dev: true 2880 | 2881 | /upper-case@1.1.3: 2882 | resolution: {integrity: sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==} 2883 | dev: true 2884 | 2885 | /uri-js@4.4.1: 2886 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 2887 | dependencies: 2888 | punycode: 2.3.1 2889 | 2890 | /util-deprecate@1.0.2: 2891 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 2892 | dev: true 2893 | 2894 | /v8-compile-cache-lib@3.0.1: 2895 | resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} 2896 | dev: true 2897 | 2898 | /validate-npm-package-name@5.0.0: 2899 | resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==} 2900 | engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 2901 | dependencies: 2902 | builtins: 5.0.1 2903 | dev: true 2904 | 2905 | /wcwidth@1.0.1: 2906 | resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} 2907 | dependencies: 2908 | defaults: 1.0.4 2909 | dev: true 2910 | 2911 | /which-boxed-primitive@1.0.2: 2912 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 2913 | dependencies: 2914 | is-bigint: 1.0.4 2915 | is-boolean-object: 1.1.2 2916 | is-number-object: 1.0.7 2917 | is-string: 1.0.7 2918 | is-symbol: 1.0.4 2919 | dev: false 2920 | 2921 | /which-typed-array@1.1.14: 2922 | resolution: {integrity: sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==} 2923 | engines: {node: '>= 0.4'} 2924 | dependencies: 2925 | available-typed-arrays: 1.0.6 2926 | call-bind: 1.0.5 2927 | for-each: 0.3.3 2928 | gopd: 1.0.1 2929 | has-tostringtag: 1.0.2 2930 | dev: false 2931 | 2932 | /which@2.0.2: 2933 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 2934 | engines: {node: '>= 8'} 2935 | hasBin: true 2936 | dependencies: 2937 | isexe: 2.0.0 2938 | 2939 | /wordwrap@1.0.0: 2940 | resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} 2941 | dev: true 2942 | 2943 | /wrap-ansi@6.2.0: 2944 | resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} 2945 | engines: {node: '>=8'} 2946 | dependencies: 2947 | ansi-styles: 4.3.0 2948 | string-width: 4.2.3 2949 | strip-ansi: 6.0.1 2950 | dev: true 2951 | 2952 | /wrappy@1.0.2: 2953 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 2954 | 2955 | /yallist@4.0.0: 2956 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 2957 | 2958 | /yn@3.1.1: 2959 | resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} 2960 | engines: {node: '>=6'} 2961 | dev: true 2962 | 2963 | /yocto-queue@0.1.0: 2964 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 2965 | engines: {node: '>=10'} 2966 | -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - apps/* 3 | - packages/* 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/tsconfig/tsconfig.json", 3 | "exclude": ["apps/*", "packages/*"] 4 | } 5 | -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://turbo.build/schema.json", 3 | "pipeline": { 4 | "//#format": {}, 5 | "//#typecheck": { "dependsOn": ["^build"] }, 6 | "typecheck": { "dependsOn": ["^build"] }, 7 | "//#lint": { "dependsOn": ["^build"] }, 8 | "lint": { "dependsOn": ["^build"] }, 9 | "build": { 10 | "dependsOn": ["typecheck", "lint"], 11 | "outputs": [".build/**"] 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /turbo/generators/config.ts: -------------------------------------------------------------------------------- 1 | import type { PlopTypes } from "@turbo/gen"; 2 | 3 | export default function (plop: PlopTypes.NodePlopAPI): void { 4 | plop.setGenerator("example", { 5 | description: "Add an example", 6 | prompts: [], 7 | actions: [], 8 | }); 9 | } 10 | --------------------------------------------------------------------------------