Commit 2dce637a759e2f51ca8c378a694fe83131659676
1 parent
8427fb70
chore(fe-login): 初始化前端工程骨架与测试栈 REQ-USR-004
Showing
11 changed files
with
6542 additions
and
0 deletions
frontend/.eslintrc.cjs
0 → 100644
| 1 | +/* eslint-env node */ | ||
| 2 | +module.exports = { | ||
| 3 | + root: true, | ||
| 4 | + env: { browser: true, es2021: true, node: true }, | ||
| 5 | + extends: [ | ||
| 6 | + 'eslint:recommended', | ||
| 7 | + 'plugin:@typescript-eslint/recommended', | ||
| 8 | + 'plugin:react-hooks/recommended', | ||
| 9 | + ], | ||
| 10 | + parser: '@typescript-eslint/parser', | ||
| 11 | + parserOptions: { ecmaVersion: 'latest', sourceType: 'module' }, | ||
| 12 | + plugins: ['@typescript-eslint', 'react-refresh'], | ||
| 13 | + ignorePatterns: ['dist', 'node_modules', 'coverage', 'playwright-report', 'test-results'], | ||
| 14 | + rules: { | ||
| 15 | + 'react-refresh/only-export-components': ['warn', { allowConstantExport: true }], | ||
| 16 | + '@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }], | ||
| 17 | + '@typescript-eslint/no-explicit-any': 'off', | ||
| 18 | + }, | ||
| 19 | + overrides: [ | ||
| 20 | + { | ||
| 21 | + files: ['**/*.test.ts', '**/*.test.tsx', 'tests/**/*'], | ||
| 22 | + globals: { | ||
| 23 | + describe: 'readonly', | ||
| 24 | + it: 'readonly', | ||
| 25 | + test: 'readonly', | ||
| 26 | + expect: 'readonly', | ||
| 27 | + beforeEach: 'readonly', | ||
| 28 | + afterEach: 'readonly', | ||
| 29 | + beforeAll: 'readonly', | ||
| 30 | + afterAll: 'readonly', | ||
| 31 | + vi: 'readonly', | ||
| 32 | + }, | ||
| 33 | + rules: { | ||
| 34 | + 'react-refresh/only-export-components': 'off', | ||
| 35 | + }, | ||
| 36 | + }, | ||
| 37 | + ], | ||
| 38 | +}; |
frontend/index.html
0 → 100644
| 1 | +<!doctype html> | ||
| 2 | +<html lang="zh-CN"> | ||
| 3 | + <head> | ||
| 4 | + <meta charset="UTF-8" /> | ||
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| 6 | + <title>小羚羊 ERP - 企业业务能力平台</title> | ||
| 7 | + </head> | ||
| 8 | + <body> | ||
| 9 | + <div id="root"></div> | ||
| 10 | + <script type="module" src="/src/main.tsx"></script> | ||
| 11 | + </body> | ||
| 12 | +</html> |
frontend/package-lock.json
0 → 100644
| 1 | +{ | ||
| 2 | + "name": "xly-erp-web", | ||
| 3 | + "version": "0.1.0", | ||
| 4 | + "lockfileVersion": 3, | ||
| 5 | + "requires": true, | ||
| 6 | + "packages": { | ||
| 7 | + "": { | ||
| 8 | + "name": "xly-erp-web", | ||
| 9 | + "version": "0.1.0", | ||
| 10 | + "dependencies": { | ||
| 11 | + "@ant-design/icons": "^5.5.2", | ||
| 12 | + "@reduxjs/toolkit": "^2.5.0", | ||
| 13 | + "antd": "^5.22.5", | ||
| 14 | + "axios": "^1.7.9", | ||
| 15 | + "react": "^18.3.1", | ||
| 16 | + "react-dom": "^18.3.1", | ||
| 17 | + "react-redux": "^9.2.0", | ||
| 18 | + "react-router-dom": "^6.28.1" | ||
| 19 | + }, | ||
| 20 | + "devDependencies": { | ||
| 21 | + "@playwright/test": "^1.49.1", | ||
| 22 | + "@testing-library/jest-dom": "^6.6.3", | ||
| 23 | + "@testing-library/react": "^16.1.0", | ||
| 24 | + "@testing-library/user-event": "^14.5.2", | ||
| 25 | + "@types/node": "^22.10.2", | ||
| 26 | + "@types/react": "^18.3.18", | ||
| 27 | + "@types/react-dom": "^18.3.5", | ||
| 28 | + "@typescript-eslint/eslint-plugin": "^8.18.2", | ||
| 29 | + "@typescript-eslint/parser": "^8.18.2", | ||
| 30 | + "@vitejs/plugin-react": "^4.3.4", | ||
| 31 | + "eslint": "^8.57.1", | ||
| 32 | + "eslint-plugin-react-hooks": "^4.6.2", | ||
| 33 | + "eslint-plugin-react-refresh": "^0.4.16", | ||
| 34 | + "jsdom": "^25.0.1", | ||
| 35 | + "typescript": "^5.7.2", | ||
| 36 | + "vite": "^6.0.5", | ||
| 37 | + "vitest": "^3.0.5" | ||
| 38 | + } | ||
| 39 | + }, | ||
| 40 | + "node_modules/@adobe/css-tools": { | ||
| 41 | + "version": "4.5.0", | ||
| 42 | + "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.5.0.tgz", | ||
| 43 | + "integrity": "sha512-6OzddxPio9UiWTCemp4N8cYLV2ZN1ncRnV1cVGtve7dhPOtRkleRyx32GQCYSwDYgaHU3USMm84tNsvKzRCa1Q==", | ||
| 44 | + "dev": true, | ||
| 45 | + "license": "MIT" | ||
| 46 | + }, | ||
| 47 | + "node_modules/@ant-design/colors": { | ||
| 48 | + "version": "7.2.1", | ||
| 49 | + "resolved": "https://registry.npmjs.org/@ant-design/colors/-/colors-7.2.1.tgz", | ||
| 50 | + "integrity": "sha512-lCHDcEzieu4GA3n8ELeZ5VQ8pKQAWcGGLRTQ50aQM2iqPpq2evTxER84jfdPvsPAtEcZ7m44NI45edFMo8oOYQ==", | ||
| 51 | + "license": "MIT", | ||
| 52 | + "dependencies": { | ||
| 53 | + "@ant-design/fast-color": "^2.0.6" | ||
| 54 | + } | ||
| 55 | + }, | ||
| 56 | + "node_modules/@ant-design/cssinjs": { | ||
| 57 | + "version": "1.24.0", | ||
| 58 | + "resolved": "https://registry.npmjs.org/@ant-design/cssinjs/-/cssinjs-1.24.0.tgz", | ||
| 59 | + "integrity": "sha512-K4cYrJBsgvL+IoozUXYjbT6LHHNt+19a9zkvpBPxLjFHas1UpPM2A5MlhROb0BT8N8WoavM5VsP9MeSeNK/3mg==", | ||
| 60 | + "license": "MIT", | ||
| 61 | + "dependencies": { | ||
| 62 | + "@babel/runtime": "^7.11.1", | ||
| 63 | + "@emotion/hash": "^0.8.0", | ||
| 64 | + "@emotion/unitless": "^0.7.5", | ||
| 65 | + "classnames": "^2.3.1", | ||
| 66 | + "csstype": "^3.1.3", | ||
| 67 | + "rc-util": "^5.35.0", | ||
| 68 | + "stylis": "^4.3.4" | ||
| 69 | + }, | ||
| 70 | + "peerDependencies": { | ||
| 71 | + "react": ">=16.0.0", | ||
| 72 | + "react-dom": ">=16.0.0" | ||
| 73 | + } | ||
| 74 | + }, | ||
| 75 | + "node_modules/@ant-design/cssinjs-utils": { | ||
| 76 | + "version": "1.1.3", | ||
| 77 | + "resolved": "https://registry.npmjs.org/@ant-design/cssinjs-utils/-/cssinjs-utils-1.1.3.tgz", | ||
| 78 | + "integrity": "sha512-nOoQMLW1l+xR1Co8NFVYiP8pZp3VjIIzqV6D6ShYF2ljtdwWJn5WSsH+7kvCktXL/yhEtWURKOfH5Xz/gzlwsg==", | ||
| 79 | + "license": "MIT", | ||
| 80 | + "dependencies": { | ||
| 81 | + "@ant-design/cssinjs": "^1.21.0", | ||
| 82 | + "@babel/runtime": "^7.23.2", | ||
| 83 | + "rc-util": "^5.38.0" | ||
| 84 | + }, | ||
| 85 | + "peerDependencies": { | ||
| 86 | + "react": ">=16.9.0", | ||
| 87 | + "react-dom": ">=16.9.0" | ||
| 88 | + } | ||
| 89 | + }, | ||
| 90 | + "node_modules/@ant-design/fast-color": { | ||
| 91 | + "version": "2.0.6", | ||
| 92 | + "resolved": "https://registry.npmjs.org/@ant-design/fast-color/-/fast-color-2.0.6.tgz", | ||
| 93 | + "integrity": "sha512-y2217gk4NqL35giHl72o6Zzqji9O7vHh9YmhUVkPtAOpoTCH4uWxo/pr4VE8t0+ChEPs0qo4eJRC5Q1eXWo3vA==", | ||
| 94 | + "license": "MIT", | ||
| 95 | + "dependencies": { | ||
| 96 | + "@babel/runtime": "^7.24.7" | ||
| 97 | + }, | ||
| 98 | + "engines": { | ||
| 99 | + "node": ">=8.x" | ||
| 100 | + } | ||
| 101 | + }, | ||
| 102 | + "node_modules/@ant-design/icons": { | ||
| 103 | + "version": "5.6.1", | ||
| 104 | + "resolved": "https://registry.npmjs.org/@ant-design/icons/-/icons-5.6.1.tgz", | ||
| 105 | + "integrity": "sha512-0/xS39c91WjPAZOWsvi1//zjx6kAp4kxWwctR6kuU6p133w8RU0D2dSCvZC19uQyharg/sAvYxGYWl01BbZZfg==", | ||
| 106 | + "license": "MIT", | ||
| 107 | + "dependencies": { | ||
| 108 | + "@ant-design/colors": "^7.0.0", | ||
| 109 | + "@ant-design/icons-svg": "^4.4.0", | ||
| 110 | + "@babel/runtime": "^7.24.8", | ||
| 111 | + "classnames": "^2.2.6", | ||
| 112 | + "rc-util": "^5.31.1" | ||
| 113 | + }, | ||
| 114 | + "engines": { | ||
| 115 | + "node": ">=8" | ||
| 116 | + }, | ||
| 117 | + "peerDependencies": { | ||
| 118 | + "react": ">=16.0.0", | ||
| 119 | + "react-dom": ">=16.0.0" | ||
| 120 | + } | ||
| 121 | + }, | ||
| 122 | + "node_modules/@ant-design/icons-svg": { | ||
| 123 | + "version": "4.4.2", | ||
| 124 | + "resolved": "https://registry.npmjs.org/@ant-design/icons-svg/-/icons-svg-4.4.2.tgz", | ||
| 125 | + "integrity": "sha512-vHbT+zJEVzllwP+CM+ul7reTEfBR0vgxFe7+lREAsAA7YGsYpboiq2sQNeQeRvh09GfQgs/GyFEvZpJ9cLXpXA==", | ||
| 126 | + "license": "MIT" | ||
| 127 | + }, | ||
| 128 | + "node_modules/@ant-design/react-slick": { | ||
| 129 | + "version": "1.1.2", | ||
| 130 | + "resolved": "https://registry.npmjs.org/@ant-design/react-slick/-/react-slick-1.1.2.tgz", | ||
| 131 | + "integrity": "sha512-EzlvzE6xQUBrZuuhSAFTdsr4P2bBBHGZwKFemEfq8gIGyIQCxalYfZW/T2ORbtQx5rU69o+WycP3exY/7T1hGA==", | ||
| 132 | + "license": "MIT", | ||
| 133 | + "dependencies": { | ||
| 134 | + "@babel/runtime": "^7.10.4", | ||
| 135 | + "classnames": "^2.2.5", | ||
| 136 | + "json2mq": "^0.2.0", | ||
| 137 | + "resize-observer-polyfill": "^1.5.1", | ||
| 138 | + "throttle-debounce": "^5.0.0" | ||
| 139 | + }, | ||
| 140 | + "peerDependencies": { | ||
| 141 | + "react": ">=16.9.0" | ||
| 142 | + } | ||
| 143 | + }, | ||
| 144 | + "node_modules/@asamuzakjp/css-color": { | ||
| 145 | + "version": "3.2.0", | ||
| 146 | + "resolved": "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-3.2.0.tgz", | ||
| 147 | + "integrity": "sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==", | ||
| 148 | + "dev": true, | ||
| 149 | + "license": "MIT", | ||
| 150 | + "dependencies": { | ||
| 151 | + "@csstools/css-calc": "^2.1.3", | ||
| 152 | + "@csstools/css-color-parser": "^3.0.9", | ||
| 153 | + "@csstools/css-parser-algorithms": "^3.0.4", | ||
| 154 | + "@csstools/css-tokenizer": "^3.0.3", | ||
| 155 | + "lru-cache": "^10.4.3" | ||
| 156 | + } | ||
| 157 | + }, | ||
| 158 | + "node_modules/@asamuzakjp/css-color/node_modules/lru-cache": { | ||
| 159 | + "version": "10.4.3", | ||
| 160 | + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", | ||
| 161 | + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", | ||
| 162 | + "dev": true, | ||
| 163 | + "license": "ISC" | ||
| 164 | + }, | ||
| 165 | + "node_modules/@babel/code-frame": { | ||
| 166 | + "version": "7.29.7", | ||
| 167 | + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.7.tgz", | ||
| 168 | + "integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==", | ||
| 169 | + "dev": true, | ||
| 170 | + "license": "MIT", | ||
| 171 | + "dependencies": { | ||
| 172 | + "@babel/helper-validator-identifier": "^7.29.7", | ||
| 173 | + "js-tokens": "^4.0.0", | ||
| 174 | + "picocolors": "^1.1.1" | ||
| 175 | + }, | ||
| 176 | + "engines": { | ||
| 177 | + "node": ">=6.9.0" | ||
| 178 | + } | ||
| 179 | + }, | ||
| 180 | + "node_modules/@babel/compat-data": { | ||
| 181 | + "version": "7.29.7", | ||
| 182 | + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.7.tgz", | ||
| 183 | + "integrity": "sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==", | ||
| 184 | + "dev": true, | ||
| 185 | + "license": "MIT", | ||
| 186 | + "engines": { | ||
| 187 | + "node": ">=6.9.0" | ||
| 188 | + } | ||
| 189 | + }, | ||
| 190 | + "node_modules/@babel/core": { | ||
| 191 | + "version": "7.29.7", | ||
| 192 | + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.7.tgz", | ||
| 193 | + "integrity": "sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==", | ||
| 194 | + "dev": true, | ||
| 195 | + "license": "MIT", | ||
| 196 | + "dependencies": { | ||
| 197 | + "@babel/code-frame": "^7.29.7", | ||
| 198 | + "@babel/generator": "^7.29.7", | ||
| 199 | + "@babel/helper-compilation-targets": "^7.29.7", | ||
| 200 | + "@babel/helper-module-transforms": "^7.29.7", | ||
| 201 | + "@babel/helpers": "^7.29.7", | ||
| 202 | + "@babel/parser": "^7.29.7", | ||
| 203 | + "@babel/template": "^7.29.7", | ||
| 204 | + "@babel/traverse": "^7.29.7", | ||
| 205 | + "@babel/types": "^7.29.7", | ||
| 206 | + "@jridgewell/remapping": "^2.3.5", | ||
| 207 | + "convert-source-map": "^2.0.0", | ||
| 208 | + "debug": "^4.1.0", | ||
| 209 | + "gensync": "^1.0.0-beta.2", | ||
| 210 | + "json5": "^2.2.3", | ||
| 211 | + "semver": "^6.3.1" | ||
| 212 | + }, | ||
| 213 | + "engines": { | ||
| 214 | + "node": ">=6.9.0" | ||
| 215 | + }, | ||
| 216 | + "funding": { | ||
| 217 | + "type": "opencollective", | ||
| 218 | + "url": "https://opencollective.com/babel" | ||
| 219 | + } | ||
| 220 | + }, | ||
| 221 | + "node_modules/@babel/core/node_modules/semver": { | ||
| 222 | + "version": "6.3.1", | ||
| 223 | + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", | ||
| 224 | + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", | ||
| 225 | + "dev": true, | ||
| 226 | + "license": "ISC", | ||
| 227 | + "bin": { | ||
| 228 | + "semver": "bin/semver.js" | ||
| 229 | + } | ||
| 230 | + }, | ||
| 231 | + "node_modules/@babel/generator": { | ||
| 232 | + "version": "7.29.7", | ||
| 233 | + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.7.tgz", | ||
| 234 | + "integrity": "sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==", | ||
| 235 | + "dev": true, | ||
| 236 | + "license": "MIT", | ||
| 237 | + "dependencies": { | ||
| 238 | + "@babel/parser": "^7.29.7", | ||
| 239 | + "@babel/types": "^7.29.7", | ||
| 240 | + "@jridgewell/gen-mapping": "^0.3.12", | ||
| 241 | + "@jridgewell/trace-mapping": "^0.3.28", | ||
| 242 | + "jsesc": "^3.0.2" | ||
| 243 | + }, | ||
| 244 | + "engines": { | ||
| 245 | + "node": ">=6.9.0" | ||
| 246 | + } | ||
| 247 | + }, | ||
| 248 | + "node_modules/@babel/helper-compilation-targets": { | ||
| 249 | + "version": "7.29.7", | ||
| 250 | + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.29.7.tgz", | ||
| 251 | + "integrity": "sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==", | ||
| 252 | + "dev": true, | ||
| 253 | + "license": "MIT", | ||
| 254 | + "dependencies": { | ||
| 255 | + "@babel/compat-data": "^7.29.7", | ||
| 256 | + "@babel/helper-validator-option": "^7.29.7", | ||
| 257 | + "browserslist": "^4.24.0", | ||
| 258 | + "lru-cache": "^5.1.1", | ||
| 259 | + "semver": "^6.3.1" | ||
| 260 | + }, | ||
| 261 | + "engines": { | ||
| 262 | + "node": ">=6.9.0" | ||
| 263 | + } | ||
| 264 | + }, | ||
| 265 | + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { | ||
| 266 | + "version": "6.3.1", | ||
| 267 | + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", | ||
| 268 | + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", | ||
| 269 | + "dev": true, | ||
| 270 | + "license": "ISC", | ||
| 271 | + "bin": { | ||
| 272 | + "semver": "bin/semver.js" | ||
| 273 | + } | ||
| 274 | + }, | ||
| 275 | + "node_modules/@babel/helper-globals": { | ||
| 276 | + "version": "7.29.7", | ||
| 277 | + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.29.7.tgz", | ||
| 278 | + "integrity": "sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==", | ||
| 279 | + "dev": true, | ||
| 280 | + "license": "MIT", | ||
| 281 | + "engines": { | ||
| 282 | + "node": ">=6.9.0" | ||
| 283 | + } | ||
| 284 | + }, | ||
| 285 | + "node_modules/@babel/helper-module-imports": { | ||
| 286 | + "version": "7.29.7", | ||
| 287 | + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.29.7.tgz", | ||
| 288 | + "integrity": "sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==", | ||
| 289 | + "dev": true, | ||
| 290 | + "license": "MIT", | ||
| 291 | + "dependencies": { | ||
| 292 | + "@babel/traverse": "^7.29.7", | ||
| 293 | + "@babel/types": "^7.29.7" | ||
| 294 | + }, | ||
| 295 | + "engines": { | ||
| 296 | + "node": ">=6.9.0" | ||
| 297 | + } | ||
| 298 | + }, | ||
| 299 | + "node_modules/@babel/helper-module-transforms": { | ||
| 300 | + "version": "7.29.7", | ||
| 301 | + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.29.7.tgz", | ||
| 302 | + "integrity": "sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==", | ||
| 303 | + "dev": true, | ||
| 304 | + "license": "MIT", | ||
| 305 | + "dependencies": { | ||
| 306 | + "@babel/helper-module-imports": "^7.29.7", | ||
| 307 | + "@babel/helper-validator-identifier": "^7.29.7", | ||
| 308 | + "@babel/traverse": "^7.29.7" | ||
| 309 | + }, | ||
| 310 | + "engines": { | ||
| 311 | + "node": ">=6.9.0" | ||
| 312 | + }, | ||
| 313 | + "peerDependencies": { | ||
| 314 | + "@babel/core": "^7.0.0" | ||
| 315 | + } | ||
| 316 | + }, | ||
| 317 | + "node_modules/@babel/helper-plugin-utils": { | ||
| 318 | + "version": "7.29.7", | ||
| 319 | + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.29.7.tgz", | ||
| 320 | + "integrity": "sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==", | ||
| 321 | + "dev": true, | ||
| 322 | + "license": "MIT", | ||
| 323 | + "engines": { | ||
| 324 | + "node": ">=6.9.0" | ||
| 325 | + } | ||
| 326 | + }, | ||
| 327 | + "node_modules/@babel/helper-string-parser": { | ||
| 328 | + "version": "7.29.7", | ||
| 329 | + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz", | ||
| 330 | + "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==", | ||
| 331 | + "dev": true, | ||
| 332 | + "license": "MIT", | ||
| 333 | + "engines": { | ||
| 334 | + "node": ">=6.9.0" | ||
| 335 | + } | ||
| 336 | + }, | ||
| 337 | + "node_modules/@babel/helper-validator-identifier": { | ||
| 338 | + "version": "7.29.7", | ||
| 339 | + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz", | ||
| 340 | + "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==", | ||
| 341 | + "dev": true, | ||
| 342 | + "license": "MIT", | ||
| 343 | + "engines": { | ||
| 344 | + "node": ">=6.9.0" | ||
| 345 | + } | ||
| 346 | + }, | ||
| 347 | + "node_modules/@babel/helper-validator-option": { | ||
| 348 | + "version": "7.29.7", | ||
| 349 | + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.29.7.tgz", | ||
| 350 | + "integrity": "sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==", | ||
| 351 | + "dev": true, | ||
| 352 | + "license": "MIT", | ||
| 353 | + "engines": { | ||
| 354 | + "node": ">=6.9.0" | ||
| 355 | + } | ||
| 356 | + }, | ||
| 357 | + "node_modules/@babel/helpers": { | ||
| 358 | + "version": "7.29.7", | ||
| 359 | + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.7.tgz", | ||
| 360 | + "integrity": "sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==", | ||
| 361 | + "dev": true, | ||
| 362 | + "license": "MIT", | ||
| 363 | + "dependencies": { | ||
| 364 | + "@babel/template": "^7.29.7", | ||
| 365 | + "@babel/types": "^7.29.7" | ||
| 366 | + }, | ||
| 367 | + "engines": { | ||
| 368 | + "node": ">=6.9.0" | ||
| 369 | + } | ||
| 370 | + }, | ||
| 371 | + "node_modules/@babel/parser": { | ||
| 372 | + "version": "7.29.7", | ||
| 373 | + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.7.tgz", | ||
| 374 | + "integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==", | ||
| 375 | + "dev": true, | ||
| 376 | + "license": "MIT", | ||
| 377 | + "dependencies": { | ||
| 378 | + "@babel/types": "^7.29.7" | ||
| 379 | + }, | ||
| 380 | + "bin": { | ||
| 381 | + "parser": "bin/babel-parser.js" | ||
| 382 | + }, | ||
| 383 | + "engines": { | ||
| 384 | + "node": ">=6.0.0" | ||
| 385 | + } | ||
| 386 | + }, | ||
| 387 | + "node_modules/@babel/plugin-transform-react-jsx-self": { | ||
| 388 | + "version": "7.29.7", | ||
| 389 | + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.29.7.tgz", | ||
| 390 | + "integrity": "sha512-TL0hMc9xzy86VD31nUiwzd5otRAcyEPcsegCxolO0PvcXuH1v0kECe/UIznYFihpkvU5wg/jk4v0TTEFfm53fw==", | ||
| 391 | + "dev": true, | ||
| 392 | + "license": "MIT", | ||
| 393 | + "dependencies": { | ||
| 394 | + "@babel/helper-plugin-utils": "^7.29.7" | ||
| 395 | + }, | ||
| 396 | + "engines": { | ||
| 397 | + "node": ">=6.9.0" | ||
| 398 | + }, | ||
| 399 | + "peerDependencies": { | ||
| 400 | + "@babel/core": "^7.0.0-0" | ||
| 401 | + } | ||
| 402 | + }, | ||
| 403 | + "node_modules/@babel/plugin-transform-react-jsx-source": { | ||
| 404 | + "version": "7.29.7", | ||
| 405 | + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.29.7.tgz", | ||
| 406 | + "integrity": "sha512-06IyK09H3wi4cGbhDBwp5gUGo0IKtnYa8tyTiephirPCK6fbobVGiXMMI5zLQ4aKEYP3wZ3ArU44o+8KMrSG/Q==", | ||
| 407 | + "dev": true, | ||
| 408 | + "license": "MIT", | ||
| 409 | + "dependencies": { | ||
| 410 | + "@babel/helper-plugin-utils": "^7.29.7" | ||
| 411 | + }, | ||
| 412 | + "engines": { | ||
| 413 | + "node": ">=6.9.0" | ||
| 414 | + }, | ||
| 415 | + "peerDependencies": { | ||
| 416 | + "@babel/core": "^7.0.0-0" | ||
| 417 | + } | ||
| 418 | + }, | ||
| 419 | + "node_modules/@babel/runtime": { | ||
| 420 | + "version": "7.29.7", | ||
| 421 | + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz", | ||
| 422 | + "integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==", | ||
| 423 | + "license": "MIT", | ||
| 424 | + "engines": { | ||
| 425 | + "node": ">=6.9.0" | ||
| 426 | + } | ||
| 427 | + }, | ||
| 428 | + "node_modules/@babel/template": { | ||
| 429 | + "version": "7.29.7", | ||
| 430 | + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.29.7.tgz", | ||
| 431 | + "integrity": "sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==", | ||
| 432 | + "dev": true, | ||
| 433 | + "license": "MIT", | ||
| 434 | + "dependencies": { | ||
| 435 | + "@babel/code-frame": "^7.29.7", | ||
| 436 | + "@babel/parser": "^7.29.7", | ||
| 437 | + "@babel/types": "^7.29.7" | ||
| 438 | + }, | ||
| 439 | + "engines": { | ||
| 440 | + "node": ">=6.9.0" | ||
| 441 | + } | ||
| 442 | + }, | ||
| 443 | + "node_modules/@babel/traverse": { | ||
| 444 | + "version": "7.29.7", | ||
| 445 | + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.7.tgz", | ||
| 446 | + "integrity": "sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==", | ||
| 447 | + "dev": true, | ||
| 448 | + "license": "MIT", | ||
| 449 | + "dependencies": { | ||
| 450 | + "@babel/code-frame": "^7.29.7", | ||
| 451 | + "@babel/generator": "^7.29.7", | ||
| 452 | + "@babel/helper-globals": "^7.29.7", | ||
| 453 | + "@babel/parser": "^7.29.7", | ||
| 454 | + "@babel/template": "^7.29.7", | ||
| 455 | + "@babel/types": "^7.29.7", | ||
| 456 | + "debug": "^4.3.1" | ||
| 457 | + }, | ||
| 458 | + "engines": { | ||
| 459 | + "node": ">=6.9.0" | ||
| 460 | + } | ||
| 461 | + }, | ||
| 462 | + "node_modules/@babel/types": { | ||
| 463 | + "version": "7.29.7", | ||
| 464 | + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.7.tgz", | ||
| 465 | + "integrity": "sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==", | ||
| 466 | + "dev": true, | ||
| 467 | + "license": "MIT", | ||
| 468 | + "dependencies": { | ||
| 469 | + "@babel/helper-string-parser": "^7.29.7", | ||
| 470 | + "@babel/helper-validator-identifier": "^7.29.7" | ||
| 471 | + }, | ||
| 472 | + "engines": { | ||
| 473 | + "node": ">=6.9.0" | ||
| 474 | + } | ||
| 475 | + }, | ||
| 476 | + "node_modules/@csstools/color-helpers": { | ||
| 477 | + "version": "5.1.0", | ||
| 478 | + "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.1.0.tgz", | ||
| 479 | + "integrity": "sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==", | ||
| 480 | + "dev": true, | ||
| 481 | + "funding": [ | ||
| 482 | + { | ||
| 483 | + "type": "github", | ||
| 484 | + "url": "https://github.com/sponsors/csstools" | ||
| 485 | + }, | ||
| 486 | + { | ||
| 487 | + "type": "opencollective", | ||
| 488 | + "url": "https://opencollective.com/csstools" | ||
| 489 | + } | ||
| 490 | + ], | ||
| 491 | + "license": "MIT-0", | ||
| 492 | + "engines": { | ||
| 493 | + "node": ">=18" | ||
| 494 | + } | ||
| 495 | + }, | ||
| 496 | + "node_modules/@csstools/css-calc": { | ||
| 497 | + "version": "2.1.4", | ||
| 498 | + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.4.tgz", | ||
| 499 | + "integrity": "sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==", | ||
| 500 | + "dev": true, | ||
| 501 | + "funding": [ | ||
| 502 | + { | ||
| 503 | + "type": "github", | ||
| 504 | + "url": "https://github.com/sponsors/csstools" | ||
| 505 | + }, | ||
| 506 | + { | ||
| 507 | + "type": "opencollective", | ||
| 508 | + "url": "https://opencollective.com/csstools" | ||
| 509 | + } | ||
| 510 | + ], | ||
| 511 | + "license": "MIT", | ||
| 512 | + "engines": { | ||
| 513 | + "node": ">=18" | ||
| 514 | + }, | ||
| 515 | + "peerDependencies": { | ||
| 516 | + "@csstools/css-parser-algorithms": "^3.0.5", | ||
| 517 | + "@csstools/css-tokenizer": "^3.0.4" | ||
| 518 | + } | ||
| 519 | + }, | ||
| 520 | + "node_modules/@csstools/css-color-parser": { | ||
| 521 | + "version": "3.1.0", | ||
| 522 | + "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.1.0.tgz", | ||
| 523 | + "integrity": "sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==", | ||
| 524 | + "dev": true, | ||
| 525 | + "funding": [ | ||
| 526 | + { | ||
| 527 | + "type": "github", | ||
| 528 | + "url": "https://github.com/sponsors/csstools" | ||
| 529 | + }, | ||
| 530 | + { | ||
| 531 | + "type": "opencollective", | ||
| 532 | + "url": "https://opencollective.com/csstools" | ||
| 533 | + } | ||
| 534 | + ], | ||
| 535 | + "license": "MIT", | ||
| 536 | + "dependencies": { | ||
| 537 | + "@csstools/color-helpers": "^5.1.0", | ||
| 538 | + "@csstools/css-calc": "^2.1.4" | ||
| 539 | + }, | ||
| 540 | + "engines": { | ||
| 541 | + "node": ">=18" | ||
| 542 | + }, | ||
| 543 | + "peerDependencies": { | ||
| 544 | + "@csstools/css-parser-algorithms": "^3.0.5", | ||
| 545 | + "@csstools/css-tokenizer": "^3.0.4" | ||
| 546 | + } | ||
| 547 | + }, | ||
| 548 | + "node_modules/@csstools/css-parser-algorithms": { | ||
| 549 | + "version": "3.0.5", | ||
| 550 | + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz", | ||
| 551 | + "integrity": "sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==", | ||
| 552 | + "dev": true, | ||
| 553 | + "funding": [ | ||
| 554 | + { | ||
| 555 | + "type": "github", | ||
| 556 | + "url": "https://github.com/sponsors/csstools" | ||
| 557 | + }, | ||
| 558 | + { | ||
| 559 | + "type": "opencollective", | ||
| 560 | + "url": "https://opencollective.com/csstools" | ||
| 561 | + } | ||
| 562 | + ], | ||
| 563 | + "license": "MIT", | ||
| 564 | + "engines": { | ||
| 565 | + "node": ">=18" | ||
| 566 | + }, | ||
| 567 | + "peerDependencies": { | ||
| 568 | + "@csstools/css-tokenizer": "^3.0.4" | ||
| 569 | + } | ||
| 570 | + }, | ||
| 571 | + "node_modules/@csstools/css-tokenizer": { | ||
| 572 | + "version": "3.0.4", | ||
| 573 | + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz", | ||
| 574 | + "integrity": "sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==", | ||
| 575 | + "dev": true, | ||
| 576 | + "funding": [ | ||
| 577 | + { | ||
| 578 | + "type": "github", | ||
| 579 | + "url": "https://github.com/sponsors/csstools" | ||
| 580 | + }, | ||
| 581 | + { | ||
| 582 | + "type": "opencollective", | ||
| 583 | + "url": "https://opencollective.com/csstools" | ||
| 584 | + } | ||
| 585 | + ], | ||
| 586 | + "license": "MIT", | ||
| 587 | + "engines": { | ||
| 588 | + "node": ">=18" | ||
| 589 | + } | ||
| 590 | + }, | ||
| 591 | + "node_modules/@emotion/hash": { | ||
| 592 | + "version": "0.8.0", | ||
| 593 | + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz", | ||
| 594 | + "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==", | ||
| 595 | + "license": "MIT" | ||
| 596 | + }, | ||
| 597 | + "node_modules/@emotion/unitless": { | ||
| 598 | + "version": "0.7.5", | ||
| 599 | + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz", | ||
| 600 | + "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==", | ||
| 601 | + "license": "MIT" | ||
| 602 | + }, | ||
| 603 | + "node_modules/@esbuild/aix-ppc64": { | ||
| 604 | + "version": "0.25.12", | ||
| 605 | + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz", | ||
| 606 | + "integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==", | ||
| 607 | + "cpu": [ | ||
| 608 | + "ppc64" | ||
| 609 | + ], | ||
| 610 | + "dev": true, | ||
| 611 | + "license": "MIT", | ||
| 612 | + "optional": true, | ||
| 613 | + "os": [ | ||
| 614 | + "aix" | ||
| 615 | + ], | ||
| 616 | + "engines": { | ||
| 617 | + "node": ">=18" | ||
| 618 | + } | ||
| 619 | + }, | ||
| 620 | + "node_modules/@esbuild/android-arm": { | ||
| 621 | + "version": "0.25.12", | ||
| 622 | + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.12.tgz", | ||
| 623 | + "integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==", | ||
| 624 | + "cpu": [ | ||
| 625 | + "arm" | ||
| 626 | + ], | ||
| 627 | + "dev": true, | ||
| 628 | + "license": "MIT", | ||
| 629 | + "optional": true, | ||
| 630 | + "os": [ | ||
| 631 | + "android" | ||
| 632 | + ], | ||
| 633 | + "engines": { | ||
| 634 | + "node": ">=18" | ||
| 635 | + } | ||
| 636 | + }, | ||
| 637 | + "node_modules/@esbuild/android-arm64": { | ||
| 638 | + "version": "0.25.12", | ||
| 639 | + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz", | ||
| 640 | + "integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==", | ||
| 641 | + "cpu": [ | ||
| 642 | + "arm64" | ||
| 643 | + ], | ||
| 644 | + "dev": true, | ||
| 645 | + "license": "MIT", | ||
| 646 | + "optional": true, | ||
| 647 | + "os": [ | ||
| 648 | + "android" | ||
| 649 | + ], | ||
| 650 | + "engines": { | ||
| 651 | + "node": ">=18" | ||
| 652 | + } | ||
| 653 | + }, | ||
| 654 | + "node_modules/@esbuild/android-x64": { | ||
| 655 | + "version": "0.25.12", | ||
| 656 | + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.12.tgz", | ||
| 657 | + "integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==", | ||
| 658 | + "cpu": [ | ||
| 659 | + "x64" | ||
| 660 | + ], | ||
| 661 | + "dev": true, | ||
| 662 | + "license": "MIT", | ||
| 663 | + "optional": true, | ||
| 664 | + "os": [ | ||
| 665 | + "android" | ||
| 666 | + ], | ||
| 667 | + "engines": { | ||
| 668 | + "node": ">=18" | ||
| 669 | + } | ||
| 670 | + }, | ||
| 671 | + "node_modules/@esbuild/darwin-arm64": { | ||
| 672 | + "version": "0.25.12", | ||
| 673 | + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz", | ||
| 674 | + "integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==", | ||
| 675 | + "cpu": [ | ||
| 676 | + "arm64" | ||
| 677 | + ], | ||
| 678 | + "dev": true, | ||
| 679 | + "license": "MIT", | ||
| 680 | + "optional": true, | ||
| 681 | + "os": [ | ||
| 682 | + "darwin" | ||
| 683 | + ], | ||
| 684 | + "engines": { | ||
| 685 | + "node": ">=18" | ||
| 686 | + } | ||
| 687 | + }, | ||
| 688 | + "node_modules/@esbuild/darwin-x64": { | ||
| 689 | + "version": "0.25.12", | ||
| 690 | + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz", | ||
| 691 | + "integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==", | ||
| 692 | + "cpu": [ | ||
| 693 | + "x64" | ||
| 694 | + ], | ||
| 695 | + "dev": true, | ||
| 696 | + "license": "MIT", | ||
| 697 | + "optional": true, | ||
| 698 | + "os": [ | ||
| 699 | + "darwin" | ||
| 700 | + ], | ||
| 701 | + "engines": { | ||
| 702 | + "node": ">=18" | ||
| 703 | + } | ||
| 704 | + }, | ||
| 705 | + "node_modules/@esbuild/freebsd-arm64": { | ||
| 706 | + "version": "0.25.12", | ||
| 707 | + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz", | ||
| 708 | + "integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==", | ||
| 709 | + "cpu": [ | ||
| 710 | + "arm64" | ||
| 711 | + ], | ||
| 712 | + "dev": true, | ||
| 713 | + "license": "MIT", | ||
| 714 | + "optional": true, | ||
| 715 | + "os": [ | ||
| 716 | + "freebsd" | ||
| 717 | + ], | ||
| 718 | + "engines": { | ||
| 719 | + "node": ">=18" | ||
| 720 | + } | ||
| 721 | + }, | ||
| 722 | + "node_modules/@esbuild/freebsd-x64": { | ||
| 723 | + "version": "0.25.12", | ||
| 724 | + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz", | ||
| 725 | + "integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==", | ||
| 726 | + "cpu": [ | ||
| 727 | + "x64" | ||
| 728 | + ], | ||
| 729 | + "dev": true, | ||
| 730 | + "license": "MIT", | ||
| 731 | + "optional": true, | ||
| 732 | + "os": [ | ||
| 733 | + "freebsd" | ||
| 734 | + ], | ||
| 735 | + "engines": { | ||
| 736 | + "node": ">=18" | ||
| 737 | + } | ||
| 738 | + }, | ||
| 739 | + "node_modules/@esbuild/linux-arm": { | ||
| 740 | + "version": "0.25.12", | ||
| 741 | + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz", | ||
| 742 | + "integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==", | ||
| 743 | + "cpu": [ | ||
| 744 | + "arm" | ||
| 745 | + ], | ||
| 746 | + "dev": true, | ||
| 747 | + "license": "MIT", | ||
| 748 | + "optional": true, | ||
| 749 | + "os": [ | ||
| 750 | + "linux" | ||
| 751 | + ], | ||
| 752 | + "engines": { | ||
| 753 | + "node": ">=18" | ||
| 754 | + } | ||
| 755 | + }, | ||
| 756 | + "node_modules/@esbuild/linux-arm64": { | ||
| 757 | + "version": "0.25.12", | ||
| 758 | + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz", | ||
| 759 | + "integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==", | ||
| 760 | + "cpu": [ | ||
| 761 | + "arm64" | ||
| 762 | + ], | ||
| 763 | + "dev": true, | ||
| 764 | + "license": "MIT", | ||
| 765 | + "optional": true, | ||
| 766 | + "os": [ | ||
| 767 | + "linux" | ||
| 768 | + ], | ||
| 769 | + "engines": { | ||
| 770 | + "node": ">=18" | ||
| 771 | + } | ||
| 772 | + }, | ||
| 773 | + "node_modules/@esbuild/linux-ia32": { | ||
| 774 | + "version": "0.25.12", | ||
| 775 | + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz", | ||
| 776 | + "integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==", | ||
| 777 | + "cpu": [ | ||
| 778 | + "ia32" | ||
| 779 | + ], | ||
| 780 | + "dev": true, | ||
| 781 | + "license": "MIT", | ||
| 782 | + "optional": true, | ||
| 783 | + "os": [ | ||
| 784 | + "linux" | ||
| 785 | + ], | ||
| 786 | + "engines": { | ||
| 787 | + "node": ">=18" | ||
| 788 | + } | ||
| 789 | + }, | ||
| 790 | + "node_modules/@esbuild/linux-loong64": { | ||
| 791 | + "version": "0.25.12", | ||
| 792 | + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz", | ||
| 793 | + "integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==", | ||
| 794 | + "cpu": [ | ||
| 795 | + "loong64" | ||
| 796 | + ], | ||
| 797 | + "dev": true, | ||
| 798 | + "license": "MIT", | ||
| 799 | + "optional": true, | ||
| 800 | + "os": [ | ||
| 801 | + "linux" | ||
| 802 | + ], | ||
| 803 | + "engines": { | ||
| 804 | + "node": ">=18" | ||
| 805 | + } | ||
| 806 | + }, | ||
| 807 | + "node_modules/@esbuild/linux-mips64el": { | ||
| 808 | + "version": "0.25.12", | ||
| 809 | + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz", | ||
| 810 | + "integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==", | ||
| 811 | + "cpu": [ | ||
| 812 | + "mips64el" | ||
| 813 | + ], | ||
| 814 | + "dev": true, | ||
| 815 | + "license": "MIT", | ||
| 816 | + "optional": true, | ||
| 817 | + "os": [ | ||
| 818 | + "linux" | ||
| 819 | + ], | ||
| 820 | + "engines": { | ||
| 821 | + "node": ">=18" | ||
| 822 | + } | ||
| 823 | + }, | ||
| 824 | + "node_modules/@esbuild/linux-ppc64": { | ||
| 825 | + "version": "0.25.12", | ||
| 826 | + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz", | ||
| 827 | + "integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==", | ||
| 828 | + "cpu": [ | ||
| 829 | + "ppc64" | ||
| 830 | + ], | ||
| 831 | + "dev": true, | ||
| 832 | + "license": "MIT", | ||
| 833 | + "optional": true, | ||
| 834 | + "os": [ | ||
| 835 | + "linux" | ||
| 836 | + ], | ||
| 837 | + "engines": { | ||
| 838 | + "node": ">=18" | ||
| 839 | + } | ||
| 840 | + }, | ||
| 841 | + "node_modules/@esbuild/linux-riscv64": { | ||
| 842 | + "version": "0.25.12", | ||
| 843 | + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz", | ||
| 844 | + "integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==", | ||
| 845 | + "cpu": [ | ||
| 846 | + "riscv64" | ||
| 847 | + ], | ||
| 848 | + "dev": true, | ||
| 849 | + "license": "MIT", | ||
| 850 | + "optional": true, | ||
| 851 | + "os": [ | ||
| 852 | + "linux" | ||
| 853 | + ], | ||
| 854 | + "engines": { | ||
| 855 | + "node": ">=18" | ||
| 856 | + } | ||
| 857 | + }, | ||
| 858 | + "node_modules/@esbuild/linux-s390x": { | ||
| 859 | + "version": "0.25.12", | ||
| 860 | + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz", | ||
| 861 | + "integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==", | ||
| 862 | + "cpu": [ | ||
| 863 | + "s390x" | ||
| 864 | + ], | ||
| 865 | + "dev": true, | ||
| 866 | + "license": "MIT", | ||
| 867 | + "optional": true, | ||
| 868 | + "os": [ | ||
| 869 | + "linux" | ||
| 870 | + ], | ||
| 871 | + "engines": { | ||
| 872 | + "node": ">=18" | ||
| 873 | + } | ||
| 874 | + }, | ||
| 875 | + "node_modules/@esbuild/linux-x64": { | ||
| 876 | + "version": "0.25.12", | ||
| 877 | + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz", | ||
| 878 | + "integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==", | ||
| 879 | + "cpu": [ | ||
| 880 | + "x64" | ||
| 881 | + ], | ||
| 882 | + "dev": true, | ||
| 883 | + "license": "MIT", | ||
| 884 | + "optional": true, | ||
| 885 | + "os": [ | ||
| 886 | + "linux" | ||
| 887 | + ], | ||
| 888 | + "engines": { | ||
| 889 | + "node": ">=18" | ||
| 890 | + } | ||
| 891 | + }, | ||
| 892 | + "node_modules/@esbuild/netbsd-arm64": { | ||
| 893 | + "version": "0.25.12", | ||
| 894 | + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz", | ||
| 895 | + "integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==", | ||
| 896 | + "cpu": [ | ||
| 897 | + "arm64" | ||
| 898 | + ], | ||
| 899 | + "dev": true, | ||
| 900 | + "license": "MIT", | ||
| 901 | + "optional": true, | ||
| 902 | + "os": [ | ||
| 903 | + "netbsd" | ||
| 904 | + ], | ||
| 905 | + "engines": { | ||
| 906 | + "node": ">=18" | ||
| 907 | + } | ||
| 908 | + }, | ||
| 909 | + "node_modules/@esbuild/netbsd-x64": { | ||
| 910 | + "version": "0.25.12", | ||
| 911 | + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz", | ||
| 912 | + "integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==", | ||
| 913 | + "cpu": [ | ||
| 914 | + "x64" | ||
| 915 | + ], | ||
| 916 | + "dev": true, | ||
| 917 | + "license": "MIT", | ||
| 918 | + "optional": true, | ||
| 919 | + "os": [ | ||
| 920 | + "netbsd" | ||
| 921 | + ], | ||
| 922 | + "engines": { | ||
| 923 | + "node": ">=18" | ||
| 924 | + } | ||
| 925 | + }, | ||
| 926 | + "node_modules/@esbuild/openbsd-arm64": { | ||
| 927 | + "version": "0.25.12", | ||
| 928 | + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz", | ||
| 929 | + "integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==", | ||
| 930 | + "cpu": [ | ||
| 931 | + "arm64" | ||
| 932 | + ], | ||
| 933 | + "dev": true, | ||
| 934 | + "license": "MIT", | ||
| 935 | + "optional": true, | ||
| 936 | + "os": [ | ||
| 937 | + "openbsd" | ||
| 938 | + ], | ||
| 939 | + "engines": { | ||
| 940 | + "node": ">=18" | ||
| 941 | + } | ||
| 942 | + }, | ||
| 943 | + "node_modules/@esbuild/openbsd-x64": { | ||
| 944 | + "version": "0.25.12", | ||
| 945 | + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz", | ||
| 946 | + "integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==", | ||
| 947 | + "cpu": [ | ||
| 948 | + "x64" | ||
| 949 | + ], | ||
| 950 | + "dev": true, | ||
| 951 | + "license": "MIT", | ||
| 952 | + "optional": true, | ||
| 953 | + "os": [ | ||
| 954 | + "openbsd" | ||
| 955 | + ], | ||
| 956 | + "engines": { | ||
| 957 | + "node": ">=18" | ||
| 958 | + } | ||
| 959 | + }, | ||
| 960 | + "node_modules/@esbuild/openharmony-arm64": { | ||
| 961 | + "version": "0.25.12", | ||
| 962 | + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz", | ||
| 963 | + "integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==", | ||
| 964 | + "cpu": [ | ||
| 965 | + "arm64" | ||
| 966 | + ], | ||
| 967 | + "dev": true, | ||
| 968 | + "license": "MIT", | ||
| 969 | + "optional": true, | ||
| 970 | + "os": [ | ||
| 971 | + "openharmony" | ||
| 972 | + ], | ||
| 973 | + "engines": { | ||
| 974 | + "node": ">=18" | ||
| 975 | + } | ||
| 976 | + }, | ||
| 977 | + "node_modules/@esbuild/sunos-x64": { | ||
| 978 | + "version": "0.25.12", | ||
| 979 | + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz", | ||
| 980 | + "integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==", | ||
| 981 | + "cpu": [ | ||
| 982 | + "x64" | ||
| 983 | + ], | ||
| 984 | + "dev": true, | ||
| 985 | + "license": "MIT", | ||
| 986 | + "optional": true, | ||
| 987 | + "os": [ | ||
| 988 | + "sunos" | ||
| 989 | + ], | ||
| 990 | + "engines": { | ||
| 991 | + "node": ">=18" | ||
| 992 | + } | ||
| 993 | + }, | ||
| 994 | + "node_modules/@esbuild/win32-arm64": { | ||
| 995 | + "version": "0.25.12", | ||
| 996 | + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz", | ||
| 997 | + "integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==", | ||
| 998 | + "cpu": [ | ||
| 999 | + "arm64" | ||
| 1000 | + ], | ||
| 1001 | + "dev": true, | ||
| 1002 | + "license": "MIT", | ||
| 1003 | + "optional": true, | ||
| 1004 | + "os": [ | ||
| 1005 | + "win32" | ||
| 1006 | + ], | ||
| 1007 | + "engines": { | ||
| 1008 | + "node": ">=18" | ||
| 1009 | + } | ||
| 1010 | + }, | ||
| 1011 | + "node_modules/@esbuild/win32-ia32": { | ||
| 1012 | + "version": "0.25.12", | ||
| 1013 | + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz", | ||
| 1014 | + "integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==", | ||
| 1015 | + "cpu": [ | ||
| 1016 | + "ia32" | ||
| 1017 | + ], | ||
| 1018 | + "dev": true, | ||
| 1019 | + "license": "MIT", | ||
| 1020 | + "optional": true, | ||
| 1021 | + "os": [ | ||
| 1022 | + "win32" | ||
| 1023 | + ], | ||
| 1024 | + "engines": { | ||
| 1025 | + "node": ">=18" | ||
| 1026 | + } | ||
| 1027 | + }, | ||
| 1028 | + "node_modules/@esbuild/win32-x64": { | ||
| 1029 | + "version": "0.25.12", | ||
| 1030 | + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz", | ||
| 1031 | + "integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==", | ||
| 1032 | + "cpu": [ | ||
| 1033 | + "x64" | ||
| 1034 | + ], | ||
| 1035 | + "dev": true, | ||
| 1036 | + "license": "MIT", | ||
| 1037 | + "optional": true, | ||
| 1038 | + "os": [ | ||
| 1039 | + "win32" | ||
| 1040 | + ], | ||
| 1041 | + "engines": { | ||
| 1042 | + "node": ">=18" | ||
| 1043 | + } | ||
| 1044 | + }, | ||
| 1045 | + "node_modules/@eslint-community/eslint-utils": { | ||
| 1046 | + "version": "4.9.1", | ||
| 1047 | + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", | ||
| 1048 | + "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==", | ||
| 1049 | + "dev": true, | ||
| 1050 | + "license": "MIT", | ||
| 1051 | + "dependencies": { | ||
| 1052 | + "eslint-visitor-keys": "^3.4.3" | ||
| 1053 | + }, | ||
| 1054 | + "engines": { | ||
| 1055 | + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" | ||
| 1056 | + }, | ||
| 1057 | + "funding": { | ||
| 1058 | + "url": "https://opencollective.com/eslint" | ||
| 1059 | + }, | ||
| 1060 | + "peerDependencies": { | ||
| 1061 | + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" | ||
| 1062 | + } | ||
| 1063 | + }, | ||
| 1064 | + "node_modules/@eslint-community/regexpp": { | ||
| 1065 | + "version": "4.12.2", | ||
| 1066 | + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", | ||
| 1067 | + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", | ||
| 1068 | + "dev": true, | ||
| 1069 | + "license": "MIT", | ||
| 1070 | + "engines": { | ||
| 1071 | + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" | ||
| 1072 | + } | ||
| 1073 | + }, | ||
| 1074 | + "node_modules/@eslint/eslintrc": { | ||
| 1075 | + "version": "2.1.4", | ||
| 1076 | + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", | ||
| 1077 | + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", | ||
| 1078 | + "dev": true, | ||
| 1079 | + "license": "MIT", | ||
| 1080 | + "dependencies": { | ||
| 1081 | + "ajv": "^6.12.4", | ||
| 1082 | + "debug": "^4.3.2", | ||
| 1083 | + "espree": "^9.6.0", | ||
| 1084 | + "globals": "^13.19.0", | ||
| 1085 | + "ignore": "^5.2.0", | ||
| 1086 | + "import-fresh": "^3.2.1", | ||
| 1087 | + "js-yaml": "^4.1.0", | ||
| 1088 | + "minimatch": "^3.1.2", | ||
| 1089 | + "strip-json-comments": "^3.1.1" | ||
| 1090 | + }, | ||
| 1091 | + "engines": { | ||
| 1092 | + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" | ||
| 1093 | + }, | ||
| 1094 | + "funding": { | ||
| 1095 | + "url": "https://opencollective.com/eslint" | ||
| 1096 | + } | ||
| 1097 | + }, | ||
| 1098 | + "node_modules/@eslint/eslintrc/node_modules/balanced-match": { | ||
| 1099 | + "version": "1.0.2", | ||
| 1100 | + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", | ||
| 1101 | + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", | ||
| 1102 | + "dev": true, | ||
| 1103 | + "license": "MIT" | ||
| 1104 | + }, | ||
| 1105 | + "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { | ||
| 1106 | + "version": "1.1.15", | ||
| 1107 | + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.15.tgz", | ||
| 1108 | + "integrity": "sha512-EwOCDEex4quD37XhqM3omwtMoJjr//isUZz1JopUNWms+4Z2ViyM/k1YIRePpoVNnQhENnxtFjLaxNHrT7xIUg==", | ||
| 1109 | + "dev": true, | ||
| 1110 | + "license": "MIT", | ||
| 1111 | + "dependencies": { | ||
| 1112 | + "balanced-match": "^1.0.0", | ||
| 1113 | + "concat-map": "0.0.1" | ||
| 1114 | + } | ||
| 1115 | + }, | ||
| 1116 | + "node_modules/@eslint/eslintrc/node_modules/ignore": { | ||
| 1117 | + "version": "5.3.2", | ||
| 1118 | + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", | ||
| 1119 | + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", | ||
| 1120 | + "dev": true, | ||
| 1121 | + "license": "MIT", | ||
| 1122 | + "engines": { | ||
| 1123 | + "node": ">= 4" | ||
| 1124 | + } | ||
| 1125 | + }, | ||
| 1126 | + "node_modules/@eslint/eslintrc/node_modules/minimatch": { | ||
| 1127 | + "version": "3.1.5", | ||
| 1128 | + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", | ||
| 1129 | + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", | ||
| 1130 | + "dev": true, | ||
| 1131 | + "license": "ISC", | ||
| 1132 | + "dependencies": { | ||
| 1133 | + "brace-expansion": "^1.1.7" | ||
| 1134 | + }, | ||
| 1135 | + "engines": { | ||
| 1136 | + "node": "*" | ||
| 1137 | + } | ||
| 1138 | + }, | ||
| 1139 | + "node_modules/@eslint/js": { | ||
| 1140 | + "version": "8.57.1", | ||
| 1141 | + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", | ||
| 1142 | + "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", | ||
| 1143 | + "dev": true, | ||
| 1144 | + "license": "MIT", | ||
| 1145 | + "engines": { | ||
| 1146 | + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" | ||
| 1147 | + } | ||
| 1148 | + }, | ||
| 1149 | + "node_modules/@humanwhocodes/config-array": { | ||
| 1150 | + "version": "0.13.0", | ||
| 1151 | + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", | ||
| 1152 | + "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", | ||
| 1153 | + "deprecated": "Use @eslint/config-array instead", | ||
| 1154 | + "dev": true, | ||
| 1155 | + "license": "Apache-2.0", | ||
| 1156 | + "dependencies": { | ||
| 1157 | + "@humanwhocodes/object-schema": "^2.0.3", | ||
| 1158 | + "debug": "^4.3.1", | ||
| 1159 | + "minimatch": "^3.0.5" | ||
| 1160 | + }, | ||
| 1161 | + "engines": { | ||
| 1162 | + "node": ">=10.10.0" | ||
| 1163 | + } | ||
| 1164 | + }, | ||
| 1165 | + "node_modules/@humanwhocodes/config-array/node_modules/balanced-match": { | ||
| 1166 | + "version": "1.0.2", | ||
| 1167 | + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", | ||
| 1168 | + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", | ||
| 1169 | + "dev": true, | ||
| 1170 | + "license": "MIT" | ||
| 1171 | + }, | ||
| 1172 | + "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { | ||
| 1173 | + "version": "1.1.15", | ||
| 1174 | + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.15.tgz", | ||
| 1175 | + "integrity": "sha512-EwOCDEex4quD37XhqM3omwtMoJjr//isUZz1JopUNWms+4Z2ViyM/k1YIRePpoVNnQhENnxtFjLaxNHrT7xIUg==", | ||
| 1176 | + "dev": true, | ||
| 1177 | + "license": "MIT", | ||
| 1178 | + "dependencies": { | ||
| 1179 | + "balanced-match": "^1.0.0", | ||
| 1180 | + "concat-map": "0.0.1" | ||
| 1181 | + } | ||
| 1182 | + }, | ||
| 1183 | + "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { | ||
| 1184 | + "version": "3.1.5", | ||
| 1185 | + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", | ||
| 1186 | + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", | ||
| 1187 | + "dev": true, | ||
| 1188 | + "license": "ISC", | ||
| 1189 | + "dependencies": { | ||
| 1190 | + "brace-expansion": "^1.1.7" | ||
| 1191 | + }, | ||
| 1192 | + "engines": { | ||
| 1193 | + "node": "*" | ||
| 1194 | + } | ||
| 1195 | + }, | ||
| 1196 | + "node_modules/@humanwhocodes/module-importer": { | ||
| 1197 | + "version": "1.0.1", | ||
| 1198 | + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", | ||
| 1199 | + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", | ||
| 1200 | + "dev": true, | ||
| 1201 | + "license": "Apache-2.0", | ||
| 1202 | + "engines": { | ||
| 1203 | + "node": ">=12.22" | ||
| 1204 | + }, | ||
| 1205 | + "funding": { | ||
| 1206 | + "type": "github", | ||
| 1207 | + "url": "https://github.com/sponsors/nzakas" | ||
| 1208 | + } | ||
| 1209 | + }, | ||
| 1210 | + "node_modules/@humanwhocodes/object-schema": { | ||
| 1211 | + "version": "2.0.3", | ||
| 1212 | + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", | ||
| 1213 | + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", | ||
| 1214 | + "deprecated": "Use @eslint/object-schema instead", | ||
| 1215 | + "dev": true, | ||
| 1216 | + "license": "BSD-3-Clause" | ||
| 1217 | + }, | ||
| 1218 | + "node_modules/@jridgewell/gen-mapping": { | ||
| 1219 | + "version": "0.3.13", | ||
| 1220 | + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", | ||
| 1221 | + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", | ||
| 1222 | + "dev": true, | ||
| 1223 | + "license": "MIT", | ||
| 1224 | + "dependencies": { | ||
| 1225 | + "@jridgewell/sourcemap-codec": "^1.5.0", | ||
| 1226 | + "@jridgewell/trace-mapping": "^0.3.24" | ||
| 1227 | + } | ||
| 1228 | + }, | ||
| 1229 | + "node_modules/@jridgewell/remapping": { | ||
| 1230 | + "version": "2.3.5", | ||
| 1231 | + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", | ||
| 1232 | + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", | ||
| 1233 | + "dev": true, | ||
| 1234 | + "license": "MIT", | ||
| 1235 | + "dependencies": { | ||
| 1236 | + "@jridgewell/gen-mapping": "^0.3.5", | ||
| 1237 | + "@jridgewell/trace-mapping": "^0.3.24" | ||
| 1238 | + } | ||
| 1239 | + }, | ||
| 1240 | + "node_modules/@jridgewell/resolve-uri": { | ||
| 1241 | + "version": "3.1.2", | ||
| 1242 | + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", | ||
| 1243 | + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", | ||
| 1244 | + "dev": true, | ||
| 1245 | + "license": "MIT", | ||
| 1246 | + "engines": { | ||
| 1247 | + "node": ">=6.0.0" | ||
| 1248 | + } | ||
| 1249 | + }, | ||
| 1250 | + "node_modules/@jridgewell/sourcemap-codec": { | ||
| 1251 | + "version": "1.5.5", | ||
| 1252 | + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", | ||
| 1253 | + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", | ||
| 1254 | + "dev": true, | ||
| 1255 | + "license": "MIT" | ||
| 1256 | + }, | ||
| 1257 | + "node_modules/@jridgewell/trace-mapping": { | ||
| 1258 | + "version": "0.3.31", | ||
| 1259 | + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", | ||
| 1260 | + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", | ||
| 1261 | + "dev": true, | ||
| 1262 | + "license": "MIT", | ||
| 1263 | + "dependencies": { | ||
| 1264 | + "@jridgewell/resolve-uri": "^3.1.0", | ||
| 1265 | + "@jridgewell/sourcemap-codec": "^1.4.14" | ||
| 1266 | + } | ||
| 1267 | + }, | ||
| 1268 | + "node_modules/@nodelib/fs.scandir": { | ||
| 1269 | + "version": "2.1.5", | ||
| 1270 | + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", | ||
| 1271 | + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", | ||
| 1272 | + "dev": true, | ||
| 1273 | + "license": "MIT", | ||
| 1274 | + "dependencies": { | ||
| 1275 | + "@nodelib/fs.stat": "2.0.5", | ||
| 1276 | + "run-parallel": "^1.1.9" | ||
| 1277 | + }, | ||
| 1278 | + "engines": { | ||
| 1279 | + "node": ">= 8" | ||
| 1280 | + } | ||
| 1281 | + }, | ||
| 1282 | + "node_modules/@nodelib/fs.stat": { | ||
| 1283 | + "version": "2.0.5", | ||
| 1284 | + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", | ||
| 1285 | + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", | ||
| 1286 | + "dev": true, | ||
| 1287 | + "license": "MIT", | ||
| 1288 | + "engines": { | ||
| 1289 | + "node": ">= 8" | ||
| 1290 | + } | ||
| 1291 | + }, | ||
| 1292 | + "node_modules/@nodelib/fs.walk": { | ||
| 1293 | + "version": "1.2.8", | ||
| 1294 | + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", | ||
| 1295 | + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", | ||
| 1296 | + "dev": true, | ||
| 1297 | + "license": "MIT", | ||
| 1298 | + "dependencies": { | ||
| 1299 | + "@nodelib/fs.scandir": "2.1.5", | ||
| 1300 | + "fastq": "^1.6.0" | ||
| 1301 | + }, | ||
| 1302 | + "engines": { | ||
| 1303 | + "node": ">= 8" | ||
| 1304 | + } | ||
| 1305 | + }, | ||
| 1306 | + "node_modules/@playwright/test": { | ||
| 1307 | + "version": "1.60.0", | ||
| 1308 | + "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.60.0.tgz", | ||
| 1309 | + "integrity": "sha512-O71yZIbAh/PxDMNGns37GHBIfrVkEVyn+AXyIa5dOTfb4/xNvRWV+Vv/NMbNCtODB/pO7vLlF2OTmMVLhmr7Ag==", | ||
| 1310 | + "dev": true, | ||
| 1311 | + "license": "Apache-2.0", | ||
| 1312 | + "dependencies": { | ||
| 1313 | + "playwright": "1.60.0" | ||
| 1314 | + }, | ||
| 1315 | + "bin": { | ||
| 1316 | + "playwright": "cli.js" | ||
| 1317 | + }, | ||
| 1318 | + "engines": { | ||
| 1319 | + "node": ">=18" | ||
| 1320 | + } | ||
| 1321 | + }, | ||
| 1322 | + "node_modules/@rc-component/async-validator": { | ||
| 1323 | + "version": "5.1.0", | ||
| 1324 | + "resolved": "https://registry.npmjs.org/@rc-component/async-validator/-/async-validator-5.1.0.tgz", | ||
| 1325 | + "integrity": "sha512-n4HcR5siNUXRX23nDizbZBQPO0ZM/5oTtmKZ6/eqL0L2bo747cklFdZGRN2f+c9qWGICwDzrhW0H7tE9PptdcA==", | ||
| 1326 | + "license": "MIT", | ||
| 1327 | + "dependencies": { | ||
| 1328 | + "@babel/runtime": "^7.24.4" | ||
| 1329 | + }, | ||
| 1330 | + "engines": { | ||
| 1331 | + "node": ">=14.x" | ||
| 1332 | + } | ||
| 1333 | + }, | ||
| 1334 | + "node_modules/@rc-component/color-picker": { | ||
| 1335 | + "version": "2.0.1", | ||
| 1336 | + "resolved": "https://registry.npmjs.org/@rc-component/color-picker/-/color-picker-2.0.1.tgz", | ||
| 1337 | + "integrity": "sha512-WcZYwAThV/b2GISQ8F+7650r5ZZJ043E57aVBFkQ+kSY4C6wdofXgB0hBx+GPGpIU0Z81eETNoDUJMr7oy/P8Q==", | ||
| 1338 | + "license": "MIT", | ||
| 1339 | + "dependencies": { | ||
| 1340 | + "@ant-design/fast-color": "^2.0.6", | ||
| 1341 | + "@babel/runtime": "^7.23.6", | ||
| 1342 | + "classnames": "^2.2.6", | ||
| 1343 | + "rc-util": "^5.38.1" | ||
| 1344 | + }, | ||
| 1345 | + "peerDependencies": { | ||
| 1346 | + "react": ">=16.9.0", | ||
| 1347 | + "react-dom": ">=16.9.0" | ||
| 1348 | + } | ||
| 1349 | + }, | ||
| 1350 | + "node_modules/@rc-component/context": { | ||
| 1351 | + "version": "1.4.0", | ||
| 1352 | + "resolved": "https://registry.npmjs.org/@rc-component/context/-/context-1.4.0.tgz", | ||
| 1353 | + "integrity": "sha512-kFcNxg9oLRMoL3qki0OMxK+7g5mypjgaaJp/pkOis/6rVxma9nJBF/8kCIuTYHUQNr0ii7MxqE33wirPZLJQ2w==", | ||
| 1354 | + "license": "MIT", | ||
| 1355 | + "dependencies": { | ||
| 1356 | + "@babel/runtime": "^7.10.1", | ||
| 1357 | + "rc-util": "^5.27.0" | ||
| 1358 | + }, | ||
| 1359 | + "peerDependencies": { | ||
| 1360 | + "react": ">=16.9.0", | ||
| 1361 | + "react-dom": ">=16.9.0" | ||
| 1362 | + } | ||
| 1363 | + }, | ||
| 1364 | + "node_modules/@rc-component/mini-decimal": { | ||
| 1365 | + "version": "1.1.3", | ||
| 1366 | + "resolved": "https://registry.npmjs.org/@rc-component/mini-decimal/-/mini-decimal-1.1.3.tgz", | ||
| 1367 | + "integrity": "sha512-bk/FJ09fLf+NLODMAFll6CfYrHPBioTedhW6lxDBuuWucJEqFUd4l/D/5JgIi3dina6sYahB8iuPAZTNz2pMxw==", | ||
| 1368 | + "license": "MIT", | ||
| 1369 | + "dependencies": { | ||
| 1370 | + "@babel/runtime": "^7.18.0" | ||
| 1371 | + }, | ||
| 1372 | + "engines": { | ||
| 1373 | + "node": ">=8.x" | ||
| 1374 | + } | ||
| 1375 | + }, | ||
| 1376 | + "node_modules/@rc-component/mutate-observer": { | ||
| 1377 | + "version": "1.1.0", | ||
| 1378 | + "resolved": "https://registry.npmjs.org/@rc-component/mutate-observer/-/mutate-observer-1.1.0.tgz", | ||
| 1379 | + "integrity": "sha512-QjrOsDXQusNwGZPf4/qRQasg7UFEj06XiCJ8iuiq/Io7CrHrgVi6Uuetw60WAMG1799v+aM8kyc+1L/GBbHSlw==", | ||
| 1380 | + "license": "MIT", | ||
| 1381 | + "dependencies": { | ||
| 1382 | + "@babel/runtime": "^7.18.0", | ||
| 1383 | + "classnames": "^2.3.2", | ||
| 1384 | + "rc-util": "^5.24.4" | ||
| 1385 | + }, | ||
| 1386 | + "engines": { | ||
| 1387 | + "node": ">=8.x" | ||
| 1388 | + }, | ||
| 1389 | + "peerDependencies": { | ||
| 1390 | + "react": ">=16.9.0", | ||
| 1391 | + "react-dom": ">=16.9.0" | ||
| 1392 | + } | ||
| 1393 | + }, | ||
| 1394 | + "node_modules/@rc-component/portal": { | ||
| 1395 | + "version": "1.1.2", | ||
| 1396 | + "resolved": "https://registry.npmjs.org/@rc-component/portal/-/portal-1.1.2.tgz", | ||
| 1397 | + "integrity": "sha512-6f813C0IsasTZms08kfA8kPAGxbbkYToa8ALaiDIGGECU4i9hj8Plgbx0sNJDrey3EtHO30hmdaxtT0138xZcg==", | ||
| 1398 | + "license": "MIT", | ||
| 1399 | + "dependencies": { | ||
| 1400 | + "@babel/runtime": "^7.18.0", | ||
| 1401 | + "classnames": "^2.3.2", | ||
| 1402 | + "rc-util": "^5.24.4" | ||
| 1403 | + }, | ||
| 1404 | + "engines": { | ||
| 1405 | + "node": ">=8.x" | ||
| 1406 | + }, | ||
| 1407 | + "peerDependencies": { | ||
| 1408 | + "react": ">=16.9.0", | ||
| 1409 | + "react-dom": ">=16.9.0" | ||
| 1410 | + } | ||
| 1411 | + }, | ||
| 1412 | + "node_modules/@rc-component/qrcode": { | ||
| 1413 | + "version": "1.1.1", | ||
| 1414 | + "resolved": "https://registry.npmjs.org/@rc-component/qrcode/-/qrcode-1.1.1.tgz", | ||
| 1415 | + "integrity": "sha512-LfLGNymzKdUPjXUbRP+xOhIWY4jQ+YMj5MmWAcgcAq1Ij8XP7tRmAXqyuv96XvLUBE/5cA8hLFl9eO1JQMujrA==", | ||
| 1416 | + "license": "MIT", | ||
| 1417 | + "dependencies": { | ||
| 1418 | + "@babel/runtime": "^7.24.7" | ||
| 1419 | + }, | ||
| 1420 | + "engines": { | ||
| 1421 | + "node": ">=8.x" | ||
| 1422 | + }, | ||
| 1423 | + "peerDependencies": { | ||
| 1424 | + "react": ">=16.9.0", | ||
| 1425 | + "react-dom": ">=16.9.0" | ||
| 1426 | + } | ||
| 1427 | + }, | ||
| 1428 | + "node_modules/@rc-component/tour": { | ||
| 1429 | + "version": "1.15.1", | ||
| 1430 | + "resolved": "https://registry.npmjs.org/@rc-component/tour/-/tour-1.15.1.tgz", | ||
| 1431 | + "integrity": "sha512-Tr2t7J1DKZUpfJuDZWHxyxWpfmj8EZrqSgyMZ+BCdvKZ6r1UDsfU46M/iWAAFBy961Ssfom2kv5f3UcjIL2CmQ==", | ||
| 1432 | + "license": "MIT", | ||
| 1433 | + "dependencies": { | ||
| 1434 | + "@babel/runtime": "^7.18.0", | ||
| 1435 | + "@rc-component/portal": "^1.0.0-9", | ||
| 1436 | + "@rc-component/trigger": "^2.0.0", | ||
| 1437 | + "classnames": "^2.3.2", | ||
| 1438 | + "rc-util": "^5.24.4" | ||
| 1439 | + }, | ||
| 1440 | + "engines": { | ||
| 1441 | + "node": ">=8.x" | ||
| 1442 | + }, | ||
| 1443 | + "peerDependencies": { | ||
| 1444 | + "react": ">=16.9.0", | ||
| 1445 | + "react-dom": ">=16.9.0" | ||
| 1446 | + } | ||
| 1447 | + }, | ||
| 1448 | + "node_modules/@rc-component/trigger": { | ||
| 1449 | + "version": "2.3.1", | ||
| 1450 | + "resolved": "https://registry.npmjs.org/@rc-component/trigger/-/trigger-2.3.1.tgz", | ||
| 1451 | + "integrity": "sha512-ORENF39PeXTzM+gQEshuk460Z8N4+6DkjpxlpE7Q3gYy1iBpLrx0FOJz3h62ryrJZ/3zCAUIkT1Pb/8hHWpb3A==", | ||
| 1452 | + "license": "MIT", | ||
| 1453 | + "dependencies": { | ||
| 1454 | + "@babel/runtime": "^7.23.2", | ||
| 1455 | + "@rc-component/portal": "^1.1.0", | ||
| 1456 | + "classnames": "^2.3.2", | ||
| 1457 | + "rc-motion": "^2.0.0", | ||
| 1458 | + "rc-resize-observer": "^1.3.1", | ||
| 1459 | + "rc-util": "^5.44.0" | ||
| 1460 | + }, | ||
| 1461 | + "engines": { | ||
| 1462 | + "node": ">=8.x" | ||
| 1463 | + }, | ||
| 1464 | + "peerDependencies": { | ||
| 1465 | + "react": ">=16.9.0", | ||
| 1466 | + "react-dom": ">=16.9.0" | ||
| 1467 | + } | ||
| 1468 | + }, | ||
| 1469 | + "node_modules/@reduxjs/toolkit": { | ||
| 1470 | + "version": "2.12.0", | ||
| 1471 | + "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-2.12.0.tgz", | ||
| 1472 | + "integrity": "sha512-KiT+RzZbp6mQET+Mg+h2c97+9j1sNflUxQkIHI7Yuzf6Peu+OYpmkn6nbHWmLLWj+1ZODUJFwGZ7gx3L9R9EOw==", | ||
| 1473 | + "license": "MIT", | ||
| 1474 | + "dependencies": { | ||
| 1475 | + "@standard-schema/spec": "^1.0.0", | ||
| 1476 | + "@standard-schema/utils": "^0.3.0", | ||
| 1477 | + "immer": "^11.0.0", | ||
| 1478 | + "redux": "^5.0.1", | ||
| 1479 | + "redux-thunk": "^3.1.0", | ||
| 1480 | + "reselect": "^5.1.0" | ||
| 1481 | + }, | ||
| 1482 | + "peerDependencies": { | ||
| 1483 | + "react": "^16.9.0 || ^17.0.0 || ^18 || ^19", | ||
| 1484 | + "react-redux": "^7.2.1 || ^8.1.3 || ^9.0.0" | ||
| 1485 | + }, | ||
| 1486 | + "peerDependenciesMeta": { | ||
| 1487 | + "react": { | ||
| 1488 | + "optional": true | ||
| 1489 | + }, | ||
| 1490 | + "react-redux": { | ||
| 1491 | + "optional": true | ||
| 1492 | + } | ||
| 1493 | + } | ||
| 1494 | + }, | ||
| 1495 | + "node_modules/@remix-run/router": { | ||
| 1496 | + "version": "1.23.3", | ||
| 1497 | + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.23.3.tgz", | ||
| 1498 | + "integrity": "sha512-4An71tdz9X8+3sI4Qqqd2LWd9vS39J7sqd9EU4Scw7TJE/qB10Flv/UuqbPVgfQV9XoK8Np6jNquZitnZq5i+Q==", | ||
| 1499 | + "license": "MIT", | ||
| 1500 | + "engines": { | ||
| 1501 | + "node": ">=14.0.0" | ||
| 1502 | + } | ||
| 1503 | + }, | ||
| 1504 | + "node_modules/@rolldown/pluginutils": { | ||
| 1505 | + "version": "1.0.0-beta.27", | ||
| 1506 | + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz", | ||
| 1507 | + "integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==", | ||
| 1508 | + "dev": true, | ||
| 1509 | + "license": "MIT" | ||
| 1510 | + }, | ||
| 1511 | + "node_modules/@rollup/rollup-android-arm-eabi": { | ||
| 1512 | + "version": "4.61.0", | ||
| 1513 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.61.0.tgz", | ||
| 1514 | + "integrity": "sha512-dnxczajOqt0gesZlN5pGQ1s1imQVrsmCw5G2Ci4oM+0WvNz3pyRnlWrT7McoZIb8VlFwCawdmbWRmxRn7HI+VQ==", | ||
| 1515 | + "cpu": [ | ||
| 1516 | + "arm" | ||
| 1517 | + ], | ||
| 1518 | + "dev": true, | ||
| 1519 | + "license": "MIT", | ||
| 1520 | + "optional": true, | ||
| 1521 | + "os": [ | ||
| 1522 | + "android" | ||
| 1523 | + ] | ||
| 1524 | + }, | ||
| 1525 | + "node_modules/@rollup/rollup-android-arm64": { | ||
| 1526 | + "version": "4.61.0", | ||
| 1527 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.61.0.tgz", | ||
| 1528 | + "integrity": "sha512-Bp3JpGP00Vu3f238ivRrjf7z3xSzVPXqCmaJYA9t2c+c8vKYvOzmXF7LkkeUalTEGd6cZcSWe+PFIP3Vy48fRg==", | ||
| 1529 | + "cpu": [ | ||
| 1530 | + "arm64" | ||
| 1531 | + ], | ||
| 1532 | + "dev": true, | ||
| 1533 | + "license": "MIT", | ||
| 1534 | + "optional": true, | ||
| 1535 | + "os": [ | ||
| 1536 | + "android" | ||
| 1537 | + ] | ||
| 1538 | + }, | ||
| 1539 | + "node_modules/@rollup/rollup-darwin-arm64": { | ||
| 1540 | + "version": "4.61.0", | ||
| 1541 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.61.0.tgz", | ||
| 1542 | + "integrity": "sha512-zaYIpr670mUmmZ1tVzUFplbQbG7h3Gugx3L5FoqhsC2m/YnLlR1a7zVLmXNPy+iY1tFPEbNG+HHBXZGyId0G5w==", | ||
| 1543 | + "cpu": [ | ||
| 1544 | + "arm64" | ||
| 1545 | + ], | ||
| 1546 | + "dev": true, | ||
| 1547 | + "license": "MIT", | ||
| 1548 | + "optional": true, | ||
| 1549 | + "os": [ | ||
| 1550 | + "darwin" | ||
| 1551 | + ] | ||
| 1552 | + }, | ||
| 1553 | + "node_modules/@rollup/rollup-darwin-x64": { | ||
| 1554 | + "version": "4.61.0", | ||
| 1555 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.61.0.tgz", | ||
| 1556 | + "integrity": "sha512-+P49fvkv2dSoeevUW+lgZ/I2JHSsJCK1Lyjj7Cu6E4UHG4tS9XIefzIjo5qhgELjAclnen1rLzK2PMKJdo+Dyg==", | ||
| 1557 | + "cpu": [ | ||
| 1558 | + "x64" | ||
| 1559 | + ], | ||
| 1560 | + "dev": true, | ||
| 1561 | + "license": "MIT", | ||
| 1562 | + "optional": true, | ||
| 1563 | + "os": [ | ||
| 1564 | + "darwin" | ||
| 1565 | + ] | ||
| 1566 | + }, | ||
| 1567 | + "node_modules/@rollup/rollup-freebsd-arm64": { | ||
| 1568 | + "version": "4.61.0", | ||
| 1569 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.61.0.tgz", | ||
| 1570 | + "integrity": "sha512-l3FAAOyKJXH2ea6KNFN+MMgC/rnE94YGLXs2ehYqDcCoHt1DpvgWX75BhUJxN38XojP7Ul+4H8PRn7EdyqSDrw==", | ||
| 1571 | + "cpu": [ | ||
| 1572 | + "arm64" | ||
| 1573 | + ], | ||
| 1574 | + "dev": true, | ||
| 1575 | + "license": "MIT", | ||
| 1576 | + "optional": true, | ||
| 1577 | + "os": [ | ||
| 1578 | + "freebsd" | ||
| 1579 | + ] | ||
| 1580 | + }, | ||
| 1581 | + "node_modules/@rollup/rollup-freebsd-x64": { | ||
| 1582 | + "version": "4.61.0", | ||
| 1583 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.61.0.tgz", | ||
| 1584 | + "integrity": "sha512-VokPN3TSctKj65cyCNPaUh4vMFA8awxOot/0sp+4J7ZlNRKQEhXhawqPwajoi8H5ZFt61i0ugZJuTKXBjGJ17Q==", | ||
| 1585 | + "cpu": [ | ||
| 1586 | + "x64" | ||
| 1587 | + ], | ||
| 1588 | + "dev": true, | ||
| 1589 | + "license": "MIT", | ||
| 1590 | + "optional": true, | ||
| 1591 | + "os": [ | ||
| 1592 | + "freebsd" | ||
| 1593 | + ] | ||
| 1594 | + }, | ||
| 1595 | + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { | ||
| 1596 | + "version": "4.61.0", | ||
| 1597 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.61.0.tgz", | ||
| 1598 | + "integrity": "sha512-DxH0P3wxm+Yzs/p3zrk9dw1rURu8p0Nv5+MRK/L7OtnLNg5rLZraSBFZ8iUXOd9f2BlhJyEpIZUH/emjq4UJ4g==", | ||
| 1599 | + "cpu": [ | ||
| 1600 | + "arm" | ||
| 1601 | + ], | ||
| 1602 | + "dev": true, | ||
| 1603 | + "libc": [ | ||
| 1604 | + "glibc" | ||
| 1605 | + ], | ||
| 1606 | + "license": "MIT", | ||
| 1607 | + "optional": true, | ||
| 1608 | + "os": [ | ||
| 1609 | + "linux" | ||
| 1610 | + ] | ||
| 1611 | + }, | ||
| 1612 | + "node_modules/@rollup/rollup-linux-arm-musleabihf": { | ||
| 1613 | + "version": "4.61.0", | ||
| 1614 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.61.0.tgz", | ||
| 1615 | + "integrity": "sha512-T6ZvMNe84kAz6TBWHC7hGAoEtzP1LWYw/AqayGWEF6uISt3Abk/st06LqRD9THd7Xz3NxzurUpzAuEAUbZf+nw==", | ||
| 1616 | + "cpu": [ | ||
| 1617 | + "arm" | ||
| 1618 | + ], | ||
| 1619 | + "dev": true, | ||
| 1620 | + "libc": [ | ||
| 1621 | + "musl" | ||
| 1622 | + ], | ||
| 1623 | + "license": "MIT", | ||
| 1624 | + "optional": true, | ||
| 1625 | + "os": [ | ||
| 1626 | + "linux" | ||
| 1627 | + ] | ||
| 1628 | + }, | ||
| 1629 | + "node_modules/@rollup/rollup-linux-arm64-gnu": { | ||
| 1630 | + "version": "4.61.0", | ||
| 1631 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.61.0.tgz", | ||
| 1632 | + "integrity": "sha512-q/4hzvQkDs8b4jIBab1pnLiiM0ayTZsN2amBFPDzuyZxjEd4wDwx0UJFYM3cOZzSf5Kw8fnWSprJzIBMkcR44Q==", | ||
| 1633 | + "cpu": [ | ||
| 1634 | + "arm64" | ||
| 1635 | + ], | ||
| 1636 | + "dev": true, | ||
| 1637 | + "libc": [ | ||
| 1638 | + "glibc" | ||
| 1639 | + ], | ||
| 1640 | + "license": "MIT", | ||
| 1641 | + "optional": true, | ||
| 1642 | + "os": [ | ||
| 1643 | + "linux" | ||
| 1644 | + ] | ||
| 1645 | + }, | ||
| 1646 | + "node_modules/@rollup/rollup-linux-arm64-musl": { | ||
| 1647 | + "version": "4.61.0", | ||
| 1648 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.61.0.tgz", | ||
| 1649 | + "integrity": "sha512-vvYWX3akdEAY6km+9wAqFDnk6pQsbJKVnj7xawcvs/+fdlYBGp+U+Qq/lLfpIxYIZvZLHMAKD9HLdacSx/r3dw==", | ||
| 1650 | + "cpu": [ | ||
| 1651 | + "arm64" | ||
| 1652 | + ], | ||
| 1653 | + "dev": true, | ||
| 1654 | + "libc": [ | ||
| 1655 | + "musl" | ||
| 1656 | + ], | ||
| 1657 | + "license": "MIT", | ||
| 1658 | + "optional": true, | ||
| 1659 | + "os": [ | ||
| 1660 | + "linux" | ||
| 1661 | + ] | ||
| 1662 | + }, | ||
| 1663 | + "node_modules/@rollup/rollup-linux-loong64-gnu": { | ||
| 1664 | + "version": "4.61.0", | ||
| 1665 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.61.0.tgz", | ||
| 1666 | + "integrity": "sha512-DePa5cqOxDP/Zp0VOXpeWaGew5iIv5DXp9NYbzkX5PFQyWVX9184WCTh3hvr/7lhXo8ZVlbFLkz8+o/q1dU6gA==", | ||
| 1667 | + "cpu": [ | ||
| 1668 | + "loong64" | ||
| 1669 | + ], | ||
| 1670 | + "dev": true, | ||
| 1671 | + "libc": [ | ||
| 1672 | + "glibc" | ||
| 1673 | + ], | ||
| 1674 | + "license": "MIT", | ||
| 1675 | + "optional": true, | ||
| 1676 | + "os": [ | ||
| 1677 | + "linux" | ||
| 1678 | + ] | ||
| 1679 | + }, | ||
| 1680 | + "node_modules/@rollup/rollup-linux-loong64-musl": { | ||
| 1681 | + "version": "4.61.0", | ||
| 1682 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.61.0.tgz", | ||
| 1683 | + "integrity": "sha512-LV8aWMB8UChglMCEzs7RkN0GsH29RJaLLqwm9fCIjlqwxQTiWAqNcc7wjBkH31hV0PU/yVxGYvrYsgfea2qw6g==", | ||
| 1684 | + "cpu": [ | ||
| 1685 | + "loong64" | ||
| 1686 | + ], | ||
| 1687 | + "dev": true, | ||
| 1688 | + "libc": [ | ||
| 1689 | + "musl" | ||
| 1690 | + ], | ||
| 1691 | + "license": "MIT", | ||
| 1692 | + "optional": true, | ||
| 1693 | + "os": [ | ||
| 1694 | + "linux" | ||
| 1695 | + ] | ||
| 1696 | + }, | ||
| 1697 | + "node_modules/@rollup/rollup-linux-ppc64-gnu": { | ||
| 1698 | + "version": "4.61.0", | ||
| 1699 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.61.0.tgz", | ||
| 1700 | + "integrity": "sha512-QoNSnwQtaeNu5grdBbsL0tt1uyl5EnS8DA8Mr3nluMXbhdQNyhN+G4tBax7VCdxLKj8YJ0/4OO9Ho84jMnJtKA==", | ||
| 1701 | + "cpu": [ | ||
| 1702 | + "ppc64" | ||
| 1703 | + ], | ||
| 1704 | + "dev": true, | ||
| 1705 | + "libc": [ | ||
| 1706 | + "glibc" | ||
| 1707 | + ], | ||
| 1708 | + "license": "MIT", | ||
| 1709 | + "optional": true, | ||
| 1710 | + "os": [ | ||
| 1711 | + "linux" | ||
| 1712 | + ] | ||
| 1713 | + }, | ||
| 1714 | + "node_modules/@rollup/rollup-linux-ppc64-musl": { | ||
| 1715 | + "version": "4.61.0", | ||
| 1716 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.61.0.tgz", | ||
| 1717 | + "integrity": "sha512-/zZp5MKapIIApE8trN8qLGNSiRN9TUoaUZ1cmVu4XnVdd5LQLOXTtyi+vtfUbNnT3iyjzpPqYeKXmvJ+gJGYWw==", | ||
| 1718 | + "cpu": [ | ||
| 1719 | + "ppc64" | ||
| 1720 | + ], | ||
| 1721 | + "dev": true, | ||
| 1722 | + "libc": [ | ||
| 1723 | + "musl" | ||
| 1724 | + ], | ||
| 1725 | + "license": "MIT", | ||
| 1726 | + "optional": true, | ||
| 1727 | + "os": [ | ||
| 1728 | + "linux" | ||
| 1729 | + ] | ||
| 1730 | + }, | ||
| 1731 | + "node_modules/@rollup/rollup-linux-riscv64-gnu": { | ||
| 1732 | + "version": "4.61.0", | ||
| 1733 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.61.0.tgz", | ||
| 1734 | + "integrity": "sha512-RbrzcD3aJ1k3UbtMRRBNwojdVVyXjuVAFTfn/xPa6EEl6GE9Sm/akPgFTb9aAC9pMKGJ6CtWxaGrqWcabH+ySg==", | ||
| 1735 | + "cpu": [ | ||
| 1736 | + "riscv64" | ||
| 1737 | + ], | ||
| 1738 | + "dev": true, | ||
| 1739 | + "libc": [ | ||
| 1740 | + "glibc" | ||
| 1741 | + ], | ||
| 1742 | + "license": "MIT", | ||
| 1743 | + "optional": true, | ||
| 1744 | + "os": [ | ||
| 1745 | + "linux" | ||
| 1746 | + ] | ||
| 1747 | + }, | ||
| 1748 | + "node_modules/@rollup/rollup-linux-riscv64-musl": { | ||
| 1749 | + "version": "4.61.0", | ||
| 1750 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.61.0.tgz", | ||
| 1751 | + "integrity": "sha512-ZF+onDsBso8PJf1XaG9lB+O9RnBpKGnY6OrzC4CSHrtC1jb6jWLTKK4bRqdoCXHd22gyr2hiYmEAm8Wns/BOCw==", | ||
| 1752 | + "cpu": [ | ||
| 1753 | + "riscv64" | ||
| 1754 | + ], | ||
| 1755 | + "dev": true, | ||
| 1756 | + "libc": [ | ||
| 1757 | + "musl" | ||
| 1758 | + ], | ||
| 1759 | + "license": "MIT", | ||
| 1760 | + "optional": true, | ||
| 1761 | + "os": [ | ||
| 1762 | + "linux" | ||
| 1763 | + ] | ||
| 1764 | + }, | ||
| 1765 | + "node_modules/@rollup/rollup-linux-s390x-gnu": { | ||
| 1766 | + "version": "4.61.0", | ||
| 1767 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.61.0.tgz", | ||
| 1768 | + "integrity": "sha512-Atk0aSIk5Zx2Wuh9dgRQgLP0Koc8hOeYpbWryMXyk8G8/HmPkwPPkMqIIDhrXHHYqfUzSJA/I7IWSBv8xSmRBA==", | ||
| 1769 | + "cpu": [ | ||
| 1770 | + "s390x" | ||
| 1771 | + ], | ||
| 1772 | + "dev": true, | ||
| 1773 | + "libc": [ | ||
| 1774 | + "glibc" | ||
| 1775 | + ], | ||
| 1776 | + "license": "MIT", | ||
| 1777 | + "optional": true, | ||
| 1778 | + "os": [ | ||
| 1779 | + "linux" | ||
| 1780 | + ] | ||
| 1781 | + }, | ||
| 1782 | + "node_modules/@rollup/rollup-linux-x64-gnu": { | ||
| 1783 | + "version": "4.61.0", | ||
| 1784 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.61.0.tgz", | ||
| 1785 | + "integrity": "sha512-0uMOcf3eZ5K+K4cYHkdxShFMPlPXCOdfDFEFn9dNYAEEd2cVvmOfH7zFgRVoDgmtQ1m9k5q7qfrHzyMAubKYUA==", | ||
| 1786 | + "cpu": [ | ||
| 1787 | + "x64" | ||
| 1788 | + ], | ||
| 1789 | + "dev": true, | ||
| 1790 | + "libc": [ | ||
| 1791 | + "glibc" | ||
| 1792 | + ], | ||
| 1793 | + "license": "MIT", | ||
| 1794 | + "optional": true, | ||
| 1795 | + "os": [ | ||
| 1796 | + "linux" | ||
| 1797 | + ] | ||
| 1798 | + }, | ||
| 1799 | + "node_modules/@rollup/rollup-linux-x64-musl": { | ||
| 1800 | + "version": "4.61.0", | ||
| 1801 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.61.0.tgz", | ||
| 1802 | + "integrity": "sha512-mvFtE4A/t/7hRJ7X8Ozmu8FsIkAUat2nzl12pgU337BRmq87AQUJztwHz2Zv5/tjo9/C95E66CK03SI/ToEDJw==", | ||
| 1803 | + "cpu": [ | ||
| 1804 | + "x64" | ||
| 1805 | + ], | ||
| 1806 | + "dev": true, | ||
| 1807 | + "libc": [ | ||
| 1808 | + "musl" | ||
| 1809 | + ], | ||
| 1810 | + "license": "MIT", | ||
| 1811 | + "optional": true, | ||
| 1812 | + "os": [ | ||
| 1813 | + "linux" | ||
| 1814 | + ] | ||
| 1815 | + }, | ||
| 1816 | + "node_modules/@rollup/rollup-openbsd-x64": { | ||
| 1817 | + "version": "4.61.0", | ||
| 1818 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.61.0.tgz", | ||
| 1819 | + "integrity": "sha512-z9b9+aTxvt8n2rNltMPvyaUfB8NJ+CVyOrGK/MdIKHx7B+lXmZpm/XbRsU7Rpf3fRqJ2uS6mBJiJveCtq8LHDg==", | ||
| 1820 | + "cpu": [ | ||
| 1821 | + "x64" | ||
| 1822 | + ], | ||
| 1823 | + "dev": true, | ||
| 1824 | + "license": "MIT", | ||
| 1825 | + "optional": true, | ||
| 1826 | + "os": [ | ||
| 1827 | + "openbsd" | ||
| 1828 | + ] | ||
| 1829 | + }, | ||
| 1830 | + "node_modules/@rollup/rollup-openharmony-arm64": { | ||
| 1831 | + "version": "4.61.0", | ||
| 1832 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.61.0.tgz", | ||
| 1833 | + "integrity": "sha512-jXaXFqKMehsOc+g8R6oo33RRC6w07G9jDBxAE5eAKX7mOcCbZloYIPNhfG9Wl+P9O9IWHFO4OJgPi1Ml2qkt7w==", | ||
| 1834 | + "cpu": [ | ||
| 1835 | + "arm64" | ||
| 1836 | + ], | ||
| 1837 | + "dev": true, | ||
| 1838 | + "license": "MIT", | ||
| 1839 | + "optional": true, | ||
| 1840 | + "os": [ | ||
| 1841 | + "openharmony" | ||
| 1842 | + ] | ||
| 1843 | + }, | ||
| 1844 | + "node_modules/@rollup/rollup-win32-arm64-msvc": { | ||
| 1845 | + "version": "4.61.0", | ||
| 1846 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.61.0.tgz", | ||
| 1847 | + "integrity": "sha512-OXNWVFocS2IA4+QplhTZZ2a+8hPZR7T8KuozsNmJKK8y7cp83StHvGksfHzPG3wczWTczyWHVQuqeiTUbjiyBg==", | ||
| 1848 | + "cpu": [ | ||
| 1849 | + "arm64" | ||
| 1850 | + ], | ||
| 1851 | + "dev": true, | ||
| 1852 | + "license": "MIT", | ||
| 1853 | + "optional": true, | ||
| 1854 | + "os": [ | ||
| 1855 | + "win32" | ||
| 1856 | + ] | ||
| 1857 | + }, | ||
| 1858 | + "node_modules/@rollup/rollup-win32-ia32-msvc": { | ||
| 1859 | + "version": "4.61.0", | ||
| 1860 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.61.0.tgz", | ||
| 1861 | + "integrity": "sha512-AlAbNtBO637LxSldqV43z0FfXoGfl2TW1DgAg/bs7aQswFbDewz2SJm3BUhiGfbOVtW571xbc9p+REdxhyN/Eg==", | ||
| 1862 | + "cpu": [ | ||
| 1863 | + "ia32" | ||
| 1864 | + ], | ||
| 1865 | + "dev": true, | ||
| 1866 | + "license": "MIT", | ||
| 1867 | + "optional": true, | ||
| 1868 | + "os": [ | ||
| 1869 | + "win32" | ||
| 1870 | + ] | ||
| 1871 | + }, | ||
| 1872 | + "node_modules/@rollup/rollup-win32-x64-gnu": { | ||
| 1873 | + "version": "4.61.0", | ||
| 1874 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.61.0.tgz", | ||
| 1875 | + "integrity": "sha512-QRSrQXyJ1M4tjNXdR0/G/IgV6lzfQQJYBjlWIEYkY2Xs86DRl/iEpQ4blMDjJxSl7n19eDKKXMg0AmuBVYy8pQ==", | ||
| 1876 | + "cpu": [ | ||
| 1877 | + "x64" | ||
| 1878 | + ], | ||
| 1879 | + "dev": true, | ||
| 1880 | + "license": "MIT", | ||
| 1881 | + "optional": true, | ||
| 1882 | + "os": [ | ||
| 1883 | + "win32" | ||
| 1884 | + ] | ||
| 1885 | + }, | ||
| 1886 | + "node_modules/@rollup/rollup-win32-x64-msvc": { | ||
| 1887 | + "version": "4.61.0", | ||
| 1888 | + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.61.0.tgz", | ||
| 1889 | + "integrity": "sha512-tkuFxhvKO/HlGd0VsINF6vHSYH8AF8W0TcNxKDK6JZmrehngFj78pToc8iemtnvwilDjs2G/qSzYFhe9U8q+fw==", | ||
| 1890 | + "cpu": [ | ||
| 1891 | + "x64" | ||
| 1892 | + ], | ||
| 1893 | + "dev": true, | ||
| 1894 | + "license": "MIT", | ||
| 1895 | + "optional": true, | ||
| 1896 | + "os": [ | ||
| 1897 | + "win32" | ||
| 1898 | + ] | ||
| 1899 | + }, | ||
| 1900 | + "node_modules/@standard-schema/spec": { | ||
| 1901 | + "version": "1.1.0", | ||
| 1902 | + "resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz", | ||
| 1903 | + "integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==", | ||
| 1904 | + "license": "MIT" | ||
| 1905 | + }, | ||
| 1906 | + "node_modules/@standard-schema/utils": { | ||
| 1907 | + "version": "0.3.0", | ||
| 1908 | + "resolved": "https://registry.npmjs.org/@standard-schema/utils/-/utils-0.3.0.tgz", | ||
| 1909 | + "integrity": "sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==", | ||
| 1910 | + "license": "MIT" | ||
| 1911 | + }, | ||
| 1912 | + "node_modules/@testing-library/dom": { | ||
| 1913 | + "version": "10.4.1", | ||
| 1914 | + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.4.1.tgz", | ||
| 1915 | + "integrity": "sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==", | ||
| 1916 | + "dev": true, | ||
| 1917 | + "license": "MIT", | ||
| 1918 | + "peer": true, | ||
| 1919 | + "dependencies": { | ||
| 1920 | + "@babel/code-frame": "^7.10.4", | ||
| 1921 | + "@babel/runtime": "^7.12.5", | ||
| 1922 | + "@types/aria-query": "^5.0.1", | ||
| 1923 | + "aria-query": "5.3.0", | ||
| 1924 | + "dom-accessibility-api": "^0.5.9", | ||
| 1925 | + "lz-string": "^1.5.0", | ||
| 1926 | + "picocolors": "1.1.1", | ||
| 1927 | + "pretty-format": "^27.0.2" | ||
| 1928 | + }, | ||
| 1929 | + "engines": { | ||
| 1930 | + "node": ">=18" | ||
| 1931 | + } | ||
| 1932 | + }, | ||
| 1933 | + "node_modules/@testing-library/jest-dom": { | ||
| 1934 | + "version": "6.9.1", | ||
| 1935 | + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-6.9.1.tgz", | ||
| 1936 | + "integrity": "sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA==", | ||
| 1937 | + "dev": true, | ||
| 1938 | + "license": "MIT", | ||
| 1939 | + "dependencies": { | ||
| 1940 | + "@adobe/css-tools": "^4.4.0", | ||
| 1941 | + "aria-query": "^5.0.0", | ||
| 1942 | + "css.escape": "^1.5.1", | ||
| 1943 | + "dom-accessibility-api": "^0.6.3", | ||
| 1944 | + "picocolors": "^1.1.1", | ||
| 1945 | + "redent": "^3.0.0" | ||
| 1946 | + }, | ||
| 1947 | + "engines": { | ||
| 1948 | + "node": ">=14", | ||
| 1949 | + "npm": ">=6", | ||
| 1950 | + "yarn": ">=1" | ||
| 1951 | + } | ||
| 1952 | + }, | ||
| 1953 | + "node_modules/@testing-library/jest-dom/node_modules/dom-accessibility-api": { | ||
| 1954 | + "version": "0.6.3", | ||
| 1955 | + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.6.3.tgz", | ||
| 1956 | + "integrity": "sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==", | ||
| 1957 | + "dev": true, | ||
| 1958 | + "license": "MIT" | ||
| 1959 | + }, | ||
| 1960 | + "node_modules/@testing-library/react": { | ||
| 1961 | + "version": "16.3.2", | ||
| 1962 | + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-16.3.2.tgz", | ||
| 1963 | + "integrity": "sha512-XU5/SytQM+ykqMnAnvB2umaJNIOsLF3PVv//1Ew4CTcpz0/BRyy/af40qqrt7SjKpDdT1saBMc42CUok5gaw+g==", | ||
| 1964 | + "dev": true, | ||
| 1965 | + "license": "MIT", | ||
| 1966 | + "dependencies": { | ||
| 1967 | + "@babel/runtime": "^7.12.5" | ||
| 1968 | + }, | ||
| 1969 | + "engines": { | ||
| 1970 | + "node": ">=18" | ||
| 1971 | + }, | ||
| 1972 | + "peerDependencies": { | ||
| 1973 | + "@testing-library/dom": "^10.0.0", | ||
| 1974 | + "@types/react": "^18.0.0 || ^19.0.0", | ||
| 1975 | + "@types/react-dom": "^18.0.0 || ^19.0.0", | ||
| 1976 | + "react": "^18.0.0 || ^19.0.0", | ||
| 1977 | + "react-dom": "^18.0.0 || ^19.0.0" | ||
| 1978 | + }, | ||
| 1979 | + "peerDependenciesMeta": { | ||
| 1980 | + "@types/react": { | ||
| 1981 | + "optional": true | ||
| 1982 | + }, | ||
| 1983 | + "@types/react-dom": { | ||
| 1984 | + "optional": true | ||
| 1985 | + } | ||
| 1986 | + } | ||
| 1987 | + }, | ||
| 1988 | + "node_modules/@testing-library/user-event": { | ||
| 1989 | + "version": "14.6.1", | ||
| 1990 | + "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-14.6.1.tgz", | ||
| 1991 | + "integrity": "sha512-vq7fv0rnt+QTXgPxr5Hjc210p6YKq2kmdziLgnsZGgLJ9e6VAShx1pACLuRjd/AS/sr7phAR58OIIpf0LlmQNw==", | ||
| 1992 | + "dev": true, | ||
| 1993 | + "license": "MIT", | ||
| 1994 | + "engines": { | ||
| 1995 | + "node": ">=12", | ||
| 1996 | + "npm": ">=6" | ||
| 1997 | + }, | ||
| 1998 | + "peerDependencies": { | ||
| 1999 | + "@testing-library/dom": ">=7.21.4" | ||
| 2000 | + } | ||
| 2001 | + }, | ||
| 2002 | + "node_modules/@types/aria-query": { | ||
| 2003 | + "version": "5.0.4", | ||
| 2004 | + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", | ||
| 2005 | + "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==", | ||
| 2006 | + "dev": true, | ||
| 2007 | + "license": "MIT", | ||
| 2008 | + "peer": true | ||
| 2009 | + }, | ||
| 2010 | + "node_modules/@types/babel__core": { | ||
| 2011 | + "version": "7.20.5", | ||
| 2012 | + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", | ||
| 2013 | + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", | ||
| 2014 | + "dev": true, | ||
| 2015 | + "license": "MIT", | ||
| 2016 | + "dependencies": { | ||
| 2017 | + "@babel/parser": "^7.20.7", | ||
| 2018 | + "@babel/types": "^7.20.7", | ||
| 2019 | + "@types/babel__generator": "*", | ||
| 2020 | + "@types/babel__template": "*", | ||
| 2021 | + "@types/babel__traverse": "*" | ||
| 2022 | + } | ||
| 2023 | + }, | ||
| 2024 | + "node_modules/@types/babel__generator": { | ||
| 2025 | + "version": "7.27.0", | ||
| 2026 | + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", | ||
| 2027 | + "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", | ||
| 2028 | + "dev": true, | ||
| 2029 | + "license": "MIT", | ||
| 2030 | + "dependencies": { | ||
| 2031 | + "@babel/types": "^7.0.0" | ||
| 2032 | + } | ||
| 2033 | + }, | ||
| 2034 | + "node_modules/@types/babel__template": { | ||
| 2035 | + "version": "7.4.4", | ||
| 2036 | + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", | ||
| 2037 | + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", | ||
| 2038 | + "dev": true, | ||
| 2039 | + "license": "MIT", | ||
| 2040 | + "dependencies": { | ||
| 2041 | + "@babel/parser": "^7.1.0", | ||
| 2042 | + "@babel/types": "^7.0.0" | ||
| 2043 | + } | ||
| 2044 | + }, | ||
| 2045 | + "node_modules/@types/babel__traverse": { | ||
| 2046 | + "version": "7.28.0", | ||
| 2047 | + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", | ||
| 2048 | + "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", | ||
| 2049 | + "dev": true, | ||
| 2050 | + "license": "MIT", | ||
| 2051 | + "dependencies": { | ||
| 2052 | + "@babel/types": "^7.28.2" | ||
| 2053 | + } | ||
| 2054 | + }, | ||
| 2055 | + "node_modules/@types/chai": { | ||
| 2056 | + "version": "5.2.3", | ||
| 2057 | + "resolved": "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz", | ||
| 2058 | + "integrity": "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==", | ||
| 2059 | + "dev": true, | ||
| 2060 | + "license": "MIT", | ||
| 2061 | + "dependencies": { | ||
| 2062 | + "@types/deep-eql": "*", | ||
| 2063 | + "assertion-error": "^2.0.1" | ||
| 2064 | + } | ||
| 2065 | + }, | ||
| 2066 | + "node_modules/@types/deep-eql": { | ||
| 2067 | + "version": "4.0.2", | ||
| 2068 | + "resolved": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz", | ||
| 2069 | + "integrity": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==", | ||
| 2070 | + "dev": true, | ||
| 2071 | + "license": "MIT" | ||
| 2072 | + }, | ||
| 2073 | + "node_modules/@types/estree": { | ||
| 2074 | + "version": "1.0.9", | ||
| 2075 | + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz", | ||
| 2076 | + "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==", | ||
| 2077 | + "dev": true, | ||
| 2078 | + "license": "MIT" | ||
| 2079 | + }, | ||
| 2080 | + "node_modules/@types/node": { | ||
| 2081 | + "version": "22.19.19", | ||
| 2082 | + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.19.tgz", | ||
| 2083 | + "integrity": "sha512-dyh/xO2Fh5bYrfWaaqGrRQQGkNdmYw6AmaAUvYeUMNTWQtvb796ikLdmTchRmOlOiIJ1TDXfWgVx1QkUlQ6Hew==", | ||
| 2084 | + "dev": true, | ||
| 2085 | + "license": "MIT", | ||
| 2086 | + "dependencies": { | ||
| 2087 | + "undici-types": "~6.21.0" | ||
| 2088 | + } | ||
| 2089 | + }, | ||
| 2090 | + "node_modules/@types/prop-types": { | ||
| 2091 | + "version": "15.7.15", | ||
| 2092 | + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz", | ||
| 2093 | + "integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==", | ||
| 2094 | + "devOptional": true, | ||
| 2095 | + "license": "MIT" | ||
| 2096 | + }, | ||
| 2097 | + "node_modules/@types/react": { | ||
| 2098 | + "version": "18.3.29", | ||
| 2099 | + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.29.tgz", | ||
| 2100 | + "integrity": "sha512-ch0qJdr2JY0r04NXSprbK6TXOgnaJ1Tz23fm5W+z0/CBah6BSBc3n96h7K9GOtwh0HrilNWHIBzE1Ko4Dcw/Wg==", | ||
| 2101 | + "devOptional": true, | ||
| 2102 | + "license": "MIT", | ||
| 2103 | + "dependencies": { | ||
| 2104 | + "@types/prop-types": "*", | ||
| 2105 | + "csstype": "^3.2.2" | ||
| 2106 | + } | ||
| 2107 | + }, | ||
| 2108 | + "node_modules/@types/react-dom": { | ||
| 2109 | + "version": "18.3.7", | ||
| 2110 | + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.7.tgz", | ||
| 2111 | + "integrity": "sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==", | ||
| 2112 | + "dev": true, | ||
| 2113 | + "license": "MIT", | ||
| 2114 | + "peerDependencies": { | ||
| 2115 | + "@types/react": "^18.0.0" | ||
| 2116 | + } | ||
| 2117 | + }, | ||
| 2118 | + "node_modules/@types/use-sync-external-store": { | ||
| 2119 | + "version": "0.0.6", | ||
| 2120 | + "resolved": "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.6.tgz", | ||
| 2121 | + "integrity": "sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==", | ||
| 2122 | + "license": "MIT" | ||
| 2123 | + }, | ||
| 2124 | + "node_modules/@typescript-eslint/eslint-plugin": { | ||
| 2125 | + "version": "8.60.0", | ||
| 2126 | + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.60.0.tgz", | ||
| 2127 | + "integrity": "sha512-QYb/sa74/s7OKMbACMjrYnGspj9Hs5YI5aaffSL65UfeBUzVzBJfVo3oWSpbzPurvm7yaCCo2Lk7lVj610HqKw==", | ||
| 2128 | + "dev": true, | ||
| 2129 | + "license": "MIT", | ||
| 2130 | + "dependencies": { | ||
| 2131 | + "@eslint-community/regexpp": "^4.12.2", | ||
| 2132 | + "@typescript-eslint/scope-manager": "8.60.0", | ||
| 2133 | + "@typescript-eslint/type-utils": "8.60.0", | ||
| 2134 | + "@typescript-eslint/utils": "8.60.0", | ||
| 2135 | + "@typescript-eslint/visitor-keys": "8.60.0", | ||
| 2136 | + "ignore": "^7.0.5", | ||
| 2137 | + "natural-compare": "^1.4.0", | ||
| 2138 | + "ts-api-utils": "^2.5.0" | ||
| 2139 | + }, | ||
| 2140 | + "engines": { | ||
| 2141 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 2142 | + }, | ||
| 2143 | + "funding": { | ||
| 2144 | + "type": "opencollective", | ||
| 2145 | + "url": "https://opencollective.com/typescript-eslint" | ||
| 2146 | + }, | ||
| 2147 | + "peerDependencies": { | ||
| 2148 | + "@typescript-eslint/parser": "^8.60.0", | ||
| 2149 | + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", | ||
| 2150 | + "typescript": ">=4.8.4 <6.1.0" | ||
| 2151 | + } | ||
| 2152 | + }, | ||
| 2153 | + "node_modules/@typescript-eslint/parser": { | ||
| 2154 | + "version": "8.60.0", | ||
| 2155 | + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.60.0.tgz", | ||
| 2156 | + "integrity": "sha512-fcqpj/MyK4sxDPcbe7STNPbpQL4RLZOPWuaTmwZYuc+hJKzRf58yRxfhqGpc6PIq9ZyfSBpfHgmUHmHs0KwHwg==", | ||
| 2157 | + "dev": true, | ||
| 2158 | + "license": "MIT", | ||
| 2159 | + "dependencies": { | ||
| 2160 | + "@typescript-eslint/scope-manager": "8.60.0", | ||
| 2161 | + "@typescript-eslint/types": "8.60.0", | ||
| 2162 | + "@typescript-eslint/typescript-estree": "8.60.0", | ||
| 2163 | + "@typescript-eslint/visitor-keys": "8.60.0", | ||
| 2164 | + "debug": "^4.4.3" | ||
| 2165 | + }, | ||
| 2166 | + "engines": { | ||
| 2167 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 2168 | + }, | ||
| 2169 | + "funding": { | ||
| 2170 | + "type": "opencollective", | ||
| 2171 | + "url": "https://opencollective.com/typescript-eslint" | ||
| 2172 | + }, | ||
| 2173 | + "peerDependencies": { | ||
| 2174 | + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", | ||
| 2175 | + "typescript": ">=4.8.4 <6.1.0" | ||
| 2176 | + } | ||
| 2177 | + }, | ||
| 2178 | + "node_modules/@typescript-eslint/project-service": { | ||
| 2179 | + "version": "8.60.0", | ||
| 2180 | + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.60.0.tgz", | ||
| 2181 | + "integrity": "sha512-aZu74NNKJeUWqCjDddzdiKaS82dgYgV/vmf+Ui3ZdZejmgfXR/q+pRumgobnQ2cCJTgGTWp4ypiwsuofFubavg==", | ||
| 2182 | + "dev": true, | ||
| 2183 | + "license": "MIT", | ||
| 2184 | + "dependencies": { | ||
| 2185 | + "@typescript-eslint/tsconfig-utils": "^8.60.0", | ||
| 2186 | + "@typescript-eslint/types": "^8.60.0", | ||
| 2187 | + "debug": "^4.4.3" | ||
| 2188 | + }, | ||
| 2189 | + "engines": { | ||
| 2190 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 2191 | + }, | ||
| 2192 | + "funding": { | ||
| 2193 | + "type": "opencollective", | ||
| 2194 | + "url": "https://opencollective.com/typescript-eslint" | ||
| 2195 | + }, | ||
| 2196 | + "peerDependencies": { | ||
| 2197 | + "typescript": ">=4.8.4 <6.1.0" | ||
| 2198 | + } | ||
| 2199 | + }, | ||
| 2200 | + "node_modules/@typescript-eslint/scope-manager": { | ||
| 2201 | + "version": "8.60.0", | ||
| 2202 | + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.60.0.tgz", | ||
| 2203 | + "integrity": "sha512-pFzqhllJMs+jghLQWzV00ds39xLzuyqPSev5pd8f4Ir0rtKR3ZLUB4/4dhjOFighWb9larvtfJvqL+4yKDI3Xw==", | ||
| 2204 | + "dev": true, | ||
| 2205 | + "license": "MIT", | ||
| 2206 | + "dependencies": { | ||
| 2207 | + "@typescript-eslint/types": "8.60.0", | ||
| 2208 | + "@typescript-eslint/visitor-keys": "8.60.0" | ||
| 2209 | + }, | ||
| 2210 | + "engines": { | ||
| 2211 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 2212 | + }, | ||
| 2213 | + "funding": { | ||
| 2214 | + "type": "opencollective", | ||
| 2215 | + "url": "https://opencollective.com/typescript-eslint" | ||
| 2216 | + } | ||
| 2217 | + }, | ||
| 2218 | + "node_modules/@typescript-eslint/tsconfig-utils": { | ||
| 2219 | + "version": "8.60.0", | ||
| 2220 | + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.60.0.tgz", | ||
| 2221 | + "integrity": "sha512-BZPR3RGYlAXnly6ymAxfkVn5rCbZzQNou0rxv3GfWZ8cTQp+hhVd73khbGLAd8k1TlAPLISH337M+tAgAnaJDQ==", | ||
| 2222 | + "dev": true, | ||
| 2223 | + "license": "MIT", | ||
| 2224 | + "engines": { | ||
| 2225 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 2226 | + }, | ||
| 2227 | + "funding": { | ||
| 2228 | + "type": "opencollective", | ||
| 2229 | + "url": "https://opencollective.com/typescript-eslint" | ||
| 2230 | + }, | ||
| 2231 | + "peerDependencies": { | ||
| 2232 | + "typescript": ">=4.8.4 <6.1.0" | ||
| 2233 | + } | ||
| 2234 | + }, | ||
| 2235 | + "node_modules/@typescript-eslint/type-utils": { | ||
| 2236 | + "version": "8.60.0", | ||
| 2237 | + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.60.0.tgz", | ||
| 2238 | + "integrity": "sha512-SX46wEUtitCpq7AN38HkUU/+zvUpdKf7ephtWAFgckH8O7PQIyL5gvrhQgBLuEYgLfuKWOVvWVskMbuFHAz5xg==", | ||
| 2239 | + "dev": true, | ||
| 2240 | + "license": "MIT", | ||
| 2241 | + "dependencies": { | ||
| 2242 | + "@typescript-eslint/types": "8.60.0", | ||
| 2243 | + "@typescript-eslint/typescript-estree": "8.60.0", | ||
| 2244 | + "@typescript-eslint/utils": "8.60.0", | ||
| 2245 | + "debug": "^4.4.3", | ||
| 2246 | + "ts-api-utils": "^2.5.0" | ||
| 2247 | + }, | ||
| 2248 | + "engines": { | ||
| 2249 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 2250 | + }, | ||
| 2251 | + "funding": { | ||
| 2252 | + "type": "opencollective", | ||
| 2253 | + "url": "https://opencollective.com/typescript-eslint" | ||
| 2254 | + }, | ||
| 2255 | + "peerDependencies": { | ||
| 2256 | + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", | ||
| 2257 | + "typescript": ">=4.8.4 <6.1.0" | ||
| 2258 | + } | ||
| 2259 | + }, | ||
| 2260 | + "node_modules/@typescript-eslint/types": { | ||
| 2261 | + "version": "8.60.0", | ||
| 2262 | + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.60.0.tgz", | ||
| 2263 | + "integrity": "sha512-AsE7x2XaAK+CVbeih0Fvbn+r1qHxtpLDJ3XUuFcIinT318T90yHMJC+Zgv+jUuDjQQd06HKwxnDu6sz1IcTilA==", | ||
| 2264 | + "dev": true, | ||
| 2265 | + "license": "MIT", | ||
| 2266 | + "engines": { | ||
| 2267 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 2268 | + }, | ||
| 2269 | + "funding": { | ||
| 2270 | + "type": "opencollective", | ||
| 2271 | + "url": "https://opencollective.com/typescript-eslint" | ||
| 2272 | + } | ||
| 2273 | + }, | ||
| 2274 | + "node_modules/@typescript-eslint/typescript-estree": { | ||
| 2275 | + "version": "8.60.0", | ||
| 2276 | + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.60.0.tgz", | ||
| 2277 | + "integrity": "sha512-3AcZNBGMClm6CXDyo8kYvVGT/sx29sS0oBsIb9oZI2gunA4Vm2M3YHzRLPvsUBBsl+yB5FPtltq7gGH0iTlp9g==", | ||
| 2278 | + "dev": true, | ||
| 2279 | + "license": "MIT", | ||
| 2280 | + "dependencies": { | ||
| 2281 | + "@typescript-eslint/project-service": "8.60.0", | ||
| 2282 | + "@typescript-eslint/tsconfig-utils": "8.60.0", | ||
| 2283 | + "@typescript-eslint/types": "8.60.0", | ||
| 2284 | + "@typescript-eslint/visitor-keys": "8.60.0", | ||
| 2285 | + "debug": "^4.4.3", | ||
| 2286 | + "minimatch": "^10.2.2", | ||
| 2287 | + "semver": "^7.7.3", | ||
| 2288 | + "tinyglobby": "^0.2.15", | ||
| 2289 | + "ts-api-utils": "^2.5.0" | ||
| 2290 | + }, | ||
| 2291 | + "engines": { | ||
| 2292 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 2293 | + }, | ||
| 2294 | + "funding": { | ||
| 2295 | + "type": "opencollective", | ||
| 2296 | + "url": "https://opencollective.com/typescript-eslint" | ||
| 2297 | + }, | ||
| 2298 | + "peerDependencies": { | ||
| 2299 | + "typescript": ">=4.8.4 <6.1.0" | ||
| 2300 | + } | ||
| 2301 | + }, | ||
| 2302 | + "node_modules/@typescript-eslint/utils": { | ||
| 2303 | + "version": "8.60.0", | ||
| 2304 | + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.60.0.tgz", | ||
| 2305 | + "integrity": "sha512-HtXuPfrHTyBDkameWpl+vJb1Uevu2tznAyahM1Oc4AENidCLTPiZDWIo4GfcxNdC/RcfGcadzzkqbRG87dUrQA==", | ||
| 2306 | + "dev": true, | ||
| 2307 | + "license": "MIT", | ||
| 2308 | + "dependencies": { | ||
| 2309 | + "@eslint-community/eslint-utils": "^4.9.1", | ||
| 2310 | + "@typescript-eslint/scope-manager": "8.60.0", | ||
| 2311 | + "@typescript-eslint/types": "8.60.0", | ||
| 2312 | + "@typescript-eslint/typescript-estree": "8.60.0" | ||
| 2313 | + }, | ||
| 2314 | + "engines": { | ||
| 2315 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 2316 | + }, | ||
| 2317 | + "funding": { | ||
| 2318 | + "type": "opencollective", | ||
| 2319 | + "url": "https://opencollective.com/typescript-eslint" | ||
| 2320 | + }, | ||
| 2321 | + "peerDependencies": { | ||
| 2322 | + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", | ||
| 2323 | + "typescript": ">=4.8.4 <6.1.0" | ||
| 2324 | + } | ||
| 2325 | + }, | ||
| 2326 | + "node_modules/@typescript-eslint/visitor-keys": { | ||
| 2327 | + "version": "8.60.0", | ||
| 2328 | + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.60.0.tgz", | ||
| 2329 | + "integrity": "sha512-9WI52t8ZGLVGrPMBet25yAftqY/n95+zmoUUtJBBQTKDSKUu7OsPTroT2op7U9JatkoRccL0YkWDNMFfC4Sjxg==", | ||
| 2330 | + "dev": true, | ||
| 2331 | + "license": "MIT", | ||
| 2332 | + "dependencies": { | ||
| 2333 | + "@typescript-eslint/types": "8.60.0", | ||
| 2334 | + "eslint-visitor-keys": "^5.0.0" | ||
| 2335 | + }, | ||
| 2336 | + "engines": { | ||
| 2337 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 2338 | + }, | ||
| 2339 | + "funding": { | ||
| 2340 | + "type": "opencollective", | ||
| 2341 | + "url": "https://opencollective.com/typescript-eslint" | ||
| 2342 | + } | ||
| 2343 | + }, | ||
| 2344 | + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { | ||
| 2345 | + "version": "5.0.1", | ||
| 2346 | + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz", | ||
| 2347 | + "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==", | ||
| 2348 | + "dev": true, | ||
| 2349 | + "license": "Apache-2.0", | ||
| 2350 | + "engines": { | ||
| 2351 | + "node": "^20.19.0 || ^22.13.0 || >=24" | ||
| 2352 | + }, | ||
| 2353 | + "funding": { | ||
| 2354 | + "url": "https://opencollective.com/eslint" | ||
| 2355 | + } | ||
| 2356 | + }, | ||
| 2357 | + "node_modules/@ungap/structured-clone": { | ||
| 2358 | + "version": "1.3.1", | ||
| 2359 | + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.1.tgz", | ||
| 2360 | + "integrity": "sha512-mUFwbeTqrVgDQxFveS+df2yfap6iuP20NAKAsBt5jDEoOTDew+zwLAOilHCeQJOVSvmgCX4ogqIrA0mnyr08yQ==", | ||
| 2361 | + "dev": true, | ||
| 2362 | + "license": "ISC" | ||
| 2363 | + }, | ||
| 2364 | + "node_modules/@vitejs/plugin-react": { | ||
| 2365 | + "version": "4.7.0", | ||
| 2366 | + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz", | ||
| 2367 | + "integrity": "sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==", | ||
| 2368 | + "dev": true, | ||
| 2369 | + "license": "MIT", | ||
| 2370 | + "dependencies": { | ||
| 2371 | + "@babel/core": "^7.28.0", | ||
| 2372 | + "@babel/plugin-transform-react-jsx-self": "^7.27.1", | ||
| 2373 | + "@babel/plugin-transform-react-jsx-source": "^7.27.1", | ||
| 2374 | + "@rolldown/pluginutils": "1.0.0-beta.27", | ||
| 2375 | + "@types/babel__core": "^7.20.5", | ||
| 2376 | + "react-refresh": "^0.17.0" | ||
| 2377 | + }, | ||
| 2378 | + "engines": { | ||
| 2379 | + "node": "^14.18.0 || >=16.0.0" | ||
| 2380 | + }, | ||
| 2381 | + "peerDependencies": { | ||
| 2382 | + "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0" | ||
| 2383 | + } | ||
| 2384 | + }, | ||
| 2385 | + "node_modules/@vitest/expect": { | ||
| 2386 | + "version": "3.2.4", | ||
| 2387 | + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-3.2.4.tgz", | ||
| 2388 | + "integrity": "sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==", | ||
| 2389 | + "dev": true, | ||
| 2390 | + "license": "MIT", | ||
| 2391 | + "dependencies": { | ||
| 2392 | + "@types/chai": "^5.2.2", | ||
| 2393 | + "@vitest/spy": "3.2.4", | ||
| 2394 | + "@vitest/utils": "3.2.4", | ||
| 2395 | + "chai": "^5.2.0", | ||
| 2396 | + "tinyrainbow": "^2.0.0" | ||
| 2397 | + }, | ||
| 2398 | + "funding": { | ||
| 2399 | + "url": "https://opencollective.com/vitest" | ||
| 2400 | + } | ||
| 2401 | + }, | ||
| 2402 | + "node_modules/@vitest/mocker": { | ||
| 2403 | + "version": "3.2.4", | ||
| 2404 | + "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-3.2.4.tgz", | ||
| 2405 | + "integrity": "sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==", | ||
| 2406 | + "dev": true, | ||
| 2407 | + "license": "MIT", | ||
| 2408 | + "dependencies": { | ||
| 2409 | + "@vitest/spy": "3.2.4", | ||
| 2410 | + "estree-walker": "^3.0.3", | ||
| 2411 | + "magic-string": "^0.30.17" | ||
| 2412 | + }, | ||
| 2413 | + "funding": { | ||
| 2414 | + "url": "https://opencollective.com/vitest" | ||
| 2415 | + }, | ||
| 2416 | + "peerDependencies": { | ||
| 2417 | + "msw": "^2.4.9", | ||
| 2418 | + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0" | ||
| 2419 | + }, | ||
| 2420 | + "peerDependenciesMeta": { | ||
| 2421 | + "msw": { | ||
| 2422 | + "optional": true | ||
| 2423 | + }, | ||
| 2424 | + "vite": { | ||
| 2425 | + "optional": true | ||
| 2426 | + } | ||
| 2427 | + } | ||
| 2428 | + }, | ||
| 2429 | + "node_modules/@vitest/pretty-format": { | ||
| 2430 | + "version": "3.2.4", | ||
| 2431 | + "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-3.2.4.tgz", | ||
| 2432 | + "integrity": "sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==", | ||
| 2433 | + "dev": true, | ||
| 2434 | + "license": "MIT", | ||
| 2435 | + "dependencies": { | ||
| 2436 | + "tinyrainbow": "^2.0.0" | ||
| 2437 | + }, | ||
| 2438 | + "funding": { | ||
| 2439 | + "url": "https://opencollective.com/vitest" | ||
| 2440 | + } | ||
| 2441 | + }, | ||
| 2442 | + "node_modules/@vitest/runner": { | ||
| 2443 | + "version": "3.2.4", | ||
| 2444 | + "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-3.2.4.tgz", | ||
| 2445 | + "integrity": "sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==", | ||
| 2446 | + "dev": true, | ||
| 2447 | + "license": "MIT", | ||
| 2448 | + "dependencies": { | ||
| 2449 | + "@vitest/utils": "3.2.4", | ||
| 2450 | + "pathe": "^2.0.3", | ||
| 2451 | + "strip-literal": "^3.0.0" | ||
| 2452 | + }, | ||
| 2453 | + "funding": { | ||
| 2454 | + "url": "https://opencollective.com/vitest" | ||
| 2455 | + } | ||
| 2456 | + }, | ||
| 2457 | + "node_modules/@vitest/snapshot": { | ||
| 2458 | + "version": "3.2.4", | ||
| 2459 | + "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-3.2.4.tgz", | ||
| 2460 | + "integrity": "sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==", | ||
| 2461 | + "dev": true, | ||
| 2462 | + "license": "MIT", | ||
| 2463 | + "dependencies": { | ||
| 2464 | + "@vitest/pretty-format": "3.2.4", | ||
| 2465 | + "magic-string": "^0.30.17", | ||
| 2466 | + "pathe": "^2.0.3" | ||
| 2467 | + }, | ||
| 2468 | + "funding": { | ||
| 2469 | + "url": "https://opencollective.com/vitest" | ||
| 2470 | + } | ||
| 2471 | + }, | ||
| 2472 | + "node_modules/@vitest/spy": { | ||
| 2473 | + "version": "3.2.4", | ||
| 2474 | + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-3.2.4.tgz", | ||
| 2475 | + "integrity": "sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==", | ||
| 2476 | + "dev": true, | ||
| 2477 | + "license": "MIT", | ||
| 2478 | + "dependencies": { | ||
| 2479 | + "tinyspy": "^4.0.3" | ||
| 2480 | + }, | ||
| 2481 | + "funding": { | ||
| 2482 | + "url": "https://opencollective.com/vitest" | ||
| 2483 | + } | ||
| 2484 | + }, | ||
| 2485 | + "node_modules/@vitest/utils": { | ||
| 2486 | + "version": "3.2.4", | ||
| 2487 | + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-3.2.4.tgz", | ||
| 2488 | + "integrity": "sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==", | ||
| 2489 | + "dev": true, | ||
| 2490 | + "license": "MIT", | ||
| 2491 | + "dependencies": { | ||
| 2492 | + "@vitest/pretty-format": "3.2.4", | ||
| 2493 | + "loupe": "^3.1.4", | ||
| 2494 | + "tinyrainbow": "^2.0.0" | ||
| 2495 | + }, | ||
| 2496 | + "funding": { | ||
| 2497 | + "url": "https://opencollective.com/vitest" | ||
| 2498 | + } | ||
| 2499 | + }, | ||
| 2500 | + "node_modules/acorn": { | ||
| 2501 | + "version": "8.16.0", | ||
| 2502 | + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz", | ||
| 2503 | + "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", | ||
| 2504 | + "dev": true, | ||
| 2505 | + "license": "MIT", | ||
| 2506 | + "bin": { | ||
| 2507 | + "acorn": "bin/acorn" | ||
| 2508 | + }, | ||
| 2509 | + "engines": { | ||
| 2510 | + "node": ">=0.4.0" | ||
| 2511 | + } | ||
| 2512 | + }, | ||
| 2513 | + "node_modules/acorn-jsx": { | ||
| 2514 | + "version": "5.3.2", | ||
| 2515 | + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", | ||
| 2516 | + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", | ||
| 2517 | + "dev": true, | ||
| 2518 | + "license": "MIT", | ||
| 2519 | + "peerDependencies": { | ||
| 2520 | + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" | ||
| 2521 | + } | ||
| 2522 | + }, | ||
| 2523 | + "node_modules/agent-base": { | ||
| 2524 | + "version": "6.0.2", | ||
| 2525 | + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", | ||
| 2526 | + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", | ||
| 2527 | + "license": "MIT", | ||
| 2528 | + "dependencies": { | ||
| 2529 | + "debug": "4" | ||
| 2530 | + }, | ||
| 2531 | + "engines": { | ||
| 2532 | + "node": ">= 6.0.0" | ||
| 2533 | + } | ||
| 2534 | + }, | ||
| 2535 | + "node_modules/ajv": { | ||
| 2536 | + "version": "6.15.0", | ||
| 2537 | + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz", | ||
| 2538 | + "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==", | ||
| 2539 | + "dev": true, | ||
| 2540 | + "license": "MIT", | ||
| 2541 | + "dependencies": { | ||
| 2542 | + "fast-deep-equal": "^3.1.1", | ||
| 2543 | + "fast-json-stable-stringify": "^2.0.0", | ||
| 2544 | + "json-schema-traverse": "^0.4.1", | ||
| 2545 | + "uri-js": "^4.2.2" | ||
| 2546 | + }, | ||
| 2547 | + "funding": { | ||
| 2548 | + "type": "github", | ||
| 2549 | + "url": "https://github.com/sponsors/epoberezkin" | ||
| 2550 | + } | ||
| 2551 | + }, | ||
| 2552 | + "node_modules/ansi-regex": { | ||
| 2553 | + "version": "5.0.1", | ||
| 2554 | + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", | ||
| 2555 | + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", | ||
| 2556 | + "dev": true, | ||
| 2557 | + "license": "MIT", | ||
| 2558 | + "engines": { | ||
| 2559 | + "node": ">=8" | ||
| 2560 | + } | ||
| 2561 | + }, | ||
| 2562 | + "node_modules/ansi-styles": { | ||
| 2563 | + "version": "4.3.0", | ||
| 2564 | + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", | ||
| 2565 | + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", | ||
| 2566 | + "dev": true, | ||
| 2567 | + "license": "MIT", | ||
| 2568 | + "dependencies": { | ||
| 2569 | + "color-convert": "^2.0.1" | ||
| 2570 | + }, | ||
| 2571 | + "engines": { | ||
| 2572 | + "node": ">=8" | ||
| 2573 | + }, | ||
| 2574 | + "funding": { | ||
| 2575 | + "url": "https://github.com/chalk/ansi-styles?sponsor=1" | ||
| 2576 | + } | ||
| 2577 | + }, | ||
| 2578 | + "node_modules/antd": { | ||
| 2579 | + "version": "5.29.3", | ||
| 2580 | + "resolved": "https://registry.npmjs.org/antd/-/antd-5.29.3.tgz", | ||
| 2581 | + "integrity": "sha512-3DdbGCa9tWAJGcCJ6rzR8EJFsv2CtyEbkVabZE14pfgUHfCicWCj0/QzQVLDYg8CPfQk9BH7fHCoTXHTy7MP/A==", | ||
| 2582 | + "license": "MIT", | ||
| 2583 | + "dependencies": { | ||
| 2584 | + "@ant-design/colors": "^7.2.1", | ||
| 2585 | + "@ant-design/cssinjs": "^1.23.0", | ||
| 2586 | + "@ant-design/cssinjs-utils": "^1.1.3", | ||
| 2587 | + "@ant-design/fast-color": "^2.0.6", | ||
| 2588 | + "@ant-design/icons": "^5.6.1", | ||
| 2589 | + "@ant-design/react-slick": "~1.1.2", | ||
| 2590 | + "@babel/runtime": "^7.26.0", | ||
| 2591 | + "@rc-component/color-picker": "~2.0.1", | ||
| 2592 | + "@rc-component/mutate-observer": "^1.1.0", | ||
| 2593 | + "@rc-component/qrcode": "~1.1.0", | ||
| 2594 | + "@rc-component/tour": "~1.15.1", | ||
| 2595 | + "@rc-component/trigger": "^2.3.0", | ||
| 2596 | + "classnames": "^2.5.1", | ||
| 2597 | + "copy-to-clipboard": "^3.3.3", | ||
| 2598 | + "dayjs": "^1.11.11", | ||
| 2599 | + "rc-cascader": "~3.34.0", | ||
| 2600 | + "rc-checkbox": "~3.5.0", | ||
| 2601 | + "rc-collapse": "~3.9.0", | ||
| 2602 | + "rc-dialog": "~9.6.0", | ||
| 2603 | + "rc-drawer": "~7.3.0", | ||
| 2604 | + "rc-dropdown": "~4.2.1", | ||
| 2605 | + "rc-field-form": "~2.7.1", | ||
| 2606 | + "rc-image": "~7.12.0", | ||
| 2607 | + "rc-input": "~1.8.0", | ||
| 2608 | + "rc-input-number": "~9.5.0", | ||
| 2609 | + "rc-mentions": "~2.20.0", | ||
| 2610 | + "rc-menu": "~9.16.1", | ||
| 2611 | + "rc-motion": "^2.9.5", | ||
| 2612 | + "rc-notification": "~5.6.4", | ||
| 2613 | + "rc-pagination": "~5.1.0", | ||
| 2614 | + "rc-picker": "~4.11.3", | ||
| 2615 | + "rc-progress": "~4.0.0", | ||
| 2616 | + "rc-rate": "~2.13.1", | ||
| 2617 | + "rc-resize-observer": "^1.4.3", | ||
| 2618 | + "rc-segmented": "~2.7.0", | ||
| 2619 | + "rc-select": "~14.16.8", | ||
| 2620 | + "rc-slider": "~11.1.9", | ||
| 2621 | + "rc-steps": "~6.0.1", | ||
| 2622 | + "rc-switch": "~4.1.0", | ||
| 2623 | + "rc-table": "~7.54.0", | ||
| 2624 | + "rc-tabs": "~15.7.0", | ||
| 2625 | + "rc-textarea": "~1.10.2", | ||
| 2626 | + "rc-tooltip": "~6.4.0", | ||
| 2627 | + "rc-tree": "~5.13.1", | ||
| 2628 | + "rc-tree-select": "~5.27.0", | ||
| 2629 | + "rc-upload": "~4.11.0", | ||
| 2630 | + "rc-util": "^5.44.4", | ||
| 2631 | + "scroll-into-view-if-needed": "^3.1.0", | ||
| 2632 | + "throttle-debounce": "^5.0.2" | ||
| 2633 | + }, | ||
| 2634 | + "funding": { | ||
| 2635 | + "type": "opencollective", | ||
| 2636 | + "url": "https://opencollective.com/ant-design" | ||
| 2637 | + }, | ||
| 2638 | + "peerDependencies": { | ||
| 2639 | + "react": ">=16.9.0", | ||
| 2640 | + "react-dom": ">=16.9.0" | ||
| 2641 | + } | ||
| 2642 | + }, | ||
| 2643 | + "node_modules/argparse": { | ||
| 2644 | + "version": "2.0.1", | ||
| 2645 | + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", | ||
| 2646 | + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", | ||
| 2647 | + "dev": true, | ||
| 2648 | + "license": "Python-2.0" | ||
| 2649 | + }, | ||
| 2650 | + "node_modules/aria-query": { | ||
| 2651 | + "version": "5.3.0", | ||
| 2652 | + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", | ||
| 2653 | + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", | ||
| 2654 | + "dev": true, | ||
| 2655 | + "license": "Apache-2.0", | ||
| 2656 | + "dependencies": { | ||
| 2657 | + "dequal": "^2.0.3" | ||
| 2658 | + } | ||
| 2659 | + }, | ||
| 2660 | + "node_modules/assertion-error": { | ||
| 2661 | + "version": "2.0.1", | ||
| 2662 | + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", | ||
| 2663 | + "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", | ||
| 2664 | + "dev": true, | ||
| 2665 | + "license": "MIT", | ||
| 2666 | + "engines": { | ||
| 2667 | + "node": ">=12" | ||
| 2668 | + } | ||
| 2669 | + }, | ||
| 2670 | + "node_modules/asynckit": { | ||
| 2671 | + "version": "0.4.0", | ||
| 2672 | + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", | ||
| 2673 | + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", | ||
| 2674 | + "license": "MIT" | ||
| 2675 | + }, | ||
| 2676 | + "node_modules/axios": { | ||
| 2677 | + "version": "1.16.1", | ||
| 2678 | + "resolved": "https://registry.npmjs.org/axios/-/axios-1.16.1.tgz", | ||
| 2679 | + "integrity": "sha512-caYkukvroVPO8KrzuJEb50Hm07KwfBZPEC3VeFHTsqWHvKTsy54hjJz9BS/cdaypROE2rH6xvm9mHX4fgWkr3A==", | ||
| 2680 | + "license": "MIT", | ||
| 2681 | + "dependencies": { | ||
| 2682 | + "follow-redirects": "^1.16.0", | ||
| 2683 | + "form-data": "^4.0.5", | ||
| 2684 | + "https-proxy-agent": "^5.0.1", | ||
| 2685 | + "proxy-from-env": "^2.1.0" | ||
| 2686 | + } | ||
| 2687 | + }, | ||
| 2688 | + "node_modules/balanced-match": { | ||
| 2689 | + "version": "4.0.4", | ||
| 2690 | + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", | ||
| 2691 | + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", | ||
| 2692 | + "dev": true, | ||
| 2693 | + "license": "MIT", | ||
| 2694 | + "engines": { | ||
| 2695 | + "node": "18 || 20 || >=22" | ||
| 2696 | + } | ||
| 2697 | + }, | ||
| 2698 | + "node_modules/baseline-browser-mapping": { | ||
| 2699 | + "version": "2.10.33", | ||
| 2700 | + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.33.tgz", | ||
| 2701 | + "integrity": "sha512-bA6+tcSLpz2tIEdDXZPpPTIuxBcC4+w6SieaYyfigIa4h8GlFxbA17v22Vx3JUtuZQj9SgOsnbK+aTBzyDyEuw==", | ||
| 2702 | + "dev": true, | ||
| 2703 | + "license": "Apache-2.0", | ||
| 2704 | + "bin": { | ||
| 2705 | + "baseline-browser-mapping": "dist/cli.cjs" | ||
| 2706 | + }, | ||
| 2707 | + "engines": { | ||
| 2708 | + "node": ">=6.0.0" | ||
| 2709 | + } | ||
| 2710 | + }, | ||
| 2711 | + "node_modules/brace-expansion": { | ||
| 2712 | + "version": "5.0.6", | ||
| 2713 | + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz", | ||
| 2714 | + "integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==", | ||
| 2715 | + "dev": true, | ||
| 2716 | + "license": "MIT", | ||
| 2717 | + "dependencies": { | ||
| 2718 | + "balanced-match": "^4.0.2" | ||
| 2719 | + }, | ||
| 2720 | + "engines": { | ||
| 2721 | + "node": "18 || 20 || >=22" | ||
| 2722 | + } | ||
| 2723 | + }, | ||
| 2724 | + "node_modules/browserslist": { | ||
| 2725 | + "version": "4.28.2", | ||
| 2726 | + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz", | ||
| 2727 | + "integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==", | ||
| 2728 | + "dev": true, | ||
| 2729 | + "funding": [ | ||
| 2730 | + { | ||
| 2731 | + "type": "opencollective", | ||
| 2732 | + "url": "https://opencollective.com/browserslist" | ||
| 2733 | + }, | ||
| 2734 | + { | ||
| 2735 | + "type": "tidelift", | ||
| 2736 | + "url": "https://tidelift.com/funding/github/npm/browserslist" | ||
| 2737 | + }, | ||
| 2738 | + { | ||
| 2739 | + "type": "github", | ||
| 2740 | + "url": "https://github.com/sponsors/ai" | ||
| 2741 | + } | ||
| 2742 | + ], | ||
| 2743 | + "license": "MIT", | ||
| 2744 | + "dependencies": { | ||
| 2745 | + "baseline-browser-mapping": "^2.10.12", | ||
| 2746 | + "caniuse-lite": "^1.0.30001782", | ||
| 2747 | + "electron-to-chromium": "^1.5.328", | ||
| 2748 | + "node-releases": "^2.0.36", | ||
| 2749 | + "update-browserslist-db": "^1.2.3" | ||
| 2750 | + }, | ||
| 2751 | + "bin": { | ||
| 2752 | + "browserslist": "cli.js" | ||
| 2753 | + }, | ||
| 2754 | + "engines": { | ||
| 2755 | + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" | ||
| 2756 | + } | ||
| 2757 | + }, | ||
| 2758 | + "node_modules/cac": { | ||
| 2759 | + "version": "6.7.14", | ||
| 2760 | + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", | ||
| 2761 | + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", | ||
| 2762 | + "dev": true, | ||
| 2763 | + "license": "MIT", | ||
| 2764 | + "engines": { | ||
| 2765 | + "node": ">=8" | ||
| 2766 | + } | ||
| 2767 | + }, | ||
| 2768 | + "node_modules/call-bind-apply-helpers": { | ||
| 2769 | + "version": "1.0.2", | ||
| 2770 | + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", | ||
| 2771 | + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", | ||
| 2772 | + "license": "MIT", | ||
| 2773 | + "dependencies": { | ||
| 2774 | + "es-errors": "^1.3.0", | ||
| 2775 | + "function-bind": "^1.1.2" | ||
| 2776 | + }, | ||
| 2777 | + "engines": { | ||
| 2778 | + "node": ">= 0.4" | ||
| 2779 | + } | ||
| 2780 | + }, | ||
| 2781 | + "node_modules/callsites": { | ||
| 2782 | + "version": "3.1.0", | ||
| 2783 | + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", | ||
| 2784 | + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", | ||
| 2785 | + "dev": true, | ||
| 2786 | + "license": "MIT", | ||
| 2787 | + "engines": { | ||
| 2788 | + "node": ">=6" | ||
| 2789 | + } | ||
| 2790 | + }, | ||
| 2791 | + "node_modules/caniuse-lite": { | ||
| 2792 | + "version": "1.0.30001793", | ||
| 2793 | + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001793.tgz", | ||
| 2794 | + "integrity": "sha512-iwSsYWaCOoh26cV8NwNRViHlrfUvYsHDfRVcbtmw0Kg6PJIZZXwMkj1442FYLBGkeUf1juAsU3DTfxW579mrPA==", | ||
| 2795 | + "dev": true, | ||
| 2796 | + "funding": [ | ||
| 2797 | + { | ||
| 2798 | + "type": "opencollective", | ||
| 2799 | + "url": "https://opencollective.com/browserslist" | ||
| 2800 | + }, | ||
| 2801 | + { | ||
| 2802 | + "type": "tidelift", | ||
| 2803 | + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" | ||
| 2804 | + }, | ||
| 2805 | + { | ||
| 2806 | + "type": "github", | ||
| 2807 | + "url": "https://github.com/sponsors/ai" | ||
| 2808 | + } | ||
| 2809 | + ], | ||
| 2810 | + "license": "CC-BY-4.0" | ||
| 2811 | + }, | ||
| 2812 | + "node_modules/chai": { | ||
| 2813 | + "version": "5.3.3", | ||
| 2814 | + "resolved": "https://registry.npmjs.org/chai/-/chai-5.3.3.tgz", | ||
| 2815 | + "integrity": "sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==", | ||
| 2816 | + "dev": true, | ||
| 2817 | + "license": "MIT", | ||
| 2818 | + "dependencies": { | ||
| 2819 | + "assertion-error": "^2.0.1", | ||
| 2820 | + "check-error": "^2.1.1", | ||
| 2821 | + "deep-eql": "^5.0.1", | ||
| 2822 | + "loupe": "^3.1.0", | ||
| 2823 | + "pathval": "^2.0.0" | ||
| 2824 | + }, | ||
| 2825 | + "engines": { | ||
| 2826 | + "node": ">=18" | ||
| 2827 | + } | ||
| 2828 | + }, | ||
| 2829 | + "node_modules/chalk": { | ||
| 2830 | + "version": "4.1.2", | ||
| 2831 | + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", | ||
| 2832 | + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", | ||
| 2833 | + "dev": true, | ||
| 2834 | + "license": "MIT", | ||
| 2835 | + "dependencies": { | ||
| 2836 | + "ansi-styles": "^4.1.0", | ||
| 2837 | + "supports-color": "^7.1.0" | ||
| 2838 | + }, | ||
| 2839 | + "engines": { | ||
| 2840 | + "node": ">=10" | ||
| 2841 | + }, | ||
| 2842 | + "funding": { | ||
| 2843 | + "url": "https://github.com/chalk/chalk?sponsor=1" | ||
| 2844 | + } | ||
| 2845 | + }, | ||
| 2846 | + "node_modules/check-error": { | ||
| 2847 | + "version": "2.1.3", | ||
| 2848 | + "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.3.tgz", | ||
| 2849 | + "integrity": "sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==", | ||
| 2850 | + "dev": true, | ||
| 2851 | + "license": "MIT", | ||
| 2852 | + "engines": { | ||
| 2853 | + "node": ">= 16" | ||
| 2854 | + } | ||
| 2855 | + }, | ||
| 2856 | + "node_modules/classnames": { | ||
| 2857 | + "version": "2.5.1", | ||
| 2858 | + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz", | ||
| 2859 | + "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==", | ||
| 2860 | + "license": "MIT" | ||
| 2861 | + }, | ||
| 2862 | + "node_modules/color-convert": { | ||
| 2863 | + "version": "2.0.1", | ||
| 2864 | + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", | ||
| 2865 | + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", | ||
| 2866 | + "dev": true, | ||
| 2867 | + "license": "MIT", | ||
| 2868 | + "dependencies": { | ||
| 2869 | + "color-name": "~1.1.4" | ||
| 2870 | + }, | ||
| 2871 | + "engines": { | ||
| 2872 | + "node": ">=7.0.0" | ||
| 2873 | + } | ||
| 2874 | + }, | ||
| 2875 | + "node_modules/color-name": { | ||
| 2876 | + "version": "1.1.4", | ||
| 2877 | + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", | ||
| 2878 | + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", | ||
| 2879 | + "dev": true, | ||
| 2880 | + "license": "MIT" | ||
| 2881 | + }, | ||
| 2882 | + "node_modules/combined-stream": { | ||
| 2883 | + "version": "1.0.8", | ||
| 2884 | + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", | ||
| 2885 | + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", | ||
| 2886 | + "license": "MIT", | ||
| 2887 | + "dependencies": { | ||
| 2888 | + "delayed-stream": "~1.0.0" | ||
| 2889 | + }, | ||
| 2890 | + "engines": { | ||
| 2891 | + "node": ">= 0.8" | ||
| 2892 | + } | ||
| 2893 | + }, | ||
| 2894 | + "node_modules/compute-scroll-into-view": { | ||
| 2895 | + "version": "3.1.1", | ||
| 2896 | + "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-3.1.1.tgz", | ||
| 2897 | + "integrity": "sha512-VRhuHOLoKYOy4UbilLbUzbYg93XLjv2PncJC50EuTWPA3gaja1UjBsUP/D/9/juV3vQFr6XBEzn9KCAHdUvOHw==", | ||
| 2898 | + "license": "MIT" | ||
| 2899 | + }, | ||
| 2900 | + "node_modules/concat-map": { | ||
| 2901 | + "version": "0.0.1", | ||
| 2902 | + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", | ||
| 2903 | + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", | ||
| 2904 | + "dev": true, | ||
| 2905 | + "license": "MIT" | ||
| 2906 | + }, | ||
| 2907 | + "node_modules/convert-source-map": { | ||
| 2908 | + "version": "2.0.0", | ||
| 2909 | + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", | ||
| 2910 | + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", | ||
| 2911 | + "dev": true, | ||
| 2912 | + "license": "MIT" | ||
| 2913 | + }, | ||
| 2914 | + "node_modules/copy-to-clipboard": { | ||
| 2915 | + "version": "3.3.3", | ||
| 2916 | + "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz", | ||
| 2917 | + "integrity": "sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==", | ||
| 2918 | + "license": "MIT", | ||
| 2919 | + "dependencies": { | ||
| 2920 | + "toggle-selection": "^1.0.6" | ||
| 2921 | + } | ||
| 2922 | + }, | ||
| 2923 | + "node_modules/cross-spawn": { | ||
| 2924 | + "version": "7.0.6", | ||
| 2925 | + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", | ||
| 2926 | + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", | ||
| 2927 | + "dev": true, | ||
| 2928 | + "license": "MIT", | ||
| 2929 | + "dependencies": { | ||
| 2930 | + "path-key": "^3.1.0", | ||
| 2931 | + "shebang-command": "^2.0.0", | ||
| 2932 | + "which": "^2.0.1" | ||
| 2933 | + }, | ||
| 2934 | + "engines": { | ||
| 2935 | + "node": ">= 8" | ||
| 2936 | + } | ||
| 2937 | + }, | ||
| 2938 | + "node_modules/css.escape": { | ||
| 2939 | + "version": "1.5.1", | ||
| 2940 | + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", | ||
| 2941 | + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==", | ||
| 2942 | + "dev": true, | ||
| 2943 | + "license": "MIT" | ||
| 2944 | + }, | ||
| 2945 | + "node_modules/cssstyle": { | ||
| 2946 | + "version": "4.6.0", | ||
| 2947 | + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-4.6.0.tgz", | ||
| 2948 | + "integrity": "sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==", | ||
| 2949 | + "dev": true, | ||
| 2950 | + "license": "MIT", | ||
| 2951 | + "dependencies": { | ||
| 2952 | + "@asamuzakjp/css-color": "^3.2.0", | ||
| 2953 | + "rrweb-cssom": "^0.8.0" | ||
| 2954 | + }, | ||
| 2955 | + "engines": { | ||
| 2956 | + "node": ">=18" | ||
| 2957 | + } | ||
| 2958 | + }, | ||
| 2959 | + "node_modules/cssstyle/node_modules/rrweb-cssom": { | ||
| 2960 | + "version": "0.8.0", | ||
| 2961 | + "resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.8.0.tgz", | ||
| 2962 | + "integrity": "sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==", | ||
| 2963 | + "dev": true, | ||
| 2964 | + "license": "MIT" | ||
| 2965 | + }, | ||
| 2966 | + "node_modules/csstype": { | ||
| 2967 | + "version": "3.2.3", | ||
| 2968 | + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", | ||
| 2969 | + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", | ||
| 2970 | + "license": "MIT" | ||
| 2971 | + }, | ||
| 2972 | + "node_modules/data-urls": { | ||
| 2973 | + "version": "5.0.0", | ||
| 2974 | + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-5.0.0.tgz", | ||
| 2975 | + "integrity": "sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==", | ||
| 2976 | + "dev": true, | ||
| 2977 | + "license": "MIT", | ||
| 2978 | + "dependencies": { | ||
| 2979 | + "whatwg-mimetype": "^4.0.0", | ||
| 2980 | + "whatwg-url": "^14.0.0" | ||
| 2981 | + }, | ||
| 2982 | + "engines": { | ||
| 2983 | + "node": ">=18" | ||
| 2984 | + } | ||
| 2985 | + }, | ||
| 2986 | + "node_modules/dayjs": { | ||
| 2987 | + "version": "1.11.21", | ||
| 2988 | + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.21.tgz", | ||
| 2989 | + "integrity": "sha512-98IT+HOahAisibz/yjKbzuOBwYcjJ7BCLPzARyHiyEBmRz4fatF+KPJszEHXsGYjUG234aH/cOjW1wwTbKUZlA==", | ||
| 2990 | + "license": "MIT" | ||
| 2991 | + }, | ||
| 2992 | + "node_modules/debug": { | ||
| 2993 | + "version": "4.4.3", | ||
| 2994 | + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", | ||
| 2995 | + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", | ||
| 2996 | + "license": "MIT", | ||
| 2997 | + "dependencies": { | ||
| 2998 | + "ms": "^2.1.3" | ||
| 2999 | + }, | ||
| 3000 | + "engines": { | ||
| 3001 | + "node": ">=6.0" | ||
| 3002 | + }, | ||
| 3003 | + "peerDependenciesMeta": { | ||
| 3004 | + "supports-color": { | ||
| 3005 | + "optional": true | ||
| 3006 | + } | ||
| 3007 | + } | ||
| 3008 | + }, | ||
| 3009 | + "node_modules/decimal.js": { | ||
| 3010 | + "version": "10.6.0", | ||
| 3011 | + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.6.0.tgz", | ||
| 3012 | + "integrity": "sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==", | ||
| 3013 | + "dev": true, | ||
| 3014 | + "license": "MIT" | ||
| 3015 | + }, | ||
| 3016 | + "node_modules/deep-eql": { | ||
| 3017 | + "version": "5.0.2", | ||
| 3018 | + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz", | ||
| 3019 | + "integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==", | ||
| 3020 | + "dev": true, | ||
| 3021 | + "license": "MIT", | ||
| 3022 | + "engines": { | ||
| 3023 | + "node": ">=6" | ||
| 3024 | + } | ||
| 3025 | + }, | ||
| 3026 | + "node_modules/deep-is": { | ||
| 3027 | + "version": "0.1.4", | ||
| 3028 | + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", | ||
| 3029 | + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", | ||
| 3030 | + "dev": true, | ||
| 3031 | + "license": "MIT" | ||
| 3032 | + }, | ||
| 3033 | + "node_modules/delayed-stream": { | ||
| 3034 | + "version": "1.0.0", | ||
| 3035 | + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", | ||
| 3036 | + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", | ||
| 3037 | + "license": "MIT", | ||
| 3038 | + "engines": { | ||
| 3039 | + "node": ">=0.4.0" | ||
| 3040 | + } | ||
| 3041 | + }, | ||
| 3042 | + "node_modules/dequal": { | ||
| 3043 | + "version": "2.0.3", | ||
| 3044 | + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", | ||
| 3045 | + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", | ||
| 3046 | + "dev": true, | ||
| 3047 | + "license": "MIT", | ||
| 3048 | + "engines": { | ||
| 3049 | + "node": ">=6" | ||
| 3050 | + } | ||
| 3051 | + }, | ||
| 3052 | + "node_modules/doctrine": { | ||
| 3053 | + "version": "3.0.0", | ||
| 3054 | + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", | ||
| 3055 | + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", | ||
| 3056 | + "dev": true, | ||
| 3057 | + "license": "Apache-2.0", | ||
| 3058 | + "dependencies": { | ||
| 3059 | + "esutils": "^2.0.2" | ||
| 3060 | + }, | ||
| 3061 | + "engines": { | ||
| 3062 | + "node": ">=6.0.0" | ||
| 3063 | + } | ||
| 3064 | + }, | ||
| 3065 | + "node_modules/dom-accessibility-api": { | ||
| 3066 | + "version": "0.5.16", | ||
| 3067 | + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", | ||
| 3068 | + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", | ||
| 3069 | + "dev": true, | ||
| 3070 | + "license": "MIT", | ||
| 3071 | + "peer": true | ||
| 3072 | + }, | ||
| 3073 | + "node_modules/dunder-proto": { | ||
| 3074 | + "version": "1.0.1", | ||
| 3075 | + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", | ||
| 3076 | + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", | ||
| 3077 | + "license": "MIT", | ||
| 3078 | + "dependencies": { | ||
| 3079 | + "call-bind-apply-helpers": "^1.0.1", | ||
| 3080 | + "es-errors": "^1.3.0", | ||
| 3081 | + "gopd": "^1.2.0" | ||
| 3082 | + }, | ||
| 3083 | + "engines": { | ||
| 3084 | + "node": ">= 0.4" | ||
| 3085 | + } | ||
| 3086 | + }, | ||
| 3087 | + "node_modules/electron-to-chromium": { | ||
| 3088 | + "version": "1.5.364", | ||
| 3089 | + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.364.tgz", | ||
| 3090 | + "integrity": "sha512-G/dYE3+AYhyHwzTwg8UbnXf7zqMERYh7l2jJ3QujhFsH8agSYwtnGAR2aZ7f0AakIKJXd5En/Hre4igIUrdlYw==", | ||
| 3091 | + "dev": true, | ||
| 3092 | + "license": "ISC" | ||
| 3093 | + }, | ||
| 3094 | + "node_modules/entities": { | ||
| 3095 | + "version": "6.0.1", | ||
| 3096 | + "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", | ||
| 3097 | + "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", | ||
| 3098 | + "dev": true, | ||
| 3099 | + "license": "BSD-2-Clause", | ||
| 3100 | + "engines": { | ||
| 3101 | + "node": ">=0.12" | ||
| 3102 | + }, | ||
| 3103 | + "funding": { | ||
| 3104 | + "url": "https://github.com/fb55/entities?sponsor=1" | ||
| 3105 | + } | ||
| 3106 | + }, | ||
| 3107 | + "node_modules/es-define-property": { | ||
| 3108 | + "version": "1.0.1", | ||
| 3109 | + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", | ||
| 3110 | + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", | ||
| 3111 | + "license": "MIT", | ||
| 3112 | + "engines": { | ||
| 3113 | + "node": ">= 0.4" | ||
| 3114 | + } | ||
| 3115 | + }, | ||
| 3116 | + "node_modules/es-errors": { | ||
| 3117 | + "version": "1.3.0", | ||
| 3118 | + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", | ||
| 3119 | + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", | ||
| 3120 | + "license": "MIT", | ||
| 3121 | + "engines": { | ||
| 3122 | + "node": ">= 0.4" | ||
| 3123 | + } | ||
| 3124 | + }, | ||
| 3125 | + "node_modules/es-module-lexer": { | ||
| 3126 | + "version": "1.7.0", | ||
| 3127 | + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", | ||
| 3128 | + "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", | ||
| 3129 | + "dev": true, | ||
| 3130 | + "license": "MIT" | ||
| 3131 | + }, | ||
| 3132 | + "node_modules/es-object-atoms": { | ||
| 3133 | + "version": "1.1.2", | ||
| 3134 | + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz", | ||
| 3135 | + "integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==", | ||
| 3136 | + "license": "MIT", | ||
| 3137 | + "dependencies": { | ||
| 3138 | + "es-errors": "^1.3.0" | ||
| 3139 | + }, | ||
| 3140 | + "engines": { | ||
| 3141 | + "node": ">= 0.4" | ||
| 3142 | + } | ||
| 3143 | + }, | ||
| 3144 | + "node_modules/es-set-tostringtag": { | ||
| 3145 | + "version": "2.1.0", | ||
| 3146 | + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", | ||
| 3147 | + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", | ||
| 3148 | + "license": "MIT", | ||
| 3149 | + "dependencies": { | ||
| 3150 | + "es-errors": "^1.3.0", | ||
| 3151 | + "get-intrinsic": "^1.2.6", | ||
| 3152 | + "has-tostringtag": "^1.0.2", | ||
| 3153 | + "hasown": "^2.0.2" | ||
| 3154 | + }, | ||
| 3155 | + "engines": { | ||
| 3156 | + "node": ">= 0.4" | ||
| 3157 | + } | ||
| 3158 | + }, | ||
| 3159 | + "node_modules/esbuild": { | ||
| 3160 | + "version": "0.25.12", | ||
| 3161 | + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.12.tgz", | ||
| 3162 | + "integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==", | ||
| 3163 | + "dev": true, | ||
| 3164 | + "hasInstallScript": true, | ||
| 3165 | + "license": "MIT", | ||
| 3166 | + "bin": { | ||
| 3167 | + "esbuild": "bin/esbuild" | ||
| 3168 | + }, | ||
| 3169 | + "engines": { | ||
| 3170 | + "node": ">=18" | ||
| 3171 | + }, | ||
| 3172 | + "optionalDependencies": { | ||
| 3173 | + "@esbuild/aix-ppc64": "0.25.12", | ||
| 3174 | + "@esbuild/android-arm": "0.25.12", | ||
| 3175 | + "@esbuild/android-arm64": "0.25.12", | ||
| 3176 | + "@esbuild/android-x64": "0.25.12", | ||
| 3177 | + "@esbuild/darwin-arm64": "0.25.12", | ||
| 3178 | + "@esbuild/darwin-x64": "0.25.12", | ||
| 3179 | + "@esbuild/freebsd-arm64": "0.25.12", | ||
| 3180 | + "@esbuild/freebsd-x64": "0.25.12", | ||
| 3181 | + "@esbuild/linux-arm": "0.25.12", | ||
| 3182 | + "@esbuild/linux-arm64": "0.25.12", | ||
| 3183 | + "@esbuild/linux-ia32": "0.25.12", | ||
| 3184 | + "@esbuild/linux-loong64": "0.25.12", | ||
| 3185 | + "@esbuild/linux-mips64el": "0.25.12", | ||
| 3186 | + "@esbuild/linux-ppc64": "0.25.12", | ||
| 3187 | + "@esbuild/linux-riscv64": "0.25.12", | ||
| 3188 | + "@esbuild/linux-s390x": "0.25.12", | ||
| 3189 | + "@esbuild/linux-x64": "0.25.12", | ||
| 3190 | + "@esbuild/netbsd-arm64": "0.25.12", | ||
| 3191 | + "@esbuild/netbsd-x64": "0.25.12", | ||
| 3192 | + "@esbuild/openbsd-arm64": "0.25.12", | ||
| 3193 | + "@esbuild/openbsd-x64": "0.25.12", | ||
| 3194 | + "@esbuild/openharmony-arm64": "0.25.12", | ||
| 3195 | + "@esbuild/sunos-x64": "0.25.12", | ||
| 3196 | + "@esbuild/win32-arm64": "0.25.12", | ||
| 3197 | + "@esbuild/win32-ia32": "0.25.12", | ||
| 3198 | + "@esbuild/win32-x64": "0.25.12" | ||
| 3199 | + } | ||
| 3200 | + }, | ||
| 3201 | + "node_modules/escalade": { | ||
| 3202 | + "version": "3.2.0", | ||
| 3203 | + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", | ||
| 3204 | + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", | ||
| 3205 | + "dev": true, | ||
| 3206 | + "license": "MIT", | ||
| 3207 | + "engines": { | ||
| 3208 | + "node": ">=6" | ||
| 3209 | + } | ||
| 3210 | + }, | ||
| 3211 | + "node_modules/escape-string-regexp": { | ||
| 3212 | + "version": "4.0.0", | ||
| 3213 | + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", | ||
| 3214 | + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", | ||
| 3215 | + "dev": true, | ||
| 3216 | + "license": "MIT", | ||
| 3217 | + "engines": { | ||
| 3218 | + "node": ">=10" | ||
| 3219 | + }, | ||
| 3220 | + "funding": { | ||
| 3221 | + "url": "https://github.com/sponsors/sindresorhus" | ||
| 3222 | + } | ||
| 3223 | + }, | ||
| 3224 | + "node_modules/eslint": { | ||
| 3225 | + "version": "8.57.1", | ||
| 3226 | + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", | ||
| 3227 | + "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", | ||
| 3228 | + "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", | ||
| 3229 | + "dev": true, | ||
| 3230 | + "license": "MIT", | ||
| 3231 | + "dependencies": { | ||
| 3232 | + "@eslint-community/eslint-utils": "^4.2.0", | ||
| 3233 | + "@eslint-community/regexpp": "^4.6.1", | ||
| 3234 | + "@eslint/eslintrc": "^2.1.4", | ||
| 3235 | + "@eslint/js": "8.57.1", | ||
| 3236 | + "@humanwhocodes/config-array": "^0.13.0", | ||
| 3237 | + "@humanwhocodes/module-importer": "^1.0.1", | ||
| 3238 | + "@nodelib/fs.walk": "^1.2.8", | ||
| 3239 | + "@ungap/structured-clone": "^1.2.0", | ||
| 3240 | + "ajv": "^6.12.4", | ||
| 3241 | + "chalk": "^4.0.0", | ||
| 3242 | + "cross-spawn": "^7.0.2", | ||
| 3243 | + "debug": "^4.3.2", | ||
| 3244 | + "doctrine": "^3.0.0", | ||
| 3245 | + "escape-string-regexp": "^4.0.0", | ||
| 3246 | + "eslint-scope": "^7.2.2", | ||
| 3247 | + "eslint-visitor-keys": "^3.4.3", | ||
| 3248 | + "espree": "^9.6.1", | ||
| 3249 | + "esquery": "^1.4.2", | ||
| 3250 | + "esutils": "^2.0.2", | ||
| 3251 | + "fast-deep-equal": "^3.1.3", | ||
| 3252 | + "file-entry-cache": "^6.0.1", | ||
| 3253 | + "find-up": "^5.0.0", | ||
| 3254 | + "glob-parent": "^6.0.2", | ||
| 3255 | + "globals": "^13.19.0", | ||
| 3256 | + "graphemer": "^1.4.0", | ||
| 3257 | + "ignore": "^5.2.0", | ||
| 3258 | + "imurmurhash": "^0.1.4", | ||
| 3259 | + "is-glob": "^4.0.0", | ||
| 3260 | + "is-path-inside": "^3.0.3", | ||
| 3261 | + "js-yaml": "^4.1.0", | ||
| 3262 | + "json-stable-stringify-without-jsonify": "^1.0.1", | ||
| 3263 | + "levn": "^0.4.1", | ||
| 3264 | + "lodash.merge": "^4.6.2", | ||
| 3265 | + "minimatch": "^3.1.2", | ||
| 3266 | + "natural-compare": "^1.4.0", | ||
| 3267 | + "optionator": "^0.9.3", | ||
| 3268 | + "strip-ansi": "^6.0.1", | ||
| 3269 | + "text-table": "^0.2.0" | ||
| 3270 | + }, | ||
| 3271 | + "bin": { | ||
| 3272 | + "eslint": "bin/eslint.js" | ||
| 3273 | + }, | ||
| 3274 | + "engines": { | ||
| 3275 | + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" | ||
| 3276 | + }, | ||
| 3277 | + "funding": { | ||
| 3278 | + "url": "https://opencollective.com/eslint" | ||
| 3279 | + } | ||
| 3280 | + }, | ||
| 3281 | + "node_modules/eslint-plugin-react-hooks": { | ||
| 3282 | + "version": "4.6.2", | ||
| 3283 | + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz", | ||
| 3284 | + "integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==", | ||
| 3285 | + "dev": true, | ||
| 3286 | + "license": "MIT", | ||
| 3287 | + "engines": { | ||
| 3288 | + "node": ">=10" | ||
| 3289 | + }, | ||
| 3290 | + "peerDependencies": { | ||
| 3291 | + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" | ||
| 3292 | + } | ||
| 3293 | + }, | ||
| 3294 | + "node_modules/eslint-plugin-react-refresh": { | ||
| 3295 | + "version": "0.4.26", | ||
| 3296 | + "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.26.tgz", | ||
| 3297 | + "integrity": "sha512-1RETEylht2O6FM/MvgnyvT+8K21wLqDNg4qD51Zj3guhjt433XbnnkVttHMyaVyAFD03QSV4LPS5iE3VQmO7XQ==", | ||
| 3298 | + "dev": true, | ||
| 3299 | + "license": "MIT", | ||
| 3300 | + "peerDependencies": { | ||
| 3301 | + "eslint": ">=8.40" | ||
| 3302 | + } | ||
| 3303 | + }, | ||
| 3304 | + "node_modules/eslint-scope": { | ||
| 3305 | + "version": "7.2.2", | ||
| 3306 | + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", | ||
| 3307 | + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", | ||
| 3308 | + "dev": true, | ||
| 3309 | + "license": "BSD-2-Clause", | ||
| 3310 | + "dependencies": { | ||
| 3311 | + "esrecurse": "^4.3.0", | ||
| 3312 | + "estraverse": "^5.2.0" | ||
| 3313 | + }, | ||
| 3314 | + "engines": { | ||
| 3315 | + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" | ||
| 3316 | + }, | ||
| 3317 | + "funding": { | ||
| 3318 | + "url": "https://opencollective.com/eslint" | ||
| 3319 | + } | ||
| 3320 | + }, | ||
| 3321 | + "node_modules/eslint-visitor-keys": { | ||
| 3322 | + "version": "3.4.3", | ||
| 3323 | + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", | ||
| 3324 | + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", | ||
| 3325 | + "dev": true, | ||
| 3326 | + "license": "Apache-2.0", | ||
| 3327 | + "engines": { | ||
| 3328 | + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" | ||
| 3329 | + }, | ||
| 3330 | + "funding": { | ||
| 3331 | + "url": "https://opencollective.com/eslint" | ||
| 3332 | + } | ||
| 3333 | + }, | ||
| 3334 | + "node_modules/eslint/node_modules/balanced-match": { | ||
| 3335 | + "version": "1.0.2", | ||
| 3336 | + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", | ||
| 3337 | + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", | ||
| 3338 | + "dev": true, | ||
| 3339 | + "license": "MIT" | ||
| 3340 | + }, | ||
| 3341 | + "node_modules/eslint/node_modules/brace-expansion": { | ||
| 3342 | + "version": "1.1.15", | ||
| 3343 | + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.15.tgz", | ||
| 3344 | + "integrity": "sha512-EwOCDEex4quD37XhqM3omwtMoJjr//isUZz1JopUNWms+4Z2ViyM/k1YIRePpoVNnQhENnxtFjLaxNHrT7xIUg==", | ||
| 3345 | + "dev": true, | ||
| 3346 | + "license": "MIT", | ||
| 3347 | + "dependencies": { | ||
| 3348 | + "balanced-match": "^1.0.0", | ||
| 3349 | + "concat-map": "0.0.1" | ||
| 3350 | + } | ||
| 3351 | + }, | ||
| 3352 | + "node_modules/eslint/node_modules/ignore": { | ||
| 3353 | + "version": "5.3.2", | ||
| 3354 | + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", | ||
| 3355 | + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", | ||
| 3356 | + "dev": true, | ||
| 3357 | + "license": "MIT", | ||
| 3358 | + "engines": { | ||
| 3359 | + "node": ">= 4" | ||
| 3360 | + } | ||
| 3361 | + }, | ||
| 3362 | + "node_modules/eslint/node_modules/minimatch": { | ||
| 3363 | + "version": "3.1.5", | ||
| 3364 | + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", | ||
| 3365 | + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", | ||
| 3366 | + "dev": true, | ||
| 3367 | + "license": "ISC", | ||
| 3368 | + "dependencies": { | ||
| 3369 | + "brace-expansion": "^1.1.7" | ||
| 3370 | + }, | ||
| 3371 | + "engines": { | ||
| 3372 | + "node": "*" | ||
| 3373 | + } | ||
| 3374 | + }, | ||
| 3375 | + "node_modules/espree": { | ||
| 3376 | + "version": "9.6.1", | ||
| 3377 | + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", | ||
| 3378 | + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", | ||
| 3379 | + "dev": true, | ||
| 3380 | + "license": "BSD-2-Clause", | ||
| 3381 | + "dependencies": { | ||
| 3382 | + "acorn": "^8.9.0", | ||
| 3383 | + "acorn-jsx": "^5.3.2", | ||
| 3384 | + "eslint-visitor-keys": "^3.4.1" | ||
| 3385 | + }, | ||
| 3386 | + "engines": { | ||
| 3387 | + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" | ||
| 3388 | + }, | ||
| 3389 | + "funding": { | ||
| 3390 | + "url": "https://opencollective.com/eslint" | ||
| 3391 | + } | ||
| 3392 | + }, | ||
| 3393 | + "node_modules/esquery": { | ||
| 3394 | + "version": "1.7.0", | ||
| 3395 | + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz", | ||
| 3396 | + "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==", | ||
| 3397 | + "dev": true, | ||
| 3398 | + "license": "BSD-3-Clause", | ||
| 3399 | + "dependencies": { | ||
| 3400 | + "estraverse": "^5.1.0" | ||
| 3401 | + }, | ||
| 3402 | + "engines": { | ||
| 3403 | + "node": ">=0.10" | ||
| 3404 | + } | ||
| 3405 | + }, | ||
| 3406 | + "node_modules/esrecurse": { | ||
| 3407 | + "version": "4.3.0", | ||
| 3408 | + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", | ||
| 3409 | + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", | ||
| 3410 | + "dev": true, | ||
| 3411 | + "license": "BSD-2-Clause", | ||
| 3412 | + "dependencies": { | ||
| 3413 | + "estraverse": "^5.2.0" | ||
| 3414 | + }, | ||
| 3415 | + "engines": { | ||
| 3416 | + "node": ">=4.0" | ||
| 3417 | + } | ||
| 3418 | + }, | ||
| 3419 | + "node_modules/estraverse": { | ||
| 3420 | + "version": "5.3.0", | ||
| 3421 | + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", | ||
| 3422 | + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", | ||
| 3423 | + "dev": true, | ||
| 3424 | + "license": "BSD-2-Clause", | ||
| 3425 | + "engines": { | ||
| 3426 | + "node": ">=4.0" | ||
| 3427 | + } | ||
| 3428 | + }, | ||
| 3429 | + "node_modules/estree-walker": { | ||
| 3430 | + "version": "3.0.3", | ||
| 3431 | + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", | ||
| 3432 | + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", | ||
| 3433 | + "dev": true, | ||
| 3434 | + "license": "MIT", | ||
| 3435 | + "dependencies": { | ||
| 3436 | + "@types/estree": "^1.0.0" | ||
| 3437 | + } | ||
| 3438 | + }, | ||
| 3439 | + "node_modules/esutils": { | ||
| 3440 | + "version": "2.0.3", | ||
| 3441 | + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", | ||
| 3442 | + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", | ||
| 3443 | + "dev": true, | ||
| 3444 | + "license": "BSD-2-Clause", | ||
| 3445 | + "engines": { | ||
| 3446 | + "node": ">=0.10.0" | ||
| 3447 | + } | ||
| 3448 | + }, | ||
| 3449 | + "node_modules/expect-type": { | ||
| 3450 | + "version": "1.3.0", | ||
| 3451 | + "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.3.0.tgz", | ||
| 3452 | + "integrity": "sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==", | ||
| 3453 | + "dev": true, | ||
| 3454 | + "license": "Apache-2.0", | ||
| 3455 | + "engines": { | ||
| 3456 | + "node": ">=12.0.0" | ||
| 3457 | + } | ||
| 3458 | + }, | ||
| 3459 | + "node_modules/fast-deep-equal": { | ||
| 3460 | + "version": "3.1.3", | ||
| 3461 | + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", | ||
| 3462 | + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", | ||
| 3463 | + "dev": true, | ||
| 3464 | + "license": "MIT" | ||
| 3465 | + }, | ||
| 3466 | + "node_modules/fast-json-stable-stringify": { | ||
| 3467 | + "version": "2.1.0", | ||
| 3468 | + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", | ||
| 3469 | + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", | ||
| 3470 | + "dev": true, | ||
| 3471 | + "license": "MIT" | ||
| 3472 | + }, | ||
| 3473 | + "node_modules/fast-levenshtein": { | ||
| 3474 | + "version": "2.0.6", | ||
| 3475 | + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", | ||
| 3476 | + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", | ||
| 3477 | + "dev": true, | ||
| 3478 | + "license": "MIT" | ||
| 3479 | + }, | ||
| 3480 | + "node_modules/fastq": { | ||
| 3481 | + "version": "1.20.1", | ||
| 3482 | + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz", | ||
| 3483 | + "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==", | ||
| 3484 | + "dev": true, | ||
| 3485 | + "license": "ISC", | ||
| 3486 | + "dependencies": { | ||
| 3487 | + "reusify": "^1.0.4" | ||
| 3488 | + } | ||
| 3489 | + }, | ||
| 3490 | + "node_modules/fdir": { | ||
| 3491 | + "version": "6.5.0", | ||
| 3492 | + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", | ||
| 3493 | + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", | ||
| 3494 | + "dev": true, | ||
| 3495 | + "license": "MIT", | ||
| 3496 | + "engines": { | ||
| 3497 | + "node": ">=12.0.0" | ||
| 3498 | + }, | ||
| 3499 | + "peerDependencies": { | ||
| 3500 | + "picomatch": "^3 || ^4" | ||
| 3501 | + }, | ||
| 3502 | + "peerDependenciesMeta": { | ||
| 3503 | + "picomatch": { | ||
| 3504 | + "optional": true | ||
| 3505 | + } | ||
| 3506 | + } | ||
| 3507 | + }, | ||
| 3508 | + "node_modules/file-entry-cache": { | ||
| 3509 | + "version": "6.0.1", | ||
| 3510 | + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", | ||
| 3511 | + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", | ||
| 3512 | + "dev": true, | ||
| 3513 | + "license": "MIT", | ||
| 3514 | + "dependencies": { | ||
| 3515 | + "flat-cache": "^3.0.4" | ||
| 3516 | + }, | ||
| 3517 | + "engines": { | ||
| 3518 | + "node": "^10.12.0 || >=12.0.0" | ||
| 3519 | + } | ||
| 3520 | + }, | ||
| 3521 | + "node_modules/find-up": { | ||
| 3522 | + "version": "5.0.0", | ||
| 3523 | + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", | ||
| 3524 | + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", | ||
| 3525 | + "dev": true, | ||
| 3526 | + "license": "MIT", | ||
| 3527 | + "dependencies": { | ||
| 3528 | + "locate-path": "^6.0.0", | ||
| 3529 | + "path-exists": "^4.0.0" | ||
| 3530 | + }, | ||
| 3531 | + "engines": { | ||
| 3532 | + "node": ">=10" | ||
| 3533 | + }, | ||
| 3534 | + "funding": { | ||
| 3535 | + "url": "https://github.com/sponsors/sindresorhus" | ||
| 3536 | + } | ||
| 3537 | + }, | ||
| 3538 | + "node_modules/flat-cache": { | ||
| 3539 | + "version": "3.2.0", | ||
| 3540 | + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", | ||
| 3541 | + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", | ||
| 3542 | + "dev": true, | ||
| 3543 | + "license": "MIT", | ||
| 3544 | + "dependencies": { | ||
| 3545 | + "flatted": "^3.2.9", | ||
| 3546 | + "keyv": "^4.5.3", | ||
| 3547 | + "rimraf": "^3.0.2" | ||
| 3548 | + }, | ||
| 3549 | + "engines": { | ||
| 3550 | + "node": "^10.12.0 || >=12.0.0" | ||
| 3551 | + } | ||
| 3552 | + }, | ||
| 3553 | + "node_modules/flatted": { | ||
| 3554 | + "version": "3.4.2", | ||
| 3555 | + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz", | ||
| 3556 | + "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==", | ||
| 3557 | + "dev": true, | ||
| 3558 | + "license": "ISC" | ||
| 3559 | + }, | ||
| 3560 | + "node_modules/follow-redirects": { | ||
| 3561 | + "version": "1.16.0", | ||
| 3562 | + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.16.0.tgz", | ||
| 3563 | + "integrity": "sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==", | ||
| 3564 | + "funding": [ | ||
| 3565 | + { | ||
| 3566 | + "type": "individual", | ||
| 3567 | + "url": "https://github.com/sponsors/RubenVerborgh" | ||
| 3568 | + } | ||
| 3569 | + ], | ||
| 3570 | + "license": "MIT", | ||
| 3571 | + "engines": { | ||
| 3572 | + "node": ">=4.0" | ||
| 3573 | + }, | ||
| 3574 | + "peerDependenciesMeta": { | ||
| 3575 | + "debug": { | ||
| 3576 | + "optional": true | ||
| 3577 | + } | ||
| 3578 | + } | ||
| 3579 | + }, | ||
| 3580 | + "node_modules/form-data": { | ||
| 3581 | + "version": "4.0.5", | ||
| 3582 | + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz", | ||
| 3583 | + "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==", | ||
| 3584 | + "license": "MIT", | ||
| 3585 | + "dependencies": { | ||
| 3586 | + "asynckit": "^0.4.0", | ||
| 3587 | + "combined-stream": "^1.0.8", | ||
| 3588 | + "es-set-tostringtag": "^2.1.0", | ||
| 3589 | + "hasown": "^2.0.2", | ||
| 3590 | + "mime-types": "^2.1.12" | ||
| 3591 | + }, | ||
| 3592 | + "engines": { | ||
| 3593 | + "node": ">= 6" | ||
| 3594 | + } | ||
| 3595 | + }, | ||
| 3596 | + "node_modules/fs.realpath": { | ||
| 3597 | + "version": "1.0.0", | ||
| 3598 | + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", | ||
| 3599 | + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", | ||
| 3600 | + "dev": true, | ||
| 3601 | + "license": "ISC" | ||
| 3602 | + }, | ||
| 3603 | + "node_modules/fsevents": { | ||
| 3604 | + "version": "2.3.2", | ||
| 3605 | + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", | ||
| 3606 | + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", | ||
| 3607 | + "dev": true, | ||
| 3608 | + "hasInstallScript": true, | ||
| 3609 | + "license": "MIT", | ||
| 3610 | + "optional": true, | ||
| 3611 | + "os": [ | ||
| 3612 | + "darwin" | ||
| 3613 | + ], | ||
| 3614 | + "engines": { | ||
| 3615 | + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" | ||
| 3616 | + } | ||
| 3617 | + }, | ||
| 3618 | + "node_modules/function-bind": { | ||
| 3619 | + "version": "1.1.2", | ||
| 3620 | + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", | ||
| 3621 | + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", | ||
| 3622 | + "license": "MIT", | ||
| 3623 | + "funding": { | ||
| 3624 | + "url": "https://github.com/sponsors/ljharb" | ||
| 3625 | + } | ||
| 3626 | + }, | ||
| 3627 | + "node_modules/gensync": { | ||
| 3628 | + "version": "1.0.0-beta.2", | ||
| 3629 | + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", | ||
| 3630 | + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", | ||
| 3631 | + "dev": true, | ||
| 3632 | + "license": "MIT", | ||
| 3633 | + "engines": { | ||
| 3634 | + "node": ">=6.9.0" | ||
| 3635 | + } | ||
| 3636 | + }, | ||
| 3637 | + "node_modules/get-intrinsic": { | ||
| 3638 | + "version": "1.3.0", | ||
| 3639 | + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", | ||
| 3640 | + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", | ||
| 3641 | + "license": "MIT", | ||
| 3642 | + "dependencies": { | ||
| 3643 | + "call-bind-apply-helpers": "^1.0.2", | ||
| 3644 | + "es-define-property": "^1.0.1", | ||
| 3645 | + "es-errors": "^1.3.0", | ||
| 3646 | + "es-object-atoms": "^1.1.1", | ||
| 3647 | + "function-bind": "^1.1.2", | ||
| 3648 | + "get-proto": "^1.0.1", | ||
| 3649 | + "gopd": "^1.2.0", | ||
| 3650 | + "has-symbols": "^1.1.0", | ||
| 3651 | + "hasown": "^2.0.2", | ||
| 3652 | + "math-intrinsics": "^1.1.0" | ||
| 3653 | + }, | ||
| 3654 | + "engines": { | ||
| 3655 | + "node": ">= 0.4" | ||
| 3656 | + }, | ||
| 3657 | + "funding": { | ||
| 3658 | + "url": "https://github.com/sponsors/ljharb" | ||
| 3659 | + } | ||
| 3660 | + }, | ||
| 3661 | + "node_modules/get-proto": { | ||
| 3662 | + "version": "1.0.1", | ||
| 3663 | + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", | ||
| 3664 | + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", | ||
| 3665 | + "license": "MIT", | ||
| 3666 | + "dependencies": { | ||
| 3667 | + "dunder-proto": "^1.0.1", | ||
| 3668 | + "es-object-atoms": "^1.0.0" | ||
| 3669 | + }, | ||
| 3670 | + "engines": { | ||
| 3671 | + "node": ">= 0.4" | ||
| 3672 | + } | ||
| 3673 | + }, | ||
| 3674 | + "node_modules/glob": { | ||
| 3675 | + "version": "7.2.3", | ||
| 3676 | + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", | ||
| 3677 | + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", | ||
| 3678 | + "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", | ||
| 3679 | + "dev": true, | ||
| 3680 | + "license": "ISC", | ||
| 3681 | + "dependencies": { | ||
| 3682 | + "fs.realpath": "^1.0.0", | ||
| 3683 | + "inflight": "^1.0.4", | ||
| 3684 | + "inherits": "2", | ||
| 3685 | + "minimatch": "^3.1.1", | ||
| 3686 | + "once": "^1.3.0", | ||
| 3687 | + "path-is-absolute": "^1.0.0" | ||
| 3688 | + }, | ||
| 3689 | + "engines": { | ||
| 3690 | + "node": "*" | ||
| 3691 | + }, | ||
| 3692 | + "funding": { | ||
| 3693 | + "url": "https://github.com/sponsors/isaacs" | ||
| 3694 | + } | ||
| 3695 | + }, | ||
| 3696 | + "node_modules/glob-parent": { | ||
| 3697 | + "version": "6.0.2", | ||
| 3698 | + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", | ||
| 3699 | + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", | ||
| 3700 | + "dev": true, | ||
| 3701 | + "license": "ISC", | ||
| 3702 | + "dependencies": { | ||
| 3703 | + "is-glob": "^4.0.3" | ||
| 3704 | + }, | ||
| 3705 | + "engines": { | ||
| 3706 | + "node": ">=10.13.0" | ||
| 3707 | + } | ||
| 3708 | + }, | ||
| 3709 | + "node_modules/glob/node_modules/balanced-match": { | ||
| 3710 | + "version": "1.0.2", | ||
| 3711 | + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", | ||
| 3712 | + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", | ||
| 3713 | + "dev": true, | ||
| 3714 | + "license": "MIT" | ||
| 3715 | + }, | ||
| 3716 | + "node_modules/glob/node_modules/brace-expansion": { | ||
| 3717 | + "version": "1.1.15", | ||
| 3718 | + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.15.tgz", | ||
| 3719 | + "integrity": "sha512-EwOCDEex4quD37XhqM3omwtMoJjr//isUZz1JopUNWms+4Z2ViyM/k1YIRePpoVNnQhENnxtFjLaxNHrT7xIUg==", | ||
| 3720 | + "dev": true, | ||
| 3721 | + "license": "MIT", | ||
| 3722 | + "dependencies": { | ||
| 3723 | + "balanced-match": "^1.0.0", | ||
| 3724 | + "concat-map": "0.0.1" | ||
| 3725 | + } | ||
| 3726 | + }, | ||
| 3727 | + "node_modules/glob/node_modules/minimatch": { | ||
| 3728 | + "version": "3.1.5", | ||
| 3729 | + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", | ||
| 3730 | + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", | ||
| 3731 | + "dev": true, | ||
| 3732 | + "license": "ISC", | ||
| 3733 | + "dependencies": { | ||
| 3734 | + "brace-expansion": "^1.1.7" | ||
| 3735 | + }, | ||
| 3736 | + "engines": { | ||
| 3737 | + "node": "*" | ||
| 3738 | + } | ||
| 3739 | + }, | ||
| 3740 | + "node_modules/globals": { | ||
| 3741 | + "version": "13.24.0", | ||
| 3742 | + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", | ||
| 3743 | + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", | ||
| 3744 | + "dev": true, | ||
| 3745 | + "license": "MIT", | ||
| 3746 | + "dependencies": { | ||
| 3747 | + "type-fest": "^0.20.2" | ||
| 3748 | + }, | ||
| 3749 | + "engines": { | ||
| 3750 | + "node": ">=8" | ||
| 3751 | + }, | ||
| 3752 | + "funding": { | ||
| 3753 | + "url": "https://github.com/sponsors/sindresorhus" | ||
| 3754 | + } | ||
| 3755 | + }, | ||
| 3756 | + "node_modules/gopd": { | ||
| 3757 | + "version": "1.2.0", | ||
| 3758 | + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", | ||
| 3759 | + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", | ||
| 3760 | + "license": "MIT", | ||
| 3761 | + "engines": { | ||
| 3762 | + "node": ">= 0.4" | ||
| 3763 | + }, | ||
| 3764 | + "funding": { | ||
| 3765 | + "url": "https://github.com/sponsors/ljharb" | ||
| 3766 | + } | ||
| 3767 | + }, | ||
| 3768 | + "node_modules/graphemer": { | ||
| 3769 | + "version": "1.4.0", | ||
| 3770 | + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", | ||
| 3771 | + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", | ||
| 3772 | + "dev": true, | ||
| 3773 | + "license": "MIT" | ||
| 3774 | + }, | ||
| 3775 | + "node_modules/has-flag": { | ||
| 3776 | + "version": "4.0.0", | ||
| 3777 | + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", | ||
| 3778 | + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", | ||
| 3779 | + "dev": true, | ||
| 3780 | + "license": "MIT", | ||
| 3781 | + "engines": { | ||
| 3782 | + "node": ">=8" | ||
| 3783 | + } | ||
| 3784 | + }, | ||
| 3785 | + "node_modules/has-symbols": { | ||
| 3786 | + "version": "1.1.0", | ||
| 3787 | + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", | ||
| 3788 | + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", | ||
| 3789 | + "license": "MIT", | ||
| 3790 | + "engines": { | ||
| 3791 | + "node": ">= 0.4" | ||
| 3792 | + }, | ||
| 3793 | + "funding": { | ||
| 3794 | + "url": "https://github.com/sponsors/ljharb" | ||
| 3795 | + } | ||
| 3796 | + }, | ||
| 3797 | + "node_modules/has-tostringtag": { | ||
| 3798 | + "version": "1.0.2", | ||
| 3799 | + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", | ||
| 3800 | + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", | ||
| 3801 | + "license": "MIT", | ||
| 3802 | + "dependencies": { | ||
| 3803 | + "has-symbols": "^1.0.3" | ||
| 3804 | + }, | ||
| 3805 | + "engines": { | ||
| 3806 | + "node": ">= 0.4" | ||
| 3807 | + }, | ||
| 3808 | + "funding": { | ||
| 3809 | + "url": "https://github.com/sponsors/ljharb" | ||
| 3810 | + } | ||
| 3811 | + }, | ||
| 3812 | + "node_modules/hasown": { | ||
| 3813 | + "version": "2.0.4", | ||
| 3814 | + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.4.tgz", | ||
| 3815 | + "integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==", | ||
| 3816 | + "license": "MIT", | ||
| 3817 | + "dependencies": { | ||
| 3818 | + "function-bind": "^1.1.2" | ||
| 3819 | + }, | ||
| 3820 | + "engines": { | ||
| 3821 | + "node": ">= 0.4" | ||
| 3822 | + } | ||
| 3823 | + }, | ||
| 3824 | + "node_modules/html-encoding-sniffer": { | ||
| 3825 | + "version": "4.0.0", | ||
| 3826 | + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz", | ||
| 3827 | + "integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==", | ||
| 3828 | + "dev": true, | ||
| 3829 | + "license": "MIT", | ||
| 3830 | + "dependencies": { | ||
| 3831 | + "whatwg-encoding": "^3.1.1" | ||
| 3832 | + }, | ||
| 3833 | + "engines": { | ||
| 3834 | + "node": ">=18" | ||
| 3835 | + } | ||
| 3836 | + }, | ||
| 3837 | + "node_modules/http-proxy-agent": { | ||
| 3838 | + "version": "7.0.2", | ||
| 3839 | + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", | ||
| 3840 | + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", | ||
| 3841 | + "dev": true, | ||
| 3842 | + "license": "MIT", | ||
| 3843 | + "dependencies": { | ||
| 3844 | + "agent-base": "^7.1.0", | ||
| 3845 | + "debug": "^4.3.4" | ||
| 3846 | + }, | ||
| 3847 | + "engines": { | ||
| 3848 | + "node": ">= 14" | ||
| 3849 | + } | ||
| 3850 | + }, | ||
| 3851 | + "node_modules/http-proxy-agent/node_modules/agent-base": { | ||
| 3852 | + "version": "7.1.4", | ||
| 3853 | + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz", | ||
| 3854 | + "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==", | ||
| 3855 | + "dev": true, | ||
| 3856 | + "license": "MIT", | ||
| 3857 | + "engines": { | ||
| 3858 | + "node": ">= 14" | ||
| 3859 | + } | ||
| 3860 | + }, | ||
| 3861 | + "node_modules/https-proxy-agent": { | ||
| 3862 | + "version": "5.0.1", | ||
| 3863 | + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", | ||
| 3864 | + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", | ||
| 3865 | + "license": "MIT", | ||
| 3866 | + "dependencies": { | ||
| 3867 | + "agent-base": "6", | ||
| 3868 | + "debug": "4" | ||
| 3869 | + }, | ||
| 3870 | + "engines": { | ||
| 3871 | + "node": ">= 6" | ||
| 3872 | + } | ||
| 3873 | + }, | ||
| 3874 | + "node_modules/iconv-lite": { | ||
| 3875 | + "version": "0.6.3", | ||
| 3876 | + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", | ||
| 3877 | + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", | ||
| 3878 | + "dev": true, | ||
| 3879 | + "license": "MIT", | ||
| 3880 | + "dependencies": { | ||
| 3881 | + "safer-buffer": ">= 2.1.2 < 3.0.0" | ||
| 3882 | + }, | ||
| 3883 | + "engines": { | ||
| 3884 | + "node": ">=0.10.0" | ||
| 3885 | + } | ||
| 3886 | + }, | ||
| 3887 | + "node_modules/ignore": { | ||
| 3888 | + "version": "7.0.5", | ||
| 3889 | + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", | ||
| 3890 | + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", | ||
| 3891 | + "dev": true, | ||
| 3892 | + "license": "MIT", | ||
| 3893 | + "engines": { | ||
| 3894 | + "node": ">= 4" | ||
| 3895 | + } | ||
| 3896 | + }, | ||
| 3897 | + "node_modules/immer": { | ||
| 3898 | + "version": "11.1.8", | ||
| 3899 | + "resolved": "https://registry.npmjs.org/immer/-/immer-11.1.8.tgz", | ||
| 3900 | + "integrity": "sha512-/tbkHMW7y10Lx6i1crLjD4/OhNkRG+Fo7byZHtah0547nIeXYcpIXaUh0IAQY6gO5459qpGGYapcEOHtFXkIuA==", | ||
| 3901 | + "license": "MIT", | ||
| 3902 | + "funding": { | ||
| 3903 | + "type": "opencollective", | ||
| 3904 | + "url": "https://opencollective.com/immer" | ||
| 3905 | + } | ||
| 3906 | + }, | ||
| 3907 | + "node_modules/import-fresh": { | ||
| 3908 | + "version": "3.3.1", | ||
| 3909 | + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", | ||
| 3910 | + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", | ||
| 3911 | + "dev": true, | ||
| 3912 | + "license": "MIT", | ||
| 3913 | + "dependencies": { | ||
| 3914 | + "parent-module": "^1.0.0", | ||
| 3915 | + "resolve-from": "^4.0.0" | ||
| 3916 | + }, | ||
| 3917 | + "engines": { | ||
| 3918 | + "node": ">=6" | ||
| 3919 | + }, | ||
| 3920 | + "funding": { | ||
| 3921 | + "url": "https://github.com/sponsors/sindresorhus" | ||
| 3922 | + } | ||
| 3923 | + }, | ||
| 3924 | + "node_modules/imurmurhash": { | ||
| 3925 | + "version": "0.1.4", | ||
| 3926 | + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", | ||
| 3927 | + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", | ||
| 3928 | + "dev": true, | ||
| 3929 | + "license": "MIT", | ||
| 3930 | + "engines": { | ||
| 3931 | + "node": ">=0.8.19" | ||
| 3932 | + } | ||
| 3933 | + }, | ||
| 3934 | + "node_modules/indent-string": { | ||
| 3935 | + "version": "4.0.0", | ||
| 3936 | + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", | ||
| 3937 | + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", | ||
| 3938 | + "dev": true, | ||
| 3939 | + "license": "MIT", | ||
| 3940 | + "engines": { | ||
| 3941 | + "node": ">=8" | ||
| 3942 | + } | ||
| 3943 | + }, | ||
| 3944 | + "node_modules/inflight": { | ||
| 3945 | + "version": "1.0.6", | ||
| 3946 | + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", | ||
| 3947 | + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", | ||
| 3948 | + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", | ||
| 3949 | + "dev": true, | ||
| 3950 | + "license": "ISC", | ||
| 3951 | + "dependencies": { | ||
| 3952 | + "once": "^1.3.0", | ||
| 3953 | + "wrappy": "1" | ||
| 3954 | + } | ||
| 3955 | + }, | ||
| 3956 | + "node_modules/inherits": { | ||
| 3957 | + "version": "2.0.4", | ||
| 3958 | + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", | ||
| 3959 | + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", | ||
| 3960 | + "dev": true, | ||
| 3961 | + "license": "ISC" | ||
| 3962 | + }, | ||
| 3963 | + "node_modules/is-extglob": { | ||
| 3964 | + "version": "2.1.1", | ||
| 3965 | + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", | ||
| 3966 | + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", | ||
| 3967 | + "dev": true, | ||
| 3968 | + "license": "MIT", | ||
| 3969 | + "engines": { | ||
| 3970 | + "node": ">=0.10.0" | ||
| 3971 | + } | ||
| 3972 | + }, | ||
| 3973 | + "node_modules/is-glob": { | ||
| 3974 | + "version": "4.0.3", | ||
| 3975 | + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", | ||
| 3976 | + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", | ||
| 3977 | + "dev": true, | ||
| 3978 | + "license": "MIT", | ||
| 3979 | + "dependencies": { | ||
| 3980 | + "is-extglob": "^2.1.1" | ||
| 3981 | + }, | ||
| 3982 | + "engines": { | ||
| 3983 | + "node": ">=0.10.0" | ||
| 3984 | + } | ||
| 3985 | + }, | ||
| 3986 | + "node_modules/is-path-inside": { | ||
| 3987 | + "version": "3.0.3", | ||
| 3988 | + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", | ||
| 3989 | + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", | ||
| 3990 | + "dev": true, | ||
| 3991 | + "license": "MIT", | ||
| 3992 | + "engines": { | ||
| 3993 | + "node": ">=8" | ||
| 3994 | + } | ||
| 3995 | + }, | ||
| 3996 | + "node_modules/is-potential-custom-element-name": { | ||
| 3997 | + "version": "1.0.1", | ||
| 3998 | + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", | ||
| 3999 | + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", | ||
| 4000 | + "dev": true, | ||
| 4001 | + "license": "MIT" | ||
| 4002 | + }, | ||
| 4003 | + "node_modules/isexe": { | ||
| 4004 | + "version": "2.0.0", | ||
| 4005 | + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", | ||
| 4006 | + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", | ||
| 4007 | + "dev": true, | ||
| 4008 | + "license": "ISC" | ||
| 4009 | + }, | ||
| 4010 | + "node_modules/js-tokens": { | ||
| 4011 | + "version": "4.0.0", | ||
| 4012 | + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", | ||
| 4013 | + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", | ||
| 4014 | + "license": "MIT" | ||
| 4015 | + }, | ||
| 4016 | + "node_modules/js-yaml": { | ||
| 4017 | + "version": "4.2.0", | ||
| 4018 | + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.2.0.tgz", | ||
| 4019 | + "integrity": "sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==", | ||
| 4020 | + "dev": true, | ||
| 4021 | + "funding": [ | ||
| 4022 | + { | ||
| 4023 | + "type": "github", | ||
| 4024 | + "url": "https://github.com/sponsors/puzrin" | ||
| 4025 | + }, | ||
| 4026 | + { | ||
| 4027 | + "type": "github", | ||
| 4028 | + "url": "https://github.com/sponsors/nodeca" | ||
| 4029 | + } | ||
| 4030 | + ], | ||
| 4031 | + "license": "MIT", | ||
| 4032 | + "dependencies": { | ||
| 4033 | + "argparse": "^2.0.1" | ||
| 4034 | + }, | ||
| 4035 | + "bin": { | ||
| 4036 | + "js-yaml": "bin/js-yaml.js" | ||
| 4037 | + } | ||
| 4038 | + }, | ||
| 4039 | + "node_modules/jsdom": { | ||
| 4040 | + "version": "25.0.1", | ||
| 4041 | + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-25.0.1.tgz", | ||
| 4042 | + "integrity": "sha512-8i7LzZj7BF8uplX+ZyOlIz86V6TAsSs+np6m1kpW9u0JWi4z/1t+FzcK1aek+ybTnAC4KhBL4uXCNT0wcUIeCw==", | ||
| 4043 | + "dev": true, | ||
| 4044 | + "license": "MIT", | ||
| 4045 | + "dependencies": { | ||
| 4046 | + "cssstyle": "^4.1.0", | ||
| 4047 | + "data-urls": "^5.0.0", | ||
| 4048 | + "decimal.js": "^10.4.3", | ||
| 4049 | + "form-data": "^4.0.0", | ||
| 4050 | + "html-encoding-sniffer": "^4.0.0", | ||
| 4051 | + "http-proxy-agent": "^7.0.2", | ||
| 4052 | + "https-proxy-agent": "^7.0.5", | ||
| 4053 | + "is-potential-custom-element-name": "^1.0.1", | ||
| 4054 | + "nwsapi": "^2.2.12", | ||
| 4055 | + "parse5": "^7.1.2", | ||
| 4056 | + "rrweb-cssom": "^0.7.1", | ||
| 4057 | + "saxes": "^6.0.0", | ||
| 4058 | + "symbol-tree": "^3.2.4", | ||
| 4059 | + "tough-cookie": "^5.0.0", | ||
| 4060 | + "w3c-xmlserializer": "^5.0.0", | ||
| 4061 | + "webidl-conversions": "^7.0.0", | ||
| 4062 | + "whatwg-encoding": "^3.1.1", | ||
| 4063 | + "whatwg-mimetype": "^4.0.0", | ||
| 4064 | + "whatwg-url": "^14.0.0", | ||
| 4065 | + "ws": "^8.18.0", | ||
| 4066 | + "xml-name-validator": "^5.0.0" | ||
| 4067 | + }, | ||
| 4068 | + "engines": { | ||
| 4069 | + "node": ">=18" | ||
| 4070 | + }, | ||
| 4071 | + "peerDependencies": { | ||
| 4072 | + "canvas": "^2.11.2" | ||
| 4073 | + }, | ||
| 4074 | + "peerDependenciesMeta": { | ||
| 4075 | + "canvas": { | ||
| 4076 | + "optional": true | ||
| 4077 | + } | ||
| 4078 | + } | ||
| 4079 | + }, | ||
| 4080 | + "node_modules/jsdom/node_modules/agent-base": { | ||
| 4081 | + "version": "7.1.4", | ||
| 4082 | + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz", | ||
| 4083 | + "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==", | ||
| 4084 | + "dev": true, | ||
| 4085 | + "license": "MIT", | ||
| 4086 | + "engines": { | ||
| 4087 | + "node": ">= 14" | ||
| 4088 | + } | ||
| 4089 | + }, | ||
| 4090 | + "node_modules/jsdom/node_modules/https-proxy-agent": { | ||
| 4091 | + "version": "7.0.6", | ||
| 4092 | + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", | ||
| 4093 | + "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", | ||
| 4094 | + "dev": true, | ||
| 4095 | + "license": "MIT", | ||
| 4096 | + "dependencies": { | ||
| 4097 | + "agent-base": "^7.1.2", | ||
| 4098 | + "debug": "4" | ||
| 4099 | + }, | ||
| 4100 | + "engines": { | ||
| 4101 | + "node": ">= 14" | ||
| 4102 | + } | ||
| 4103 | + }, | ||
| 4104 | + "node_modules/jsesc": { | ||
| 4105 | + "version": "3.1.0", | ||
| 4106 | + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", | ||
| 4107 | + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", | ||
| 4108 | + "dev": true, | ||
| 4109 | + "license": "MIT", | ||
| 4110 | + "bin": { | ||
| 4111 | + "jsesc": "bin/jsesc" | ||
| 4112 | + }, | ||
| 4113 | + "engines": { | ||
| 4114 | + "node": ">=6" | ||
| 4115 | + } | ||
| 4116 | + }, | ||
| 4117 | + "node_modules/json-buffer": { | ||
| 4118 | + "version": "3.0.1", | ||
| 4119 | + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", | ||
| 4120 | + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", | ||
| 4121 | + "dev": true, | ||
| 4122 | + "license": "MIT" | ||
| 4123 | + }, | ||
| 4124 | + "node_modules/json-schema-traverse": { | ||
| 4125 | + "version": "0.4.1", | ||
| 4126 | + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", | ||
| 4127 | + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", | ||
| 4128 | + "dev": true, | ||
| 4129 | + "license": "MIT" | ||
| 4130 | + }, | ||
| 4131 | + "node_modules/json-stable-stringify-without-jsonify": { | ||
| 4132 | + "version": "1.0.1", | ||
| 4133 | + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", | ||
| 4134 | + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", | ||
| 4135 | + "dev": true, | ||
| 4136 | + "license": "MIT" | ||
| 4137 | + }, | ||
| 4138 | + "node_modules/json2mq": { | ||
| 4139 | + "version": "0.2.0", | ||
| 4140 | + "resolved": "https://registry.npmjs.org/json2mq/-/json2mq-0.2.0.tgz", | ||
| 4141 | + "integrity": "sha512-SzoRg7ux5DWTII9J2qkrZrqV1gt+rTaoufMxEzXbS26Uid0NwaJd123HcoB80TgubEppxxIGdNxCx50fEoEWQA==", | ||
| 4142 | + "license": "MIT", | ||
| 4143 | + "dependencies": { | ||
| 4144 | + "string-convert": "^0.2.0" | ||
| 4145 | + } | ||
| 4146 | + }, | ||
| 4147 | + "node_modules/json5": { | ||
| 4148 | + "version": "2.2.3", | ||
| 4149 | + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", | ||
| 4150 | + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", | ||
| 4151 | + "dev": true, | ||
| 4152 | + "license": "MIT", | ||
| 4153 | + "bin": { | ||
| 4154 | + "json5": "lib/cli.js" | ||
| 4155 | + }, | ||
| 4156 | + "engines": { | ||
| 4157 | + "node": ">=6" | ||
| 4158 | + } | ||
| 4159 | + }, | ||
| 4160 | + "node_modules/keyv": { | ||
| 4161 | + "version": "4.5.4", | ||
| 4162 | + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", | ||
| 4163 | + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", | ||
| 4164 | + "dev": true, | ||
| 4165 | + "license": "MIT", | ||
| 4166 | + "dependencies": { | ||
| 4167 | + "json-buffer": "3.0.1" | ||
| 4168 | + } | ||
| 4169 | + }, | ||
| 4170 | + "node_modules/levn": { | ||
| 4171 | + "version": "0.4.1", | ||
| 4172 | + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", | ||
| 4173 | + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", | ||
| 4174 | + "dev": true, | ||
| 4175 | + "license": "MIT", | ||
| 4176 | + "dependencies": { | ||
| 4177 | + "prelude-ls": "^1.2.1", | ||
| 4178 | + "type-check": "~0.4.0" | ||
| 4179 | + }, | ||
| 4180 | + "engines": { | ||
| 4181 | + "node": ">= 0.8.0" | ||
| 4182 | + } | ||
| 4183 | + }, | ||
| 4184 | + "node_modules/locate-path": { | ||
| 4185 | + "version": "6.0.0", | ||
| 4186 | + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", | ||
| 4187 | + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", | ||
| 4188 | + "dev": true, | ||
| 4189 | + "license": "MIT", | ||
| 4190 | + "dependencies": { | ||
| 4191 | + "p-locate": "^5.0.0" | ||
| 4192 | + }, | ||
| 4193 | + "engines": { | ||
| 4194 | + "node": ">=10" | ||
| 4195 | + }, | ||
| 4196 | + "funding": { | ||
| 4197 | + "url": "https://github.com/sponsors/sindresorhus" | ||
| 4198 | + } | ||
| 4199 | + }, | ||
| 4200 | + "node_modules/lodash.merge": { | ||
| 4201 | + "version": "4.6.2", | ||
| 4202 | + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", | ||
| 4203 | + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", | ||
| 4204 | + "dev": true, | ||
| 4205 | + "license": "MIT" | ||
| 4206 | + }, | ||
| 4207 | + "node_modules/loose-envify": { | ||
| 4208 | + "version": "1.4.0", | ||
| 4209 | + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", | ||
| 4210 | + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", | ||
| 4211 | + "license": "MIT", | ||
| 4212 | + "dependencies": { | ||
| 4213 | + "js-tokens": "^3.0.0 || ^4.0.0" | ||
| 4214 | + }, | ||
| 4215 | + "bin": { | ||
| 4216 | + "loose-envify": "cli.js" | ||
| 4217 | + } | ||
| 4218 | + }, | ||
| 4219 | + "node_modules/loupe": { | ||
| 4220 | + "version": "3.2.1", | ||
| 4221 | + "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.2.1.tgz", | ||
| 4222 | + "integrity": "sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==", | ||
| 4223 | + "dev": true, | ||
| 4224 | + "license": "MIT" | ||
| 4225 | + }, | ||
| 4226 | + "node_modules/lru-cache": { | ||
| 4227 | + "version": "5.1.1", | ||
| 4228 | + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", | ||
| 4229 | + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", | ||
| 4230 | + "dev": true, | ||
| 4231 | + "license": "ISC", | ||
| 4232 | + "dependencies": { | ||
| 4233 | + "yallist": "^3.0.2" | ||
| 4234 | + } | ||
| 4235 | + }, | ||
| 4236 | + "node_modules/lz-string": { | ||
| 4237 | + "version": "1.5.0", | ||
| 4238 | + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", | ||
| 4239 | + "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", | ||
| 4240 | + "dev": true, | ||
| 4241 | + "license": "MIT", | ||
| 4242 | + "peer": true, | ||
| 4243 | + "bin": { | ||
| 4244 | + "lz-string": "bin/bin.js" | ||
| 4245 | + } | ||
| 4246 | + }, | ||
| 4247 | + "node_modules/magic-string": { | ||
| 4248 | + "version": "0.30.21", | ||
| 4249 | + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", | ||
| 4250 | + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", | ||
| 4251 | + "dev": true, | ||
| 4252 | + "license": "MIT", | ||
| 4253 | + "dependencies": { | ||
| 4254 | + "@jridgewell/sourcemap-codec": "^1.5.5" | ||
| 4255 | + } | ||
| 4256 | + }, | ||
| 4257 | + "node_modules/math-intrinsics": { | ||
| 4258 | + "version": "1.1.0", | ||
| 4259 | + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", | ||
| 4260 | + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", | ||
| 4261 | + "license": "MIT", | ||
| 4262 | + "engines": { | ||
| 4263 | + "node": ">= 0.4" | ||
| 4264 | + } | ||
| 4265 | + }, | ||
| 4266 | + "node_modules/mime-db": { | ||
| 4267 | + "version": "1.52.0", | ||
| 4268 | + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", | ||
| 4269 | + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", | ||
| 4270 | + "license": "MIT", | ||
| 4271 | + "engines": { | ||
| 4272 | + "node": ">= 0.6" | ||
| 4273 | + } | ||
| 4274 | + }, | ||
| 4275 | + "node_modules/mime-types": { | ||
| 4276 | + "version": "2.1.35", | ||
| 4277 | + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", | ||
| 4278 | + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", | ||
| 4279 | + "license": "MIT", | ||
| 4280 | + "dependencies": { | ||
| 4281 | + "mime-db": "1.52.0" | ||
| 4282 | + }, | ||
| 4283 | + "engines": { | ||
| 4284 | + "node": ">= 0.6" | ||
| 4285 | + } | ||
| 4286 | + }, | ||
| 4287 | + "node_modules/min-indent": { | ||
| 4288 | + "version": "1.0.1", | ||
| 4289 | + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", | ||
| 4290 | + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", | ||
| 4291 | + "dev": true, | ||
| 4292 | + "license": "MIT", | ||
| 4293 | + "engines": { | ||
| 4294 | + "node": ">=4" | ||
| 4295 | + } | ||
| 4296 | + }, | ||
| 4297 | + "node_modules/minimatch": { | ||
| 4298 | + "version": "10.2.5", | ||
| 4299 | + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz", | ||
| 4300 | + "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==", | ||
| 4301 | + "dev": true, | ||
| 4302 | + "license": "BlueOak-1.0.0", | ||
| 4303 | + "dependencies": { | ||
| 4304 | + "brace-expansion": "^5.0.5" | ||
| 4305 | + }, | ||
| 4306 | + "engines": { | ||
| 4307 | + "node": "18 || 20 || >=22" | ||
| 4308 | + }, | ||
| 4309 | + "funding": { | ||
| 4310 | + "url": "https://github.com/sponsors/isaacs" | ||
| 4311 | + } | ||
| 4312 | + }, | ||
| 4313 | + "node_modules/ms": { | ||
| 4314 | + "version": "2.1.3", | ||
| 4315 | + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", | ||
| 4316 | + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", | ||
| 4317 | + "license": "MIT" | ||
| 4318 | + }, | ||
| 4319 | + "node_modules/nanoid": { | ||
| 4320 | + "version": "3.3.12", | ||
| 4321 | + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz", | ||
| 4322 | + "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==", | ||
| 4323 | + "dev": true, | ||
| 4324 | + "funding": [ | ||
| 4325 | + { | ||
| 4326 | + "type": "github", | ||
| 4327 | + "url": "https://github.com/sponsors/ai" | ||
| 4328 | + } | ||
| 4329 | + ], | ||
| 4330 | + "license": "MIT", | ||
| 4331 | + "bin": { | ||
| 4332 | + "nanoid": "bin/nanoid.cjs" | ||
| 4333 | + }, | ||
| 4334 | + "engines": { | ||
| 4335 | + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" | ||
| 4336 | + } | ||
| 4337 | + }, | ||
| 4338 | + "node_modules/natural-compare": { | ||
| 4339 | + "version": "1.4.0", | ||
| 4340 | + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", | ||
| 4341 | + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", | ||
| 4342 | + "dev": true, | ||
| 4343 | + "license": "MIT" | ||
| 4344 | + }, | ||
| 4345 | + "node_modules/node-releases": { | ||
| 4346 | + "version": "2.0.46", | ||
| 4347 | + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.46.tgz", | ||
| 4348 | + "integrity": "sha512-GYVXHE2KnrzAfsAjl4uP++evGFCrAU1jta4ubEjIG7YWt/64Gqv66a30yKwWczVjA6j3bM4nBwH7Pk1JmDHaxQ==", | ||
| 4349 | + "dev": true, | ||
| 4350 | + "license": "MIT", | ||
| 4351 | + "engines": { | ||
| 4352 | + "node": ">=18" | ||
| 4353 | + } | ||
| 4354 | + }, | ||
| 4355 | + "node_modules/nwsapi": { | ||
| 4356 | + "version": "2.2.23", | ||
| 4357 | + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.23.tgz", | ||
| 4358 | + "integrity": "sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ==", | ||
| 4359 | + "dev": true, | ||
| 4360 | + "license": "MIT" | ||
| 4361 | + }, | ||
| 4362 | + "node_modules/once": { | ||
| 4363 | + "version": "1.4.0", | ||
| 4364 | + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", | ||
| 4365 | + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", | ||
| 4366 | + "dev": true, | ||
| 4367 | + "license": "ISC", | ||
| 4368 | + "dependencies": { | ||
| 4369 | + "wrappy": "1" | ||
| 4370 | + } | ||
| 4371 | + }, | ||
| 4372 | + "node_modules/optionator": { | ||
| 4373 | + "version": "0.9.4", | ||
| 4374 | + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", | ||
| 4375 | + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", | ||
| 4376 | + "dev": true, | ||
| 4377 | + "license": "MIT", | ||
| 4378 | + "dependencies": { | ||
| 4379 | + "deep-is": "^0.1.3", | ||
| 4380 | + "fast-levenshtein": "^2.0.6", | ||
| 4381 | + "levn": "^0.4.1", | ||
| 4382 | + "prelude-ls": "^1.2.1", | ||
| 4383 | + "type-check": "^0.4.0", | ||
| 4384 | + "word-wrap": "^1.2.5" | ||
| 4385 | + }, | ||
| 4386 | + "engines": { | ||
| 4387 | + "node": ">= 0.8.0" | ||
| 4388 | + } | ||
| 4389 | + }, | ||
| 4390 | + "node_modules/p-limit": { | ||
| 4391 | + "version": "3.1.0", | ||
| 4392 | + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", | ||
| 4393 | + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", | ||
| 4394 | + "dev": true, | ||
| 4395 | + "license": "MIT", | ||
| 4396 | + "dependencies": { | ||
| 4397 | + "yocto-queue": "^0.1.0" | ||
| 4398 | + }, | ||
| 4399 | + "engines": { | ||
| 4400 | + "node": ">=10" | ||
| 4401 | + }, | ||
| 4402 | + "funding": { | ||
| 4403 | + "url": "https://github.com/sponsors/sindresorhus" | ||
| 4404 | + } | ||
| 4405 | + }, | ||
| 4406 | + "node_modules/p-locate": { | ||
| 4407 | + "version": "5.0.0", | ||
| 4408 | + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", | ||
| 4409 | + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", | ||
| 4410 | + "dev": true, | ||
| 4411 | + "license": "MIT", | ||
| 4412 | + "dependencies": { | ||
| 4413 | + "p-limit": "^3.0.2" | ||
| 4414 | + }, | ||
| 4415 | + "engines": { | ||
| 4416 | + "node": ">=10" | ||
| 4417 | + }, | ||
| 4418 | + "funding": { | ||
| 4419 | + "url": "https://github.com/sponsors/sindresorhus" | ||
| 4420 | + } | ||
| 4421 | + }, | ||
| 4422 | + "node_modules/parent-module": { | ||
| 4423 | + "version": "1.0.1", | ||
| 4424 | + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", | ||
| 4425 | + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", | ||
| 4426 | + "dev": true, | ||
| 4427 | + "license": "MIT", | ||
| 4428 | + "dependencies": { | ||
| 4429 | + "callsites": "^3.0.0" | ||
| 4430 | + }, | ||
| 4431 | + "engines": { | ||
| 4432 | + "node": ">=6" | ||
| 4433 | + } | ||
| 4434 | + }, | ||
| 4435 | + "node_modules/parse5": { | ||
| 4436 | + "version": "7.3.0", | ||
| 4437 | + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz", | ||
| 4438 | + "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==", | ||
| 4439 | + "dev": true, | ||
| 4440 | + "license": "MIT", | ||
| 4441 | + "dependencies": { | ||
| 4442 | + "entities": "^6.0.0" | ||
| 4443 | + }, | ||
| 4444 | + "funding": { | ||
| 4445 | + "url": "https://github.com/inikulin/parse5?sponsor=1" | ||
| 4446 | + } | ||
| 4447 | + }, | ||
| 4448 | + "node_modules/path-exists": { | ||
| 4449 | + "version": "4.0.0", | ||
| 4450 | + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", | ||
| 4451 | + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", | ||
| 4452 | + "dev": true, | ||
| 4453 | + "license": "MIT", | ||
| 4454 | + "engines": { | ||
| 4455 | + "node": ">=8" | ||
| 4456 | + } | ||
| 4457 | + }, | ||
| 4458 | + "node_modules/path-is-absolute": { | ||
| 4459 | + "version": "1.0.1", | ||
| 4460 | + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", | ||
| 4461 | + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", | ||
| 4462 | + "dev": true, | ||
| 4463 | + "license": "MIT", | ||
| 4464 | + "engines": { | ||
| 4465 | + "node": ">=0.10.0" | ||
| 4466 | + } | ||
| 4467 | + }, | ||
| 4468 | + "node_modules/path-key": { | ||
| 4469 | + "version": "3.1.1", | ||
| 4470 | + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", | ||
| 4471 | + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", | ||
| 4472 | + "dev": true, | ||
| 4473 | + "license": "MIT", | ||
| 4474 | + "engines": { | ||
| 4475 | + "node": ">=8" | ||
| 4476 | + } | ||
| 4477 | + }, | ||
| 4478 | + "node_modules/pathe": { | ||
| 4479 | + "version": "2.0.3", | ||
| 4480 | + "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz", | ||
| 4481 | + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", | ||
| 4482 | + "dev": true, | ||
| 4483 | + "license": "MIT" | ||
| 4484 | + }, | ||
| 4485 | + "node_modules/pathval": { | ||
| 4486 | + "version": "2.0.1", | ||
| 4487 | + "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.1.tgz", | ||
| 4488 | + "integrity": "sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==", | ||
| 4489 | + "dev": true, | ||
| 4490 | + "license": "MIT", | ||
| 4491 | + "engines": { | ||
| 4492 | + "node": ">= 14.16" | ||
| 4493 | + } | ||
| 4494 | + }, | ||
| 4495 | + "node_modules/picocolors": { | ||
| 4496 | + "version": "1.1.1", | ||
| 4497 | + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", | ||
| 4498 | + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", | ||
| 4499 | + "dev": true, | ||
| 4500 | + "license": "ISC" | ||
| 4501 | + }, | ||
| 4502 | + "node_modules/picomatch": { | ||
| 4503 | + "version": "4.0.4", | ||
| 4504 | + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", | ||
| 4505 | + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", | ||
| 4506 | + "dev": true, | ||
| 4507 | + "license": "MIT", | ||
| 4508 | + "engines": { | ||
| 4509 | + "node": ">=12" | ||
| 4510 | + }, | ||
| 4511 | + "funding": { | ||
| 4512 | + "url": "https://github.com/sponsors/jonschlinkert" | ||
| 4513 | + } | ||
| 4514 | + }, | ||
| 4515 | + "node_modules/playwright": { | ||
| 4516 | + "version": "1.60.0", | ||
| 4517 | + "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.60.0.tgz", | ||
| 4518 | + "integrity": "sha512-hheHdokM8cdqCb0lcE3s+zT4t4W+vvjpGxsZlDnikarzx8tSzMebh3UiFtgqwFwnTnjYQcsyMF8ei2mCO/tpeA==", | ||
| 4519 | + "dev": true, | ||
| 4520 | + "license": "Apache-2.0", | ||
| 4521 | + "dependencies": { | ||
| 4522 | + "playwright-core": "1.60.0" | ||
| 4523 | + }, | ||
| 4524 | + "bin": { | ||
| 4525 | + "playwright": "cli.js" | ||
| 4526 | + }, | ||
| 4527 | + "engines": { | ||
| 4528 | + "node": ">=18" | ||
| 4529 | + }, | ||
| 4530 | + "optionalDependencies": { | ||
| 4531 | + "fsevents": "2.3.2" | ||
| 4532 | + } | ||
| 4533 | + }, | ||
| 4534 | + "node_modules/playwright-core": { | ||
| 4535 | + "version": "1.60.0", | ||
| 4536 | + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.60.0.tgz", | ||
| 4537 | + "integrity": "sha512-9bW6zvX/m0lEbgTKJ6YppOKx8H3VOPBMOCFh2irXFOT4BbHgrx5hPjwJYLT40Lu+4qtD36qKc/Hn56StUW57IA==", | ||
| 4538 | + "dev": true, | ||
| 4539 | + "license": "Apache-2.0", | ||
| 4540 | + "bin": { | ||
| 4541 | + "playwright-core": "cli.js" | ||
| 4542 | + }, | ||
| 4543 | + "engines": { | ||
| 4544 | + "node": ">=18" | ||
| 4545 | + } | ||
| 4546 | + }, | ||
| 4547 | + "node_modules/postcss": { | ||
| 4548 | + "version": "8.5.15", | ||
| 4549 | + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz", | ||
| 4550 | + "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==", | ||
| 4551 | + "dev": true, | ||
| 4552 | + "funding": [ | ||
| 4553 | + { | ||
| 4554 | + "type": "opencollective", | ||
| 4555 | + "url": "https://opencollective.com/postcss/" | ||
| 4556 | + }, | ||
| 4557 | + { | ||
| 4558 | + "type": "tidelift", | ||
| 4559 | + "url": "https://tidelift.com/funding/github/npm/postcss" | ||
| 4560 | + }, | ||
| 4561 | + { | ||
| 4562 | + "type": "github", | ||
| 4563 | + "url": "https://github.com/sponsors/ai" | ||
| 4564 | + } | ||
| 4565 | + ], | ||
| 4566 | + "license": "MIT", | ||
| 4567 | + "dependencies": { | ||
| 4568 | + "nanoid": "^3.3.12", | ||
| 4569 | + "picocolors": "^1.1.1", | ||
| 4570 | + "source-map-js": "^1.2.1" | ||
| 4571 | + }, | ||
| 4572 | + "engines": { | ||
| 4573 | + "node": "^10 || ^12 || >=14" | ||
| 4574 | + } | ||
| 4575 | + }, | ||
| 4576 | + "node_modules/prelude-ls": { | ||
| 4577 | + "version": "1.2.1", | ||
| 4578 | + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", | ||
| 4579 | + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", | ||
| 4580 | + "dev": true, | ||
| 4581 | + "license": "MIT", | ||
| 4582 | + "engines": { | ||
| 4583 | + "node": ">= 0.8.0" | ||
| 4584 | + } | ||
| 4585 | + }, | ||
| 4586 | + "node_modules/pretty-format": { | ||
| 4587 | + "version": "27.5.1", | ||
| 4588 | + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", | ||
| 4589 | + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", | ||
| 4590 | + "dev": true, | ||
| 4591 | + "license": "MIT", | ||
| 4592 | + "peer": true, | ||
| 4593 | + "dependencies": { | ||
| 4594 | + "ansi-regex": "^5.0.1", | ||
| 4595 | + "ansi-styles": "^5.0.0", | ||
| 4596 | + "react-is": "^17.0.1" | ||
| 4597 | + }, | ||
| 4598 | + "engines": { | ||
| 4599 | + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" | ||
| 4600 | + } | ||
| 4601 | + }, | ||
| 4602 | + "node_modules/pretty-format/node_modules/ansi-styles": { | ||
| 4603 | + "version": "5.2.0", | ||
| 4604 | + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", | ||
| 4605 | + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", | ||
| 4606 | + "dev": true, | ||
| 4607 | + "license": "MIT", | ||
| 4608 | + "peer": true, | ||
| 4609 | + "engines": { | ||
| 4610 | + "node": ">=10" | ||
| 4611 | + }, | ||
| 4612 | + "funding": { | ||
| 4613 | + "url": "https://github.com/chalk/ansi-styles?sponsor=1" | ||
| 4614 | + } | ||
| 4615 | + }, | ||
| 4616 | + "node_modules/proxy-from-env": { | ||
| 4617 | + "version": "2.1.0", | ||
| 4618 | + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-2.1.0.tgz", | ||
| 4619 | + "integrity": "sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==", | ||
| 4620 | + "license": "MIT", | ||
| 4621 | + "engines": { | ||
| 4622 | + "node": ">=10" | ||
| 4623 | + } | ||
| 4624 | + }, | ||
| 4625 | + "node_modules/punycode": { | ||
| 4626 | + "version": "2.3.1", | ||
| 4627 | + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", | ||
| 4628 | + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", | ||
| 4629 | + "dev": true, | ||
| 4630 | + "license": "MIT", | ||
| 4631 | + "engines": { | ||
| 4632 | + "node": ">=6" | ||
| 4633 | + } | ||
| 4634 | + }, | ||
| 4635 | + "node_modules/queue-microtask": { | ||
| 4636 | + "version": "1.2.3", | ||
| 4637 | + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", | ||
| 4638 | + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", | ||
| 4639 | + "dev": true, | ||
| 4640 | + "funding": [ | ||
| 4641 | + { | ||
| 4642 | + "type": "github", | ||
| 4643 | + "url": "https://github.com/sponsors/feross" | ||
| 4644 | + }, | ||
| 4645 | + { | ||
| 4646 | + "type": "patreon", | ||
| 4647 | + "url": "https://www.patreon.com/feross" | ||
| 4648 | + }, | ||
| 4649 | + { | ||
| 4650 | + "type": "consulting", | ||
| 4651 | + "url": "https://feross.org/support" | ||
| 4652 | + } | ||
| 4653 | + ], | ||
| 4654 | + "license": "MIT" | ||
| 4655 | + }, | ||
| 4656 | + "node_modules/rc-cascader": { | ||
| 4657 | + "version": "3.34.0", | ||
| 4658 | + "resolved": "https://registry.npmjs.org/rc-cascader/-/rc-cascader-3.34.0.tgz", | ||
| 4659 | + "integrity": "sha512-KpXypcvju9ptjW9FaN2NFcA2QH9E9LHKq169Y0eWtH4e/wHQ5Wh5qZakAgvb8EKZ736WZ3B0zLLOBsrsja5Dag==", | ||
| 4660 | + "license": "MIT", | ||
| 4661 | + "dependencies": { | ||
| 4662 | + "@babel/runtime": "^7.25.7", | ||
| 4663 | + "classnames": "^2.3.1", | ||
| 4664 | + "rc-select": "~14.16.2", | ||
| 4665 | + "rc-tree": "~5.13.0", | ||
| 4666 | + "rc-util": "^5.43.0" | ||
| 4667 | + }, | ||
| 4668 | + "peerDependencies": { | ||
| 4669 | + "react": ">=16.9.0", | ||
| 4670 | + "react-dom": ">=16.9.0" | ||
| 4671 | + } | ||
| 4672 | + }, | ||
| 4673 | + "node_modules/rc-checkbox": { | ||
| 4674 | + "version": "3.5.0", | ||
| 4675 | + "resolved": "https://registry.npmjs.org/rc-checkbox/-/rc-checkbox-3.5.0.tgz", | ||
| 4676 | + "integrity": "sha512-aOAQc3E98HteIIsSqm6Xk2FPKIER6+5vyEFMZfo73TqM+VVAIqOkHoPjgKLqSNtVLWScoaM7vY2ZrGEheI79yg==", | ||
| 4677 | + "license": "MIT", | ||
| 4678 | + "dependencies": { | ||
| 4679 | + "@babel/runtime": "^7.10.1", | ||
| 4680 | + "classnames": "^2.3.2", | ||
| 4681 | + "rc-util": "^5.25.2" | ||
| 4682 | + }, | ||
| 4683 | + "peerDependencies": { | ||
| 4684 | + "react": ">=16.9.0", | ||
| 4685 | + "react-dom": ">=16.9.0" | ||
| 4686 | + } | ||
| 4687 | + }, | ||
| 4688 | + "node_modules/rc-collapse": { | ||
| 4689 | + "version": "3.9.0", | ||
| 4690 | + "resolved": "https://registry.npmjs.org/rc-collapse/-/rc-collapse-3.9.0.tgz", | ||
| 4691 | + "integrity": "sha512-swDdz4QZ4dFTo4RAUMLL50qP0EY62N2kvmk2We5xYdRwcRn8WcYtuetCJpwpaCbUfUt5+huLpVxhvmnK+PHrkA==", | ||
| 4692 | + "license": "MIT", | ||
| 4693 | + "dependencies": { | ||
| 4694 | + "@babel/runtime": "^7.10.1", | ||
| 4695 | + "classnames": "2.x", | ||
| 4696 | + "rc-motion": "^2.3.4", | ||
| 4697 | + "rc-util": "^5.27.0" | ||
| 4698 | + }, | ||
| 4699 | + "peerDependencies": { | ||
| 4700 | + "react": ">=16.9.0", | ||
| 4701 | + "react-dom": ">=16.9.0" | ||
| 4702 | + } | ||
| 4703 | + }, | ||
| 4704 | + "node_modules/rc-dialog": { | ||
| 4705 | + "version": "9.6.0", | ||
| 4706 | + "resolved": "https://registry.npmjs.org/rc-dialog/-/rc-dialog-9.6.0.tgz", | ||
| 4707 | + "integrity": "sha512-ApoVi9Z8PaCQg6FsUzS8yvBEQy0ZL2PkuvAgrmohPkN3okps5WZ5WQWPc1RNuiOKaAYv8B97ACdsFU5LizzCqg==", | ||
| 4708 | + "license": "MIT", | ||
| 4709 | + "dependencies": { | ||
| 4710 | + "@babel/runtime": "^7.10.1", | ||
| 4711 | + "@rc-component/portal": "^1.0.0-8", | ||
| 4712 | + "classnames": "^2.2.6", | ||
| 4713 | + "rc-motion": "^2.3.0", | ||
| 4714 | + "rc-util": "^5.21.0" | ||
| 4715 | + }, | ||
| 4716 | + "peerDependencies": { | ||
| 4717 | + "react": ">=16.9.0", | ||
| 4718 | + "react-dom": ">=16.9.0" | ||
| 4719 | + } | ||
| 4720 | + }, | ||
| 4721 | + "node_modules/rc-drawer": { | ||
| 4722 | + "version": "7.3.0", | ||
| 4723 | + "resolved": "https://registry.npmjs.org/rc-drawer/-/rc-drawer-7.3.0.tgz", | ||
| 4724 | + "integrity": "sha512-DX6CIgiBWNpJIMGFO8BAISFkxiuKitoizooj4BDyee8/SnBn0zwO2FHrNDpqqepj0E/TFTDpmEBCyFuTgC7MOg==", | ||
| 4725 | + "license": "MIT", | ||
| 4726 | + "dependencies": { | ||
| 4727 | + "@babel/runtime": "^7.23.9", | ||
| 4728 | + "@rc-component/portal": "^1.1.1", | ||
| 4729 | + "classnames": "^2.2.6", | ||
| 4730 | + "rc-motion": "^2.6.1", | ||
| 4731 | + "rc-util": "^5.38.1" | ||
| 4732 | + }, | ||
| 4733 | + "peerDependencies": { | ||
| 4734 | + "react": ">=16.9.0", | ||
| 4735 | + "react-dom": ">=16.9.0" | ||
| 4736 | + } | ||
| 4737 | + }, | ||
| 4738 | + "node_modules/rc-dropdown": { | ||
| 4739 | + "version": "4.2.1", | ||
| 4740 | + "resolved": "https://registry.npmjs.org/rc-dropdown/-/rc-dropdown-4.2.1.tgz", | ||
| 4741 | + "integrity": "sha512-YDAlXsPv3I1n42dv1JpdM7wJ+gSUBfeyPK59ZpBD9jQhK9jVuxpjj3NmWQHOBceA1zEPVX84T2wbdb2SD0UjmA==", | ||
| 4742 | + "license": "MIT", | ||
| 4743 | + "dependencies": { | ||
| 4744 | + "@babel/runtime": "^7.18.3", | ||
| 4745 | + "@rc-component/trigger": "^2.0.0", | ||
| 4746 | + "classnames": "^2.2.6", | ||
| 4747 | + "rc-util": "^5.44.1" | ||
| 4748 | + }, | ||
| 4749 | + "peerDependencies": { | ||
| 4750 | + "react": ">=16.11.0", | ||
| 4751 | + "react-dom": ">=16.11.0" | ||
| 4752 | + } | ||
| 4753 | + }, | ||
| 4754 | + "node_modules/rc-field-form": { | ||
| 4755 | + "version": "2.7.1", | ||
| 4756 | + "resolved": "https://registry.npmjs.org/rc-field-form/-/rc-field-form-2.7.1.tgz", | ||
| 4757 | + "integrity": "sha512-vKeSifSJ6HoLaAB+B8aq/Qgm8a3dyxROzCtKNCsBQgiverpc4kWDQihoUwzUj+zNWJOykwSY4dNX3QrGwtVb9A==", | ||
| 4758 | + "license": "MIT", | ||
| 4759 | + "dependencies": { | ||
| 4760 | + "@babel/runtime": "^7.18.0", | ||
| 4761 | + "@rc-component/async-validator": "^5.0.3", | ||
| 4762 | + "rc-util": "^5.32.2" | ||
| 4763 | + }, | ||
| 4764 | + "engines": { | ||
| 4765 | + "node": ">=8.x" | ||
| 4766 | + }, | ||
| 4767 | + "peerDependencies": { | ||
| 4768 | + "react": ">=16.9.0", | ||
| 4769 | + "react-dom": ">=16.9.0" | ||
| 4770 | + } | ||
| 4771 | + }, | ||
| 4772 | + "node_modules/rc-image": { | ||
| 4773 | + "version": "7.12.0", | ||
| 4774 | + "resolved": "https://registry.npmjs.org/rc-image/-/rc-image-7.12.0.tgz", | ||
| 4775 | + "integrity": "sha512-cZ3HTyyckPnNnUb9/DRqduqzLfrQRyi+CdHjdqgsyDpI3Ln5UX1kXnAhPBSJj9pVRzwRFgqkN7p9b6HBDjmu/Q==", | ||
| 4776 | + "license": "MIT", | ||
| 4777 | + "dependencies": { | ||
| 4778 | + "@babel/runtime": "^7.11.2", | ||
| 4779 | + "@rc-component/portal": "^1.0.2", | ||
| 4780 | + "classnames": "^2.2.6", | ||
| 4781 | + "rc-dialog": "~9.6.0", | ||
| 4782 | + "rc-motion": "^2.6.2", | ||
| 4783 | + "rc-util": "^5.34.1" | ||
| 4784 | + }, | ||
| 4785 | + "peerDependencies": { | ||
| 4786 | + "react": ">=16.9.0", | ||
| 4787 | + "react-dom": ">=16.9.0" | ||
| 4788 | + } | ||
| 4789 | + }, | ||
| 4790 | + "node_modules/rc-input": { | ||
| 4791 | + "version": "1.8.0", | ||
| 4792 | + "resolved": "https://registry.npmjs.org/rc-input/-/rc-input-1.8.0.tgz", | ||
| 4793 | + "integrity": "sha512-KXvaTbX+7ha8a/k+eg6SYRVERK0NddX8QX7a7AnRvUa/rEH0CNMlpcBzBkhI0wp2C8C4HlMoYl8TImSN+fuHKA==", | ||
| 4794 | + "license": "MIT", | ||
| 4795 | + "dependencies": { | ||
| 4796 | + "@babel/runtime": "^7.11.1", | ||
| 4797 | + "classnames": "^2.2.1", | ||
| 4798 | + "rc-util": "^5.18.1" | ||
| 4799 | + }, | ||
| 4800 | + "peerDependencies": { | ||
| 4801 | + "react": ">=16.0.0", | ||
| 4802 | + "react-dom": ">=16.0.0" | ||
| 4803 | + } | ||
| 4804 | + }, | ||
| 4805 | + "node_modules/rc-input-number": { | ||
| 4806 | + "version": "9.5.0", | ||
| 4807 | + "resolved": "https://registry.npmjs.org/rc-input-number/-/rc-input-number-9.5.0.tgz", | ||
| 4808 | + "integrity": "sha512-bKaEvB5tHebUURAEXw35LDcnRZLq3x1k7GxfAqBMzmpHkDGzjAtnUL8y4y5N15rIFIg5IJgwr211jInl3cipag==", | ||
| 4809 | + "license": "MIT", | ||
| 4810 | + "dependencies": { | ||
| 4811 | + "@babel/runtime": "^7.10.1", | ||
| 4812 | + "@rc-component/mini-decimal": "^1.0.1", | ||
| 4813 | + "classnames": "^2.2.5", | ||
| 4814 | + "rc-input": "~1.8.0", | ||
| 4815 | + "rc-util": "^5.40.1" | ||
| 4816 | + }, | ||
| 4817 | + "peerDependencies": { | ||
| 4818 | + "react": ">=16.9.0", | ||
| 4819 | + "react-dom": ">=16.9.0" | ||
| 4820 | + } | ||
| 4821 | + }, | ||
| 4822 | + "node_modules/rc-mentions": { | ||
| 4823 | + "version": "2.20.0", | ||
| 4824 | + "resolved": "https://registry.npmjs.org/rc-mentions/-/rc-mentions-2.20.0.tgz", | ||
| 4825 | + "integrity": "sha512-w8HCMZEh3f0nR8ZEd466ATqmXFCMGMN5UFCzEUL0bM/nGw/wOS2GgRzKBcm19K++jDyuWCOJOdgcKGXU3fXfbQ==", | ||
| 4826 | + "license": "MIT", | ||
| 4827 | + "dependencies": { | ||
| 4828 | + "@babel/runtime": "^7.22.5", | ||
| 4829 | + "@rc-component/trigger": "^2.0.0", | ||
| 4830 | + "classnames": "^2.2.6", | ||
| 4831 | + "rc-input": "~1.8.0", | ||
| 4832 | + "rc-menu": "~9.16.0", | ||
| 4833 | + "rc-textarea": "~1.10.0", | ||
| 4834 | + "rc-util": "^5.34.1" | ||
| 4835 | + }, | ||
| 4836 | + "peerDependencies": { | ||
| 4837 | + "react": ">=16.9.0", | ||
| 4838 | + "react-dom": ">=16.9.0" | ||
| 4839 | + } | ||
| 4840 | + }, | ||
| 4841 | + "node_modules/rc-menu": { | ||
| 4842 | + "version": "9.16.1", | ||
| 4843 | + "resolved": "https://registry.npmjs.org/rc-menu/-/rc-menu-9.16.1.tgz", | ||
| 4844 | + "integrity": "sha512-ghHx6/6Dvp+fw8CJhDUHFHDJ84hJE3BXNCzSgLdmNiFErWSOaZNsihDAsKq9ByTALo/xkNIwtDFGIl6r+RPXBg==", | ||
| 4845 | + "license": "MIT", | ||
| 4846 | + "dependencies": { | ||
| 4847 | + "@babel/runtime": "^7.10.1", | ||
| 4848 | + "@rc-component/trigger": "^2.0.0", | ||
| 4849 | + "classnames": "2.x", | ||
| 4850 | + "rc-motion": "^2.4.3", | ||
| 4851 | + "rc-overflow": "^1.3.1", | ||
| 4852 | + "rc-util": "^5.27.0" | ||
| 4853 | + }, | ||
| 4854 | + "peerDependencies": { | ||
| 4855 | + "react": ">=16.9.0", | ||
| 4856 | + "react-dom": ">=16.9.0" | ||
| 4857 | + } | ||
| 4858 | + }, | ||
| 4859 | + "node_modules/rc-motion": { | ||
| 4860 | + "version": "2.9.5", | ||
| 4861 | + "resolved": "https://registry.npmjs.org/rc-motion/-/rc-motion-2.9.5.tgz", | ||
| 4862 | + "integrity": "sha512-w+XTUrfh7ArbYEd2582uDrEhmBHwK1ZENJiSJVb7uRxdE7qJSYjbO2eksRXmndqyKqKoYPc9ClpPh5242mV1vA==", | ||
| 4863 | + "license": "MIT", | ||
| 4864 | + "dependencies": { | ||
| 4865 | + "@babel/runtime": "^7.11.1", | ||
| 4866 | + "classnames": "^2.2.1", | ||
| 4867 | + "rc-util": "^5.44.0" | ||
| 4868 | + }, | ||
| 4869 | + "peerDependencies": { | ||
| 4870 | + "react": ">=16.9.0", | ||
| 4871 | + "react-dom": ">=16.9.0" | ||
| 4872 | + } | ||
| 4873 | + }, | ||
| 4874 | + "node_modules/rc-notification": { | ||
| 4875 | + "version": "5.6.4", | ||
| 4876 | + "resolved": "https://registry.npmjs.org/rc-notification/-/rc-notification-5.6.4.tgz", | ||
| 4877 | + "integrity": "sha512-KcS4O6B4qzM3KH7lkwOB7ooLPZ4b6J+VMmQgT51VZCeEcmghdeR4IrMcFq0LG+RPdnbe/ArT086tGM8Snimgiw==", | ||
| 4878 | + "license": "MIT", | ||
| 4879 | + "dependencies": { | ||
| 4880 | + "@babel/runtime": "^7.10.1", | ||
| 4881 | + "classnames": "2.x", | ||
| 4882 | + "rc-motion": "^2.9.0", | ||
| 4883 | + "rc-util": "^5.20.1" | ||
| 4884 | + }, | ||
| 4885 | + "engines": { | ||
| 4886 | + "node": ">=8.x" | ||
| 4887 | + }, | ||
| 4888 | + "peerDependencies": { | ||
| 4889 | + "react": ">=16.9.0", | ||
| 4890 | + "react-dom": ">=16.9.0" | ||
| 4891 | + } | ||
| 4892 | + }, | ||
| 4893 | + "node_modules/rc-overflow": { | ||
| 4894 | + "version": "1.5.0", | ||
| 4895 | + "resolved": "https://registry.npmjs.org/rc-overflow/-/rc-overflow-1.5.0.tgz", | ||
| 4896 | + "integrity": "sha512-Lm/v9h0LymeUYJf0x39OveU52InkdRXqnn2aYXfWmo8WdOonIKB2kfau+GF0fWq6jPgtdO9yMqveGcK6aIhJmg==", | ||
| 4897 | + "license": "MIT", | ||
| 4898 | + "dependencies": { | ||
| 4899 | + "@babel/runtime": "^7.11.1", | ||
| 4900 | + "classnames": "^2.2.1", | ||
| 4901 | + "rc-resize-observer": "^1.0.0", | ||
| 4902 | + "rc-util": "^5.37.0" | ||
| 4903 | + }, | ||
| 4904 | + "peerDependencies": { | ||
| 4905 | + "react": ">=16.9.0", | ||
| 4906 | + "react-dom": ">=16.9.0" | ||
| 4907 | + } | ||
| 4908 | + }, | ||
| 4909 | + "node_modules/rc-pagination": { | ||
| 4910 | + "version": "5.1.0", | ||
| 4911 | + "resolved": "https://registry.npmjs.org/rc-pagination/-/rc-pagination-5.1.0.tgz", | ||
| 4912 | + "integrity": "sha512-8416Yip/+eclTFdHXLKTxZvn70duYVGTvUUWbckCCZoIl3jagqke3GLsFrMs0bsQBikiYpZLD9206Ej4SOdOXQ==", | ||
| 4913 | + "license": "MIT", | ||
| 4914 | + "dependencies": { | ||
| 4915 | + "@babel/runtime": "^7.10.1", | ||
| 4916 | + "classnames": "^2.3.2", | ||
| 4917 | + "rc-util": "^5.38.0" | ||
| 4918 | + }, | ||
| 4919 | + "peerDependencies": { | ||
| 4920 | + "react": ">=16.9.0", | ||
| 4921 | + "react-dom": ">=16.9.0" | ||
| 4922 | + } | ||
| 4923 | + }, | ||
| 4924 | + "node_modules/rc-picker": { | ||
| 4925 | + "version": "4.11.3", | ||
| 4926 | + "resolved": "https://registry.npmjs.org/rc-picker/-/rc-picker-4.11.3.tgz", | ||
| 4927 | + "integrity": "sha512-MJ5teb7FlNE0NFHTncxXQ62Y5lytq6sh5nUw0iH8OkHL/TjARSEvSHpr940pWgjGANpjCwyMdvsEV55l5tYNSg==", | ||
| 4928 | + "license": "MIT", | ||
| 4929 | + "dependencies": { | ||
| 4930 | + "@babel/runtime": "^7.24.7", | ||
| 4931 | + "@rc-component/trigger": "^2.0.0", | ||
| 4932 | + "classnames": "^2.2.1", | ||
| 4933 | + "rc-overflow": "^1.3.2", | ||
| 4934 | + "rc-resize-observer": "^1.4.0", | ||
| 4935 | + "rc-util": "^5.43.0" | ||
| 4936 | + }, | ||
| 4937 | + "engines": { | ||
| 4938 | + "node": ">=8.x" | ||
| 4939 | + }, | ||
| 4940 | + "peerDependencies": { | ||
| 4941 | + "date-fns": ">= 2.x", | ||
| 4942 | + "dayjs": ">= 1.x", | ||
| 4943 | + "luxon": ">= 3.x", | ||
| 4944 | + "moment": ">= 2.x", | ||
| 4945 | + "react": ">=16.9.0", | ||
| 4946 | + "react-dom": ">=16.9.0" | ||
| 4947 | + }, | ||
| 4948 | + "peerDependenciesMeta": { | ||
| 4949 | + "date-fns": { | ||
| 4950 | + "optional": true | ||
| 4951 | + }, | ||
| 4952 | + "dayjs": { | ||
| 4953 | + "optional": true | ||
| 4954 | + }, | ||
| 4955 | + "luxon": { | ||
| 4956 | + "optional": true | ||
| 4957 | + }, | ||
| 4958 | + "moment": { | ||
| 4959 | + "optional": true | ||
| 4960 | + } | ||
| 4961 | + } | ||
| 4962 | + }, | ||
| 4963 | + "node_modules/rc-progress": { | ||
| 4964 | + "version": "4.0.0", | ||
| 4965 | + "resolved": "https://registry.npmjs.org/rc-progress/-/rc-progress-4.0.0.tgz", | ||
| 4966 | + "integrity": "sha512-oofVMMafOCokIUIBnZLNcOZFsABaUw8PPrf1/y0ZBvKZNpOiu5h4AO9vv11Sw0p4Hb3D0yGWuEattcQGtNJ/aw==", | ||
| 4967 | + "license": "MIT", | ||
| 4968 | + "dependencies": { | ||
| 4969 | + "@babel/runtime": "^7.10.1", | ||
| 4970 | + "classnames": "^2.2.6", | ||
| 4971 | + "rc-util": "^5.16.1" | ||
| 4972 | + }, | ||
| 4973 | + "peerDependencies": { | ||
| 4974 | + "react": ">=16.9.0", | ||
| 4975 | + "react-dom": ">=16.9.0" | ||
| 4976 | + } | ||
| 4977 | + }, | ||
| 4978 | + "node_modules/rc-rate": { | ||
| 4979 | + "version": "2.13.1", | ||
| 4980 | + "resolved": "https://registry.npmjs.org/rc-rate/-/rc-rate-2.13.1.tgz", | ||
| 4981 | + "integrity": "sha512-QUhQ9ivQ8Gy7mtMZPAjLbxBt5y9GRp65VcUyGUMF3N3fhiftivPHdpuDIaWIMOTEprAjZPC08bls1dQB+I1F2Q==", | ||
| 4982 | + "license": "MIT", | ||
| 4983 | + "dependencies": { | ||
| 4984 | + "@babel/runtime": "^7.10.1", | ||
| 4985 | + "classnames": "^2.2.5", | ||
| 4986 | + "rc-util": "^5.0.1" | ||
| 4987 | + }, | ||
| 4988 | + "engines": { | ||
| 4989 | + "node": ">=8.x" | ||
| 4990 | + }, | ||
| 4991 | + "peerDependencies": { | ||
| 4992 | + "react": ">=16.9.0", | ||
| 4993 | + "react-dom": ">=16.9.0" | ||
| 4994 | + } | ||
| 4995 | + }, | ||
| 4996 | + "node_modules/rc-resize-observer": { | ||
| 4997 | + "version": "1.4.3", | ||
| 4998 | + "resolved": "https://registry.npmjs.org/rc-resize-observer/-/rc-resize-observer-1.4.3.tgz", | ||
| 4999 | + "integrity": "sha512-YZLjUbyIWox8E9i9C3Tm7ia+W7euPItNWSPX5sCcQTYbnwDb5uNpnLHQCG1f22oZWUhLw4Mv2tFmeWe68CDQRQ==", | ||
| 5000 | + "license": "MIT", | ||
| 5001 | + "dependencies": { | ||
| 5002 | + "@babel/runtime": "^7.20.7", | ||
| 5003 | + "classnames": "^2.2.1", | ||
| 5004 | + "rc-util": "^5.44.1", | ||
| 5005 | + "resize-observer-polyfill": "^1.5.1" | ||
| 5006 | + }, | ||
| 5007 | + "peerDependencies": { | ||
| 5008 | + "react": ">=16.9.0", | ||
| 5009 | + "react-dom": ">=16.9.0" | ||
| 5010 | + } | ||
| 5011 | + }, | ||
| 5012 | + "node_modules/rc-segmented": { | ||
| 5013 | + "version": "2.7.1", | ||
| 5014 | + "resolved": "https://registry.npmjs.org/rc-segmented/-/rc-segmented-2.7.1.tgz", | ||
| 5015 | + "integrity": "sha512-izj1Nw/Dw2Vb7EVr+D/E9lUTkBe+kKC+SAFSU9zqr7WV2W5Ktaa9Gc7cB2jTqgk8GROJayltaec+DBlYKc6d+g==", | ||
| 5016 | + "license": "MIT", | ||
| 5017 | + "dependencies": { | ||
| 5018 | + "@babel/runtime": "^7.11.1", | ||
| 5019 | + "classnames": "^2.2.1", | ||
| 5020 | + "rc-motion": "^2.4.4", | ||
| 5021 | + "rc-util": "^5.17.0" | ||
| 5022 | + }, | ||
| 5023 | + "peerDependencies": { | ||
| 5024 | + "react": ">=16.0.0", | ||
| 5025 | + "react-dom": ">=16.0.0" | ||
| 5026 | + } | ||
| 5027 | + }, | ||
| 5028 | + "node_modules/rc-select": { | ||
| 5029 | + "version": "14.16.8", | ||
| 5030 | + "resolved": "https://registry.npmjs.org/rc-select/-/rc-select-14.16.8.tgz", | ||
| 5031 | + "integrity": "sha512-NOV5BZa1wZrsdkKaiK7LHRuo5ZjZYMDxPP6/1+09+FB4KoNi8jcG1ZqLE3AVCxEsYMBe65OBx71wFoHRTP3LRg==", | ||
| 5032 | + "license": "MIT", | ||
| 5033 | + "dependencies": { | ||
| 5034 | + "@babel/runtime": "^7.10.1", | ||
| 5035 | + "@rc-component/trigger": "^2.1.1", | ||
| 5036 | + "classnames": "2.x", | ||
| 5037 | + "rc-motion": "^2.0.1", | ||
| 5038 | + "rc-overflow": "^1.3.1", | ||
| 5039 | + "rc-util": "^5.16.1", | ||
| 5040 | + "rc-virtual-list": "^3.5.2" | ||
| 5041 | + }, | ||
| 5042 | + "engines": { | ||
| 5043 | + "node": ">=8.x" | ||
| 5044 | + }, | ||
| 5045 | + "peerDependencies": { | ||
| 5046 | + "react": "*", | ||
| 5047 | + "react-dom": "*" | ||
| 5048 | + } | ||
| 5049 | + }, | ||
| 5050 | + "node_modules/rc-slider": { | ||
| 5051 | + "version": "11.1.9", | ||
| 5052 | + "resolved": "https://registry.npmjs.org/rc-slider/-/rc-slider-11.1.9.tgz", | ||
| 5053 | + "integrity": "sha512-h8IknhzSh3FEM9u8ivkskh+Ef4Yo4JRIY2nj7MrH6GQmrwV6mcpJf5/4KgH5JaVI1H3E52yCdpOlVyGZIeph5A==", | ||
| 5054 | + "license": "MIT", | ||
| 5055 | + "dependencies": { | ||
| 5056 | + "@babel/runtime": "^7.10.1", | ||
| 5057 | + "classnames": "^2.2.5", | ||
| 5058 | + "rc-util": "^5.36.0" | ||
| 5059 | + }, | ||
| 5060 | + "engines": { | ||
| 5061 | + "node": ">=8.x" | ||
| 5062 | + }, | ||
| 5063 | + "peerDependencies": { | ||
| 5064 | + "react": ">=16.9.0", | ||
| 5065 | + "react-dom": ">=16.9.0" | ||
| 5066 | + } | ||
| 5067 | + }, | ||
| 5068 | + "node_modules/rc-steps": { | ||
| 5069 | + "version": "6.0.1", | ||
| 5070 | + "resolved": "https://registry.npmjs.org/rc-steps/-/rc-steps-6.0.1.tgz", | ||
| 5071 | + "integrity": "sha512-lKHL+Sny0SeHkQKKDJlAjV5oZ8DwCdS2hFhAkIjuQt1/pB81M0cA0ErVFdHq9+jmPmFw1vJB2F5NBzFXLJxV+g==", | ||
| 5072 | + "license": "MIT", | ||
| 5073 | + "dependencies": { | ||
| 5074 | + "@babel/runtime": "^7.16.7", | ||
| 5075 | + "classnames": "^2.2.3", | ||
| 5076 | + "rc-util": "^5.16.1" | ||
| 5077 | + }, | ||
| 5078 | + "engines": { | ||
| 5079 | + "node": ">=8.x" | ||
| 5080 | + }, | ||
| 5081 | + "peerDependencies": { | ||
| 5082 | + "react": ">=16.9.0", | ||
| 5083 | + "react-dom": ">=16.9.0" | ||
| 5084 | + } | ||
| 5085 | + }, | ||
| 5086 | + "node_modules/rc-switch": { | ||
| 5087 | + "version": "4.1.0", | ||
| 5088 | + "resolved": "https://registry.npmjs.org/rc-switch/-/rc-switch-4.1.0.tgz", | ||
| 5089 | + "integrity": "sha512-TI8ufP2Az9oEbvyCeVE4+90PDSljGyuwix3fV58p7HV2o4wBnVToEyomJRVyTaZeqNPAp+vqeo4Wnj5u0ZZQBg==", | ||
| 5090 | + "license": "MIT", | ||
| 5091 | + "dependencies": { | ||
| 5092 | + "@babel/runtime": "^7.21.0", | ||
| 5093 | + "classnames": "^2.2.1", | ||
| 5094 | + "rc-util": "^5.30.0" | ||
| 5095 | + }, | ||
| 5096 | + "peerDependencies": { | ||
| 5097 | + "react": ">=16.9.0", | ||
| 5098 | + "react-dom": ">=16.9.0" | ||
| 5099 | + } | ||
| 5100 | + }, | ||
| 5101 | + "node_modules/rc-table": { | ||
| 5102 | + "version": "7.54.0", | ||
| 5103 | + "resolved": "https://registry.npmjs.org/rc-table/-/rc-table-7.54.0.tgz", | ||
| 5104 | + "integrity": "sha512-/wDTkki6wBTjwylwAGjpLKYklKo9YgjZwAU77+7ME5mBoS32Q4nAwoqhA2lSge6fobLW3Tap6uc5xfwaL2p0Sw==", | ||
| 5105 | + "license": "MIT", | ||
| 5106 | + "dependencies": { | ||
| 5107 | + "@babel/runtime": "^7.10.1", | ||
| 5108 | + "@rc-component/context": "^1.4.0", | ||
| 5109 | + "classnames": "^2.2.5", | ||
| 5110 | + "rc-resize-observer": "^1.1.0", | ||
| 5111 | + "rc-util": "^5.44.3", | ||
| 5112 | + "rc-virtual-list": "^3.14.2" | ||
| 5113 | + }, | ||
| 5114 | + "engines": { | ||
| 5115 | + "node": ">=8.x" | ||
| 5116 | + }, | ||
| 5117 | + "peerDependencies": { | ||
| 5118 | + "react": ">=16.9.0", | ||
| 5119 | + "react-dom": ">=16.9.0" | ||
| 5120 | + } | ||
| 5121 | + }, | ||
| 5122 | + "node_modules/rc-tabs": { | ||
| 5123 | + "version": "15.7.0", | ||
| 5124 | + "resolved": "https://registry.npmjs.org/rc-tabs/-/rc-tabs-15.7.0.tgz", | ||
| 5125 | + "integrity": "sha512-ZepiE+6fmozYdWf/9gVp7k56PKHB1YYoDsKeQA1CBlJ/POIhjkcYiv0AGP0w2Jhzftd3AVvZP/K+V+Lpi2ankA==", | ||
| 5126 | + "license": "MIT", | ||
| 5127 | + "dependencies": { | ||
| 5128 | + "@babel/runtime": "^7.11.2", | ||
| 5129 | + "classnames": "2.x", | ||
| 5130 | + "rc-dropdown": "~4.2.0", | ||
| 5131 | + "rc-menu": "~9.16.0", | ||
| 5132 | + "rc-motion": "^2.6.2", | ||
| 5133 | + "rc-resize-observer": "^1.0.0", | ||
| 5134 | + "rc-util": "^5.34.1" | ||
| 5135 | + }, | ||
| 5136 | + "engines": { | ||
| 5137 | + "node": ">=8.x" | ||
| 5138 | + }, | ||
| 5139 | + "peerDependencies": { | ||
| 5140 | + "react": ">=16.9.0", | ||
| 5141 | + "react-dom": ">=16.9.0" | ||
| 5142 | + } | ||
| 5143 | + }, | ||
| 5144 | + "node_modules/rc-textarea": { | ||
| 5145 | + "version": "1.10.2", | ||
| 5146 | + "resolved": "https://registry.npmjs.org/rc-textarea/-/rc-textarea-1.10.2.tgz", | ||
| 5147 | + "integrity": "sha512-HfaeXiaSlpiSp0I/pvWpecFEHpVysZ9tpDLNkxQbMvMz6gsr7aVZ7FpWP9kt4t7DB+jJXesYS0us1uPZnlRnwQ==", | ||
| 5148 | + "license": "MIT", | ||
| 5149 | + "dependencies": { | ||
| 5150 | + "@babel/runtime": "^7.10.1", | ||
| 5151 | + "classnames": "^2.2.1", | ||
| 5152 | + "rc-input": "~1.8.0", | ||
| 5153 | + "rc-resize-observer": "^1.0.0", | ||
| 5154 | + "rc-util": "^5.27.0" | ||
| 5155 | + }, | ||
| 5156 | + "peerDependencies": { | ||
| 5157 | + "react": ">=16.9.0", | ||
| 5158 | + "react-dom": ">=16.9.0" | ||
| 5159 | + } | ||
| 5160 | + }, | ||
| 5161 | + "node_modules/rc-tooltip": { | ||
| 5162 | + "version": "6.4.0", | ||
| 5163 | + "resolved": "https://registry.npmjs.org/rc-tooltip/-/rc-tooltip-6.4.0.tgz", | ||
| 5164 | + "integrity": "sha512-kqyivim5cp8I5RkHmpsp1Nn/Wk+1oeloMv9c7LXNgDxUpGm+RbXJGL+OPvDlcRnx9DBeOe4wyOIl4OKUERyH1g==", | ||
| 5165 | + "license": "MIT", | ||
| 5166 | + "dependencies": { | ||
| 5167 | + "@babel/runtime": "^7.11.2", | ||
| 5168 | + "@rc-component/trigger": "^2.0.0", | ||
| 5169 | + "classnames": "^2.3.1", | ||
| 5170 | + "rc-util": "^5.44.3" | ||
| 5171 | + }, | ||
| 5172 | + "peerDependencies": { | ||
| 5173 | + "react": ">=16.9.0", | ||
| 5174 | + "react-dom": ">=16.9.0" | ||
| 5175 | + } | ||
| 5176 | + }, | ||
| 5177 | + "node_modules/rc-tree": { | ||
| 5178 | + "version": "5.13.1", | ||
| 5179 | + "resolved": "https://registry.npmjs.org/rc-tree/-/rc-tree-5.13.1.tgz", | ||
| 5180 | + "integrity": "sha512-FNhIefhftobCdUJshO7M8uZTA9F4OPGVXqGfZkkD/5soDeOhwO06T/aKTrg0WD8gRg/pyfq+ql3aMymLHCTC4A==", | ||
| 5181 | + "license": "MIT", | ||
| 5182 | + "dependencies": { | ||
| 5183 | + "@babel/runtime": "^7.10.1", | ||
| 5184 | + "classnames": "2.x", | ||
| 5185 | + "rc-motion": "^2.0.1", | ||
| 5186 | + "rc-util": "^5.16.1", | ||
| 5187 | + "rc-virtual-list": "^3.5.1" | ||
| 5188 | + }, | ||
| 5189 | + "engines": { | ||
| 5190 | + "node": ">=10.x" | ||
| 5191 | + }, | ||
| 5192 | + "peerDependencies": { | ||
| 5193 | + "react": "*", | ||
| 5194 | + "react-dom": "*" | ||
| 5195 | + } | ||
| 5196 | + }, | ||
| 5197 | + "node_modules/rc-tree-select": { | ||
| 5198 | + "version": "5.27.0", | ||
| 5199 | + "resolved": "https://registry.npmjs.org/rc-tree-select/-/rc-tree-select-5.27.0.tgz", | ||
| 5200 | + "integrity": "sha512-2qTBTzwIT7LRI1o7zLyrCzmo5tQanmyGbSaGTIf7sYimCklAToVVfpMC6OAldSKolcnjorBYPNSKQqJmN3TCww==", | ||
| 5201 | + "license": "MIT", | ||
| 5202 | + "dependencies": { | ||
| 5203 | + "@babel/runtime": "^7.25.7", | ||
| 5204 | + "classnames": "2.x", | ||
| 5205 | + "rc-select": "~14.16.2", | ||
| 5206 | + "rc-tree": "~5.13.0", | ||
| 5207 | + "rc-util": "^5.43.0" | ||
| 5208 | + }, | ||
| 5209 | + "peerDependencies": { | ||
| 5210 | + "react": "*", | ||
| 5211 | + "react-dom": "*" | ||
| 5212 | + } | ||
| 5213 | + }, | ||
| 5214 | + "node_modules/rc-upload": { | ||
| 5215 | + "version": "4.11.0", | ||
| 5216 | + "resolved": "https://registry.npmjs.org/rc-upload/-/rc-upload-4.11.0.tgz", | ||
| 5217 | + "integrity": "sha512-ZUyT//2JAehfHzjWowqROcwYJKnZkIUGWaTE/VogVrepSl7AFNbQf4+zGfX4zl9Vrj/Jm8scLO0R6UlPDKK4wA==", | ||
| 5218 | + "license": "MIT", | ||
| 5219 | + "dependencies": { | ||
| 5220 | + "@babel/runtime": "^7.18.3", | ||
| 5221 | + "classnames": "^2.2.5", | ||
| 5222 | + "rc-util": "^5.2.0" | ||
| 5223 | + }, | ||
| 5224 | + "peerDependencies": { | ||
| 5225 | + "react": ">=16.9.0", | ||
| 5226 | + "react-dom": ">=16.9.0" | ||
| 5227 | + } | ||
| 5228 | + }, | ||
| 5229 | + "node_modules/rc-util": { | ||
| 5230 | + "version": "5.44.4", | ||
| 5231 | + "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.44.4.tgz", | ||
| 5232 | + "integrity": "sha512-resueRJzmHG9Q6rI/DfK6Kdv9/Lfls05vzMs1Sk3M2P+3cJa+MakaZyWY8IPfehVuhPJFKrIY1IK4GqbiaiY5w==", | ||
| 5233 | + "license": "MIT", | ||
| 5234 | + "dependencies": { | ||
| 5235 | + "@babel/runtime": "^7.18.3", | ||
| 5236 | + "react-is": "^18.2.0" | ||
| 5237 | + }, | ||
| 5238 | + "peerDependencies": { | ||
| 5239 | + "react": ">=16.9.0", | ||
| 5240 | + "react-dom": ">=16.9.0" | ||
| 5241 | + } | ||
| 5242 | + }, | ||
| 5243 | + "node_modules/rc-util/node_modules/react-is": { | ||
| 5244 | + "version": "18.3.1", | ||
| 5245 | + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", | ||
| 5246 | + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", | ||
| 5247 | + "license": "MIT" | ||
| 5248 | + }, | ||
| 5249 | + "node_modules/rc-virtual-list": { | ||
| 5250 | + "version": "3.19.2", | ||
| 5251 | + "resolved": "https://registry.npmjs.org/rc-virtual-list/-/rc-virtual-list-3.19.2.tgz", | ||
| 5252 | + "integrity": "sha512-Ys6NcjwGkuwkeaWBDqfI3xWuZ7rDiQXlH1o2zLfFzATfEgXcqpk8CkgMfbJD81McqjcJVez25a3kPxCR807evA==", | ||
| 5253 | + "license": "MIT", | ||
| 5254 | + "dependencies": { | ||
| 5255 | + "@babel/runtime": "^7.20.0", | ||
| 5256 | + "classnames": "^2.2.6", | ||
| 5257 | + "rc-resize-observer": "^1.0.0", | ||
| 5258 | + "rc-util": "^5.36.0" | ||
| 5259 | + }, | ||
| 5260 | + "engines": { | ||
| 5261 | + "node": ">=8.x" | ||
| 5262 | + }, | ||
| 5263 | + "peerDependencies": { | ||
| 5264 | + "react": ">=16.9.0", | ||
| 5265 | + "react-dom": ">=16.9.0" | ||
| 5266 | + } | ||
| 5267 | + }, | ||
| 5268 | + "node_modules/react": { | ||
| 5269 | + "version": "18.3.1", | ||
| 5270 | + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", | ||
| 5271 | + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", | ||
| 5272 | + "license": "MIT", | ||
| 5273 | + "dependencies": { | ||
| 5274 | + "loose-envify": "^1.1.0" | ||
| 5275 | + }, | ||
| 5276 | + "engines": { | ||
| 5277 | + "node": ">=0.10.0" | ||
| 5278 | + } | ||
| 5279 | + }, | ||
| 5280 | + "node_modules/react-dom": { | ||
| 5281 | + "version": "18.3.1", | ||
| 5282 | + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", | ||
| 5283 | + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", | ||
| 5284 | + "license": "MIT", | ||
| 5285 | + "dependencies": { | ||
| 5286 | + "loose-envify": "^1.1.0", | ||
| 5287 | + "scheduler": "^0.23.2" | ||
| 5288 | + }, | ||
| 5289 | + "peerDependencies": { | ||
| 5290 | + "react": "^18.3.1" | ||
| 5291 | + } | ||
| 5292 | + }, | ||
| 5293 | + "node_modules/react-is": { | ||
| 5294 | + "version": "17.0.2", | ||
| 5295 | + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", | ||
| 5296 | + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", | ||
| 5297 | + "dev": true, | ||
| 5298 | + "license": "MIT", | ||
| 5299 | + "peer": true | ||
| 5300 | + }, | ||
| 5301 | + "node_modules/react-redux": { | ||
| 5302 | + "version": "9.3.0", | ||
| 5303 | + "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-9.3.0.tgz", | ||
| 5304 | + "integrity": "sha512-KQopgqFo/p/fgmAs5qz6p5RWaNAzq40WAu7fJIXnQpYxFPbJYtsJPWvGeF2rOBaY/kEuV77AVsX8TsQzKm+A/g==", | ||
| 5305 | + "license": "MIT", | ||
| 5306 | + "dependencies": { | ||
| 5307 | + "@types/use-sync-external-store": "^0.0.6", | ||
| 5308 | + "use-sync-external-store": "^1.4.0" | ||
| 5309 | + }, | ||
| 5310 | + "peerDependencies": { | ||
| 5311 | + "@types/react": "^18.2.25 || ^19", | ||
| 5312 | + "react": "^18.0 || ^19", | ||
| 5313 | + "redux": "^5.0.0" | ||
| 5314 | + }, | ||
| 5315 | + "peerDependenciesMeta": { | ||
| 5316 | + "@types/react": { | ||
| 5317 | + "optional": true | ||
| 5318 | + }, | ||
| 5319 | + "redux": { | ||
| 5320 | + "optional": true | ||
| 5321 | + } | ||
| 5322 | + } | ||
| 5323 | + }, | ||
| 5324 | + "node_modules/react-refresh": { | ||
| 5325 | + "version": "0.17.0", | ||
| 5326 | + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz", | ||
| 5327 | + "integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==", | ||
| 5328 | + "dev": true, | ||
| 5329 | + "license": "MIT", | ||
| 5330 | + "engines": { | ||
| 5331 | + "node": ">=0.10.0" | ||
| 5332 | + } | ||
| 5333 | + }, | ||
| 5334 | + "node_modules/react-router": { | ||
| 5335 | + "version": "6.30.4", | ||
| 5336 | + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.30.4.tgz", | ||
| 5337 | + "integrity": "sha512-SVUsDe+DybHM/WmYKIVYhZh1o5Dcuf16yM6WjG02Q9XVFMZIJyHYhwrr6bFBXZkVP6z69kNkMyBCujt8FaFLJA==", | ||
| 5338 | + "license": "MIT", | ||
| 5339 | + "dependencies": { | ||
| 5340 | + "@remix-run/router": "1.23.3" | ||
| 5341 | + }, | ||
| 5342 | + "engines": { | ||
| 5343 | + "node": ">=14.0.0" | ||
| 5344 | + }, | ||
| 5345 | + "peerDependencies": { | ||
| 5346 | + "react": ">=16.8" | ||
| 5347 | + } | ||
| 5348 | + }, | ||
| 5349 | + "node_modules/react-router-dom": { | ||
| 5350 | + "version": "6.30.4", | ||
| 5351 | + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.30.4.tgz", | ||
| 5352 | + "integrity": "sha512-q4HvNl+mmDdkS0g+MqiBZNteQJCuimWoOyHMy4T/RQLAn9Z29+E91QXRaxOujeMl2HTzRSS0KFPd7lxX3PjV0Q==", | ||
| 5353 | + "license": "MIT", | ||
| 5354 | + "dependencies": { | ||
| 5355 | + "@remix-run/router": "1.23.3", | ||
| 5356 | + "react-router": "6.30.4" | ||
| 5357 | + }, | ||
| 5358 | + "engines": { | ||
| 5359 | + "node": ">=14.0.0" | ||
| 5360 | + }, | ||
| 5361 | + "peerDependencies": { | ||
| 5362 | + "react": ">=16.8", | ||
| 5363 | + "react-dom": ">=16.8" | ||
| 5364 | + } | ||
| 5365 | + }, | ||
| 5366 | + "node_modules/redent": { | ||
| 5367 | + "version": "3.0.0", | ||
| 5368 | + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", | ||
| 5369 | + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", | ||
| 5370 | + "dev": true, | ||
| 5371 | + "license": "MIT", | ||
| 5372 | + "dependencies": { | ||
| 5373 | + "indent-string": "^4.0.0", | ||
| 5374 | + "strip-indent": "^3.0.0" | ||
| 5375 | + }, | ||
| 5376 | + "engines": { | ||
| 5377 | + "node": ">=8" | ||
| 5378 | + } | ||
| 5379 | + }, | ||
| 5380 | + "node_modules/redux": { | ||
| 5381 | + "version": "5.0.1", | ||
| 5382 | + "resolved": "https://registry.npmjs.org/redux/-/redux-5.0.1.tgz", | ||
| 5383 | + "integrity": "sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==", | ||
| 5384 | + "license": "MIT" | ||
| 5385 | + }, | ||
| 5386 | + "node_modules/redux-thunk": { | ||
| 5387 | + "version": "3.1.0", | ||
| 5388 | + "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-3.1.0.tgz", | ||
| 5389 | + "integrity": "sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw==", | ||
| 5390 | + "license": "MIT", | ||
| 5391 | + "peerDependencies": { | ||
| 5392 | + "redux": "^5.0.0" | ||
| 5393 | + } | ||
| 5394 | + }, | ||
| 5395 | + "node_modules/reselect": { | ||
| 5396 | + "version": "5.2.0", | ||
| 5397 | + "resolved": "https://registry.npmjs.org/reselect/-/reselect-5.2.0.tgz", | ||
| 5398 | + "integrity": "sha512-AgZ3UOZm3YndfrJ4OYjgrT7bmCm/1iqkjvEfH/oYjzh6PD2qw4QuT3jjnXIrpdt4MTpMXclMT3lXbmRY+XRakw==", | ||
| 5399 | + "license": "MIT" | ||
| 5400 | + }, | ||
| 5401 | + "node_modules/resize-observer-polyfill": { | ||
| 5402 | + "version": "1.5.1", | ||
| 5403 | + "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", | ||
| 5404 | + "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==", | ||
| 5405 | + "license": "MIT" | ||
| 5406 | + }, | ||
| 5407 | + "node_modules/resolve-from": { | ||
| 5408 | + "version": "4.0.0", | ||
| 5409 | + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", | ||
| 5410 | + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", | ||
| 5411 | + "dev": true, | ||
| 5412 | + "license": "MIT", | ||
| 5413 | + "engines": { | ||
| 5414 | + "node": ">=4" | ||
| 5415 | + } | ||
| 5416 | + }, | ||
| 5417 | + "node_modules/reusify": { | ||
| 5418 | + "version": "1.1.0", | ||
| 5419 | + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", | ||
| 5420 | + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", | ||
| 5421 | + "dev": true, | ||
| 5422 | + "license": "MIT", | ||
| 5423 | + "engines": { | ||
| 5424 | + "iojs": ">=1.0.0", | ||
| 5425 | + "node": ">=0.10.0" | ||
| 5426 | + } | ||
| 5427 | + }, | ||
| 5428 | + "node_modules/rimraf": { | ||
| 5429 | + "version": "3.0.2", | ||
| 5430 | + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", | ||
| 5431 | + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", | ||
| 5432 | + "deprecated": "Rimraf versions prior to v4 are no longer supported", | ||
| 5433 | + "dev": true, | ||
| 5434 | + "license": "ISC", | ||
| 5435 | + "dependencies": { | ||
| 5436 | + "glob": "^7.1.3" | ||
| 5437 | + }, | ||
| 5438 | + "bin": { | ||
| 5439 | + "rimraf": "bin.js" | ||
| 5440 | + }, | ||
| 5441 | + "funding": { | ||
| 5442 | + "url": "https://github.com/sponsors/isaacs" | ||
| 5443 | + } | ||
| 5444 | + }, | ||
| 5445 | + "node_modules/rollup": { | ||
| 5446 | + "version": "4.61.0", | ||
| 5447 | + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.61.0.tgz", | ||
| 5448 | + "integrity": "sha512-T9mWdbWfQtp0B5lv/HX+wrhYsmXRlcWnXXmJbXqKJhlRaoS6KMhq0gpyzW4UJfclcxrEdLnTgjT2NjruLONu0g==", | ||
| 5449 | + "dev": true, | ||
| 5450 | + "license": "MIT", | ||
| 5451 | + "dependencies": { | ||
| 5452 | + "@types/estree": "1.0.9" | ||
| 5453 | + }, | ||
| 5454 | + "bin": { | ||
| 5455 | + "rollup": "dist/bin/rollup" | ||
| 5456 | + }, | ||
| 5457 | + "engines": { | ||
| 5458 | + "node": ">=18.0.0", | ||
| 5459 | + "npm": ">=8.0.0" | ||
| 5460 | + }, | ||
| 5461 | + "optionalDependencies": { | ||
| 5462 | + "@rollup/rollup-android-arm-eabi": "4.61.0", | ||
| 5463 | + "@rollup/rollup-android-arm64": "4.61.0", | ||
| 5464 | + "@rollup/rollup-darwin-arm64": "4.61.0", | ||
| 5465 | + "@rollup/rollup-darwin-x64": "4.61.0", | ||
| 5466 | + "@rollup/rollup-freebsd-arm64": "4.61.0", | ||
| 5467 | + "@rollup/rollup-freebsd-x64": "4.61.0", | ||
| 5468 | + "@rollup/rollup-linux-arm-gnueabihf": "4.61.0", | ||
| 5469 | + "@rollup/rollup-linux-arm-musleabihf": "4.61.0", | ||
| 5470 | + "@rollup/rollup-linux-arm64-gnu": "4.61.0", | ||
| 5471 | + "@rollup/rollup-linux-arm64-musl": "4.61.0", | ||
| 5472 | + "@rollup/rollup-linux-loong64-gnu": "4.61.0", | ||
| 5473 | + "@rollup/rollup-linux-loong64-musl": "4.61.0", | ||
| 5474 | + "@rollup/rollup-linux-ppc64-gnu": "4.61.0", | ||
| 5475 | + "@rollup/rollup-linux-ppc64-musl": "4.61.0", | ||
| 5476 | + "@rollup/rollup-linux-riscv64-gnu": "4.61.0", | ||
| 5477 | + "@rollup/rollup-linux-riscv64-musl": "4.61.0", | ||
| 5478 | + "@rollup/rollup-linux-s390x-gnu": "4.61.0", | ||
| 5479 | + "@rollup/rollup-linux-x64-gnu": "4.61.0", | ||
| 5480 | + "@rollup/rollup-linux-x64-musl": "4.61.0", | ||
| 5481 | + "@rollup/rollup-openbsd-x64": "4.61.0", | ||
| 5482 | + "@rollup/rollup-openharmony-arm64": "4.61.0", | ||
| 5483 | + "@rollup/rollup-win32-arm64-msvc": "4.61.0", | ||
| 5484 | + "@rollup/rollup-win32-ia32-msvc": "4.61.0", | ||
| 5485 | + "@rollup/rollup-win32-x64-gnu": "4.61.0", | ||
| 5486 | + "@rollup/rollup-win32-x64-msvc": "4.61.0", | ||
| 5487 | + "fsevents": "~2.3.2" | ||
| 5488 | + } | ||
| 5489 | + }, | ||
| 5490 | + "node_modules/rrweb-cssom": { | ||
| 5491 | + "version": "0.7.1", | ||
| 5492 | + "resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.7.1.tgz", | ||
| 5493 | + "integrity": "sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==", | ||
| 5494 | + "dev": true, | ||
| 5495 | + "license": "MIT" | ||
| 5496 | + }, | ||
| 5497 | + "node_modules/run-parallel": { | ||
| 5498 | + "version": "1.2.0", | ||
| 5499 | + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", | ||
| 5500 | + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", | ||
| 5501 | + "dev": true, | ||
| 5502 | + "funding": [ | ||
| 5503 | + { | ||
| 5504 | + "type": "github", | ||
| 5505 | + "url": "https://github.com/sponsors/feross" | ||
| 5506 | + }, | ||
| 5507 | + { | ||
| 5508 | + "type": "patreon", | ||
| 5509 | + "url": "https://www.patreon.com/feross" | ||
| 5510 | + }, | ||
| 5511 | + { | ||
| 5512 | + "type": "consulting", | ||
| 5513 | + "url": "https://feross.org/support" | ||
| 5514 | + } | ||
| 5515 | + ], | ||
| 5516 | + "license": "MIT", | ||
| 5517 | + "dependencies": { | ||
| 5518 | + "queue-microtask": "^1.2.2" | ||
| 5519 | + } | ||
| 5520 | + }, | ||
| 5521 | + "node_modules/safer-buffer": { | ||
| 5522 | + "version": "2.1.2", | ||
| 5523 | + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", | ||
| 5524 | + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", | ||
| 5525 | + "dev": true, | ||
| 5526 | + "license": "MIT" | ||
| 5527 | + }, | ||
| 5528 | + "node_modules/saxes": { | ||
| 5529 | + "version": "6.0.0", | ||
| 5530 | + "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", | ||
| 5531 | + "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", | ||
| 5532 | + "dev": true, | ||
| 5533 | + "license": "ISC", | ||
| 5534 | + "dependencies": { | ||
| 5535 | + "xmlchars": "^2.2.0" | ||
| 5536 | + }, | ||
| 5537 | + "engines": { | ||
| 5538 | + "node": ">=v12.22.7" | ||
| 5539 | + } | ||
| 5540 | + }, | ||
| 5541 | + "node_modules/scheduler": { | ||
| 5542 | + "version": "0.23.2", | ||
| 5543 | + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", | ||
| 5544 | + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", | ||
| 5545 | + "license": "MIT", | ||
| 5546 | + "dependencies": { | ||
| 5547 | + "loose-envify": "^1.1.0" | ||
| 5548 | + } | ||
| 5549 | + }, | ||
| 5550 | + "node_modules/scroll-into-view-if-needed": { | ||
| 5551 | + "version": "3.1.0", | ||
| 5552 | + "resolved": "https://registry.npmjs.org/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.1.0.tgz", | ||
| 5553 | + "integrity": "sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==", | ||
| 5554 | + "license": "MIT", | ||
| 5555 | + "dependencies": { | ||
| 5556 | + "compute-scroll-into-view": "^3.0.2" | ||
| 5557 | + } | ||
| 5558 | + }, | ||
| 5559 | + "node_modules/semver": { | ||
| 5560 | + "version": "7.8.1", | ||
| 5561 | + "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.1.tgz", | ||
| 5562 | + "integrity": "sha512-rkVq3IXh+4FDGch+KwzX3aV9W3kO54GyEgpvBzSyctDA6Xtd7RJQV1xmXbeQp5v7+VzLOfVqiutSE6GICgPFvg==", | ||
| 5563 | + "dev": true, | ||
| 5564 | + "license": "ISC", | ||
| 5565 | + "bin": { | ||
| 5566 | + "semver": "bin/semver.js" | ||
| 5567 | + }, | ||
| 5568 | + "engines": { | ||
| 5569 | + "node": ">=10" | ||
| 5570 | + } | ||
| 5571 | + }, | ||
| 5572 | + "node_modules/shebang-command": { | ||
| 5573 | + "version": "2.0.0", | ||
| 5574 | + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", | ||
| 5575 | + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", | ||
| 5576 | + "dev": true, | ||
| 5577 | + "license": "MIT", | ||
| 5578 | + "dependencies": { | ||
| 5579 | + "shebang-regex": "^3.0.0" | ||
| 5580 | + }, | ||
| 5581 | + "engines": { | ||
| 5582 | + "node": ">=8" | ||
| 5583 | + } | ||
| 5584 | + }, | ||
| 5585 | + "node_modules/shebang-regex": { | ||
| 5586 | + "version": "3.0.0", | ||
| 5587 | + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", | ||
| 5588 | + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", | ||
| 5589 | + "dev": true, | ||
| 5590 | + "license": "MIT", | ||
| 5591 | + "engines": { | ||
| 5592 | + "node": ">=8" | ||
| 5593 | + } | ||
| 5594 | + }, | ||
| 5595 | + "node_modules/siginfo": { | ||
| 5596 | + "version": "2.0.0", | ||
| 5597 | + "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", | ||
| 5598 | + "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", | ||
| 5599 | + "dev": true, | ||
| 5600 | + "license": "ISC" | ||
| 5601 | + }, | ||
| 5602 | + "node_modules/source-map-js": { | ||
| 5603 | + "version": "1.2.1", | ||
| 5604 | + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", | ||
| 5605 | + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", | ||
| 5606 | + "dev": true, | ||
| 5607 | + "license": "BSD-3-Clause", | ||
| 5608 | + "engines": { | ||
| 5609 | + "node": ">=0.10.0" | ||
| 5610 | + } | ||
| 5611 | + }, | ||
| 5612 | + "node_modules/stackback": { | ||
| 5613 | + "version": "0.0.2", | ||
| 5614 | + "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", | ||
| 5615 | + "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", | ||
| 5616 | + "dev": true, | ||
| 5617 | + "license": "MIT" | ||
| 5618 | + }, | ||
| 5619 | + "node_modules/std-env": { | ||
| 5620 | + "version": "3.10.0", | ||
| 5621 | + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.10.0.tgz", | ||
| 5622 | + "integrity": "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==", | ||
| 5623 | + "dev": true, | ||
| 5624 | + "license": "MIT" | ||
| 5625 | + }, | ||
| 5626 | + "node_modules/string-convert": { | ||
| 5627 | + "version": "0.2.1", | ||
| 5628 | + "resolved": "https://registry.npmjs.org/string-convert/-/string-convert-0.2.1.tgz", | ||
| 5629 | + "integrity": "sha512-u/1tdPl4yQnPBjnVrmdLo9gtuLvELKsAoRapekWggdiQNvvvum+jYF329d84NAa660KQw7pB2n36KrIKVoXa3A==", | ||
| 5630 | + "license": "MIT" | ||
| 5631 | + }, | ||
| 5632 | + "node_modules/strip-ansi": { | ||
| 5633 | + "version": "6.0.1", | ||
| 5634 | + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", | ||
| 5635 | + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", | ||
| 5636 | + "dev": true, | ||
| 5637 | + "license": "MIT", | ||
| 5638 | + "dependencies": { | ||
| 5639 | + "ansi-regex": "^5.0.1" | ||
| 5640 | + }, | ||
| 5641 | + "engines": { | ||
| 5642 | + "node": ">=8" | ||
| 5643 | + } | ||
| 5644 | + }, | ||
| 5645 | + "node_modules/strip-indent": { | ||
| 5646 | + "version": "3.0.0", | ||
| 5647 | + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", | ||
| 5648 | + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", | ||
| 5649 | + "dev": true, | ||
| 5650 | + "license": "MIT", | ||
| 5651 | + "dependencies": { | ||
| 5652 | + "min-indent": "^1.0.0" | ||
| 5653 | + }, | ||
| 5654 | + "engines": { | ||
| 5655 | + "node": ">=8" | ||
| 5656 | + } | ||
| 5657 | + }, | ||
| 5658 | + "node_modules/strip-json-comments": { | ||
| 5659 | + "version": "3.1.1", | ||
| 5660 | + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", | ||
| 5661 | + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", | ||
| 5662 | + "dev": true, | ||
| 5663 | + "license": "MIT", | ||
| 5664 | + "engines": { | ||
| 5665 | + "node": ">=8" | ||
| 5666 | + }, | ||
| 5667 | + "funding": { | ||
| 5668 | + "url": "https://github.com/sponsors/sindresorhus" | ||
| 5669 | + } | ||
| 5670 | + }, | ||
| 5671 | + "node_modules/strip-literal": { | ||
| 5672 | + "version": "3.1.0", | ||
| 5673 | + "resolved": "https://registry.npmjs.org/strip-literal/-/strip-literal-3.1.0.tgz", | ||
| 5674 | + "integrity": "sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==", | ||
| 5675 | + "dev": true, | ||
| 5676 | + "license": "MIT", | ||
| 5677 | + "dependencies": { | ||
| 5678 | + "js-tokens": "^9.0.1" | ||
| 5679 | + }, | ||
| 5680 | + "funding": { | ||
| 5681 | + "url": "https://github.com/sponsors/antfu" | ||
| 5682 | + } | ||
| 5683 | + }, | ||
| 5684 | + "node_modules/strip-literal/node_modules/js-tokens": { | ||
| 5685 | + "version": "9.0.1", | ||
| 5686 | + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-9.0.1.tgz", | ||
| 5687 | + "integrity": "sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==", | ||
| 5688 | + "dev": true, | ||
| 5689 | + "license": "MIT" | ||
| 5690 | + }, | ||
| 5691 | + "node_modules/stylis": { | ||
| 5692 | + "version": "4.4.0", | ||
| 5693 | + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.4.0.tgz", | ||
| 5694 | + "integrity": "sha512-5Z9ZpRzfuH6l/UAvCPAPUo3665Nk2wLaZU3x+TLHKVzIz33+sbJqbtrYoC3KD4/uVOr2Zp+L0LySezP9OHV9yA==", | ||
| 5695 | + "license": "MIT" | ||
| 5696 | + }, | ||
| 5697 | + "node_modules/supports-color": { | ||
| 5698 | + "version": "7.2.0", | ||
| 5699 | + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", | ||
| 5700 | + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", | ||
| 5701 | + "dev": true, | ||
| 5702 | + "license": "MIT", | ||
| 5703 | + "dependencies": { | ||
| 5704 | + "has-flag": "^4.0.0" | ||
| 5705 | + }, | ||
| 5706 | + "engines": { | ||
| 5707 | + "node": ">=8" | ||
| 5708 | + } | ||
| 5709 | + }, | ||
| 5710 | + "node_modules/symbol-tree": { | ||
| 5711 | + "version": "3.2.4", | ||
| 5712 | + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", | ||
| 5713 | + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", | ||
| 5714 | + "dev": true, | ||
| 5715 | + "license": "MIT" | ||
| 5716 | + }, | ||
| 5717 | + "node_modules/text-table": { | ||
| 5718 | + "version": "0.2.0", | ||
| 5719 | + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", | ||
| 5720 | + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", | ||
| 5721 | + "dev": true, | ||
| 5722 | + "license": "MIT" | ||
| 5723 | + }, | ||
| 5724 | + "node_modules/throttle-debounce": { | ||
| 5725 | + "version": "5.0.2", | ||
| 5726 | + "resolved": "https://registry.npmjs.org/throttle-debounce/-/throttle-debounce-5.0.2.tgz", | ||
| 5727 | + "integrity": "sha512-B71/4oyj61iNH0KeCamLuE2rmKuTO5byTOSVwECM5FA7TiAiAW+UqTKZ9ERueC4qvgSttUhdmq1mXC3kJqGX7A==", | ||
| 5728 | + "license": "MIT", | ||
| 5729 | + "engines": { | ||
| 5730 | + "node": ">=12.22" | ||
| 5731 | + } | ||
| 5732 | + }, | ||
| 5733 | + "node_modules/tinybench": { | ||
| 5734 | + "version": "2.9.0", | ||
| 5735 | + "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", | ||
| 5736 | + "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==", | ||
| 5737 | + "dev": true, | ||
| 5738 | + "license": "MIT" | ||
| 5739 | + }, | ||
| 5740 | + "node_modules/tinyexec": { | ||
| 5741 | + "version": "0.3.2", | ||
| 5742 | + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz", | ||
| 5743 | + "integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==", | ||
| 5744 | + "dev": true, | ||
| 5745 | + "license": "MIT" | ||
| 5746 | + }, | ||
| 5747 | + "node_modules/tinyglobby": { | ||
| 5748 | + "version": "0.2.17", | ||
| 5749 | + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz", | ||
| 5750 | + "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==", | ||
| 5751 | + "dev": true, | ||
| 5752 | + "license": "MIT", | ||
| 5753 | + "dependencies": { | ||
| 5754 | + "fdir": "^6.5.0", | ||
| 5755 | + "picomatch": "^4.0.4" | ||
| 5756 | + }, | ||
| 5757 | + "engines": { | ||
| 5758 | + "node": ">=12.0.0" | ||
| 5759 | + }, | ||
| 5760 | + "funding": { | ||
| 5761 | + "url": "https://github.com/sponsors/SuperchupuDev" | ||
| 5762 | + } | ||
| 5763 | + }, | ||
| 5764 | + "node_modules/tinypool": { | ||
| 5765 | + "version": "1.1.1", | ||
| 5766 | + "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.1.1.tgz", | ||
| 5767 | + "integrity": "sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==", | ||
| 5768 | + "dev": true, | ||
| 5769 | + "license": "MIT", | ||
| 5770 | + "engines": { | ||
| 5771 | + "node": "^18.0.0 || >=20.0.0" | ||
| 5772 | + } | ||
| 5773 | + }, | ||
| 5774 | + "node_modules/tinyrainbow": { | ||
| 5775 | + "version": "2.0.0", | ||
| 5776 | + "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-2.0.0.tgz", | ||
| 5777 | + "integrity": "sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==", | ||
| 5778 | + "dev": true, | ||
| 5779 | + "license": "MIT", | ||
| 5780 | + "engines": { | ||
| 5781 | + "node": ">=14.0.0" | ||
| 5782 | + } | ||
| 5783 | + }, | ||
| 5784 | + "node_modules/tinyspy": { | ||
| 5785 | + "version": "4.0.4", | ||
| 5786 | + "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-4.0.4.tgz", | ||
| 5787 | + "integrity": "sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==", | ||
| 5788 | + "dev": true, | ||
| 5789 | + "license": "MIT", | ||
| 5790 | + "engines": { | ||
| 5791 | + "node": ">=14.0.0" | ||
| 5792 | + } | ||
| 5793 | + }, | ||
| 5794 | + "node_modules/tldts": { | ||
| 5795 | + "version": "6.1.86", | ||
| 5796 | + "resolved": "https://registry.npmjs.org/tldts/-/tldts-6.1.86.tgz", | ||
| 5797 | + "integrity": "sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==", | ||
| 5798 | + "dev": true, | ||
| 5799 | + "license": "MIT", | ||
| 5800 | + "dependencies": { | ||
| 5801 | + "tldts-core": "^6.1.86" | ||
| 5802 | + }, | ||
| 5803 | + "bin": { | ||
| 5804 | + "tldts": "bin/cli.js" | ||
| 5805 | + } | ||
| 5806 | + }, | ||
| 5807 | + "node_modules/tldts-core": { | ||
| 5808 | + "version": "6.1.86", | ||
| 5809 | + "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-6.1.86.tgz", | ||
| 5810 | + "integrity": "sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==", | ||
| 5811 | + "dev": true, | ||
| 5812 | + "license": "MIT" | ||
| 5813 | + }, | ||
| 5814 | + "node_modules/toggle-selection": { | ||
| 5815 | + "version": "1.0.6", | ||
| 5816 | + "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", | ||
| 5817 | + "integrity": "sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==", | ||
| 5818 | + "license": "MIT" | ||
| 5819 | + }, | ||
| 5820 | + "node_modules/tough-cookie": { | ||
| 5821 | + "version": "5.1.2", | ||
| 5822 | + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-5.1.2.tgz", | ||
| 5823 | + "integrity": "sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==", | ||
| 5824 | + "dev": true, | ||
| 5825 | + "license": "BSD-3-Clause", | ||
| 5826 | + "dependencies": { | ||
| 5827 | + "tldts": "^6.1.32" | ||
| 5828 | + }, | ||
| 5829 | + "engines": { | ||
| 5830 | + "node": ">=16" | ||
| 5831 | + } | ||
| 5832 | + }, | ||
| 5833 | + "node_modules/tr46": { | ||
| 5834 | + "version": "5.1.1", | ||
| 5835 | + "resolved": "https://registry.npmjs.org/tr46/-/tr46-5.1.1.tgz", | ||
| 5836 | + "integrity": "sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==", | ||
| 5837 | + "dev": true, | ||
| 5838 | + "license": "MIT", | ||
| 5839 | + "dependencies": { | ||
| 5840 | + "punycode": "^2.3.1" | ||
| 5841 | + }, | ||
| 5842 | + "engines": { | ||
| 5843 | + "node": ">=18" | ||
| 5844 | + } | ||
| 5845 | + }, | ||
| 5846 | + "node_modules/ts-api-utils": { | ||
| 5847 | + "version": "2.5.0", | ||
| 5848 | + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.5.0.tgz", | ||
| 5849 | + "integrity": "sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==", | ||
| 5850 | + "dev": true, | ||
| 5851 | + "license": "MIT", | ||
| 5852 | + "engines": { | ||
| 5853 | + "node": ">=18.12" | ||
| 5854 | + }, | ||
| 5855 | + "peerDependencies": { | ||
| 5856 | + "typescript": ">=4.8.4" | ||
| 5857 | + } | ||
| 5858 | + }, | ||
| 5859 | + "node_modules/type-check": { | ||
| 5860 | + "version": "0.4.0", | ||
| 5861 | + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", | ||
| 5862 | + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", | ||
| 5863 | + "dev": true, | ||
| 5864 | + "license": "MIT", | ||
| 5865 | + "dependencies": { | ||
| 5866 | + "prelude-ls": "^1.2.1" | ||
| 5867 | + }, | ||
| 5868 | + "engines": { | ||
| 5869 | + "node": ">= 0.8.0" | ||
| 5870 | + } | ||
| 5871 | + }, | ||
| 5872 | + "node_modules/type-fest": { | ||
| 5873 | + "version": "0.20.2", | ||
| 5874 | + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", | ||
| 5875 | + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", | ||
| 5876 | + "dev": true, | ||
| 5877 | + "license": "(MIT OR CC0-1.0)", | ||
| 5878 | + "engines": { | ||
| 5879 | + "node": ">=10" | ||
| 5880 | + }, | ||
| 5881 | + "funding": { | ||
| 5882 | + "url": "https://github.com/sponsors/sindresorhus" | ||
| 5883 | + } | ||
| 5884 | + }, | ||
| 5885 | + "node_modules/typescript": { | ||
| 5886 | + "version": "5.9.3", | ||
| 5887 | + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", | ||
| 5888 | + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", | ||
| 5889 | + "dev": true, | ||
| 5890 | + "license": "Apache-2.0", | ||
| 5891 | + "bin": { | ||
| 5892 | + "tsc": "bin/tsc", | ||
| 5893 | + "tsserver": "bin/tsserver" | ||
| 5894 | + }, | ||
| 5895 | + "engines": { | ||
| 5896 | + "node": ">=14.17" | ||
| 5897 | + } | ||
| 5898 | + }, | ||
| 5899 | + "node_modules/undici-types": { | ||
| 5900 | + "version": "6.21.0", | ||
| 5901 | + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", | ||
| 5902 | + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", | ||
| 5903 | + "dev": true, | ||
| 5904 | + "license": "MIT" | ||
| 5905 | + }, | ||
| 5906 | + "node_modules/update-browserslist-db": { | ||
| 5907 | + "version": "1.2.3", | ||
| 5908 | + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", | ||
| 5909 | + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", | ||
| 5910 | + "dev": true, | ||
| 5911 | + "funding": [ | ||
| 5912 | + { | ||
| 5913 | + "type": "opencollective", | ||
| 5914 | + "url": "https://opencollective.com/browserslist" | ||
| 5915 | + }, | ||
| 5916 | + { | ||
| 5917 | + "type": "tidelift", | ||
| 5918 | + "url": "https://tidelift.com/funding/github/npm/browserslist" | ||
| 5919 | + }, | ||
| 5920 | + { | ||
| 5921 | + "type": "github", | ||
| 5922 | + "url": "https://github.com/sponsors/ai" | ||
| 5923 | + } | ||
| 5924 | + ], | ||
| 5925 | + "license": "MIT", | ||
| 5926 | + "dependencies": { | ||
| 5927 | + "escalade": "^3.2.0", | ||
| 5928 | + "picocolors": "^1.1.1" | ||
| 5929 | + }, | ||
| 5930 | + "bin": { | ||
| 5931 | + "update-browserslist-db": "cli.js" | ||
| 5932 | + }, | ||
| 5933 | + "peerDependencies": { | ||
| 5934 | + "browserslist": ">= 4.21.0" | ||
| 5935 | + } | ||
| 5936 | + }, | ||
| 5937 | + "node_modules/uri-js": { | ||
| 5938 | + "version": "4.4.1", | ||
| 5939 | + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", | ||
| 5940 | + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", | ||
| 5941 | + "dev": true, | ||
| 5942 | + "license": "BSD-2-Clause", | ||
| 5943 | + "dependencies": { | ||
| 5944 | + "punycode": "^2.1.0" | ||
| 5945 | + } | ||
| 5946 | + }, | ||
| 5947 | + "node_modules/use-sync-external-store": { | ||
| 5948 | + "version": "1.6.0", | ||
| 5949 | + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz", | ||
| 5950 | + "integrity": "sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==", | ||
| 5951 | + "license": "MIT", | ||
| 5952 | + "peerDependencies": { | ||
| 5953 | + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" | ||
| 5954 | + } | ||
| 5955 | + }, | ||
| 5956 | + "node_modules/vite": { | ||
| 5957 | + "version": "6.4.2", | ||
| 5958 | + "resolved": "https://registry.npmjs.org/vite/-/vite-6.4.2.tgz", | ||
| 5959 | + "integrity": "sha512-2N/55r4JDJ4gdrCvGgINMy+HH3iRpNIz8K6SFwVsA+JbQScLiC+clmAxBgwiSPgcG9U15QmvqCGWzMbqda5zGQ==", | ||
| 5960 | + "dev": true, | ||
| 5961 | + "license": "MIT", | ||
| 5962 | + "dependencies": { | ||
| 5963 | + "esbuild": "^0.25.0", | ||
| 5964 | + "fdir": "^6.4.4", | ||
| 5965 | + "picomatch": "^4.0.2", | ||
| 5966 | + "postcss": "^8.5.3", | ||
| 5967 | + "rollup": "^4.34.9", | ||
| 5968 | + "tinyglobby": "^0.2.13" | ||
| 5969 | + }, | ||
| 5970 | + "bin": { | ||
| 5971 | + "vite": "bin/vite.js" | ||
| 5972 | + }, | ||
| 5973 | + "engines": { | ||
| 5974 | + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" | ||
| 5975 | + }, | ||
| 5976 | + "funding": { | ||
| 5977 | + "url": "https://github.com/vitejs/vite?sponsor=1" | ||
| 5978 | + }, | ||
| 5979 | + "optionalDependencies": { | ||
| 5980 | + "fsevents": "~2.3.3" | ||
| 5981 | + }, | ||
| 5982 | + "peerDependencies": { | ||
| 5983 | + "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", | ||
| 5984 | + "jiti": ">=1.21.0", | ||
| 5985 | + "less": "*", | ||
| 5986 | + "lightningcss": "^1.21.0", | ||
| 5987 | + "sass": "*", | ||
| 5988 | + "sass-embedded": "*", | ||
| 5989 | + "stylus": "*", | ||
| 5990 | + "sugarss": "*", | ||
| 5991 | + "terser": "^5.16.0", | ||
| 5992 | + "tsx": "^4.8.1", | ||
| 5993 | + "yaml": "^2.4.2" | ||
| 5994 | + }, | ||
| 5995 | + "peerDependenciesMeta": { | ||
| 5996 | + "@types/node": { | ||
| 5997 | + "optional": true | ||
| 5998 | + }, | ||
| 5999 | + "jiti": { | ||
| 6000 | + "optional": true | ||
| 6001 | + }, | ||
| 6002 | + "less": { | ||
| 6003 | + "optional": true | ||
| 6004 | + }, | ||
| 6005 | + "lightningcss": { | ||
| 6006 | + "optional": true | ||
| 6007 | + }, | ||
| 6008 | + "sass": { | ||
| 6009 | + "optional": true | ||
| 6010 | + }, | ||
| 6011 | + "sass-embedded": { | ||
| 6012 | + "optional": true | ||
| 6013 | + }, | ||
| 6014 | + "stylus": { | ||
| 6015 | + "optional": true | ||
| 6016 | + }, | ||
| 6017 | + "sugarss": { | ||
| 6018 | + "optional": true | ||
| 6019 | + }, | ||
| 6020 | + "terser": { | ||
| 6021 | + "optional": true | ||
| 6022 | + }, | ||
| 6023 | + "tsx": { | ||
| 6024 | + "optional": true | ||
| 6025 | + }, | ||
| 6026 | + "yaml": { | ||
| 6027 | + "optional": true | ||
| 6028 | + } | ||
| 6029 | + } | ||
| 6030 | + }, | ||
| 6031 | + "node_modules/vite-node": { | ||
| 6032 | + "version": "3.2.4", | ||
| 6033 | + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-3.2.4.tgz", | ||
| 6034 | + "integrity": "sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==", | ||
| 6035 | + "dev": true, | ||
| 6036 | + "license": "MIT", | ||
| 6037 | + "dependencies": { | ||
| 6038 | + "cac": "^6.7.14", | ||
| 6039 | + "debug": "^4.4.1", | ||
| 6040 | + "es-module-lexer": "^1.7.0", | ||
| 6041 | + "pathe": "^2.0.3", | ||
| 6042 | + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0" | ||
| 6043 | + }, | ||
| 6044 | + "bin": { | ||
| 6045 | + "vite-node": "vite-node.mjs" | ||
| 6046 | + }, | ||
| 6047 | + "engines": { | ||
| 6048 | + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" | ||
| 6049 | + }, | ||
| 6050 | + "funding": { | ||
| 6051 | + "url": "https://opencollective.com/vitest" | ||
| 6052 | + } | ||
| 6053 | + }, | ||
| 6054 | + "node_modules/vite/node_modules/fsevents": { | ||
| 6055 | + "version": "2.3.3", | ||
| 6056 | + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", | ||
| 6057 | + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", | ||
| 6058 | + "dev": true, | ||
| 6059 | + "hasInstallScript": true, | ||
| 6060 | + "license": "MIT", | ||
| 6061 | + "optional": true, | ||
| 6062 | + "os": [ | ||
| 6063 | + "darwin" | ||
| 6064 | + ], | ||
| 6065 | + "engines": { | ||
| 6066 | + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" | ||
| 6067 | + } | ||
| 6068 | + }, | ||
| 6069 | + "node_modules/vitest": { | ||
| 6070 | + "version": "3.2.4", | ||
| 6071 | + "resolved": "https://registry.npmjs.org/vitest/-/vitest-3.2.4.tgz", | ||
| 6072 | + "integrity": "sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==", | ||
| 6073 | + "dev": true, | ||
| 6074 | + "license": "MIT", | ||
| 6075 | + "dependencies": { | ||
| 6076 | + "@types/chai": "^5.2.2", | ||
| 6077 | + "@vitest/expect": "3.2.4", | ||
| 6078 | + "@vitest/mocker": "3.2.4", | ||
| 6079 | + "@vitest/pretty-format": "^3.2.4", | ||
| 6080 | + "@vitest/runner": "3.2.4", | ||
| 6081 | + "@vitest/snapshot": "3.2.4", | ||
| 6082 | + "@vitest/spy": "3.2.4", | ||
| 6083 | + "@vitest/utils": "3.2.4", | ||
| 6084 | + "chai": "^5.2.0", | ||
| 6085 | + "debug": "^4.4.1", | ||
| 6086 | + "expect-type": "^1.2.1", | ||
| 6087 | + "magic-string": "^0.30.17", | ||
| 6088 | + "pathe": "^2.0.3", | ||
| 6089 | + "picomatch": "^4.0.2", | ||
| 6090 | + "std-env": "^3.9.0", | ||
| 6091 | + "tinybench": "^2.9.0", | ||
| 6092 | + "tinyexec": "^0.3.2", | ||
| 6093 | + "tinyglobby": "^0.2.14", | ||
| 6094 | + "tinypool": "^1.1.1", | ||
| 6095 | + "tinyrainbow": "^2.0.0", | ||
| 6096 | + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0", | ||
| 6097 | + "vite-node": "3.2.4", | ||
| 6098 | + "why-is-node-running": "^2.3.0" | ||
| 6099 | + }, | ||
| 6100 | + "bin": { | ||
| 6101 | + "vitest": "vitest.mjs" | ||
| 6102 | + }, | ||
| 6103 | + "engines": { | ||
| 6104 | + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" | ||
| 6105 | + }, | ||
| 6106 | + "funding": { | ||
| 6107 | + "url": "https://opencollective.com/vitest" | ||
| 6108 | + }, | ||
| 6109 | + "peerDependencies": { | ||
| 6110 | + "@edge-runtime/vm": "*", | ||
| 6111 | + "@types/debug": "^4.1.12", | ||
| 6112 | + "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", | ||
| 6113 | + "@vitest/browser": "3.2.4", | ||
| 6114 | + "@vitest/ui": "3.2.4", | ||
| 6115 | + "happy-dom": "*", | ||
| 6116 | + "jsdom": "*" | ||
| 6117 | + }, | ||
| 6118 | + "peerDependenciesMeta": { | ||
| 6119 | + "@edge-runtime/vm": { | ||
| 6120 | + "optional": true | ||
| 6121 | + }, | ||
| 6122 | + "@types/debug": { | ||
| 6123 | + "optional": true | ||
| 6124 | + }, | ||
| 6125 | + "@types/node": { | ||
| 6126 | + "optional": true | ||
| 6127 | + }, | ||
| 6128 | + "@vitest/browser": { | ||
| 6129 | + "optional": true | ||
| 6130 | + }, | ||
| 6131 | + "@vitest/ui": { | ||
| 6132 | + "optional": true | ||
| 6133 | + }, | ||
| 6134 | + "happy-dom": { | ||
| 6135 | + "optional": true | ||
| 6136 | + }, | ||
| 6137 | + "jsdom": { | ||
| 6138 | + "optional": true | ||
| 6139 | + } | ||
| 6140 | + } | ||
| 6141 | + }, | ||
| 6142 | + "node_modules/w3c-xmlserializer": { | ||
| 6143 | + "version": "5.0.0", | ||
| 6144 | + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz", | ||
| 6145 | + "integrity": "sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==", | ||
| 6146 | + "dev": true, | ||
| 6147 | + "license": "MIT", | ||
| 6148 | + "dependencies": { | ||
| 6149 | + "xml-name-validator": "^5.0.0" | ||
| 6150 | + }, | ||
| 6151 | + "engines": { | ||
| 6152 | + "node": ">=18" | ||
| 6153 | + } | ||
| 6154 | + }, | ||
| 6155 | + "node_modules/webidl-conversions": { | ||
| 6156 | + "version": "7.0.0", | ||
| 6157 | + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", | ||
| 6158 | + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", | ||
| 6159 | + "dev": true, | ||
| 6160 | + "license": "BSD-2-Clause", | ||
| 6161 | + "engines": { | ||
| 6162 | + "node": ">=12" | ||
| 6163 | + } | ||
| 6164 | + }, | ||
| 6165 | + "node_modules/whatwg-encoding": { | ||
| 6166 | + "version": "3.1.1", | ||
| 6167 | + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz", | ||
| 6168 | + "integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==", | ||
| 6169 | + "deprecated": "Use @exodus/bytes instead for a more spec-conformant and faster implementation", | ||
| 6170 | + "dev": true, | ||
| 6171 | + "license": "MIT", | ||
| 6172 | + "dependencies": { | ||
| 6173 | + "iconv-lite": "0.6.3" | ||
| 6174 | + }, | ||
| 6175 | + "engines": { | ||
| 6176 | + "node": ">=18" | ||
| 6177 | + } | ||
| 6178 | + }, | ||
| 6179 | + "node_modules/whatwg-mimetype": { | ||
| 6180 | + "version": "4.0.0", | ||
| 6181 | + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz", | ||
| 6182 | + "integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==", | ||
| 6183 | + "dev": true, | ||
| 6184 | + "license": "MIT", | ||
| 6185 | + "engines": { | ||
| 6186 | + "node": ">=18" | ||
| 6187 | + } | ||
| 6188 | + }, | ||
| 6189 | + "node_modules/whatwg-url": { | ||
| 6190 | + "version": "14.2.0", | ||
| 6191 | + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.2.0.tgz", | ||
| 6192 | + "integrity": "sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==", | ||
| 6193 | + "dev": true, | ||
| 6194 | + "license": "MIT", | ||
| 6195 | + "dependencies": { | ||
| 6196 | + "tr46": "^5.1.0", | ||
| 6197 | + "webidl-conversions": "^7.0.0" | ||
| 6198 | + }, | ||
| 6199 | + "engines": { | ||
| 6200 | + "node": ">=18" | ||
| 6201 | + } | ||
| 6202 | + }, | ||
| 6203 | + "node_modules/which": { | ||
| 6204 | + "version": "2.0.2", | ||
| 6205 | + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", | ||
| 6206 | + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", | ||
| 6207 | + "dev": true, | ||
| 6208 | + "license": "ISC", | ||
| 6209 | + "dependencies": { | ||
| 6210 | + "isexe": "^2.0.0" | ||
| 6211 | + }, | ||
| 6212 | + "bin": { | ||
| 6213 | + "node-which": "bin/node-which" | ||
| 6214 | + }, | ||
| 6215 | + "engines": { | ||
| 6216 | + "node": ">= 8" | ||
| 6217 | + } | ||
| 6218 | + }, | ||
| 6219 | + "node_modules/why-is-node-running": { | ||
| 6220 | + "version": "2.3.0", | ||
| 6221 | + "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz", | ||
| 6222 | + "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==", | ||
| 6223 | + "dev": true, | ||
| 6224 | + "license": "MIT", | ||
| 6225 | + "dependencies": { | ||
| 6226 | + "siginfo": "^2.0.0", | ||
| 6227 | + "stackback": "0.0.2" | ||
| 6228 | + }, | ||
| 6229 | + "bin": { | ||
| 6230 | + "why-is-node-running": "cli.js" | ||
| 6231 | + }, | ||
| 6232 | + "engines": { | ||
| 6233 | + "node": ">=8" | ||
| 6234 | + } | ||
| 6235 | + }, | ||
| 6236 | + "node_modules/word-wrap": { | ||
| 6237 | + "version": "1.2.5", | ||
| 6238 | + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", | ||
| 6239 | + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", | ||
| 6240 | + "dev": true, | ||
| 6241 | + "license": "MIT", | ||
| 6242 | + "engines": { | ||
| 6243 | + "node": ">=0.10.0" | ||
| 6244 | + } | ||
| 6245 | + }, | ||
| 6246 | + "node_modules/wrappy": { | ||
| 6247 | + "version": "1.0.2", | ||
| 6248 | + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", | ||
| 6249 | + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", | ||
| 6250 | + "dev": true, | ||
| 6251 | + "license": "ISC" | ||
| 6252 | + }, | ||
| 6253 | + "node_modules/ws": { | ||
| 6254 | + "version": "8.21.0", | ||
| 6255 | + "resolved": "https://registry.npmjs.org/ws/-/ws-8.21.0.tgz", | ||
| 6256 | + "integrity": "sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==", | ||
| 6257 | + "dev": true, | ||
| 6258 | + "license": "MIT", | ||
| 6259 | + "engines": { | ||
| 6260 | + "node": ">=10.0.0" | ||
| 6261 | + }, | ||
| 6262 | + "peerDependencies": { | ||
| 6263 | + "bufferutil": "^4.0.1", | ||
| 6264 | + "utf-8-validate": ">=5.0.2" | ||
| 6265 | + }, | ||
| 6266 | + "peerDependenciesMeta": { | ||
| 6267 | + "bufferutil": { | ||
| 6268 | + "optional": true | ||
| 6269 | + }, | ||
| 6270 | + "utf-8-validate": { | ||
| 6271 | + "optional": true | ||
| 6272 | + } | ||
| 6273 | + } | ||
| 6274 | + }, | ||
| 6275 | + "node_modules/xml-name-validator": { | ||
| 6276 | + "version": "5.0.0", | ||
| 6277 | + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-5.0.0.tgz", | ||
| 6278 | + "integrity": "sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==", | ||
| 6279 | + "dev": true, | ||
| 6280 | + "license": "Apache-2.0", | ||
| 6281 | + "engines": { | ||
| 6282 | + "node": ">=18" | ||
| 6283 | + } | ||
| 6284 | + }, | ||
| 6285 | + "node_modules/xmlchars": { | ||
| 6286 | + "version": "2.2.0", | ||
| 6287 | + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", | ||
| 6288 | + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", | ||
| 6289 | + "dev": true, | ||
| 6290 | + "license": "MIT" | ||
| 6291 | + }, | ||
| 6292 | + "node_modules/yallist": { | ||
| 6293 | + "version": "3.1.1", | ||
| 6294 | + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", | ||
| 6295 | + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", | ||
| 6296 | + "dev": true, | ||
| 6297 | + "license": "ISC" | ||
| 6298 | + }, | ||
| 6299 | + "node_modules/yocto-queue": { | ||
| 6300 | + "version": "0.1.0", | ||
| 6301 | + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", | ||
| 6302 | + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", | ||
| 6303 | + "dev": true, | ||
| 6304 | + "license": "MIT", | ||
| 6305 | + "engines": { | ||
| 6306 | + "node": ">=10" | ||
| 6307 | + }, | ||
| 6308 | + "funding": { | ||
| 6309 | + "url": "https://github.com/sponsors/sindresorhus" | ||
| 6310 | + } | ||
| 6311 | + } | ||
| 6312 | + } | ||
| 6313 | +} |
frontend/package.json
0 → 100644
| 1 | +{ | ||
| 2 | + "name": "xly-erp-web", | ||
| 3 | + "private": true, | ||
| 4 | + "version": "0.1.0", | ||
| 5 | + "type": "module", | ||
| 6 | + "scripts": { | ||
| 7 | + "dev": "vite", | ||
| 8 | + "build": "tsc --noEmit && vite build", | ||
| 9 | + "lint": "eslint .", | ||
| 10 | + "test:unit": "vitest run", | ||
| 11 | + "test:e2e": "playwright test" | ||
| 12 | + }, | ||
| 13 | + "dependencies": { | ||
| 14 | + "@ant-design/icons": "^5.5.2", | ||
| 15 | + "@reduxjs/toolkit": "^2.5.0", | ||
| 16 | + "antd": "^5.22.5", | ||
| 17 | + "axios": "^1.7.9", | ||
| 18 | + "react": "^18.3.1", | ||
| 19 | + "react-dom": "^18.3.1", | ||
| 20 | + "react-redux": "^9.2.0", | ||
| 21 | + "react-router-dom": "^6.28.1" | ||
| 22 | + }, | ||
| 23 | + "devDependencies": { | ||
| 24 | + "@playwright/test": "^1.49.1", | ||
| 25 | + "@testing-library/jest-dom": "^6.6.3", | ||
| 26 | + "@testing-library/react": "^16.1.0", | ||
| 27 | + "@testing-library/user-event": "^14.5.2", | ||
| 28 | + "@types/react": "^18.3.18", | ||
| 29 | + "@types/react-dom": "^18.3.5", | ||
| 30 | + "@types/node": "^22.10.2", | ||
| 31 | + "@typescript-eslint/eslint-plugin": "^8.18.2", | ||
| 32 | + "@typescript-eslint/parser": "^8.18.2", | ||
| 33 | + "@vitejs/plugin-react": "^4.3.4", | ||
| 34 | + "eslint": "^8.57.1", | ||
| 35 | + "eslint-plugin-react-hooks": "^4.6.2", | ||
| 36 | + "eslint-plugin-react-refresh": "^0.4.16", | ||
| 37 | + "jsdom": "^25.0.1", | ||
| 38 | + "typescript": "^5.7.2", | ||
| 39 | + "vite": "^6.0.5", | ||
| 40 | + "vitest": "^3.0.5" | ||
| 41 | + } | ||
| 42 | +} |
frontend/src/App.tsx
0 → 100644
frontend/src/main.tsx
0 → 100644
frontend/src/styles/global.css
0 → 100644
| 1 | +/* 全局样式入口:引入仓库根 Design Tokens SSoT(D9,不在 frontend 内拷贝) */ | ||
| 2 | +@import '../../../src/styles/tokens.css'; | ||
| 3 | + | ||
| 4 | +* { | ||
| 5 | + box-sizing: border-box; | ||
| 6 | +} | ||
| 7 | + | ||
| 8 | +html, | ||
| 9 | +body, | ||
| 10 | +#root { | ||
| 11 | + margin: 0; | ||
| 12 | + padding: 0; | ||
| 13 | + height: 100%; | ||
| 14 | +} | ||
| 15 | + | ||
| 16 | +body { | ||
| 17 | + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', | ||
| 18 | + 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif; | ||
| 19 | + background: var(--color-bg-base); | ||
| 20 | + color: var(--color-text); | ||
| 21 | +} |
frontend/tests/setup.ts
0 → 100644
| 1 | +import '@testing-library/jest-dom'; | ||
| 2 | +import { afterEach } from 'vitest'; | ||
| 3 | +import { cleanup } from '@testing-library/react'; | ||
| 4 | + | ||
| 5 | +// 部分 jsdom / node 运行环境未提供 localStorage,提供内存实现(token 持久化测试依赖)。 | ||
| 6 | +if (typeof globalThis.localStorage === 'undefined') { | ||
| 7 | + const store = new Map<string, string>(); | ||
| 8 | + const memoryStorage: Storage = { | ||
| 9 | + get length() { | ||
| 10 | + return store.size; | ||
| 11 | + }, | ||
| 12 | + clear: () => store.clear(), | ||
| 13 | + getItem: (key: string) => (store.has(key) ? store.get(key)! : null), | ||
| 14 | + key: (index: number) => Array.from(store.keys())[index] ?? null, | ||
| 15 | + removeItem: (key: string) => { | ||
| 16 | + store.delete(key); | ||
| 17 | + }, | ||
| 18 | + setItem: (key: string, value: string) => { | ||
| 19 | + store.set(key, String(value)); | ||
| 20 | + }, | ||
| 21 | + }; | ||
| 22 | + Object.defineProperty(globalThis, 'localStorage', { | ||
| 23 | + value: memoryStorage, | ||
| 24 | + configurable: true, | ||
| 25 | + writable: true, | ||
| 26 | + }); | ||
| 27 | +} | ||
| 28 | + | ||
| 29 | +// jsdom 未实现 matchMedia,AntD 响应式逻辑会用到,提供桩实现。 | ||
| 30 | +if (!window.matchMedia) { | ||
| 31 | + window.matchMedia = (query: string) => | ||
| 32 | + ({ | ||
| 33 | + matches: false, | ||
| 34 | + media: query, | ||
| 35 | + onchange: null, | ||
| 36 | + addListener: () => {}, | ||
| 37 | + removeListener: () => {}, | ||
| 38 | + addEventListener: () => {}, | ||
| 39 | + removeEventListener: () => {}, | ||
| 40 | + dispatchEvent: () => false, | ||
| 41 | + }) as unknown as MediaQueryList; | ||
| 42 | +} | ||
| 43 | + | ||
| 44 | +afterEach(() => { | ||
| 45 | + cleanup(); | ||
| 46 | + localStorage.clear(); | ||
| 47 | +}); |
frontend/tests/unit/smoke.test.tsx
0 → 100644
frontend/tsconfig.json
0 → 100644
| 1 | +{ | ||
| 2 | + "compilerOptions": { | ||
| 3 | + "target": "ES2020", | ||
| 4 | + "useDefineForClassFields": true, | ||
| 5 | + "lib": ["ES2020", "DOM", "DOM.Iterable"], | ||
| 6 | + "module": "ESNext", | ||
| 7 | + "skipLibCheck": true, | ||
| 8 | + "moduleResolution": "bundler", | ||
| 9 | + "allowImportingTsExtensions": true, | ||
| 10 | + "resolveJsonModule": true, | ||
| 11 | + "isolatedModules": true, | ||
| 12 | + "moduleDetection": "force", | ||
| 13 | + "noEmit": true, | ||
| 14 | + "jsx": "react-jsx", | ||
| 15 | + "strict": true, | ||
| 16 | + "noUnusedLocals": true, | ||
| 17 | + "noUnusedParameters": true, | ||
| 18 | + "noFallthroughCasesInSwitch": true, | ||
| 19 | + "types": ["vitest/globals", "@testing-library/jest-dom", "node"] | ||
| 20 | + }, | ||
| 21 | + "include": ["src", "tests", "vite.config.ts", "playwright.config.ts"] | ||
| 22 | +} |
frontend/vite.config.ts
0 → 100644
| 1 | +import { defineConfig } from 'vitest/config'; | ||
| 2 | +import react from '@vitejs/plugin-react'; | ||
| 3 | + | ||
| 4 | +// dev_port (frontend.dev_port) = 5173;后端 http_port (backend.http_port) = 5172(D2) | ||
| 5 | +// /api 经 Vite dev proxy 转发到后端,避免跨端口 CORS。 | ||
| 6 | +export default defineConfig({ | ||
| 7 | + plugins: [react()], | ||
| 8 | + server: { | ||
| 9 | + port: 5173, | ||
| 10 | + proxy: { | ||
| 11 | + '/api': { | ||
| 12 | + target: 'http://localhost:5172', | ||
| 13 | + changeOrigin: true, | ||
| 14 | + }, | ||
| 15 | + }, | ||
| 16 | + }, | ||
| 17 | + test: { | ||
| 18 | + environment: 'jsdom', | ||
| 19 | + globals: true, | ||
| 20 | + setupFiles: ['./tests/setup.ts'], | ||
| 21 | + css: true, | ||
| 22 | + include: ['tests/unit/**/*.{test,spec}.{ts,tsx}'], | ||
| 23 | + }, | ||
| 24 | +}); |