├── .gitignore ├── README.md ├── package.json ├── pnpm-lock.yaml ├── postcss.config.cjs ├── public ├── favicon.ico ├── img │ ├── Peepo.png │ └── is2511-discord.png └── v3 │ └── font │ └── Alsina_Ultrajada.ttf ├── renovate.json ├── src ├── components │ ├── Counter.tsx │ ├── FeatureCard.tsx │ ├── FeaturesGrid.tsx │ ├── MySiteTitle.tsx │ ├── SevenTVNamepaint.tsx │ └── icon │ │ ├── BTTVBadIcon.tsx │ │ ├── BTTVIcon.tsx │ │ ├── ChatterinoIcon.tsx │ │ ├── ChatterinoIconColored.tsx │ │ ├── FFZIcon.tsx │ │ ├── SevenTVIcon.tsx │ │ ├── TwitchIcon.tsx │ │ └── TwitchIconPurple.tsx ├── entry-client.tsx ├── entry-server.tsx ├── root.css ├── root.tsx └── routes │ ├── [...404].tsx │ └── v3 │ ├── chat │ └── [channel].tsx │ └── index.tsx ├── tailwind.config.cjs ├── tsconfig.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | dist 3 | .solid 4 | .output 5 | .vercel 6 | .netlify 7 | netlify 8 | 9 | # Cloudflare Pages functions (https://developers.cloudflare.com/pages/platform/functions) 10 | functions 11 | 12 | # dependencies 13 | /node_modules 14 | 15 | # IDEs and editors 16 | /.idea 17 | .project 18 | .classpath 19 | *.launch 20 | .settings/ 21 | 22 | # Temp 23 | gitignore 24 | 25 | # System Files 26 | .DS_Store 27 | Thumbs.db 28 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SolidStart 2 | 3 | Everything you need to build a Solid project, powered by [`solid-start`](https://start.solidjs.com); 4 | 5 | ## Creating a project 6 | 7 | ```bash 8 | # create a new project in the current directory 9 | npm init solid@latest 10 | 11 | # create a new project in my-app 12 | npm init solid@latest my-app 13 | ``` 14 | 15 | ## Developing 16 | 17 | Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server: 18 | 19 | ```bash 20 | npm run dev 21 | 22 | # or start the server and open the app in a new browser tab 23 | npm run dev -- --open 24 | ``` 25 | 26 | ## Building 27 | 28 | Solid apps are built with _adapters_, which optimise your project for deployment to different environments. 29 | 30 | By default, `npm run build` will generate a Node app that you can run with `npm start`. To use a different adapter, add it to the `devDependencies` in `package.json` and specify in your `vite.config.js`. 31 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "chatis", 3 | "scripts": { 4 | "dev": "solid-start dev", 5 | "build": "solid-start build", 6 | "start": "solid-start start" 7 | }, 8 | "type": "module", 9 | "devDependencies": { 10 | "@suid/vite-plugin": "0.1.1", 11 | "autoprefixer": "^10.4.13", 12 | "postcss": "^8.4.21", 13 | "solid-start-cloudflare-pages": "^0.2.11", 14 | "solid-start-node": "^0.2.11", 15 | "tailwindcss": "^3.2.4", 16 | "typescript": "^4.9.4", 17 | "vite": "^3.0.0", 18 | "vite-plugin-solid": "^2.5.0" 19 | }, 20 | "dependencies": { 21 | "@solidjs/meta": "^0.28.2", 22 | "@solidjs/router": "^0.7.0", 23 | "@suid/icons-material": "^0.5.5", 24 | "@suid/material": "^0.8.2", 25 | "solid-js": "^1.6.8", 26 | "solid-start": "^0.2.11", 27 | "undici": "^5.14.0" 28 | }, 29 | "engines": { 30 | "node": ">=16" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: 5.4 2 | 3 | specifiers: 4 | '@solidjs/meta': ^0.28.2 5 | '@solidjs/router': ^0.7.0 6 | '@suid/icons-material': ^0.5.5 7 | '@suid/material': ^0.8.2 8 | '@suid/vite-plugin': 0.1.1 9 | autoprefixer: ^10.4.13 10 | postcss: ^8.4.21 11 | solid-js: ^1.6.8 12 | solid-start: ^0.2.11 13 | solid-start-cloudflare-pages: ^0.2.11 14 | solid-start-node: ^0.2.11 15 | tailwindcss: ^3.2.4 16 | typescript: ^4.9.4 17 | undici: ^5.14.0 18 | vite: ^3.0.0 19 | vite-plugin-solid: ^2.5.0 20 | 21 | dependencies: 22 | '@solidjs/meta': 0.28.2_solid-js@1.6.9 23 | '@solidjs/router': 0.7.0_solid-js@1.6.9 24 | '@suid/icons-material': 0.5.6_solid-js@1.6.9 25 | '@suid/material': 0.8.2_solid-js@1.6.9 26 | solid-js: 1.6.9 27 | solid-start: 0.2.16_55umyvmfaswzxpylft3tvr3dvm 28 | undici: 5.16.0 29 | 30 | devDependencies: 31 | '@suid/vite-plugin': 0.1.1_vite@3.2.5 32 | autoprefixer: 10.4.13_postcss@8.4.21 33 | postcss: 8.4.21 34 | solid-start-cloudflare-pages: 0.2.16_beln6p34t7mdfnglvydsh3cc6m 35 | solid-start-node: 0.2.16_f63ddrunxocrtns5sxchmwmkce 36 | tailwindcss: 3.2.4_postcss@8.4.21 37 | typescript: 4.9.4 38 | vite: 3.2.5 39 | vite-plugin-solid: 2.5.0_solid-js@1.6.9+vite@3.2.5 40 | 41 | packages: 42 | 43 | /@ampproject/remapping/2.2.0: 44 | resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==} 45 | engines: {node: '>=6.0.0'} 46 | dependencies: 47 | '@jridgewell/gen-mapping': 0.1.1 48 | '@jridgewell/trace-mapping': 0.3.17 49 | 50 | /@antfu/utils/0.7.2: 51 | resolution: {integrity: sha512-vy9fM3pIxZmX07dL+VX1aZe7ynZ+YyB0jY+jE6r3hOK6GNY2t6W8rzpFC4tgpbXUYABkFQwgJq2XYXlxbXAI0g==} 52 | 53 | /@babel/code-frame/7.18.6: 54 | resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} 55 | engines: {node: '>=6.9.0'} 56 | dependencies: 57 | '@babel/highlight': 7.18.6 58 | 59 | /@babel/compat-data/7.20.10: 60 | resolution: {integrity: sha512-sEnuDPpOJR/fcafHMjpcpGN5M2jbUGUHwmuWKM/YdPzeEDJg8bgmbcWQFUfE32MQjti1koACvoPVsDe8Uq+idg==} 61 | engines: {node: '>=6.9.0'} 62 | 63 | /@babel/core/7.20.12: 64 | resolution: {integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==} 65 | engines: {node: '>=6.9.0'} 66 | dependencies: 67 | '@ampproject/remapping': 2.2.0 68 | '@babel/code-frame': 7.18.6 69 | '@babel/generator': 7.20.7 70 | '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 71 | '@babel/helper-module-transforms': 7.20.11 72 | '@babel/helpers': 7.20.13 73 | '@babel/parser': 7.20.13 74 | '@babel/template': 7.20.7 75 | '@babel/traverse': 7.20.13 76 | '@babel/types': 7.20.7 77 | convert-source-map: 1.9.0 78 | debug: 4.3.4 79 | gensync: 1.0.0-beta.2 80 | json5: 2.2.3 81 | semver: 6.3.0 82 | transitivePeerDependencies: 83 | - supports-color 84 | 85 | /@babel/generator/7.20.7: 86 | resolution: {integrity: sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==} 87 | engines: {node: '>=6.9.0'} 88 | dependencies: 89 | '@babel/types': 7.20.7 90 | '@jridgewell/gen-mapping': 0.3.2 91 | jsesc: 2.5.2 92 | 93 | /@babel/helper-annotate-as-pure/7.18.6: 94 | resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} 95 | engines: {node: '>=6.9.0'} 96 | dependencies: 97 | '@babel/types': 7.20.7 98 | 99 | /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9: 100 | resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==} 101 | engines: {node: '>=6.9.0'} 102 | dependencies: 103 | '@babel/helper-explode-assignable-expression': 7.18.6 104 | '@babel/types': 7.20.7 105 | 106 | /@babel/helper-compilation-targets/7.20.7_@babel+core@7.20.12: 107 | resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} 108 | engines: {node: '>=6.9.0'} 109 | peerDependencies: 110 | '@babel/core': ^7.0.0 111 | dependencies: 112 | '@babel/compat-data': 7.20.10 113 | '@babel/core': 7.20.12 114 | '@babel/helper-validator-option': 7.18.6 115 | browserslist: 4.21.4 116 | lru-cache: 5.1.1 117 | semver: 6.3.0 118 | 119 | /@babel/helper-create-class-features-plugin/7.20.12_@babel+core@7.20.12: 120 | resolution: {integrity: sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==} 121 | engines: {node: '>=6.9.0'} 122 | peerDependencies: 123 | '@babel/core': ^7.0.0 124 | dependencies: 125 | '@babel/core': 7.20.12 126 | '@babel/helper-annotate-as-pure': 7.18.6 127 | '@babel/helper-environment-visitor': 7.18.9 128 | '@babel/helper-function-name': 7.19.0 129 | '@babel/helper-member-expression-to-functions': 7.20.7 130 | '@babel/helper-optimise-call-expression': 7.18.6 131 | '@babel/helper-replace-supers': 7.20.7 132 | '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 133 | '@babel/helper-split-export-declaration': 7.18.6 134 | transitivePeerDependencies: 135 | - supports-color 136 | 137 | /@babel/helper-create-regexp-features-plugin/7.20.5_@babel+core@7.20.12: 138 | resolution: {integrity: sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==} 139 | engines: {node: '>=6.9.0'} 140 | peerDependencies: 141 | '@babel/core': ^7.0.0 142 | dependencies: 143 | '@babel/core': 7.20.12 144 | '@babel/helper-annotate-as-pure': 7.18.6 145 | regexpu-core: 5.2.2 146 | 147 | /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.12: 148 | resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} 149 | peerDependencies: 150 | '@babel/core': ^7.4.0-0 151 | dependencies: 152 | '@babel/core': 7.20.12 153 | '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 154 | '@babel/helper-plugin-utils': 7.20.2 155 | debug: 4.3.4 156 | lodash.debounce: 4.0.8 157 | resolve: 1.22.1 158 | semver: 6.3.0 159 | transitivePeerDependencies: 160 | - supports-color 161 | 162 | /@babel/helper-environment-visitor/7.18.9: 163 | resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} 164 | engines: {node: '>=6.9.0'} 165 | 166 | /@babel/helper-explode-assignable-expression/7.18.6: 167 | resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} 168 | engines: {node: '>=6.9.0'} 169 | dependencies: 170 | '@babel/types': 7.20.7 171 | 172 | /@babel/helper-function-name/7.19.0: 173 | resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==} 174 | engines: {node: '>=6.9.0'} 175 | dependencies: 176 | '@babel/template': 7.20.7 177 | '@babel/types': 7.20.7 178 | 179 | /@babel/helper-hoist-variables/7.18.6: 180 | resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} 181 | engines: {node: '>=6.9.0'} 182 | dependencies: 183 | '@babel/types': 7.20.7 184 | 185 | /@babel/helper-member-expression-to-functions/7.20.7: 186 | resolution: {integrity: sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==} 187 | engines: {node: '>=6.9.0'} 188 | dependencies: 189 | '@babel/types': 7.20.7 190 | 191 | /@babel/helper-module-imports/7.18.6: 192 | resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} 193 | engines: {node: '>=6.9.0'} 194 | dependencies: 195 | '@babel/types': 7.20.7 196 | 197 | /@babel/helper-module-transforms/7.20.11: 198 | resolution: {integrity: sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==} 199 | engines: {node: '>=6.9.0'} 200 | dependencies: 201 | '@babel/helper-environment-visitor': 7.18.9 202 | '@babel/helper-module-imports': 7.18.6 203 | '@babel/helper-simple-access': 7.20.2 204 | '@babel/helper-split-export-declaration': 7.18.6 205 | '@babel/helper-validator-identifier': 7.19.1 206 | '@babel/template': 7.20.7 207 | '@babel/traverse': 7.20.13 208 | '@babel/types': 7.20.7 209 | transitivePeerDependencies: 210 | - supports-color 211 | 212 | /@babel/helper-optimise-call-expression/7.18.6: 213 | resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} 214 | engines: {node: '>=6.9.0'} 215 | dependencies: 216 | '@babel/types': 7.20.7 217 | 218 | /@babel/helper-plugin-utils/7.20.2: 219 | resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} 220 | engines: {node: '>=6.9.0'} 221 | 222 | /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.12: 223 | resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} 224 | engines: {node: '>=6.9.0'} 225 | peerDependencies: 226 | '@babel/core': ^7.0.0 227 | dependencies: 228 | '@babel/core': 7.20.12 229 | '@babel/helper-annotate-as-pure': 7.18.6 230 | '@babel/helper-environment-visitor': 7.18.9 231 | '@babel/helper-wrap-function': 7.20.5 232 | '@babel/types': 7.20.7 233 | transitivePeerDependencies: 234 | - supports-color 235 | 236 | /@babel/helper-replace-supers/7.20.7: 237 | resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==} 238 | engines: {node: '>=6.9.0'} 239 | dependencies: 240 | '@babel/helper-environment-visitor': 7.18.9 241 | '@babel/helper-member-expression-to-functions': 7.20.7 242 | '@babel/helper-optimise-call-expression': 7.18.6 243 | '@babel/template': 7.20.7 244 | '@babel/traverse': 7.20.13 245 | '@babel/types': 7.20.7 246 | transitivePeerDependencies: 247 | - supports-color 248 | 249 | /@babel/helper-simple-access/7.20.2: 250 | resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} 251 | engines: {node: '>=6.9.0'} 252 | dependencies: 253 | '@babel/types': 7.20.7 254 | 255 | /@babel/helper-skip-transparent-expression-wrappers/7.20.0: 256 | resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==} 257 | engines: {node: '>=6.9.0'} 258 | dependencies: 259 | '@babel/types': 7.20.7 260 | 261 | /@babel/helper-split-export-declaration/7.18.6: 262 | resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} 263 | engines: {node: '>=6.9.0'} 264 | dependencies: 265 | '@babel/types': 7.20.7 266 | 267 | /@babel/helper-string-parser/7.19.4: 268 | resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} 269 | engines: {node: '>=6.9.0'} 270 | 271 | /@babel/helper-validator-identifier/7.19.1: 272 | resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} 273 | engines: {node: '>=6.9.0'} 274 | 275 | /@babel/helper-validator-option/7.18.6: 276 | resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==} 277 | engines: {node: '>=6.9.0'} 278 | 279 | /@babel/helper-wrap-function/7.20.5: 280 | resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==} 281 | engines: {node: '>=6.9.0'} 282 | dependencies: 283 | '@babel/helper-function-name': 7.19.0 284 | '@babel/template': 7.20.7 285 | '@babel/traverse': 7.20.13 286 | '@babel/types': 7.20.7 287 | transitivePeerDependencies: 288 | - supports-color 289 | 290 | /@babel/helpers/7.20.13: 291 | resolution: {integrity: sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg==} 292 | engines: {node: '>=6.9.0'} 293 | dependencies: 294 | '@babel/template': 7.20.7 295 | '@babel/traverse': 7.20.13 296 | '@babel/types': 7.20.7 297 | transitivePeerDependencies: 298 | - supports-color 299 | 300 | /@babel/highlight/7.18.6: 301 | resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} 302 | engines: {node: '>=6.9.0'} 303 | dependencies: 304 | '@babel/helper-validator-identifier': 7.19.1 305 | chalk: 2.4.2 306 | js-tokens: 4.0.0 307 | 308 | /@babel/parser/7.20.13: 309 | resolution: {integrity: sha512-gFDLKMfpiXCsjt4za2JA9oTMn70CeseCehb11kRZgvd7+F67Hih3OHOK24cRrWECJ/ljfPGac6ygXAs/C8kIvw==} 310 | engines: {node: '>=6.0.0'} 311 | hasBin: true 312 | dependencies: 313 | '@babel/types': 7.20.7 314 | 315 | /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.12: 316 | resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} 317 | engines: {node: '>=6.9.0'} 318 | peerDependencies: 319 | '@babel/core': ^7.0.0 320 | dependencies: 321 | '@babel/core': 7.20.12 322 | '@babel/helper-plugin-utils': 7.20.2 323 | 324 | /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.20.12: 325 | resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==} 326 | engines: {node: '>=6.9.0'} 327 | peerDependencies: 328 | '@babel/core': ^7.13.0 329 | dependencies: 330 | '@babel/core': 7.20.12 331 | '@babel/helper-plugin-utils': 7.20.2 332 | '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 333 | '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12 334 | 335 | /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.20.12: 336 | resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} 337 | engines: {node: '>=6.9.0'} 338 | peerDependencies: 339 | '@babel/core': ^7.0.0-0 340 | dependencies: 341 | '@babel/core': 7.20.12 342 | '@babel/helper-environment-visitor': 7.18.9 343 | '@babel/helper-plugin-utils': 7.20.2 344 | '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12 345 | '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12 346 | transitivePeerDependencies: 347 | - supports-color 348 | 349 | /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.12: 350 | resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} 351 | engines: {node: '>=6.9.0'} 352 | peerDependencies: 353 | '@babel/core': ^7.0.0-0 354 | dependencies: 355 | '@babel/core': 7.20.12 356 | '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12 357 | '@babel/helper-plugin-utils': 7.20.2 358 | transitivePeerDependencies: 359 | - supports-color 360 | 361 | /@babel/plugin-proposal-class-static-block/7.20.7_@babel+core@7.20.12: 362 | resolution: {integrity: sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==} 363 | engines: {node: '>=6.9.0'} 364 | peerDependencies: 365 | '@babel/core': ^7.12.0 366 | dependencies: 367 | '@babel/core': 7.20.12 368 | '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12 369 | '@babel/helper-plugin-utils': 7.20.2 370 | '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12 371 | transitivePeerDependencies: 372 | - supports-color 373 | 374 | /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.12: 375 | resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} 376 | engines: {node: '>=6.9.0'} 377 | peerDependencies: 378 | '@babel/core': ^7.0.0-0 379 | dependencies: 380 | '@babel/core': 7.20.12 381 | '@babel/helper-plugin-utils': 7.20.2 382 | '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 383 | 384 | /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.12: 385 | resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} 386 | engines: {node: '>=6.9.0'} 387 | peerDependencies: 388 | '@babel/core': ^7.0.0-0 389 | dependencies: 390 | '@babel/core': 7.20.12 391 | '@babel/helper-plugin-utils': 7.20.2 392 | '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12 393 | 394 | /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.12: 395 | resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} 396 | engines: {node: '>=6.9.0'} 397 | peerDependencies: 398 | '@babel/core': ^7.0.0-0 399 | dependencies: 400 | '@babel/core': 7.20.12 401 | '@babel/helper-plugin-utils': 7.20.2 402 | '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12 403 | 404 | /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.20.12: 405 | resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} 406 | engines: {node: '>=6.9.0'} 407 | peerDependencies: 408 | '@babel/core': ^7.0.0-0 409 | dependencies: 410 | '@babel/core': 7.20.12 411 | '@babel/helper-plugin-utils': 7.20.2 412 | '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12 413 | 414 | /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.12: 415 | resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} 416 | engines: {node: '>=6.9.0'} 417 | peerDependencies: 418 | '@babel/core': ^7.0.0-0 419 | dependencies: 420 | '@babel/core': 7.20.12 421 | '@babel/helper-plugin-utils': 7.20.2 422 | '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12 423 | 424 | /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.12: 425 | resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} 426 | engines: {node: '>=6.9.0'} 427 | peerDependencies: 428 | '@babel/core': ^7.0.0-0 429 | dependencies: 430 | '@babel/core': 7.20.12 431 | '@babel/helper-plugin-utils': 7.20.2 432 | '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12 433 | 434 | /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.20.12: 435 | resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} 436 | engines: {node: '>=6.9.0'} 437 | peerDependencies: 438 | '@babel/core': ^7.0.0-0 439 | dependencies: 440 | '@babel/compat-data': 7.20.10 441 | '@babel/core': 7.20.12 442 | '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 443 | '@babel/helper-plugin-utils': 7.20.2 444 | '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12 445 | '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12 446 | 447 | /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.12: 448 | resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} 449 | engines: {node: '>=6.9.0'} 450 | peerDependencies: 451 | '@babel/core': ^7.0.0-0 452 | dependencies: 453 | '@babel/core': 7.20.12 454 | '@babel/helper-plugin-utils': 7.20.2 455 | '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12 456 | 457 | /@babel/plugin-proposal-optional-chaining/7.20.7_@babel+core@7.20.12: 458 | resolution: {integrity: sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==} 459 | engines: {node: '>=6.9.0'} 460 | peerDependencies: 461 | '@babel/core': ^7.0.0-0 462 | dependencies: 463 | '@babel/core': 7.20.12 464 | '@babel/helper-plugin-utils': 7.20.2 465 | '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 466 | '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12 467 | 468 | /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.12: 469 | resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} 470 | engines: {node: '>=6.9.0'} 471 | peerDependencies: 472 | '@babel/core': ^7.0.0-0 473 | dependencies: 474 | '@babel/core': 7.20.12 475 | '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12 476 | '@babel/helper-plugin-utils': 7.20.2 477 | transitivePeerDependencies: 478 | - supports-color 479 | 480 | /@babel/plugin-proposal-private-property-in-object/7.20.5_@babel+core@7.20.12: 481 | resolution: {integrity: sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==} 482 | engines: {node: '>=6.9.0'} 483 | peerDependencies: 484 | '@babel/core': ^7.0.0-0 485 | dependencies: 486 | '@babel/core': 7.20.12 487 | '@babel/helper-annotate-as-pure': 7.18.6 488 | '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12 489 | '@babel/helper-plugin-utils': 7.20.2 490 | '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12 491 | transitivePeerDependencies: 492 | - supports-color 493 | 494 | /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.12: 495 | resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} 496 | engines: {node: '>=4'} 497 | peerDependencies: 498 | '@babel/core': ^7.0.0-0 499 | dependencies: 500 | '@babel/core': 7.20.12 501 | '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12 502 | '@babel/helper-plugin-utils': 7.20.2 503 | 504 | /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.12: 505 | resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} 506 | peerDependencies: 507 | '@babel/core': ^7.0.0-0 508 | dependencies: 509 | '@babel/core': 7.20.12 510 | '@babel/helper-plugin-utils': 7.20.2 511 | 512 | /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.12: 513 | resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} 514 | peerDependencies: 515 | '@babel/core': ^7.0.0-0 516 | dependencies: 517 | '@babel/core': 7.20.12 518 | '@babel/helper-plugin-utils': 7.20.2 519 | 520 | /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.12: 521 | resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} 522 | engines: {node: '>=6.9.0'} 523 | peerDependencies: 524 | '@babel/core': ^7.0.0-0 525 | dependencies: 526 | '@babel/core': 7.20.12 527 | '@babel/helper-plugin-utils': 7.20.2 528 | 529 | /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.12: 530 | resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} 531 | peerDependencies: 532 | '@babel/core': ^7.0.0-0 533 | dependencies: 534 | '@babel/core': 7.20.12 535 | '@babel/helper-plugin-utils': 7.20.2 536 | 537 | /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.12: 538 | resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} 539 | peerDependencies: 540 | '@babel/core': ^7.0.0-0 541 | dependencies: 542 | '@babel/core': 7.20.12 543 | '@babel/helper-plugin-utils': 7.20.2 544 | 545 | /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.12: 546 | resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} 547 | engines: {node: '>=6.9.0'} 548 | peerDependencies: 549 | '@babel/core': ^7.0.0-0 550 | dependencies: 551 | '@babel/core': 7.20.12 552 | '@babel/helper-plugin-utils': 7.20.2 553 | 554 | /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.12: 555 | resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} 556 | peerDependencies: 557 | '@babel/core': ^7.0.0-0 558 | dependencies: 559 | '@babel/core': 7.20.12 560 | '@babel/helper-plugin-utils': 7.20.2 561 | 562 | /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.12: 563 | resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} 564 | engines: {node: '>=6.9.0'} 565 | peerDependencies: 566 | '@babel/core': ^7.0.0-0 567 | dependencies: 568 | '@babel/core': 7.20.12 569 | '@babel/helper-plugin-utils': 7.20.2 570 | 571 | /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.12: 572 | resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} 573 | peerDependencies: 574 | '@babel/core': ^7.0.0-0 575 | dependencies: 576 | '@babel/core': 7.20.12 577 | '@babel/helper-plugin-utils': 7.20.2 578 | 579 | /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.12: 580 | resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} 581 | peerDependencies: 582 | '@babel/core': ^7.0.0-0 583 | dependencies: 584 | '@babel/core': 7.20.12 585 | '@babel/helper-plugin-utils': 7.20.2 586 | 587 | /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.12: 588 | resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} 589 | peerDependencies: 590 | '@babel/core': ^7.0.0-0 591 | dependencies: 592 | '@babel/core': 7.20.12 593 | '@babel/helper-plugin-utils': 7.20.2 594 | 595 | /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.12: 596 | resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} 597 | peerDependencies: 598 | '@babel/core': ^7.0.0-0 599 | dependencies: 600 | '@babel/core': 7.20.12 601 | '@babel/helper-plugin-utils': 7.20.2 602 | 603 | /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.12: 604 | resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} 605 | peerDependencies: 606 | '@babel/core': ^7.0.0-0 607 | dependencies: 608 | '@babel/core': 7.20.12 609 | '@babel/helper-plugin-utils': 7.20.2 610 | 611 | /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.12: 612 | resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} 613 | peerDependencies: 614 | '@babel/core': ^7.0.0-0 615 | dependencies: 616 | '@babel/core': 7.20.12 617 | '@babel/helper-plugin-utils': 7.20.2 618 | 619 | /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.12: 620 | resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} 621 | engines: {node: '>=6.9.0'} 622 | peerDependencies: 623 | '@babel/core': ^7.0.0-0 624 | dependencies: 625 | '@babel/core': 7.20.12 626 | '@babel/helper-plugin-utils': 7.20.2 627 | 628 | /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.12: 629 | resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} 630 | engines: {node: '>=6.9.0'} 631 | peerDependencies: 632 | '@babel/core': ^7.0.0-0 633 | dependencies: 634 | '@babel/core': 7.20.12 635 | '@babel/helper-plugin-utils': 7.20.2 636 | 637 | /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.20.12: 638 | resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==} 639 | engines: {node: '>=6.9.0'} 640 | peerDependencies: 641 | '@babel/core': ^7.0.0-0 642 | dependencies: 643 | '@babel/core': 7.20.12 644 | '@babel/helper-plugin-utils': 7.20.2 645 | 646 | /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.20.12: 647 | resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} 648 | engines: {node: '>=6.9.0'} 649 | peerDependencies: 650 | '@babel/core': ^7.0.0-0 651 | dependencies: 652 | '@babel/core': 7.20.12 653 | '@babel/helper-plugin-utils': 7.20.2 654 | 655 | /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.20.12: 656 | resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} 657 | engines: {node: '>=6.9.0'} 658 | peerDependencies: 659 | '@babel/core': ^7.0.0-0 660 | dependencies: 661 | '@babel/core': 7.20.12 662 | '@babel/helper-module-imports': 7.18.6 663 | '@babel/helper-plugin-utils': 7.20.2 664 | '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12 665 | transitivePeerDependencies: 666 | - supports-color 667 | 668 | /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.12: 669 | resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} 670 | engines: {node: '>=6.9.0'} 671 | peerDependencies: 672 | '@babel/core': ^7.0.0-0 673 | dependencies: 674 | '@babel/core': 7.20.12 675 | '@babel/helper-plugin-utils': 7.20.2 676 | 677 | /@babel/plugin-transform-block-scoping/7.20.11_@babel+core@7.20.12: 678 | resolution: {integrity: sha512-tA4N427a7fjf1P0/2I4ScsHGc5jcHPbb30xMbaTke2gxDuWpUfXDuX1FEymJwKk4tuGUvGcejAR6HdZVqmmPyw==} 679 | engines: {node: '>=6.9.0'} 680 | peerDependencies: 681 | '@babel/core': ^7.0.0-0 682 | dependencies: 683 | '@babel/core': 7.20.12 684 | '@babel/helper-plugin-utils': 7.20.2 685 | 686 | /@babel/plugin-transform-classes/7.20.7_@babel+core@7.20.12: 687 | resolution: {integrity: sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==} 688 | engines: {node: '>=6.9.0'} 689 | peerDependencies: 690 | '@babel/core': ^7.0.0-0 691 | dependencies: 692 | '@babel/core': 7.20.12 693 | '@babel/helper-annotate-as-pure': 7.18.6 694 | '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 695 | '@babel/helper-environment-visitor': 7.18.9 696 | '@babel/helper-function-name': 7.19.0 697 | '@babel/helper-optimise-call-expression': 7.18.6 698 | '@babel/helper-plugin-utils': 7.20.2 699 | '@babel/helper-replace-supers': 7.20.7 700 | '@babel/helper-split-export-declaration': 7.18.6 701 | globals: 11.12.0 702 | transitivePeerDependencies: 703 | - supports-color 704 | 705 | /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.20.12: 706 | resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} 707 | engines: {node: '>=6.9.0'} 708 | peerDependencies: 709 | '@babel/core': ^7.0.0-0 710 | dependencies: 711 | '@babel/core': 7.20.12 712 | '@babel/helper-plugin-utils': 7.20.2 713 | '@babel/template': 7.20.7 714 | 715 | /@babel/plugin-transform-destructuring/7.20.7_@babel+core@7.20.12: 716 | resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==} 717 | engines: {node: '>=6.9.0'} 718 | peerDependencies: 719 | '@babel/core': ^7.0.0-0 720 | dependencies: 721 | '@babel/core': 7.20.12 722 | '@babel/helper-plugin-utils': 7.20.2 723 | 724 | /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.12: 725 | resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} 726 | engines: {node: '>=6.9.0'} 727 | peerDependencies: 728 | '@babel/core': ^7.0.0-0 729 | dependencies: 730 | '@babel/core': 7.20.12 731 | '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12 732 | '@babel/helper-plugin-utils': 7.20.2 733 | 734 | /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.12: 735 | resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} 736 | engines: {node: '>=6.9.0'} 737 | peerDependencies: 738 | '@babel/core': ^7.0.0-0 739 | dependencies: 740 | '@babel/core': 7.20.12 741 | '@babel/helper-plugin-utils': 7.20.2 742 | 743 | /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.12: 744 | resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} 745 | engines: {node: '>=6.9.0'} 746 | peerDependencies: 747 | '@babel/core': ^7.0.0-0 748 | dependencies: 749 | '@babel/core': 7.20.12 750 | '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 751 | '@babel/helper-plugin-utils': 7.20.2 752 | 753 | /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.12: 754 | resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} 755 | engines: {node: '>=6.9.0'} 756 | peerDependencies: 757 | '@babel/core': ^7.0.0-0 758 | dependencies: 759 | '@babel/core': 7.20.12 760 | '@babel/helper-plugin-utils': 7.20.2 761 | 762 | /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.12: 763 | resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} 764 | engines: {node: '>=6.9.0'} 765 | peerDependencies: 766 | '@babel/core': ^7.0.0-0 767 | dependencies: 768 | '@babel/core': 7.20.12 769 | '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 770 | '@babel/helper-function-name': 7.19.0 771 | '@babel/helper-plugin-utils': 7.20.2 772 | 773 | /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.12: 774 | resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} 775 | engines: {node: '>=6.9.0'} 776 | peerDependencies: 777 | '@babel/core': ^7.0.0-0 778 | dependencies: 779 | '@babel/core': 7.20.12 780 | '@babel/helper-plugin-utils': 7.20.2 781 | 782 | /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.12: 783 | resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} 784 | engines: {node: '>=6.9.0'} 785 | peerDependencies: 786 | '@babel/core': ^7.0.0-0 787 | dependencies: 788 | '@babel/core': 7.20.12 789 | '@babel/helper-plugin-utils': 7.20.2 790 | 791 | /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.20.12: 792 | resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} 793 | engines: {node: '>=6.9.0'} 794 | peerDependencies: 795 | '@babel/core': ^7.0.0-0 796 | dependencies: 797 | '@babel/core': 7.20.12 798 | '@babel/helper-module-transforms': 7.20.11 799 | '@babel/helper-plugin-utils': 7.20.2 800 | transitivePeerDependencies: 801 | - supports-color 802 | 803 | /@babel/plugin-transform-modules-commonjs/7.20.11_@babel+core@7.20.12: 804 | resolution: {integrity: sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==} 805 | engines: {node: '>=6.9.0'} 806 | peerDependencies: 807 | '@babel/core': ^7.0.0-0 808 | dependencies: 809 | '@babel/core': 7.20.12 810 | '@babel/helper-module-transforms': 7.20.11 811 | '@babel/helper-plugin-utils': 7.20.2 812 | '@babel/helper-simple-access': 7.20.2 813 | transitivePeerDependencies: 814 | - supports-color 815 | 816 | /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.20.12: 817 | resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} 818 | engines: {node: '>=6.9.0'} 819 | peerDependencies: 820 | '@babel/core': ^7.0.0-0 821 | dependencies: 822 | '@babel/core': 7.20.12 823 | '@babel/helper-hoist-variables': 7.18.6 824 | '@babel/helper-module-transforms': 7.20.11 825 | '@babel/helper-plugin-utils': 7.20.2 826 | '@babel/helper-validator-identifier': 7.19.1 827 | transitivePeerDependencies: 828 | - supports-color 829 | 830 | /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.12: 831 | resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} 832 | engines: {node: '>=6.9.0'} 833 | peerDependencies: 834 | '@babel/core': ^7.0.0-0 835 | dependencies: 836 | '@babel/core': 7.20.12 837 | '@babel/helper-module-transforms': 7.20.11 838 | '@babel/helper-plugin-utils': 7.20.2 839 | transitivePeerDependencies: 840 | - supports-color 841 | 842 | /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.20.12: 843 | resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} 844 | engines: {node: '>=6.9.0'} 845 | peerDependencies: 846 | '@babel/core': ^7.0.0 847 | dependencies: 848 | '@babel/core': 7.20.12 849 | '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12 850 | '@babel/helper-plugin-utils': 7.20.2 851 | 852 | /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.12: 853 | resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} 854 | engines: {node: '>=6.9.0'} 855 | peerDependencies: 856 | '@babel/core': ^7.0.0-0 857 | dependencies: 858 | '@babel/core': 7.20.12 859 | '@babel/helper-plugin-utils': 7.20.2 860 | 861 | /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.12: 862 | resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} 863 | engines: {node: '>=6.9.0'} 864 | peerDependencies: 865 | '@babel/core': ^7.0.0-0 866 | dependencies: 867 | '@babel/core': 7.20.12 868 | '@babel/helper-plugin-utils': 7.20.2 869 | '@babel/helper-replace-supers': 7.20.7 870 | transitivePeerDependencies: 871 | - supports-color 872 | 873 | /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.20.12: 874 | resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==} 875 | engines: {node: '>=6.9.0'} 876 | peerDependencies: 877 | '@babel/core': ^7.0.0-0 878 | dependencies: 879 | '@babel/core': 7.20.12 880 | '@babel/helper-plugin-utils': 7.20.2 881 | 882 | /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.12: 883 | resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} 884 | engines: {node: '>=6.9.0'} 885 | peerDependencies: 886 | '@babel/core': ^7.0.0-0 887 | dependencies: 888 | '@babel/core': 7.20.12 889 | '@babel/helper-plugin-utils': 7.20.2 890 | 891 | /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.20.12: 892 | resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} 893 | engines: {node: '>=6.9.0'} 894 | peerDependencies: 895 | '@babel/core': ^7.0.0-0 896 | dependencies: 897 | '@babel/core': 7.20.12 898 | '@babel/helper-plugin-utils': 7.20.2 899 | regenerator-transform: 0.15.1 900 | 901 | /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.12: 902 | resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} 903 | engines: {node: '>=6.9.0'} 904 | peerDependencies: 905 | '@babel/core': ^7.0.0-0 906 | dependencies: 907 | '@babel/core': 7.20.12 908 | '@babel/helper-plugin-utils': 7.20.2 909 | 910 | /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.12: 911 | resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} 912 | engines: {node: '>=6.9.0'} 913 | peerDependencies: 914 | '@babel/core': ^7.0.0-0 915 | dependencies: 916 | '@babel/core': 7.20.12 917 | '@babel/helper-plugin-utils': 7.20.2 918 | 919 | /@babel/plugin-transform-spread/7.20.7_@babel+core@7.20.12: 920 | resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} 921 | engines: {node: '>=6.9.0'} 922 | peerDependencies: 923 | '@babel/core': ^7.0.0-0 924 | dependencies: 925 | '@babel/core': 7.20.12 926 | '@babel/helper-plugin-utils': 7.20.2 927 | '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 928 | 929 | /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.12: 930 | resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} 931 | engines: {node: '>=6.9.0'} 932 | peerDependencies: 933 | '@babel/core': ^7.0.0-0 934 | dependencies: 935 | '@babel/core': 7.20.12 936 | '@babel/helper-plugin-utils': 7.20.2 937 | 938 | /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.12: 939 | resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} 940 | engines: {node: '>=6.9.0'} 941 | peerDependencies: 942 | '@babel/core': ^7.0.0-0 943 | dependencies: 944 | '@babel/core': 7.20.12 945 | '@babel/helper-plugin-utils': 7.20.2 946 | 947 | /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.12: 948 | resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} 949 | engines: {node: '>=6.9.0'} 950 | peerDependencies: 951 | '@babel/core': ^7.0.0-0 952 | dependencies: 953 | '@babel/core': 7.20.12 954 | '@babel/helper-plugin-utils': 7.20.2 955 | 956 | /@babel/plugin-transform-typescript/7.20.13_@babel+core@7.20.12: 957 | resolution: {integrity: sha512-O7I/THxarGcDZxkgWKMUrk7NK1/WbHAg3Xx86gqS6x9MTrNL6AwIluuZ96ms4xeDe6AVx6rjHbWHP7x26EPQBA==} 958 | engines: {node: '>=6.9.0'} 959 | peerDependencies: 960 | '@babel/core': ^7.0.0-0 961 | dependencies: 962 | '@babel/core': 7.20.12 963 | '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12 964 | '@babel/helper-plugin-utils': 7.20.2 965 | '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.12 966 | transitivePeerDependencies: 967 | - supports-color 968 | 969 | /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.12: 970 | resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} 971 | engines: {node: '>=6.9.0'} 972 | peerDependencies: 973 | '@babel/core': ^7.0.0-0 974 | dependencies: 975 | '@babel/core': 7.20.12 976 | '@babel/helper-plugin-utils': 7.20.2 977 | 978 | /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.12: 979 | resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} 980 | engines: {node: '>=6.9.0'} 981 | peerDependencies: 982 | '@babel/core': ^7.0.0-0 983 | dependencies: 984 | '@babel/core': 7.20.12 985 | '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12 986 | '@babel/helper-plugin-utils': 7.20.2 987 | 988 | /@babel/preset-env/7.20.2_@babel+core@7.20.12: 989 | resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} 990 | engines: {node: '>=6.9.0'} 991 | peerDependencies: 992 | '@babel/core': ^7.0.0-0 993 | dependencies: 994 | '@babel/compat-data': 7.20.10 995 | '@babel/core': 7.20.12 996 | '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 997 | '@babel/helper-plugin-utils': 7.20.2 998 | '@babel/helper-validator-option': 7.18.6 999 | '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.12 1000 | '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.20.12 1001 | '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.20.12 1002 | '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.12 1003 | '@babel/plugin-proposal-class-static-block': 7.20.7_@babel+core@7.20.12 1004 | '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.12 1005 | '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.12 1006 | '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.12 1007 | '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.20.12 1008 | '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.12 1009 | '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.12 1010 | '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.20.12 1011 | '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.12 1012 | '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12 1013 | '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.12 1014 | '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.20.12 1015 | '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12 1016 | '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12 1017 | '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.12 1018 | '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12 1019 | '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 1020 | '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12 1021 | '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.12 1022 | '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12 1023 | '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12 1024 | '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12 1025 | '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12 1026 | '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12 1027 | '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12 1028 | '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12 1029 | '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12 1030 | '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.12 1031 | '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.20.12 1032 | '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.20.12 1033 | '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.12 1034 | '@babel/plugin-transform-block-scoping': 7.20.11_@babel+core@7.20.12 1035 | '@babel/plugin-transform-classes': 7.20.7_@babel+core@7.20.12 1036 | '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.20.12 1037 | '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.20.12 1038 | '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.12 1039 | '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.12 1040 | '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.12 1041 | '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.12 1042 | '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.12 1043 | '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.12 1044 | '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.12 1045 | '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.20.12 1046 | '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.20.12 1047 | '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.20.12 1048 | '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.12 1049 | '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.20.12 1050 | '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.12 1051 | '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.12 1052 | '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12 1053 | '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.12 1054 | '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.20.12 1055 | '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.12 1056 | '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.12 1057 | '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.20.12 1058 | '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.12 1059 | '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.12 1060 | '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.12 1061 | '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.12 1062 | '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.12 1063 | '@babel/preset-modules': 0.1.5_@babel+core@7.20.12 1064 | '@babel/types': 7.20.7 1065 | babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.12 1066 | babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.12 1067 | babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.12 1068 | core-js-compat: 3.27.2 1069 | semver: 6.3.0 1070 | transitivePeerDependencies: 1071 | - supports-color 1072 | 1073 | /@babel/preset-modules/0.1.5_@babel+core@7.20.12: 1074 | resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} 1075 | peerDependencies: 1076 | '@babel/core': ^7.0.0-0 1077 | dependencies: 1078 | '@babel/core': 7.20.12 1079 | '@babel/helper-plugin-utils': 7.20.2 1080 | '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12 1081 | '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.12 1082 | '@babel/types': 7.20.7 1083 | esutils: 2.0.3 1084 | 1085 | /@babel/preset-typescript/7.18.6_@babel+core@7.20.12: 1086 | resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} 1087 | engines: {node: '>=6.9.0'} 1088 | peerDependencies: 1089 | '@babel/core': ^7.0.0-0 1090 | dependencies: 1091 | '@babel/core': 7.20.12 1092 | '@babel/helper-plugin-utils': 7.20.2 1093 | '@babel/helper-validator-option': 7.18.6 1094 | '@babel/plugin-transform-typescript': 7.20.13_@babel+core@7.20.12 1095 | transitivePeerDependencies: 1096 | - supports-color 1097 | 1098 | /@babel/runtime/7.20.13: 1099 | resolution: {integrity: sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==} 1100 | engines: {node: '>=6.9.0'} 1101 | dependencies: 1102 | regenerator-runtime: 0.13.11 1103 | 1104 | /@babel/template/7.20.7: 1105 | resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} 1106 | engines: {node: '>=6.9.0'} 1107 | dependencies: 1108 | '@babel/code-frame': 7.18.6 1109 | '@babel/parser': 7.20.13 1110 | '@babel/types': 7.20.7 1111 | 1112 | /@babel/traverse/7.20.13: 1113 | resolution: {integrity: sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==} 1114 | engines: {node: '>=6.9.0'} 1115 | dependencies: 1116 | '@babel/code-frame': 7.18.6 1117 | '@babel/generator': 7.20.7 1118 | '@babel/helper-environment-visitor': 7.18.9 1119 | '@babel/helper-function-name': 7.19.0 1120 | '@babel/helper-hoist-variables': 7.18.6 1121 | '@babel/helper-split-export-declaration': 7.18.6 1122 | '@babel/parser': 7.20.13 1123 | '@babel/types': 7.20.7 1124 | debug: 4.3.4 1125 | globals: 11.12.0 1126 | transitivePeerDependencies: 1127 | - supports-color 1128 | 1129 | /@babel/types/7.20.7: 1130 | resolution: {integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==} 1131 | engines: {node: '>=6.9.0'} 1132 | dependencies: 1133 | '@babel/helper-string-parser': 7.19.4 1134 | '@babel/helper-validator-identifier': 7.19.1 1135 | to-fast-properties: 2.0.0 1136 | 1137 | /@cloudflare/kv-asset-handler/0.2.0: 1138 | resolution: {integrity: sha512-MVbXLbTcAotOPUj0pAMhVtJ+3/kFkwJqc5qNOleOZTv6QkZZABDMS21dSrSlVswEHwrpWC03e4fWytjqKvuE2A==} 1139 | dependencies: 1140 | mime: 3.0.0 1141 | dev: true 1142 | 1143 | /@cloudflare/workers-types/3.19.0: 1144 | resolution: {integrity: sha512-0FRcsz7Ea3jT+gc5gKPIYciykm1bbAaTpygdzpCwGt0RL+V83zWnYN30NWDW4rIHj/FHtz+MIuBKS61C8l7AzQ==} 1145 | dev: true 1146 | 1147 | /@esbuild/android-arm/0.15.18: 1148 | resolution: {integrity: sha512-5GT+kcs2WVGjVs7+boataCkO5Fg0y4kCjzkB5bAip7H4jfnOS3dA6KPiww9W1OEKTKeAcUVhdZGvgI65OXmUnw==} 1149 | engines: {node: '>=12'} 1150 | cpu: [arm] 1151 | os: [android] 1152 | requiresBuild: true 1153 | optional: true 1154 | 1155 | /@esbuild/linux-loong64/0.14.54: 1156 | resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==} 1157 | engines: {node: '>=12'} 1158 | cpu: [loong64] 1159 | os: [linux] 1160 | requiresBuild: true 1161 | optional: true 1162 | 1163 | /@esbuild/linux-loong64/0.15.18: 1164 | resolution: {integrity: sha512-L4jVKS82XVhw2nvzLg/19ClLWg0y27ulRwuP7lcyL6AbUWB5aPglXY3M21mauDQMDfRLs8cQmeT03r/+X3cZYQ==} 1165 | engines: {node: '>=12'} 1166 | cpu: [loong64] 1167 | os: [linux] 1168 | requiresBuild: true 1169 | optional: true 1170 | 1171 | /@hapi/hoek/9.3.0: 1172 | resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} 1173 | 1174 | /@hapi/topo/5.1.0: 1175 | resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} 1176 | dependencies: 1177 | '@hapi/hoek': 9.3.0 1178 | 1179 | /@iarna/toml/2.2.5: 1180 | resolution: {integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==} 1181 | dev: true 1182 | 1183 | /@jridgewell/gen-mapping/0.1.1: 1184 | resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} 1185 | engines: {node: '>=6.0.0'} 1186 | dependencies: 1187 | '@jridgewell/set-array': 1.1.2 1188 | '@jridgewell/sourcemap-codec': 1.4.14 1189 | 1190 | /@jridgewell/gen-mapping/0.3.2: 1191 | resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==} 1192 | engines: {node: '>=6.0.0'} 1193 | dependencies: 1194 | '@jridgewell/set-array': 1.1.2 1195 | '@jridgewell/sourcemap-codec': 1.4.14 1196 | '@jridgewell/trace-mapping': 0.3.17 1197 | 1198 | /@jridgewell/resolve-uri/3.1.0: 1199 | resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} 1200 | engines: {node: '>=6.0.0'} 1201 | 1202 | /@jridgewell/set-array/1.1.2: 1203 | resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} 1204 | engines: {node: '>=6.0.0'} 1205 | 1206 | /@jridgewell/source-map/0.3.2: 1207 | resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==} 1208 | dependencies: 1209 | '@jridgewell/gen-mapping': 0.3.2 1210 | '@jridgewell/trace-mapping': 0.3.17 1211 | 1212 | /@jridgewell/sourcemap-codec/1.4.14: 1213 | resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} 1214 | 1215 | /@jridgewell/trace-mapping/0.3.17: 1216 | resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==} 1217 | dependencies: 1218 | '@jridgewell/resolve-uri': 3.1.0 1219 | '@jridgewell/sourcemap-codec': 1.4.14 1220 | 1221 | /@miniflare/cache/2.11.0: 1222 | resolution: {integrity: sha512-L/kc9AzidPwFuk2fwHpAEePi0kNBk6FWUq3ln+9beRCDrPEpfVrDRFpNleF1NFZz5//oeVMuo8F0IVUQGzR7+Q==} 1223 | engines: {node: '>=16.13'} 1224 | dependencies: 1225 | '@miniflare/core': 2.11.0 1226 | '@miniflare/shared': 2.11.0 1227 | http-cache-semantics: 4.1.0 1228 | undici: 5.9.1 1229 | dev: true 1230 | 1231 | /@miniflare/cli-parser/2.11.0: 1232 | resolution: {integrity: sha512-JUmyRzEGAS6CouvXJwBh8p44onfw3KRpfq5JGXEuHModOGjTp6li7PQyCTNPV2Hv/7StAXWnTFGXeAqyDHuTig==} 1233 | engines: {node: '>=16.13'} 1234 | dependencies: 1235 | '@miniflare/shared': 2.11.0 1236 | kleur: 4.1.5 1237 | dev: true 1238 | 1239 | /@miniflare/core/2.11.0: 1240 | resolution: {integrity: sha512-UFMFiCG0co36VpZkgFrSBnrxo71uf1x+cjlzzJi3khmMyDlnLu4RuIQsAqvKbYom6fi3G9Q8lTgM7JuOXFyjhw==} 1241 | engines: {node: '>=16.13'} 1242 | dependencies: 1243 | '@iarna/toml': 2.2.5 1244 | '@miniflare/queues': 2.11.0 1245 | '@miniflare/shared': 2.11.0 1246 | '@miniflare/watcher': 2.11.0 1247 | busboy: 1.6.0 1248 | dotenv: 10.0.0 1249 | kleur: 4.1.5 1250 | set-cookie-parser: 2.5.1 1251 | undici: 5.9.1 1252 | urlpattern-polyfill: 4.0.3 1253 | dev: true 1254 | 1255 | /@miniflare/d1/2.11.0: 1256 | resolution: {integrity: sha512-aDdBVQZ2C0Zs3+Y9ZbRctmuQxozPfpumwJ/6NG6fBadANvune/hW7ddEoxyteIEU9W3IgzVj8s4by4VvasX90A==} 1257 | engines: {node: '>=16.7'} 1258 | dependencies: 1259 | '@miniflare/core': 2.11.0 1260 | '@miniflare/shared': 2.11.0 1261 | dev: true 1262 | 1263 | /@miniflare/durable-objects/2.11.0: 1264 | resolution: {integrity: sha512-0cKJaMgraTEU1b4kqK8cjD2oTeOjA6QU3Y+lWiZT/k1PMHZULovrSFnjii7qZ8npf4VHSIN6XYPxhyxRyEM65Q==} 1265 | engines: {node: '>=16.13'} 1266 | dependencies: 1267 | '@miniflare/core': 2.11.0 1268 | '@miniflare/shared': 2.11.0 1269 | '@miniflare/storage-memory': 2.11.0 1270 | undici: 5.9.1 1271 | dev: true 1272 | 1273 | /@miniflare/html-rewriter/2.11.0: 1274 | resolution: {integrity: sha512-olTqmuYTHnoTNtiA0vjQ/ixRfbwgPzDrAUbtXDCYW45VFbHfDVJrJGZX3Jg0HpSlxy86Zclle1SUxGbVDzxsBg==} 1275 | engines: {node: '>=16.13'} 1276 | dependencies: 1277 | '@miniflare/core': 2.11.0 1278 | '@miniflare/shared': 2.11.0 1279 | html-rewriter-wasm: 0.4.1 1280 | undici: 5.9.1 1281 | dev: true 1282 | 1283 | /@miniflare/http-server/2.11.0: 1284 | resolution: {integrity: sha512-sMLcrDFzqqAvnQmAUH0hRTo8sBjW79VZYfnIH5FAGSGcKX6kdAGs9RStdYZ4CftQCBAEQScX0KBsMx5FwJRe9Q==} 1285 | engines: {node: '>=16.13'} 1286 | dependencies: 1287 | '@miniflare/core': 2.11.0 1288 | '@miniflare/shared': 2.11.0 1289 | '@miniflare/web-sockets': 2.11.0 1290 | kleur: 4.1.5 1291 | selfsigned: 2.1.1 1292 | undici: 5.9.1 1293 | ws: 8.12.0 1294 | youch: 2.2.2 1295 | transitivePeerDependencies: 1296 | - bufferutil 1297 | - utf-8-validate 1298 | dev: true 1299 | 1300 | /@miniflare/kv/2.11.0: 1301 | resolution: {integrity: sha512-3m9dL2HBBN170V1JvwjjucR5zl4G3mlcsV6C1E7A2wLl2Z2TWvIx/tSY9hrhkD96dFnejwJ9qmPMbXMMuynhjg==} 1302 | engines: {node: '>=16.13'} 1303 | dependencies: 1304 | '@miniflare/shared': 2.11.0 1305 | dev: true 1306 | 1307 | /@miniflare/queues/2.11.0: 1308 | resolution: {integrity: sha512-fLHjdrNLKhn0LZM/aii/9GsAttFd+lWlGzK8HOg1R0vhfKBwEub4zntjMmOfFbDm1ntc21tdMK7n3ldUphwh5w==} 1309 | engines: {node: '>=16.7'} 1310 | dependencies: 1311 | '@miniflare/shared': 2.11.0 1312 | dev: true 1313 | 1314 | /@miniflare/r2/2.11.0: 1315 | resolution: {integrity: sha512-MKuyJ/gGNsK3eWbGdygvozqcyaZhM3C6NGHvoaZwH503dwN569j5DpatTWiHGFeDeSu64VqcIsGehz05GDUaag==} 1316 | engines: {node: '>=16.13'} 1317 | dependencies: 1318 | '@miniflare/shared': 2.11.0 1319 | undici: 5.9.1 1320 | dev: true 1321 | 1322 | /@miniflare/runner-vm/2.11.0: 1323 | resolution: {integrity: sha512-bkVSuvCf5+VylqN8lTiLxIYqYcKFbl+BywZGwGQndPC/3wh42J00mM0jw4hRbvXgwuBhlUyCVpEXtYlftFFT/g==} 1324 | engines: {node: '>=16.13'} 1325 | dependencies: 1326 | '@miniflare/shared': 2.11.0 1327 | dev: true 1328 | 1329 | /@miniflare/scheduler/2.11.0: 1330 | resolution: {integrity: sha512-DPdzINhdWeS99eIicGoluMsD4pLTTAWNQbgCv3CTwgdKA3dxdvMSCkNqZzQLiALzvk9+rSfj46FlH++HE7o7/w==} 1331 | engines: {node: '>=16.13'} 1332 | dependencies: 1333 | '@miniflare/core': 2.11.0 1334 | '@miniflare/shared': 2.11.0 1335 | cron-schedule: 3.0.6 1336 | dev: true 1337 | 1338 | /@miniflare/shared/2.11.0: 1339 | resolution: {integrity: sha512-fWMqq3ZkWAg+k7CnyzMV/rZHugwn+/JxvVzCxrtvxzwotTN547THlOxgZe8JAP23U9BiTxOfpTfnLvFEjAmegw==} 1340 | engines: {node: '>=16.13'} 1341 | dependencies: 1342 | '@types/better-sqlite3': 7.6.3 1343 | kleur: 4.1.5 1344 | npx-import: 1.1.4 1345 | picomatch: 2.3.1 1346 | dev: true 1347 | 1348 | /@miniflare/sites/2.11.0: 1349 | resolution: {integrity: sha512-qbefKdWZUJgsdLf+kCw03sn3h/92LZgJAbkOpP6bCrfWkXlJ37EQXO4KWdhn4Ghc7A6GwU1s1I/mdB64B3AewQ==} 1350 | engines: {node: '>=16.13'} 1351 | dependencies: 1352 | '@miniflare/kv': 2.11.0 1353 | '@miniflare/shared': 2.11.0 1354 | '@miniflare/storage-file': 2.11.0 1355 | dev: true 1356 | 1357 | /@miniflare/storage-file/2.11.0: 1358 | resolution: {integrity: sha512-beWF/lTX74x7AiaSB+xQxywPSNdhtEKvqDkRui8eOJ5kqN2o4UaleLKQGgqmCw3WyHRIsckV7If1qpbNiLtWMw==} 1359 | engines: {node: '>=16.13'} 1360 | dependencies: 1361 | '@miniflare/shared': 2.11.0 1362 | '@miniflare/storage-memory': 2.11.0 1363 | dev: true 1364 | 1365 | /@miniflare/storage-memory/2.11.0: 1366 | resolution: {integrity: sha512-s0AhPww7fq/Jz80NbPb+ffhcVRKnfPi7H1dHTRTre2Ud23EVJjAWl2gat42x8NOT/Fu3/o/7A72DWQQJqfO98A==} 1367 | engines: {node: '>=16.13'} 1368 | dependencies: 1369 | '@miniflare/shared': 2.11.0 1370 | dev: true 1371 | 1372 | /@miniflare/watcher/2.11.0: 1373 | resolution: {integrity: sha512-RUfjz2iYcsQXLcGySemJl98CJ2iierbWsPGWZhIVZI+NNhROkEy77g/Q+lvP2ATwexG3/dUSfdJ3P8aH+sI4Ig==} 1374 | engines: {node: '>=16.13'} 1375 | dependencies: 1376 | '@miniflare/shared': 2.11.0 1377 | dev: true 1378 | 1379 | /@miniflare/web-sockets/2.11.0: 1380 | resolution: {integrity: sha512-NC8RKrmxrO0hZmwpzn5g4hPGA2VblnFTIBobmWoxuK95eW49zfs7dtE/PyFs+blsGv3CjTIjHVSQ782K+C6HFA==} 1381 | engines: {node: '>=16.13'} 1382 | dependencies: 1383 | '@miniflare/core': 2.11.0 1384 | '@miniflare/shared': 2.11.0 1385 | undici: 5.9.1 1386 | ws: 8.12.0 1387 | transitivePeerDependencies: 1388 | - bufferutil 1389 | - utf-8-validate 1390 | dev: true 1391 | 1392 | /@nodelib/fs.scandir/2.1.5: 1393 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 1394 | engines: {node: '>= 8'} 1395 | dependencies: 1396 | '@nodelib/fs.stat': 2.0.5 1397 | run-parallel: 1.2.0 1398 | 1399 | /@nodelib/fs.stat/2.0.5: 1400 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 1401 | engines: {node: '>= 8'} 1402 | 1403 | /@nodelib/fs.walk/1.2.8: 1404 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 1405 | engines: {node: '>= 8'} 1406 | dependencies: 1407 | '@nodelib/fs.scandir': 2.1.5 1408 | fastq: 1.15.0 1409 | 1410 | /@polka/url/1.0.0-next.21: 1411 | resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==} 1412 | 1413 | /@popperjs/core/2.11.6: 1414 | resolution: {integrity: sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==} 1415 | dev: false 1416 | 1417 | /@rollup/plugin-commonjs/24.0.1_rollup@3.10.1: 1418 | resolution: {integrity: sha512-15LsiWRZk4eOGqvrJyu3z3DaBu5BhXIMeWnijSRvd8irrrg9SHpQ1pH+BUK4H6Z9wL9yOxZJMTLU+Au86XHxow==} 1419 | engines: {node: '>=14.0.0'} 1420 | peerDependencies: 1421 | rollup: ^2.68.0||^3.0.0 1422 | peerDependenciesMeta: 1423 | rollup: 1424 | optional: true 1425 | dependencies: 1426 | '@rollup/pluginutils': 5.0.2_rollup@3.10.1 1427 | commondir: 1.0.1 1428 | estree-walker: 2.0.2 1429 | glob: 8.1.0 1430 | is-reference: 1.2.1 1431 | magic-string: 0.27.0 1432 | rollup: 3.10.1 1433 | dev: true 1434 | 1435 | /@rollup/plugin-json/6.0.0_rollup@3.10.1: 1436 | resolution: {integrity: sha512-i/4C5Jrdr1XUarRhVu27EEwjt4GObltD7c+MkCIpO2QIbojw8MUs+CCTqOphQi3Qtg1FLmYt+l+6YeoIf51J7w==} 1437 | engines: {node: '>=14.0.0'} 1438 | peerDependencies: 1439 | rollup: ^1.20.0||^2.0.0||^3.0.0 1440 | peerDependenciesMeta: 1441 | rollup: 1442 | optional: true 1443 | dependencies: 1444 | '@rollup/pluginutils': 5.0.2_rollup@3.10.1 1445 | rollup: 3.10.1 1446 | dev: true 1447 | 1448 | /@rollup/plugin-node-resolve/15.0.1_rollup@3.10.1: 1449 | resolution: {integrity: sha512-ReY88T7JhJjeRVbfCyNj+NXAG3IIsVMsX9b5/9jC98dRP8/yxlZdz7mHZbHk5zHr24wZZICS5AcXsFZAXYUQEg==} 1450 | engines: {node: '>=14.0.0'} 1451 | peerDependencies: 1452 | rollup: ^2.78.0||^3.0.0 1453 | peerDependenciesMeta: 1454 | rollup: 1455 | optional: true 1456 | dependencies: 1457 | '@rollup/pluginutils': 5.0.2_rollup@3.10.1 1458 | '@types/resolve': 1.20.2 1459 | deepmerge: 4.2.2 1460 | is-builtin-module: 3.2.0 1461 | is-module: 1.0.0 1462 | resolve: 1.22.1 1463 | rollup: 3.10.1 1464 | dev: true 1465 | 1466 | /@rollup/pluginutils/5.0.2_rollup@3.10.1: 1467 | resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==} 1468 | engines: {node: '>=14.0.0'} 1469 | peerDependencies: 1470 | rollup: ^1.20.0||^2.0.0||^3.0.0 1471 | peerDependenciesMeta: 1472 | rollup: 1473 | optional: true 1474 | dependencies: 1475 | '@types/estree': 1.0.0 1476 | estree-walker: 2.0.2 1477 | picomatch: 2.3.1 1478 | rollup: 3.10.1 1479 | 1480 | /@sideway/address/4.1.4: 1481 | resolution: {integrity: sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==} 1482 | dependencies: 1483 | '@hapi/hoek': 9.3.0 1484 | 1485 | /@sideway/formula/3.0.1: 1486 | resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} 1487 | 1488 | /@sideway/pinpoint/2.0.0: 1489 | resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} 1490 | 1491 | /@solidjs/meta/0.28.2_solid-js@1.6.9: 1492 | resolution: {integrity: sha512-avlLgBPdk4KVxzRGFlYp/MIJo8B5jVgXPgk6OUnUP8km21Z+ovO+DUd7ZPA7ejv8PBdWi9GE3zCzw8RU2YuV2Q==} 1493 | peerDependencies: 1494 | solid-js: '>=1.4.0' 1495 | dependencies: 1496 | solid-js: 1.6.9 1497 | 1498 | /@solidjs/router/0.7.0_solid-js@1.6.9: 1499 | resolution: {integrity: sha512-8HI84twe5FjYRebSLMAhtkL9bRuTDIlxJK56kjfjU9WKGoUCTaWpCnkuj8Hqde1bWZ0X+GOZxKDfNkn1CjtjxA==} 1500 | peerDependencies: 1501 | solid-js: ^1.5.3 1502 | dependencies: 1503 | solid-js: 1.6.9 1504 | 1505 | /@suid/base/0.5.1_solid-js@1.6.9: 1506 | resolution: {integrity: sha512-0IbaD/KoJUuT4F6EsKDB1dMX0gAZAGzyUz52RyXRTbEv/e2mgK+00wYRRgxaFcjtfHFutFTkIQ4c0EU+GRECWg==} 1507 | peerDependencies: 1508 | solid-js: ^1.6.2 1509 | dependencies: 1510 | '@popperjs/core': 2.11.6 1511 | '@suid/css': 0.1.7_solid-js@1.6.9 1512 | '@suid/system': 0.7.1_solid-js@1.6.9 1513 | '@suid/types': 0.3.0_solid-js@1.6.9 1514 | '@suid/utils': 0.6.0_solid-js@1.6.9 1515 | clsx: 1.2.1 1516 | solid-js: 1.6.9 1517 | dev: false 1518 | 1519 | /@suid/base/0.6.2_solid-js@1.6.9: 1520 | resolution: {integrity: sha512-ZDKWGLdSAVrIuEo0DvrIqWJ6Ngyrt0aB17CX1oY2YscXipgQmpND/0HAplifoNa2bbmLUYBRUSVtBcs/XoSYXA==} 1521 | peerDependencies: 1522 | solid-js: ^1.6.7 1523 | dependencies: 1524 | '@popperjs/core': 2.11.6 1525 | '@suid/css': 0.2.1 1526 | '@suid/system': 0.8.2_solid-js@1.6.9 1527 | '@suid/types': 0.4.0_solid-js@1.6.9 1528 | '@suid/utils': 0.6.1_solid-js@1.6.9 1529 | clsx: 1.2.1 1530 | solid-js: 1.6.9 1531 | dev: false 1532 | 1533 | /@suid/css/0.1.7_solid-js@1.6.9: 1534 | resolution: {integrity: sha512-SBRGHwBndin52tgLAyVlu0cNcDeBJVYA0E4cfo7TO0Jmicmn3xgWXG8Ie7kSDnS8tSf9IZuVnXHaq9deZfdvdA==} 1535 | dependencies: 1536 | '@suid/utils': 0.6.0_solid-js@1.6.9 1537 | transitivePeerDependencies: 1538 | - solid-js 1539 | dev: false 1540 | 1541 | /@suid/css/0.2.1: 1542 | resolution: {integrity: sha512-ictV73loNG7BH9ID5PRGnuMryrAHOfyspaCZsQUzz5cTeLttFYgD/QKUcWr4FEG/1O7GVzgJlqtIT1r55LbCtw==} 1543 | dev: false 1544 | 1545 | /@suid/icons-material/0.5.6_solid-js@1.6.9: 1546 | resolution: {integrity: sha512-nmcR7eNrIMbb7i7LfOqDKLzMfCgRkZQA8Sm7QLWdU0e2Tjjd8XiOoiZL8wcnfbWUWkVANjQbNPlxJ7ewpum2ZQ==} 1547 | peerDependencies: 1548 | solid-js: ^1.6.7 1549 | dependencies: 1550 | '@suid/material': 0.9.2_solid-js@1.6.9 1551 | solid-js: 1.6.9 1552 | dev: false 1553 | 1554 | /@suid/material/0.8.2_solid-js@1.6.9: 1555 | resolution: {integrity: sha512-4gA23zlINdC7Wqe77tD4HeERmaL+I0n9JZdTV0RodU7WTfuxFhTxRroR3aSH+6J3yhwHhsYBla2QNmX4nfTbpg==} 1556 | peerDependencies: 1557 | solid-js: ^1.6.2 1558 | dependencies: 1559 | '@suid/base': 0.5.1_solid-js@1.6.9 1560 | '@suid/css': 0.1.7_solid-js@1.6.9 1561 | '@suid/system': 0.7.1_solid-js@1.6.9 1562 | '@suid/types': 0.3.0_solid-js@1.6.9 1563 | '@suid/utils': 0.6.0_solid-js@1.6.9 1564 | clsx: 1.2.1 1565 | solid-js: 1.6.9 1566 | dev: false 1567 | 1568 | /@suid/material/0.9.2_solid-js@1.6.9: 1569 | resolution: {integrity: sha512-5gtv6gUuBFXl2syBD0u/Aa7ye4NNzmv2fs7LrnR+ph/Cp1C8jtBGZThx/Xwfo22igfBwyR/yXdFJ/5ITmmyDdg==} 1570 | peerDependencies: 1571 | solid-js: ^1.6.7 1572 | dependencies: 1573 | '@suid/base': 0.6.2_solid-js@1.6.9 1574 | '@suid/css': 0.2.1 1575 | '@suid/system': 0.8.2_solid-js@1.6.9 1576 | '@suid/types': 0.4.0_solid-js@1.6.9 1577 | '@suid/utils': 0.6.1_solid-js@1.6.9 1578 | clsx: 1.2.1 1579 | solid-js: 1.6.9 1580 | dev: false 1581 | 1582 | /@suid/styled-engine/0.3.0_solid-js@1.6.9: 1583 | resolution: {integrity: sha512-TGpmRizJzDoBHcKPR5MUmK5v3Jkfx4mkVGxskEeGXUoMHSIkDWiNstEmYlLFOKqT2Ku2t0lJ8fOS4K777+dUiA==} 1584 | peerDependencies: 1585 | solid-js: ^1.6.2 1586 | dependencies: 1587 | '@suid/css': 0.1.7_solid-js@1.6.9 1588 | '@suid/utils': 0.6.0_solid-js@1.6.9 1589 | solid-js: 1.6.9 1590 | dev: false 1591 | 1592 | /@suid/styled-engine/0.4.1_solid-js@1.6.9: 1593 | resolution: {integrity: sha512-TzY/2zuspzVnx8q5PG04FgNzkJlESLZwxMYQK4VkIuqTm4CrC8VNMunBBUdv+4DVpQKArtO1ZnTGNNtE34rD8Q==} 1594 | peerDependencies: 1595 | solid-js: ^1.6.7 1596 | dependencies: 1597 | '@suid/css': 0.2.1 1598 | '@suid/utils': 0.6.1_solid-js@1.6.9 1599 | solid-js: 1.6.9 1600 | dev: false 1601 | 1602 | /@suid/system/0.7.1_solid-js@1.6.9: 1603 | resolution: {integrity: sha512-ltWJULVcbLLTmEWdoy33d5Aa4C37V6nk0d0YoqvGJc8ujZ4SDR5hrszWixQG5i/j76+s++ep+9Z9W1xuw/IlTA==} 1604 | peerDependencies: 1605 | solid-js: ^1.6.2 1606 | dependencies: 1607 | '@suid/css': 0.1.7_solid-js@1.6.9 1608 | '@suid/styled-engine': 0.3.0_solid-js@1.6.9 1609 | '@suid/types': 0.3.0_solid-js@1.6.9 1610 | '@suid/utils': 0.6.0_solid-js@1.6.9 1611 | clsx: 1.2.1 1612 | csstype: 3.1.1 1613 | solid-js: 1.6.9 1614 | dev: false 1615 | 1616 | /@suid/system/0.8.2_solid-js@1.6.9: 1617 | resolution: {integrity: sha512-ElvntlETvPjOPzg5VFQjk0dUomx4ffXF1GI5w16okdyFNSYTtdlK2PXafGoO3MTRI3tXrso8efODWPpKuH0iXw==} 1618 | peerDependencies: 1619 | solid-js: ^1.6.7 1620 | dependencies: 1621 | '@suid/css': 0.2.1 1622 | '@suid/styled-engine': 0.4.1_solid-js@1.6.9 1623 | '@suid/types': 0.4.0_solid-js@1.6.9 1624 | '@suid/utils': 0.6.1_solid-js@1.6.9 1625 | clsx: 1.2.1 1626 | csstype: 3.1.1 1627 | solid-js: 1.6.9 1628 | dev: false 1629 | 1630 | /@suid/types/0.3.0_solid-js@1.6.9: 1631 | resolution: {integrity: sha512-MrfSnnI8oyPy+TtSIG6qVZyqVN7GMH49uRbw8ACLEek2T1keG2NtLNgNWhiWv51bP0CwBAalwt+QGcN4b/3OSw==} 1632 | peerDependencies: 1633 | solid-js: ^1.6.2 1634 | dependencies: 1635 | solid-js: 1.6.9 1636 | dev: false 1637 | 1638 | /@suid/types/0.4.0_solid-js@1.6.9: 1639 | resolution: {integrity: sha512-rafpWrES+G8peLp1L7rm6QHGd+yhMV01jIzFDTzLIYgv8cQk4AsoKfgzZVfPysptF24owD9491Dv4BAzQY+XFA==} 1640 | peerDependencies: 1641 | solid-js: ^1.6.7 1642 | dependencies: 1643 | solid-js: 1.6.9 1644 | dev: false 1645 | 1646 | /@suid/utils/0.6.0_solid-js@1.6.9: 1647 | resolution: {integrity: sha512-1s5mRYbYCFzzo/t1tCvP72IizDNMjAIsV7SsBHqAQRayfQIlAaQv9D2HAQ0QW2WxHIQTsi4JLPZI/0MdiU12Vw==} 1648 | peerDependencies: 1649 | solid-js: ^1.6.2 1650 | dependencies: 1651 | '@suid/types': 0.3.0_solid-js@1.6.9 1652 | solid-js: 1.6.9 1653 | dev: false 1654 | 1655 | /@suid/utils/0.6.1_solid-js@1.6.9: 1656 | resolution: {integrity: sha512-Fg6oblOZIjZYnbF/kigE3GcqfVxN2kpmaVPpAeqTDvHNeHWzDI/rEWEXZI4nJ5WzToXDYOLHhYiQYWPDDsXPHA==} 1657 | peerDependencies: 1658 | solid-js: ^1.6.7 1659 | dependencies: 1660 | '@suid/types': 0.4.0_solid-js@1.6.9 1661 | solid-js: 1.6.9 1662 | dev: false 1663 | 1664 | /@suid/vite-plugin/0.1.1_vite@3.2.5: 1665 | resolution: {integrity: sha512-nyFElkDO4cM1MmBV+cwSQVGycWAZOSkPv2wp2XzTxCBOGbwMTNuzUYaab3pkT1izACzwiDyVRh7+OWMrNudrEg==} 1666 | peerDependencies: 1667 | vite: ^3.0.0 1668 | dependencies: 1669 | '@babel/generator': 7.20.7 1670 | '@babel/parser': 7.20.13 1671 | '@babel/traverse': 7.20.13 1672 | '@babel/types': 7.20.7 1673 | '@types/babel__generator': 7.6.4 1674 | '@types/babel__traverse': 7.18.3 1675 | vite: 3.2.5 1676 | transitivePeerDependencies: 1677 | - supports-color 1678 | dev: true 1679 | 1680 | /@types/babel__generator/7.6.4: 1681 | resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} 1682 | dependencies: 1683 | '@babel/types': 7.20.7 1684 | dev: true 1685 | 1686 | /@types/babel__traverse/7.18.3: 1687 | resolution: {integrity: sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==} 1688 | dependencies: 1689 | '@babel/types': 7.20.7 1690 | dev: true 1691 | 1692 | /@types/better-sqlite3/7.6.3: 1693 | resolution: {integrity: sha512-YS64N9SNDT/NAvou3QNdzAu3E2om/W/0dhORimtPGLef+zSK5l1vDzfsWb4xgXOgfhtOI5ZDTRxnvRPb22AIVQ==} 1694 | dependencies: 1695 | '@types/node': 18.11.18 1696 | dev: true 1697 | 1698 | /@types/cookie/0.5.1: 1699 | resolution: {integrity: sha512-COUnqfB2+ckwXXSFInsFdOAWQzCCx+a5hq2ruyj+Vjund94RJQd4LG2u9hnvJrTgunKAaax7ancBYlDrNYxA0g==} 1700 | 1701 | /@types/estree/1.0.0: 1702 | resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==} 1703 | 1704 | /@types/node/18.11.18: 1705 | resolution: {integrity: sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==} 1706 | dev: true 1707 | 1708 | /@types/resolve/1.20.2: 1709 | resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} 1710 | dev: true 1711 | 1712 | /@types/stack-trace/0.0.29: 1713 | resolution: {integrity: sha512-TgfOX+mGY/NyNxJLIbDWrO9DjGoVSW9+aB8H2yy1fy32jsvxijhmyJI9fDFgvz3YP4lvJaq9DzdR/M1bOgVc9g==} 1714 | dev: true 1715 | 1716 | /@types/ws/8.5.4: 1717 | resolution: {integrity: sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==} 1718 | dependencies: 1719 | '@types/node': 18.11.18 1720 | dev: true 1721 | 1722 | /accepts/1.3.8: 1723 | resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} 1724 | engines: {node: '>= 0.6'} 1725 | dependencies: 1726 | mime-types: 2.1.35 1727 | negotiator: 0.6.3 1728 | 1729 | /acorn-node/1.8.2: 1730 | resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==} 1731 | dependencies: 1732 | acorn: 7.4.1 1733 | acorn-walk: 7.2.0 1734 | xtend: 4.0.2 1735 | dev: true 1736 | 1737 | /acorn-walk/7.2.0: 1738 | resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} 1739 | engines: {node: '>=0.4.0'} 1740 | dev: true 1741 | 1742 | /acorn/7.4.1: 1743 | resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} 1744 | engines: {node: '>=0.4.0'} 1745 | hasBin: true 1746 | dev: true 1747 | 1748 | /acorn/8.8.2: 1749 | resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} 1750 | engines: {node: '>=0.4.0'} 1751 | hasBin: true 1752 | 1753 | /ansi-regex/5.0.1: 1754 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 1755 | engines: {node: '>=8'} 1756 | 1757 | /ansi-styles/3.2.1: 1758 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 1759 | engines: {node: '>=4'} 1760 | dependencies: 1761 | color-convert: 1.9.3 1762 | 1763 | /ansi-styles/4.3.0: 1764 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 1765 | engines: {node: '>=8'} 1766 | dependencies: 1767 | color-convert: 2.0.1 1768 | 1769 | /anymatch/3.1.3: 1770 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 1771 | engines: {node: '>= 8'} 1772 | dependencies: 1773 | normalize-path: 3.0.0 1774 | picomatch: 2.3.1 1775 | 1776 | /arg/5.0.2: 1777 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} 1778 | dev: true 1779 | 1780 | /autoprefixer/10.4.13_postcss@8.4.21: 1781 | resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==} 1782 | engines: {node: ^10 || ^12 || >=14} 1783 | hasBin: true 1784 | peerDependencies: 1785 | postcss: ^8.1.0 1786 | dependencies: 1787 | browserslist: 4.21.4 1788 | caniuse-lite: 1.0.30001448 1789 | fraction.js: 4.2.0 1790 | normalize-range: 0.1.2 1791 | picocolors: 1.0.0 1792 | postcss: 8.4.21 1793 | postcss-value-parser: 4.2.0 1794 | dev: true 1795 | 1796 | /axios/0.25.0_debug@4.3.4: 1797 | resolution: {integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==} 1798 | dependencies: 1799 | follow-redirects: 1.15.2_debug@4.3.4 1800 | transitivePeerDependencies: 1801 | - debug 1802 | 1803 | /babel-plugin-jsx-dom-expressions/0.35.14_@babel+core@7.20.12: 1804 | resolution: {integrity: sha512-Eywfw/7cNbBsStTgj46JRvyGTb+RLyF2EJ0AV3/W2cUwbw3R3syOBqdzFLdHN2MPOs4nJA80XtGl9kSMjEekhA==} 1805 | peerDependencies: 1806 | '@babel/core': ^7.20.12 1807 | dependencies: 1808 | '@babel/core': 7.20.12 1809 | '@babel/helper-module-imports': 7.18.6 1810 | '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.12 1811 | '@babel/types': 7.20.7 1812 | html-entities: 2.3.3 1813 | validate-html-nesting: 1.2.0 1814 | 1815 | /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.12: 1816 | resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} 1817 | peerDependencies: 1818 | '@babel/core': ^7.0.0-0 1819 | dependencies: 1820 | '@babel/compat-data': 7.20.10 1821 | '@babel/core': 7.20.12 1822 | '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12 1823 | semver: 6.3.0 1824 | transitivePeerDependencies: 1825 | - supports-color 1826 | 1827 | /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.12: 1828 | resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} 1829 | peerDependencies: 1830 | '@babel/core': ^7.0.0-0 1831 | dependencies: 1832 | '@babel/core': 7.20.12 1833 | '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12 1834 | core-js-compat: 3.27.2 1835 | transitivePeerDependencies: 1836 | - supports-color 1837 | 1838 | /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.12: 1839 | resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} 1840 | peerDependencies: 1841 | '@babel/core': ^7.0.0-0 1842 | dependencies: 1843 | '@babel/core': 7.20.12 1844 | '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12 1845 | transitivePeerDependencies: 1846 | - supports-color 1847 | 1848 | /babel-preset-solid/1.6.9_@babel+core@7.20.12: 1849 | resolution: {integrity: sha512-Dz4xROTGtAZ2B9+79KYUzi/bhjNGsx+8c+AD3VO/Cg1CisM1qq29XsnkWrRJeTMMn3XZkAI/Bf5Rz37d/gvPVQ==} 1850 | peerDependencies: 1851 | '@babel/core': ^7.0.0 1852 | dependencies: 1853 | '@babel/core': 7.20.12 1854 | babel-plugin-jsx-dom-expressions: 0.35.14_@babel+core@7.20.12 1855 | 1856 | /balanced-match/1.0.2: 1857 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 1858 | dev: true 1859 | 1860 | /binary-extensions/2.2.0: 1861 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} 1862 | engines: {node: '>=8'} 1863 | 1864 | /brace-expansion/2.0.1: 1865 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 1866 | dependencies: 1867 | balanced-match: 1.0.2 1868 | dev: true 1869 | 1870 | /braces/3.0.2: 1871 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 1872 | engines: {node: '>=8'} 1873 | dependencies: 1874 | fill-range: 7.0.1 1875 | 1876 | /browserslist/4.21.4: 1877 | resolution: {integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==} 1878 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 1879 | hasBin: true 1880 | dependencies: 1881 | caniuse-lite: 1.0.30001448 1882 | electron-to-chromium: 1.4.284 1883 | node-releases: 2.0.8 1884 | update-browserslist-db: 1.0.10_browserslist@4.21.4 1885 | 1886 | /buffer-from/1.1.2: 1887 | resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} 1888 | 1889 | /builtin-modules/3.3.0: 1890 | resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} 1891 | engines: {node: '>=6'} 1892 | dev: true 1893 | 1894 | /builtins/5.0.1: 1895 | resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} 1896 | dependencies: 1897 | semver: 7.3.8 1898 | dev: true 1899 | 1900 | /busboy/1.6.0: 1901 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} 1902 | engines: {node: '>=10.16.0'} 1903 | dependencies: 1904 | streamsearch: 1.1.0 1905 | 1906 | /bytes/3.0.0: 1907 | resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} 1908 | engines: {node: '>= 0.8'} 1909 | 1910 | /camelcase-css/2.0.1: 1911 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} 1912 | engines: {node: '>= 6'} 1913 | dev: true 1914 | 1915 | /caniuse-lite/1.0.30001448: 1916 | resolution: {integrity: sha512-tq2YI+MJnooG96XpbTRYkBxLxklZPOdLmNIOdIhvf7SNJan6u5vCKum8iT7ZfCt70m1GPkuC7P3TtX6UuhupuA==} 1917 | 1918 | /chalk/2.4.2: 1919 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 1920 | engines: {node: '>=4'} 1921 | dependencies: 1922 | ansi-styles: 3.2.1 1923 | escape-string-regexp: 1.0.5 1924 | supports-color: 5.5.0 1925 | 1926 | /chokidar/3.5.3: 1927 | resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} 1928 | engines: {node: '>= 8.10.0'} 1929 | dependencies: 1930 | anymatch: 3.1.3 1931 | braces: 3.0.2 1932 | glob-parent: 5.1.2 1933 | is-binary-path: 2.1.0 1934 | is-glob: 4.0.3 1935 | normalize-path: 3.0.0 1936 | readdirp: 3.6.0 1937 | optionalDependencies: 1938 | fsevents: 2.3.2 1939 | 1940 | /cliui/8.0.1: 1941 | resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 1942 | engines: {node: '>=12'} 1943 | dependencies: 1944 | string-width: 4.2.3 1945 | strip-ansi: 6.0.1 1946 | wrap-ansi: 7.0.0 1947 | 1948 | /clsx/1.2.1: 1949 | resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} 1950 | engines: {node: '>=6'} 1951 | dev: false 1952 | 1953 | /color-convert/1.9.3: 1954 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 1955 | dependencies: 1956 | color-name: 1.1.3 1957 | 1958 | /color-convert/2.0.1: 1959 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 1960 | engines: {node: '>=7.0.0'} 1961 | dependencies: 1962 | color-name: 1.1.4 1963 | 1964 | /color-name/1.1.3: 1965 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} 1966 | 1967 | /color-name/1.1.4: 1968 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 1969 | 1970 | /commander/2.20.3: 1971 | resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} 1972 | 1973 | /commondir/1.0.1: 1974 | resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} 1975 | dev: true 1976 | 1977 | /compressible/2.0.18: 1978 | resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} 1979 | engines: {node: '>= 0.6'} 1980 | dependencies: 1981 | mime-db: 1.52.0 1982 | 1983 | /compression/1.7.4: 1984 | resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} 1985 | engines: {node: '>= 0.8.0'} 1986 | dependencies: 1987 | accepts: 1.3.8 1988 | bytes: 3.0.0 1989 | compressible: 2.0.18 1990 | debug: 2.6.9 1991 | on-headers: 1.0.2 1992 | safe-buffer: 5.1.2 1993 | vary: 1.1.2 1994 | transitivePeerDependencies: 1995 | - supports-color 1996 | 1997 | /connect/3.7.0: 1998 | resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==} 1999 | engines: {node: '>= 0.10.0'} 2000 | dependencies: 2001 | debug: 2.6.9 2002 | finalhandler: 1.1.2 2003 | parseurl: 1.3.3 2004 | utils-merge: 1.0.1 2005 | transitivePeerDependencies: 2006 | - supports-color 2007 | 2008 | /convert-source-map/1.9.0: 2009 | resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} 2010 | 2011 | /cookie/0.4.2: 2012 | resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} 2013 | engines: {node: '>= 0.6'} 2014 | dev: true 2015 | 2016 | /core-js-compat/3.27.2: 2017 | resolution: {integrity: sha512-welaYuF7ZtbYKGrIy7y3eb40d37rG1FvzEOfe7hSLd2iD6duMDqUhRfSvCGyC46HhR6Y8JXXdZ2lnRUMkPBpvg==} 2018 | dependencies: 2019 | browserslist: 4.21.4 2020 | 2021 | /cron-schedule/3.0.6: 2022 | resolution: {integrity: sha512-izfGgKyzzIyLaeb1EtZ3KbglkS6AKp9cv7LxmiyoOu+fXfol1tQDC0Cof0enVZGNtudTHW+3lfuW9ZkLQss4Wg==} 2023 | dev: true 2024 | 2025 | /cross-spawn/7.0.3: 2026 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 2027 | engines: {node: '>= 8'} 2028 | dependencies: 2029 | path-key: 3.1.1 2030 | shebang-command: 2.0.0 2031 | which: 2.0.2 2032 | dev: true 2033 | 2034 | /cssesc/3.0.0: 2035 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 2036 | engines: {node: '>=4'} 2037 | hasBin: true 2038 | dev: true 2039 | 2040 | /csstype/3.1.1: 2041 | resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==} 2042 | 2043 | /debug/2.6.9: 2044 | resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} 2045 | peerDependencies: 2046 | supports-color: '*' 2047 | peerDependenciesMeta: 2048 | supports-color: 2049 | optional: true 2050 | dependencies: 2051 | ms: 2.0.0 2052 | 2053 | /debug/4.3.4: 2054 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 2055 | engines: {node: '>=6.0'} 2056 | peerDependencies: 2057 | supports-color: '*' 2058 | peerDependenciesMeta: 2059 | supports-color: 2060 | optional: true 2061 | dependencies: 2062 | ms: 2.1.2 2063 | 2064 | /deepmerge/4.2.2: 2065 | resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==} 2066 | engines: {node: '>=0.10.0'} 2067 | dev: true 2068 | 2069 | /define-lazy-prop/2.0.0: 2070 | resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} 2071 | engines: {node: '>=8'} 2072 | 2073 | /defined/1.0.1: 2074 | resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==} 2075 | dev: true 2076 | 2077 | /dequal/2.0.3: 2078 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 2079 | engines: {node: '>=6'} 2080 | 2081 | /detective/5.2.1: 2082 | resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==} 2083 | engines: {node: '>=0.8.0'} 2084 | hasBin: true 2085 | dependencies: 2086 | acorn-node: 1.8.2 2087 | defined: 1.0.1 2088 | minimist: 1.2.7 2089 | dev: true 2090 | 2091 | /didyoumean/1.2.2: 2092 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} 2093 | dev: true 2094 | 2095 | /dlv/1.1.3: 2096 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 2097 | dev: true 2098 | 2099 | /dotenv/10.0.0: 2100 | resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==} 2101 | engines: {node: '>=10'} 2102 | dev: true 2103 | 2104 | /dotenv/16.0.3: 2105 | resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==} 2106 | engines: {node: '>=12'} 2107 | 2108 | /ee-first/1.1.1: 2109 | resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} 2110 | 2111 | /electron-to-chromium/1.4.284: 2112 | resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==} 2113 | 2114 | /emoji-regex/8.0.0: 2115 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 2116 | 2117 | /encodeurl/1.0.2: 2118 | resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} 2119 | engines: {node: '>= 0.8'} 2120 | 2121 | /es-module-lexer/1.1.0: 2122 | resolution: {integrity: sha512-fJg+1tiyEeS8figV+fPcPpm8WqJEflG3yPU0NOm5xMvrNkuiy7HzX/Ljng4Y0hAoiw4/3hQTCFYw+ub8+a2pRA==} 2123 | 2124 | /esbuild-android-64/0.14.54: 2125 | resolution: {integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==} 2126 | engines: {node: '>=12'} 2127 | cpu: [x64] 2128 | os: [android] 2129 | requiresBuild: true 2130 | optional: true 2131 | 2132 | /esbuild-android-64/0.15.18: 2133 | resolution: {integrity: sha512-wnpt3OXRhcjfIDSZu9bnzT4/TNTDsOUvip0foZOUBG7QbSt//w3QV4FInVJxNhKc/ErhUxc5z4QjHtMi7/TbgA==} 2134 | engines: {node: '>=12'} 2135 | cpu: [x64] 2136 | os: [android] 2137 | requiresBuild: true 2138 | optional: true 2139 | 2140 | /esbuild-android-arm64/0.14.54: 2141 | resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==} 2142 | engines: {node: '>=12'} 2143 | cpu: [arm64] 2144 | os: [android] 2145 | requiresBuild: true 2146 | optional: true 2147 | 2148 | /esbuild-android-arm64/0.15.18: 2149 | resolution: {integrity: sha512-G4xu89B8FCzav9XU8EjsXacCKSG2FT7wW9J6hOc18soEHJdtWu03L3TQDGf0geNxfLTtxENKBzMSq9LlbjS8OQ==} 2150 | engines: {node: '>=12'} 2151 | cpu: [arm64] 2152 | os: [android] 2153 | requiresBuild: true 2154 | optional: true 2155 | 2156 | /esbuild-darwin-64/0.14.54: 2157 | resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==} 2158 | engines: {node: '>=12'} 2159 | cpu: [x64] 2160 | os: [darwin] 2161 | requiresBuild: true 2162 | optional: true 2163 | 2164 | /esbuild-darwin-64/0.15.18: 2165 | resolution: {integrity: sha512-2WAvs95uPnVJPuYKP0Eqx+Dl/jaYseZEUUT1sjg97TJa4oBtbAKnPnl3b5M9l51/nbx7+QAEtuummJZW0sBEmg==} 2166 | engines: {node: '>=12'} 2167 | cpu: [x64] 2168 | os: [darwin] 2169 | requiresBuild: true 2170 | optional: true 2171 | 2172 | /esbuild-darwin-arm64/0.14.54: 2173 | resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==} 2174 | engines: {node: '>=12'} 2175 | cpu: [arm64] 2176 | os: [darwin] 2177 | requiresBuild: true 2178 | optional: true 2179 | 2180 | /esbuild-darwin-arm64/0.15.18: 2181 | resolution: {integrity: sha512-tKPSxcTJ5OmNb1btVikATJ8NftlyNlc8BVNtyT/UAr62JFOhwHlnoPrhYWz09akBLHI9nElFVfWSTSRsrZiDUA==} 2182 | engines: {node: '>=12'} 2183 | cpu: [arm64] 2184 | os: [darwin] 2185 | requiresBuild: true 2186 | optional: true 2187 | 2188 | /esbuild-freebsd-64/0.14.54: 2189 | resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==} 2190 | engines: {node: '>=12'} 2191 | cpu: [x64] 2192 | os: [freebsd] 2193 | requiresBuild: true 2194 | optional: true 2195 | 2196 | /esbuild-freebsd-64/0.15.18: 2197 | resolution: {integrity: sha512-TT3uBUxkteAjR1QbsmvSsjpKjOX6UkCstr8nMr+q7zi3NuZ1oIpa8U41Y8I8dJH2fJgdC3Dj3CXO5biLQpfdZA==} 2198 | engines: {node: '>=12'} 2199 | cpu: [x64] 2200 | os: [freebsd] 2201 | requiresBuild: true 2202 | optional: true 2203 | 2204 | /esbuild-freebsd-arm64/0.14.54: 2205 | resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==} 2206 | engines: {node: '>=12'} 2207 | cpu: [arm64] 2208 | os: [freebsd] 2209 | requiresBuild: true 2210 | optional: true 2211 | 2212 | /esbuild-freebsd-arm64/0.15.18: 2213 | resolution: {integrity: sha512-R/oVr+X3Tkh+S0+tL41wRMbdWtpWB8hEAMsOXDumSSa6qJR89U0S/PpLXrGF7Wk/JykfpWNokERUpCeHDl47wA==} 2214 | engines: {node: '>=12'} 2215 | cpu: [arm64] 2216 | os: [freebsd] 2217 | requiresBuild: true 2218 | optional: true 2219 | 2220 | /esbuild-linux-32/0.14.54: 2221 | resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==} 2222 | engines: {node: '>=12'} 2223 | cpu: [ia32] 2224 | os: [linux] 2225 | requiresBuild: true 2226 | optional: true 2227 | 2228 | /esbuild-linux-32/0.15.18: 2229 | resolution: {integrity: sha512-lphF3HiCSYtaa9p1DtXndiQEeQDKPl9eN/XNoBf2amEghugNuqXNZA/ZovthNE2aa4EN43WroO0B85xVSjYkbg==} 2230 | engines: {node: '>=12'} 2231 | cpu: [ia32] 2232 | os: [linux] 2233 | requiresBuild: true 2234 | optional: true 2235 | 2236 | /esbuild-linux-64/0.14.54: 2237 | resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==} 2238 | engines: {node: '>=12'} 2239 | cpu: [x64] 2240 | os: [linux] 2241 | requiresBuild: true 2242 | optional: true 2243 | 2244 | /esbuild-linux-64/0.15.18: 2245 | resolution: {integrity: sha512-hNSeP97IviD7oxLKFuii5sDPJ+QHeiFTFLoLm7NZQligur8poNOWGIgpQ7Qf8Balb69hptMZzyOBIPtY09GZYw==} 2246 | engines: {node: '>=12'} 2247 | cpu: [x64] 2248 | os: [linux] 2249 | requiresBuild: true 2250 | optional: true 2251 | 2252 | /esbuild-linux-arm/0.14.54: 2253 | resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==} 2254 | engines: {node: '>=12'} 2255 | cpu: [arm] 2256 | os: [linux] 2257 | requiresBuild: true 2258 | optional: true 2259 | 2260 | /esbuild-linux-arm/0.15.18: 2261 | resolution: {integrity: sha512-UH779gstRblS4aoS2qpMl3wjg7U0j+ygu3GjIeTonCcN79ZvpPee12Qun3vcdxX+37O5LFxz39XeW2I9bybMVA==} 2262 | engines: {node: '>=12'} 2263 | cpu: [arm] 2264 | os: [linux] 2265 | requiresBuild: true 2266 | optional: true 2267 | 2268 | /esbuild-linux-arm64/0.14.54: 2269 | resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==} 2270 | engines: {node: '>=12'} 2271 | cpu: [arm64] 2272 | os: [linux] 2273 | requiresBuild: true 2274 | optional: true 2275 | 2276 | /esbuild-linux-arm64/0.15.18: 2277 | resolution: {integrity: sha512-54qr8kg/6ilcxd+0V3h9rjT4qmjc0CccMVWrjOEM/pEcUzt8X62HfBSeZfT2ECpM7104mk4yfQXkosY8Quptug==} 2278 | engines: {node: '>=12'} 2279 | cpu: [arm64] 2280 | os: [linux] 2281 | requiresBuild: true 2282 | optional: true 2283 | 2284 | /esbuild-linux-mips64le/0.14.54: 2285 | resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==} 2286 | engines: {node: '>=12'} 2287 | cpu: [mips64el] 2288 | os: [linux] 2289 | requiresBuild: true 2290 | optional: true 2291 | 2292 | /esbuild-linux-mips64le/0.15.18: 2293 | resolution: {integrity: sha512-Mk6Ppwzzz3YbMl/ZZL2P0q1tnYqh/trYZ1VfNP47C31yT0K8t9s7Z077QrDA/guU60tGNp2GOwCQnp+DYv7bxQ==} 2294 | engines: {node: '>=12'} 2295 | cpu: [mips64el] 2296 | os: [linux] 2297 | requiresBuild: true 2298 | optional: true 2299 | 2300 | /esbuild-linux-ppc64le/0.14.54: 2301 | resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==} 2302 | engines: {node: '>=12'} 2303 | cpu: [ppc64] 2304 | os: [linux] 2305 | requiresBuild: true 2306 | optional: true 2307 | 2308 | /esbuild-linux-ppc64le/0.15.18: 2309 | resolution: {integrity: sha512-b0XkN4pL9WUulPTa/VKHx2wLCgvIAbgwABGnKMY19WhKZPT+8BxhZdqz6EgkqCLld7X5qiCY2F/bfpUUlnFZ9w==} 2310 | engines: {node: '>=12'} 2311 | cpu: [ppc64] 2312 | os: [linux] 2313 | requiresBuild: true 2314 | optional: true 2315 | 2316 | /esbuild-linux-riscv64/0.14.54: 2317 | resolution: {integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==} 2318 | engines: {node: '>=12'} 2319 | cpu: [riscv64] 2320 | os: [linux] 2321 | requiresBuild: true 2322 | optional: true 2323 | 2324 | /esbuild-linux-riscv64/0.15.18: 2325 | resolution: {integrity: sha512-ba2COaoF5wL6VLZWn04k+ACZjZ6NYniMSQStodFKH/Pu6RxzQqzsmjR1t9QC89VYJxBeyVPTaHuBMCejl3O/xg==} 2326 | engines: {node: '>=12'} 2327 | cpu: [riscv64] 2328 | os: [linux] 2329 | requiresBuild: true 2330 | optional: true 2331 | 2332 | /esbuild-linux-s390x/0.14.54: 2333 | resolution: {integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==} 2334 | engines: {node: '>=12'} 2335 | cpu: [s390x] 2336 | os: [linux] 2337 | requiresBuild: true 2338 | optional: true 2339 | 2340 | /esbuild-linux-s390x/0.15.18: 2341 | resolution: {integrity: sha512-VbpGuXEl5FCs1wDVp93O8UIzl3ZrglgnSQ+Hu79g7hZu6te6/YHgVJxCM2SqfIila0J3k0csfnf8VD2W7u2kzQ==} 2342 | engines: {node: '>=12'} 2343 | cpu: [s390x] 2344 | os: [linux] 2345 | requiresBuild: true 2346 | optional: true 2347 | 2348 | /esbuild-netbsd-64/0.14.54: 2349 | resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==} 2350 | engines: {node: '>=12'} 2351 | cpu: [x64] 2352 | os: [netbsd] 2353 | requiresBuild: true 2354 | optional: true 2355 | 2356 | /esbuild-netbsd-64/0.15.18: 2357 | resolution: {integrity: sha512-98ukeCdvdX7wr1vUYQzKo4kQ0N2p27H7I11maINv73fVEXt2kyh4K4m9f35U1K43Xc2QGXlzAw0K9yoU7JUjOg==} 2358 | engines: {node: '>=12'} 2359 | cpu: [x64] 2360 | os: [netbsd] 2361 | requiresBuild: true 2362 | optional: true 2363 | 2364 | /esbuild-openbsd-64/0.14.54: 2365 | resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==} 2366 | engines: {node: '>=12'} 2367 | cpu: [x64] 2368 | os: [openbsd] 2369 | requiresBuild: true 2370 | optional: true 2371 | 2372 | /esbuild-openbsd-64/0.15.18: 2373 | resolution: {integrity: sha512-yK5NCcH31Uae076AyQAXeJzt/vxIo9+omZRKj1pauhk3ITuADzuOx5N2fdHrAKPxN+zH3w96uFKlY7yIn490xQ==} 2374 | engines: {node: '>=12'} 2375 | cpu: [x64] 2376 | os: [openbsd] 2377 | requiresBuild: true 2378 | optional: true 2379 | 2380 | /esbuild-plugin-solid/0.4.2_e63rwa75r2qslo2sobfndo3ih4: 2381 | resolution: {integrity: sha512-T5GphLoud3RumjeNYO3K9WVjWDzVKG5evlS7hUEUI0n9tiCL+CnbvJh3SSwFi3xeeXpZRrnZc1gd6FWQsVobTg==} 2382 | peerDependencies: 2383 | esbuild: '>=0.12' 2384 | solid-js: '>= 1.0' 2385 | dependencies: 2386 | '@babel/core': 7.20.12 2387 | '@babel/preset-typescript': 7.18.6_@babel+core@7.20.12 2388 | babel-preset-solid: 1.6.9_@babel+core@7.20.12 2389 | esbuild: 0.14.54 2390 | solid-js: 1.6.9 2391 | transitivePeerDependencies: 2392 | - supports-color 2393 | 2394 | /esbuild-sunos-64/0.14.54: 2395 | resolution: {integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==} 2396 | engines: {node: '>=12'} 2397 | cpu: [x64] 2398 | os: [sunos] 2399 | requiresBuild: true 2400 | optional: true 2401 | 2402 | /esbuild-sunos-64/0.15.18: 2403 | resolution: {integrity: sha512-On22LLFlBeLNj/YF3FT+cXcyKPEI263nflYlAhz5crxtp3yRG1Ugfr7ITyxmCmjm4vbN/dGrb/B7w7U8yJR9yw==} 2404 | engines: {node: '>=12'} 2405 | cpu: [x64] 2406 | os: [sunos] 2407 | requiresBuild: true 2408 | optional: true 2409 | 2410 | /esbuild-windows-32/0.14.54: 2411 | resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==} 2412 | engines: {node: '>=12'} 2413 | cpu: [ia32] 2414 | os: [win32] 2415 | requiresBuild: true 2416 | optional: true 2417 | 2418 | /esbuild-windows-32/0.15.18: 2419 | resolution: {integrity: sha512-o+eyLu2MjVny/nt+E0uPnBxYuJHBvho8vWsC2lV61A7wwTWC3jkN2w36jtA+yv1UgYkHRihPuQsL23hsCYGcOQ==} 2420 | engines: {node: '>=12'} 2421 | cpu: [ia32] 2422 | os: [win32] 2423 | requiresBuild: true 2424 | optional: true 2425 | 2426 | /esbuild-windows-64/0.14.54: 2427 | resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==} 2428 | engines: {node: '>=12'} 2429 | cpu: [x64] 2430 | os: [win32] 2431 | requiresBuild: true 2432 | optional: true 2433 | 2434 | /esbuild-windows-64/0.15.18: 2435 | resolution: {integrity: sha512-qinug1iTTaIIrCorAUjR0fcBk24fjzEedFYhhispP8Oc7SFvs+XeW3YpAKiKp8dRpizl4YYAhxMjlftAMJiaUw==} 2436 | engines: {node: '>=12'} 2437 | cpu: [x64] 2438 | os: [win32] 2439 | requiresBuild: true 2440 | optional: true 2441 | 2442 | /esbuild-windows-arm64/0.14.54: 2443 | resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==} 2444 | engines: {node: '>=12'} 2445 | cpu: [arm64] 2446 | os: [win32] 2447 | requiresBuild: true 2448 | optional: true 2449 | 2450 | /esbuild-windows-arm64/0.15.18: 2451 | resolution: {integrity: sha512-q9bsYzegpZcLziq0zgUi5KqGVtfhjxGbnksaBFYmWLxeV/S1fK4OLdq2DFYnXcLMjlZw2L0jLsk1eGoB522WXQ==} 2452 | engines: {node: '>=12'} 2453 | cpu: [arm64] 2454 | os: [win32] 2455 | requiresBuild: true 2456 | optional: true 2457 | 2458 | /esbuild/0.14.54: 2459 | resolution: {integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==} 2460 | engines: {node: '>=12'} 2461 | hasBin: true 2462 | requiresBuild: true 2463 | optionalDependencies: 2464 | '@esbuild/linux-loong64': 0.14.54 2465 | esbuild-android-64: 0.14.54 2466 | esbuild-android-arm64: 0.14.54 2467 | esbuild-darwin-64: 0.14.54 2468 | esbuild-darwin-arm64: 0.14.54 2469 | esbuild-freebsd-64: 0.14.54 2470 | esbuild-freebsd-arm64: 0.14.54 2471 | esbuild-linux-32: 0.14.54 2472 | esbuild-linux-64: 0.14.54 2473 | esbuild-linux-arm: 0.14.54 2474 | esbuild-linux-arm64: 0.14.54 2475 | esbuild-linux-mips64le: 0.14.54 2476 | esbuild-linux-ppc64le: 0.14.54 2477 | esbuild-linux-riscv64: 0.14.54 2478 | esbuild-linux-s390x: 0.14.54 2479 | esbuild-netbsd-64: 0.14.54 2480 | esbuild-openbsd-64: 0.14.54 2481 | esbuild-sunos-64: 0.14.54 2482 | esbuild-windows-32: 0.14.54 2483 | esbuild-windows-64: 0.14.54 2484 | esbuild-windows-arm64: 0.14.54 2485 | 2486 | /esbuild/0.15.18: 2487 | resolution: {integrity: sha512-x/R72SmW3sSFRm5zrrIjAhCeQSAWoni3CmHEqfQrZIQTM3lVCdehdwuIqaOtfC2slvpdlLa62GYoN8SxT23m6Q==} 2488 | engines: {node: '>=12'} 2489 | hasBin: true 2490 | requiresBuild: true 2491 | optionalDependencies: 2492 | '@esbuild/android-arm': 0.15.18 2493 | '@esbuild/linux-loong64': 0.15.18 2494 | esbuild-android-64: 0.15.18 2495 | esbuild-android-arm64: 0.15.18 2496 | esbuild-darwin-64: 0.15.18 2497 | esbuild-darwin-arm64: 0.15.18 2498 | esbuild-freebsd-64: 0.15.18 2499 | esbuild-freebsd-arm64: 0.15.18 2500 | esbuild-linux-32: 0.15.18 2501 | esbuild-linux-64: 0.15.18 2502 | esbuild-linux-arm: 0.15.18 2503 | esbuild-linux-arm64: 0.15.18 2504 | esbuild-linux-mips64le: 0.15.18 2505 | esbuild-linux-ppc64le: 0.15.18 2506 | esbuild-linux-riscv64: 0.15.18 2507 | esbuild-linux-s390x: 0.15.18 2508 | esbuild-netbsd-64: 0.15.18 2509 | esbuild-openbsd-64: 0.15.18 2510 | esbuild-sunos-64: 0.15.18 2511 | esbuild-windows-32: 0.15.18 2512 | esbuild-windows-64: 0.15.18 2513 | esbuild-windows-arm64: 0.15.18 2514 | 2515 | /escalade/3.1.1: 2516 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} 2517 | engines: {node: '>=6'} 2518 | 2519 | /escape-html/1.0.3: 2520 | resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} 2521 | 2522 | /escape-string-regexp/1.0.5: 2523 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} 2524 | engines: {node: '>=0.8.0'} 2525 | 2526 | /estree-walker/2.0.2: 2527 | resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 2528 | 2529 | /esutils/2.0.3: 2530 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 2531 | engines: {node: '>=0.10.0'} 2532 | 2533 | /execa/6.1.0: 2534 | resolution: {integrity: sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==} 2535 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2536 | dependencies: 2537 | cross-spawn: 7.0.3 2538 | get-stream: 6.0.1 2539 | human-signals: 3.0.1 2540 | is-stream: 3.0.0 2541 | merge-stream: 2.0.0 2542 | npm-run-path: 5.1.0 2543 | onetime: 6.0.0 2544 | signal-exit: 3.0.7 2545 | strip-final-newline: 3.0.0 2546 | dev: true 2547 | 2548 | /fast-glob/3.2.12: 2549 | resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} 2550 | engines: {node: '>=8.6.0'} 2551 | dependencies: 2552 | '@nodelib/fs.stat': 2.0.5 2553 | '@nodelib/fs.walk': 1.2.8 2554 | glob-parent: 5.1.2 2555 | merge2: 1.4.1 2556 | micromatch: 4.0.5 2557 | 2558 | /fastq/1.15.0: 2559 | resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} 2560 | dependencies: 2561 | reusify: 1.0.4 2562 | 2563 | /fill-range/7.0.1: 2564 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 2565 | engines: {node: '>=8'} 2566 | dependencies: 2567 | to-regex-range: 5.0.1 2568 | 2569 | /finalhandler/1.1.2: 2570 | resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==} 2571 | engines: {node: '>= 0.8'} 2572 | dependencies: 2573 | debug: 2.6.9 2574 | encodeurl: 1.0.2 2575 | escape-html: 1.0.3 2576 | on-finished: 2.3.0 2577 | parseurl: 1.3.3 2578 | statuses: 1.5.0 2579 | unpipe: 1.0.0 2580 | transitivePeerDependencies: 2581 | - supports-color 2582 | 2583 | /follow-redirects/1.15.2_debug@4.3.4: 2584 | resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==} 2585 | engines: {node: '>=4.0'} 2586 | peerDependencies: 2587 | debug: '*' 2588 | peerDependenciesMeta: 2589 | debug: 2590 | optional: true 2591 | dependencies: 2592 | debug: 4.3.4 2593 | 2594 | /fraction.js/4.2.0: 2595 | resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} 2596 | dev: true 2597 | 2598 | /fs-extra/11.1.0: 2599 | resolution: {integrity: sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==} 2600 | engines: {node: '>=14.14'} 2601 | dependencies: 2602 | graceful-fs: 4.2.10 2603 | jsonfile: 6.1.0 2604 | universalify: 2.0.0 2605 | 2606 | /fs.realpath/1.0.0: 2607 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 2608 | dev: true 2609 | 2610 | /fsevents/2.3.2: 2611 | resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} 2612 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 2613 | os: [darwin] 2614 | requiresBuild: true 2615 | optional: true 2616 | 2617 | /function-bind/1.1.1: 2618 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} 2619 | 2620 | /gensync/1.0.0-beta.2: 2621 | resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 2622 | engines: {node: '>=6.9.0'} 2623 | 2624 | /get-caller-file/2.0.5: 2625 | resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 2626 | engines: {node: 6.* || 8.* || >= 10.*} 2627 | 2628 | /get-port/6.1.2: 2629 | resolution: {integrity: sha512-BrGGraKm2uPqurfGVj/z97/zv8dPleC6x9JBNRTrDNtCkkRF4rPwrQXFgL7+I+q8QSdU4ntLQX2D7KIxSy8nGw==} 2630 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2631 | 2632 | /get-stream/6.0.1: 2633 | resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} 2634 | engines: {node: '>=10'} 2635 | dev: true 2636 | 2637 | /glob-parent/5.1.2: 2638 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 2639 | engines: {node: '>= 6'} 2640 | dependencies: 2641 | is-glob: 4.0.3 2642 | 2643 | /glob-parent/6.0.2: 2644 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 2645 | engines: {node: '>=10.13.0'} 2646 | dependencies: 2647 | is-glob: 4.0.3 2648 | dev: true 2649 | 2650 | /glob/8.1.0: 2651 | resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} 2652 | engines: {node: '>=12'} 2653 | dependencies: 2654 | fs.realpath: 1.0.0 2655 | inflight: 1.0.6 2656 | inherits: 2.0.4 2657 | minimatch: 5.1.6 2658 | once: 1.4.0 2659 | dev: true 2660 | 2661 | /globals/11.12.0: 2662 | resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} 2663 | engines: {node: '>=4'} 2664 | 2665 | /graceful-fs/4.2.10: 2666 | resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} 2667 | 2668 | /has-flag/3.0.0: 2669 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} 2670 | engines: {node: '>=4'} 2671 | 2672 | /has/1.0.3: 2673 | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} 2674 | engines: {node: '>= 0.4.0'} 2675 | dependencies: 2676 | function-bind: 1.1.1 2677 | 2678 | /html-entities/2.3.3: 2679 | resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==} 2680 | 2681 | /html-rewriter-wasm/0.4.1: 2682 | resolution: {integrity: sha512-lNovG8CMCCmcVB1Q7xggMSf7tqPCijZXaH4gL6iE8BFghdQCbaY5Met9i1x2Ex8m/cZHDUtXK9H6/znKamRP8Q==} 2683 | dev: true 2684 | 2685 | /http-cache-semantics/4.1.0: 2686 | resolution: {integrity: sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==} 2687 | dev: true 2688 | 2689 | /human-signals/3.0.1: 2690 | resolution: {integrity: sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==} 2691 | engines: {node: '>=12.20.0'} 2692 | dev: true 2693 | 2694 | /inflight/1.0.6: 2695 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 2696 | dependencies: 2697 | once: 1.4.0 2698 | wrappy: 1.0.2 2699 | dev: true 2700 | 2701 | /inherits/2.0.4: 2702 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 2703 | dev: true 2704 | 2705 | /is-binary-path/2.1.0: 2706 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 2707 | engines: {node: '>=8'} 2708 | dependencies: 2709 | binary-extensions: 2.2.0 2710 | 2711 | /is-builtin-module/3.2.0: 2712 | resolution: {integrity: sha512-phDA4oSGt7vl1n5tJvTWooWWAsXLY+2xCnxNqvKhGEzujg+A43wPlPOyDg3C8XQHN+6k/JTQWJ/j0dQh/qr+Hw==} 2713 | engines: {node: '>=6'} 2714 | dependencies: 2715 | builtin-modules: 3.3.0 2716 | dev: true 2717 | 2718 | /is-core-module/2.11.0: 2719 | resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==} 2720 | dependencies: 2721 | has: 1.0.3 2722 | 2723 | /is-docker/2.2.1: 2724 | resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} 2725 | engines: {node: '>=8'} 2726 | hasBin: true 2727 | 2728 | /is-extglob/2.1.1: 2729 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 2730 | engines: {node: '>=0.10.0'} 2731 | 2732 | /is-fullwidth-code-point/3.0.0: 2733 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 2734 | engines: {node: '>=8'} 2735 | 2736 | /is-glob/4.0.3: 2737 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 2738 | engines: {node: '>=0.10.0'} 2739 | dependencies: 2740 | is-extglob: 2.1.1 2741 | 2742 | /is-module/1.0.0: 2743 | resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} 2744 | dev: true 2745 | 2746 | /is-number/7.0.0: 2747 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 2748 | engines: {node: '>=0.12.0'} 2749 | 2750 | /is-reference/1.2.1: 2751 | resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} 2752 | dependencies: 2753 | '@types/estree': 1.0.0 2754 | dev: true 2755 | 2756 | /is-stream/3.0.0: 2757 | resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} 2758 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2759 | dev: true 2760 | 2761 | /is-what/4.1.8: 2762 | resolution: {integrity: sha512-yq8gMao5upkPoGEU9LsB2P+K3Kt8Q3fQFCGyNCWOAnJAMzEXVV9drYb0TXr42TTliLLhKIBvulgAXgtLLnwzGA==} 2763 | engines: {node: '>=12.13'} 2764 | 2765 | /is-wsl/2.2.0: 2766 | resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} 2767 | engines: {node: '>=8'} 2768 | dependencies: 2769 | is-docker: 2.2.1 2770 | 2771 | /isexe/2.0.0: 2772 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 2773 | dev: true 2774 | 2775 | /joi/17.7.0: 2776 | resolution: {integrity: sha512-1/ugc8djfn93rTE3WRKdCzGGt/EtiYKxITMO4Wiv6q5JL1gl9ePt4kBsl1S499nbosspfctIQTpYIhSmHA3WAg==} 2777 | dependencies: 2778 | '@hapi/hoek': 9.3.0 2779 | '@hapi/topo': 5.1.0 2780 | '@sideway/address': 4.1.4 2781 | '@sideway/formula': 3.0.1 2782 | '@sideway/pinpoint': 2.0.0 2783 | 2784 | /js-tokens/4.0.0: 2785 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 2786 | 2787 | /jsesc/0.5.0: 2788 | resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} 2789 | hasBin: true 2790 | 2791 | /jsesc/2.5.2: 2792 | resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} 2793 | engines: {node: '>=4'} 2794 | hasBin: true 2795 | 2796 | /json5/2.2.3: 2797 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 2798 | engines: {node: '>=6'} 2799 | hasBin: true 2800 | 2801 | /jsonfile/6.1.0: 2802 | resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} 2803 | dependencies: 2804 | universalify: 2.0.0 2805 | optionalDependencies: 2806 | graceful-fs: 4.2.10 2807 | 2808 | /kleur/4.1.5: 2809 | resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} 2810 | engines: {node: '>=6'} 2811 | dev: true 2812 | 2813 | /kolorist/1.6.0: 2814 | resolution: {integrity: sha512-dLkz37Ab97HWMx9KTes3Tbi3D1ln9fCAy2zr2YVExJasDRPGRaKcoE4fycWNtnCAJfjFqe0cnY+f8KT2JePEXQ==} 2815 | 2816 | /lilconfig/2.0.6: 2817 | resolution: {integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==} 2818 | engines: {node: '>=10'} 2819 | dev: true 2820 | 2821 | /lodash.debounce/4.0.8: 2822 | resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} 2823 | 2824 | /lodash/4.17.21: 2825 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 2826 | 2827 | /lru-cache/5.1.1: 2828 | resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} 2829 | dependencies: 2830 | yallist: 3.1.1 2831 | 2832 | /lru-cache/6.0.0: 2833 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 2834 | engines: {node: '>=10'} 2835 | dependencies: 2836 | yallist: 4.0.0 2837 | dev: true 2838 | 2839 | /magic-string/0.27.0: 2840 | resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} 2841 | engines: {node: '>=12'} 2842 | dependencies: 2843 | '@jridgewell/sourcemap-codec': 1.4.14 2844 | dev: true 2845 | 2846 | /merge-anything/5.1.4: 2847 | resolution: {integrity: sha512-7PWKwGOs5WWcpw+/OvbiFiAvEP6bv/QHiicigpqMGKIqPPAtGhBLR8LFJW+Zu6m9TXiR/a8+AiPlGG0ko1ruoQ==} 2848 | engines: {node: '>=12.13'} 2849 | dependencies: 2850 | is-what: 4.1.8 2851 | 2852 | /merge-stream/2.0.0: 2853 | resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 2854 | dev: true 2855 | 2856 | /merge2/1.4.1: 2857 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 2858 | engines: {node: '>= 8'} 2859 | 2860 | /micromatch/4.0.5: 2861 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 2862 | engines: {node: '>=8.6'} 2863 | dependencies: 2864 | braces: 3.0.2 2865 | picomatch: 2.3.1 2866 | 2867 | /mime-db/1.52.0: 2868 | resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} 2869 | engines: {node: '>= 0.6'} 2870 | 2871 | /mime-types/2.1.35: 2872 | resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} 2873 | engines: {node: '>= 0.6'} 2874 | dependencies: 2875 | mime-db: 1.52.0 2876 | 2877 | /mime/3.0.0: 2878 | resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} 2879 | engines: {node: '>=10.0.0'} 2880 | hasBin: true 2881 | dev: true 2882 | 2883 | /mimic-fn/4.0.0: 2884 | resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} 2885 | engines: {node: '>=12'} 2886 | dev: true 2887 | 2888 | /miniflare/2.11.0: 2889 | resolution: {integrity: sha512-QA18I1VQXdCo4nBtPJUcUDxW8c9xbc5ex5F61jwhkGVOISSnYdEheolESmjr8MYk28xwi0XD1ozS4rLaTONd+w==} 2890 | engines: {node: '>=16.13'} 2891 | hasBin: true 2892 | peerDependencies: 2893 | '@miniflare/storage-redis': 2.11.0 2894 | cron-schedule: ^3.0.4 2895 | ioredis: ^4.27.9 2896 | peerDependenciesMeta: 2897 | '@miniflare/storage-redis': 2898 | optional: true 2899 | cron-schedule: 2900 | optional: true 2901 | ioredis: 2902 | optional: true 2903 | dependencies: 2904 | '@miniflare/cache': 2.11.0 2905 | '@miniflare/cli-parser': 2.11.0 2906 | '@miniflare/core': 2.11.0 2907 | '@miniflare/d1': 2.11.0 2908 | '@miniflare/durable-objects': 2.11.0 2909 | '@miniflare/html-rewriter': 2.11.0 2910 | '@miniflare/http-server': 2.11.0 2911 | '@miniflare/kv': 2.11.0 2912 | '@miniflare/queues': 2.11.0 2913 | '@miniflare/r2': 2.11.0 2914 | '@miniflare/runner-vm': 2.11.0 2915 | '@miniflare/scheduler': 2.11.0 2916 | '@miniflare/shared': 2.11.0 2917 | '@miniflare/sites': 2.11.0 2918 | '@miniflare/storage-file': 2.11.0 2919 | '@miniflare/storage-memory': 2.11.0 2920 | '@miniflare/web-sockets': 2.11.0 2921 | kleur: 4.1.5 2922 | semiver: 1.1.0 2923 | source-map-support: 0.5.21 2924 | undici: 5.9.1 2925 | transitivePeerDependencies: 2926 | - bufferutil 2927 | - utf-8-validate 2928 | dev: true 2929 | 2930 | /minimatch/5.1.6: 2931 | resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} 2932 | engines: {node: '>=10'} 2933 | dependencies: 2934 | brace-expansion: 2.0.1 2935 | dev: true 2936 | 2937 | /minimist/1.2.7: 2938 | resolution: {integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==} 2939 | 2940 | /mri/1.2.0: 2941 | resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} 2942 | engines: {node: '>=4'} 2943 | 2944 | /mrmime/1.0.1: 2945 | resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==} 2946 | engines: {node: '>=10'} 2947 | 2948 | /ms/2.0.0: 2949 | resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} 2950 | 2951 | /ms/2.1.2: 2952 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 2953 | 2954 | /mustache/4.2.0: 2955 | resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==} 2956 | hasBin: true 2957 | dev: true 2958 | 2959 | /nanoid/3.3.4: 2960 | resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==} 2961 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 2962 | hasBin: true 2963 | 2964 | /negotiator/0.6.3: 2965 | resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} 2966 | engines: {node: '>= 0.6'} 2967 | 2968 | /node-forge/1.3.1: 2969 | resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} 2970 | engines: {node: '>= 6.13.0'} 2971 | dev: true 2972 | 2973 | /node-releases/2.0.8: 2974 | resolution: {integrity: sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==} 2975 | 2976 | /normalize-path/3.0.0: 2977 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 2978 | engines: {node: '>=0.10.0'} 2979 | 2980 | /normalize-range/0.1.2: 2981 | resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} 2982 | engines: {node: '>=0.10.0'} 2983 | dev: true 2984 | 2985 | /npm-run-path/5.1.0: 2986 | resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==} 2987 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2988 | dependencies: 2989 | path-key: 4.0.0 2990 | dev: true 2991 | 2992 | /npx-import/1.1.4: 2993 | resolution: {integrity: sha512-3ShymTWOgqGyNlh5lMJAejLuIv3W1K3fbI5Ewc6YErZU3Sp0PqsNs8UIU1O8z5+KVl/Du5ag56Gza9vdorGEoA==} 2994 | dependencies: 2995 | execa: 6.1.0 2996 | parse-package-name: 1.0.0 2997 | semver: 7.3.8 2998 | validate-npm-package-name: 4.0.0 2999 | dev: true 3000 | 3001 | /object-hash/3.0.0: 3002 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} 3003 | engines: {node: '>= 6'} 3004 | dev: true 3005 | 3006 | /on-finished/2.3.0: 3007 | resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} 3008 | engines: {node: '>= 0.8'} 3009 | dependencies: 3010 | ee-first: 1.1.1 3011 | 3012 | /on-headers/1.0.2: 3013 | resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} 3014 | engines: {node: '>= 0.8'} 3015 | 3016 | /once/1.4.0: 3017 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 3018 | dependencies: 3019 | wrappy: 1.0.2 3020 | dev: true 3021 | 3022 | /onetime/6.0.0: 3023 | resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} 3024 | engines: {node: '>=12'} 3025 | dependencies: 3026 | mimic-fn: 4.0.0 3027 | dev: true 3028 | 3029 | /open/8.4.0: 3030 | resolution: {integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==} 3031 | engines: {node: '>=12'} 3032 | dependencies: 3033 | define-lazy-prop: 2.0.0 3034 | is-docker: 2.2.1 3035 | is-wsl: 2.2.0 3036 | 3037 | /parse-multipart-data/1.5.0: 3038 | resolution: {integrity: sha512-ck5zaMF0ydjGfejNMnlo5YU2oJ+pT+80Jb1y4ybanT27j+zbVP/jkYmCrUGsEln0Ox/hZmuvgy8Ra7AxbXP2Mw==} 3039 | 3040 | /parse-package-name/1.0.0: 3041 | resolution: {integrity: sha512-kBeTUtcj+SkyfaW4+KBe0HtsloBJ/mKTPoxpVdA57GZiPerREsUWJOhVj9anXweFiJkm5y8FG1sxFZkZ0SN6wg==} 3042 | dev: true 3043 | 3044 | /parseurl/1.3.3: 3045 | resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} 3046 | engines: {node: '>= 0.8'} 3047 | 3048 | /path-key/3.1.1: 3049 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 3050 | engines: {node: '>=8'} 3051 | dev: true 3052 | 3053 | /path-key/4.0.0: 3054 | resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} 3055 | engines: {node: '>=12'} 3056 | dev: true 3057 | 3058 | /path-parse/1.0.7: 3059 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 3060 | 3061 | /picocolors/1.0.0: 3062 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 3063 | 3064 | /picomatch/2.3.1: 3065 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 3066 | engines: {node: '>=8.6'} 3067 | 3068 | /pify/2.3.0: 3069 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} 3070 | engines: {node: '>=0.10.0'} 3071 | dev: true 3072 | 3073 | /polka/1.0.0-next.22: 3074 | resolution: {integrity: sha512-a7tsZy5gFbJr0aUltZS97xCkbPglXuD67AMvTyZX7BTDBH384FWf0ZQF6rPvdutSxnO1vUlXM2zSLf5tCKk5RA==} 3075 | engines: {node: '>=8'} 3076 | dependencies: 3077 | '@polka/url': 1.0.0-next.21 3078 | trouter: 3.2.0 3079 | dev: true 3080 | 3081 | /postcss-import/14.1.0_postcss@8.4.21: 3082 | resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} 3083 | engines: {node: '>=10.0.0'} 3084 | peerDependencies: 3085 | postcss: ^8.0.0 3086 | dependencies: 3087 | postcss: 8.4.21 3088 | postcss-value-parser: 4.2.0 3089 | read-cache: 1.0.0 3090 | resolve: 1.22.1 3091 | dev: true 3092 | 3093 | /postcss-js/4.0.0_postcss@8.4.21: 3094 | resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==} 3095 | engines: {node: ^12 || ^14 || >= 16} 3096 | peerDependencies: 3097 | postcss: ^8.3.3 3098 | dependencies: 3099 | camelcase-css: 2.0.1 3100 | postcss: 8.4.21 3101 | dev: true 3102 | 3103 | /postcss-load-config/3.1.4_postcss@8.4.21: 3104 | resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} 3105 | engines: {node: '>= 10'} 3106 | peerDependencies: 3107 | postcss: '>=8.0.9' 3108 | ts-node: '>=9.0.0' 3109 | peerDependenciesMeta: 3110 | postcss: 3111 | optional: true 3112 | ts-node: 3113 | optional: true 3114 | dependencies: 3115 | lilconfig: 2.0.6 3116 | postcss: 8.4.21 3117 | yaml: 1.10.2 3118 | dev: true 3119 | 3120 | /postcss-nested/6.0.0_postcss@8.4.21: 3121 | resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==} 3122 | engines: {node: '>=12.0'} 3123 | peerDependencies: 3124 | postcss: ^8.2.14 3125 | dependencies: 3126 | postcss: 8.4.21 3127 | postcss-selector-parser: 6.0.11 3128 | dev: true 3129 | 3130 | /postcss-selector-parser/6.0.11: 3131 | resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==} 3132 | engines: {node: '>=4'} 3133 | dependencies: 3134 | cssesc: 3.0.0 3135 | util-deprecate: 1.0.2 3136 | dev: true 3137 | 3138 | /postcss-value-parser/4.2.0: 3139 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 3140 | dev: true 3141 | 3142 | /postcss/8.4.21: 3143 | resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==} 3144 | engines: {node: ^10 || ^12 || >=14} 3145 | dependencies: 3146 | nanoid: 3.3.4 3147 | picocolors: 1.0.0 3148 | source-map-js: 1.0.2 3149 | 3150 | /queue-microtask/1.2.3: 3151 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 3152 | 3153 | /quick-lru/5.1.1: 3154 | resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} 3155 | engines: {node: '>=10'} 3156 | dev: true 3157 | 3158 | /read-cache/1.0.0: 3159 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} 3160 | dependencies: 3161 | pify: 2.3.0 3162 | dev: true 3163 | 3164 | /readdirp/3.6.0: 3165 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 3166 | engines: {node: '>=8.10.0'} 3167 | dependencies: 3168 | picomatch: 2.3.1 3169 | 3170 | /regenerate-unicode-properties/10.1.0: 3171 | resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==} 3172 | engines: {node: '>=4'} 3173 | dependencies: 3174 | regenerate: 1.4.2 3175 | 3176 | /regenerate/1.4.2: 3177 | resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} 3178 | 3179 | /regenerator-runtime/0.13.11: 3180 | resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} 3181 | 3182 | /regenerator-transform/0.15.1: 3183 | resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==} 3184 | dependencies: 3185 | '@babel/runtime': 7.20.13 3186 | 3187 | /regexparam/1.3.0: 3188 | resolution: {integrity: sha512-6IQpFBv6e5vz1QAqI+V4k8P2e/3gRrqfCJ9FI+O1FLQTO+Uz6RXZEZOPmTJ6hlGj7gkERzY5BRCv09whKP96/g==} 3189 | engines: {node: '>=6'} 3190 | dev: true 3191 | 3192 | /regexpu-core/5.2.2: 3193 | resolution: {integrity: sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw==} 3194 | engines: {node: '>=4'} 3195 | dependencies: 3196 | regenerate: 1.4.2 3197 | regenerate-unicode-properties: 10.1.0 3198 | regjsgen: 0.7.1 3199 | regjsparser: 0.9.1 3200 | unicode-match-property-ecmascript: 2.0.0 3201 | unicode-match-property-value-ecmascript: 2.1.0 3202 | 3203 | /regjsgen/0.7.1: 3204 | resolution: {integrity: sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==} 3205 | 3206 | /regjsparser/0.9.1: 3207 | resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} 3208 | hasBin: true 3209 | dependencies: 3210 | jsesc: 0.5.0 3211 | 3212 | /require-directory/2.1.1: 3213 | resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 3214 | engines: {node: '>=0.10.0'} 3215 | 3216 | /resolve/1.22.1: 3217 | resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} 3218 | hasBin: true 3219 | dependencies: 3220 | is-core-module: 2.11.0 3221 | path-parse: 1.0.7 3222 | supports-preserve-symlinks-flag: 1.0.0 3223 | 3224 | /reusify/1.0.4: 3225 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 3226 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 3227 | 3228 | /rollup-plugin-visualizer/5.9.0_rollup@3.10.1: 3229 | resolution: {integrity: sha512-bbDOv47+Bw4C/cgs0czZqfm8L82xOZssk4ayZjG40y9zbXclNk7YikrZTDao6p7+HDiGxrN0b65SgZiVm9k1Cg==} 3230 | engines: {node: '>=14'} 3231 | hasBin: true 3232 | peerDependencies: 3233 | rollup: 2.x || 3.x 3234 | peerDependenciesMeta: 3235 | rollup: 3236 | optional: true 3237 | dependencies: 3238 | open: 8.4.0 3239 | picomatch: 2.3.1 3240 | rollup: 3.10.1 3241 | source-map: 0.7.4 3242 | yargs: 17.6.2 3243 | 3244 | /rollup-route-manifest/1.0.0_rollup@3.10.1: 3245 | resolution: {integrity: sha512-3CmcMmCLAzJDUXiO3z6386/Pt8/k9xTZv8gIHyXI8hYGoAInnYdOsFXiGGzQRMy6TXR1jUZme2qbdwjH2nFMjg==} 3246 | engines: {node: '>=8'} 3247 | peerDependencies: 3248 | rollup: '>=2.0.0' 3249 | dependencies: 3250 | rollup: 3.10.1 3251 | route-sort: 1.0.0 3252 | 3253 | /rollup/2.79.1: 3254 | resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} 3255 | engines: {node: '>=10.0.0'} 3256 | hasBin: true 3257 | optionalDependencies: 3258 | fsevents: 2.3.2 3259 | 3260 | /rollup/3.10.1: 3261 | resolution: {integrity: sha512-3Er+yel3bZbZX1g2kjVM+FW+RUWDxbG87fcqFM5/9HbPCTpbVp6JOLn7jlxnNlbu7s/N/uDA4EV/91E2gWnxzw==} 3262 | engines: {node: '>=14.18.0', npm: '>=8.0.0'} 3263 | hasBin: true 3264 | optionalDependencies: 3265 | fsevents: 2.3.2 3266 | 3267 | /route-sort/1.0.0: 3268 | resolution: {integrity: sha512-SFgmvjoIhp5S4iBEDW3XnbT+7PRuZ55oRuNjY+CDB1SGZkyCG9bqQ3/dhaZTctTBYMAvDxd2Uy9dStuaUfgJqQ==} 3269 | engines: {node: '>= 6'} 3270 | 3271 | /run-parallel/1.2.0: 3272 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 3273 | dependencies: 3274 | queue-microtask: 1.2.3 3275 | 3276 | /rxjs/7.8.0: 3277 | resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==} 3278 | dependencies: 3279 | tslib: 2.4.1 3280 | 3281 | /sade/1.8.1: 3282 | resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} 3283 | engines: {node: '>=6'} 3284 | dependencies: 3285 | mri: 1.2.0 3286 | 3287 | /safe-buffer/5.1.2: 3288 | resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} 3289 | 3290 | /selfsigned/2.1.1: 3291 | resolution: {integrity: sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==} 3292 | engines: {node: '>=10'} 3293 | dependencies: 3294 | node-forge: 1.3.1 3295 | dev: true 3296 | 3297 | /semiver/1.1.0: 3298 | resolution: {integrity: sha512-QNI2ChmuioGC1/xjyYwyZYADILWyW6AmS1UH6gDj/SFUUUS4MBAWs/7mxnkRPc/F4iHezDP+O8t0dO8WHiEOdg==} 3299 | engines: {node: '>=6'} 3300 | dev: true 3301 | 3302 | /semver/6.3.0: 3303 | resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} 3304 | hasBin: true 3305 | 3306 | /semver/7.3.8: 3307 | resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} 3308 | engines: {node: '>=10'} 3309 | hasBin: true 3310 | dependencies: 3311 | lru-cache: 6.0.0 3312 | dev: true 3313 | 3314 | /set-cookie-parser/2.5.1: 3315 | resolution: {integrity: sha512-1jeBGaKNGdEq4FgIrORu/N570dwoPYio8lSoYLWmX7sQ//0JY08Xh9o5pBcgmHQ/MbsYp/aZnOe1s1lIsbLprQ==} 3316 | 3317 | /shebang-command/2.0.0: 3318 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 3319 | engines: {node: '>=8'} 3320 | dependencies: 3321 | shebang-regex: 3.0.0 3322 | dev: true 3323 | 3324 | /shebang-regex/3.0.0: 3325 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 3326 | engines: {node: '>=8'} 3327 | dev: true 3328 | 3329 | /signal-exit/3.0.7: 3330 | resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} 3331 | dev: true 3332 | 3333 | /sirv/2.0.2: 3334 | resolution: {integrity: sha512-4Qog6aE29nIjAOKe/wowFTxOdmbEZKb+3tsLljaBRzJwtqto0BChD2zzH0LhgCSXiI+V7X+Y45v14wBZQ1TK3w==} 3335 | engines: {node: '>= 10'} 3336 | dependencies: 3337 | '@polka/url': 1.0.0-next.21 3338 | mrmime: 1.0.1 3339 | totalist: 3.0.0 3340 | 3341 | /solid-js/1.6.9: 3342 | resolution: {integrity: sha512-kV3fMmm+1C2J95c8eDOPKGfZHnuAkHUBLG4hX1Xu08bXeAIPqmxuz/QdH3B8SIdTp3EatBVIyA6RCes3hrGzpg==} 3343 | dependencies: 3344 | csstype: 3.1.1 3345 | 3346 | /solid-refresh/0.4.3_solid-js@1.6.9: 3347 | resolution: {integrity: sha512-7+4/gYsVi0BlM4PzT1PU1TB5nW3Hv8FWuB+Kw/ofWui7KQkWBf+dVZOrReQYHEmLCzytHUa2JysUXgzVALJmSw==} 3348 | peerDependencies: 3349 | solid-js: ^1.3 3350 | dependencies: 3351 | '@babel/generator': 7.20.7 3352 | '@babel/helper-module-imports': 7.18.6 3353 | '@babel/types': 7.20.7 3354 | solid-js: 1.6.9 3355 | 3356 | /solid-start-cloudflare-pages/0.2.16_beln6p34t7mdfnglvydsh3cc6m: 3357 | resolution: {integrity: sha512-AoKos338LNHEYMc2zDWPVeU+XGsfaFGSMIG2uufRkrTdFJm7KI/keD4Elwru0ryC/ws5yo+zh5D5WJJodN3EEQ==} 3358 | peerDependencies: 3359 | solid-start: '*' 3360 | vite: '*' 3361 | dependencies: 3362 | '@cloudflare/kv-asset-handler': 0.2.0 3363 | '@cloudflare/workers-types': 3.19.0 3364 | '@miniflare/core': 2.11.0 3365 | '@miniflare/http-server': 2.11.0 3366 | '@miniflare/shared': 2.11.0 3367 | '@miniflare/web-sockets': 2.11.0 3368 | '@rollup/plugin-commonjs': 24.0.1_rollup@3.10.1 3369 | '@rollup/plugin-json': 6.0.0_rollup@3.10.1 3370 | '@rollup/plugin-node-resolve': 15.0.1_rollup@3.10.1 3371 | '@types/ws': 8.5.4 3372 | miniflare: 2.11.0 3373 | rollup: 3.10.1 3374 | solid-start: 0.2.16_55umyvmfaswzxpylft3tvr3dvm 3375 | terser: 5.16.1 3376 | vite: 3.2.5 3377 | ws: 8.12.0 3378 | transitivePeerDependencies: 3379 | - '@miniflare/storage-redis' 3380 | - bufferutil 3381 | - cron-schedule 3382 | - ioredis 3383 | - utf-8-validate 3384 | dev: true 3385 | 3386 | /solid-start-node/0.2.16_f63ddrunxocrtns5sxchmwmkce: 3387 | resolution: {integrity: sha512-kOxrBl1G18Y9z3KDr/ZMnJhUQDe9PhmkxaXbKxYRxtyG1hW7ZeAw49Hw8fPVLX+CbQVA6Zq8Mv1SUXA41Ct2IA==} 3388 | peerDependencies: 3389 | solid-start: '*' 3390 | undici: ^5.8.0 3391 | vite: '*' 3392 | dependencies: 3393 | '@rollup/plugin-commonjs': 24.0.1_rollup@3.10.1 3394 | '@rollup/plugin-json': 6.0.0_rollup@3.10.1 3395 | '@rollup/plugin-node-resolve': 15.0.1_rollup@3.10.1 3396 | compression: 1.7.4 3397 | polka: 1.0.0-next.22 3398 | rollup: 3.10.1 3399 | sirv: 2.0.2 3400 | solid-start: 0.2.16_55umyvmfaswzxpylft3tvr3dvm 3401 | terser: 5.16.1 3402 | undici: 5.16.0 3403 | vite: 3.2.5 3404 | transitivePeerDependencies: 3405 | - supports-color 3406 | dev: true 3407 | 3408 | /solid-start/0.2.16_55umyvmfaswzxpylft3tvr3dvm: 3409 | resolution: {integrity: sha512-gkc14UFGBWF61qPu3nGVaB/wWKzX0r46BiOmwuMqIDJKpWAiOjzd+wDPGQOLkzVuobVGGFFcTbIUBvVZRUZ/qw==} 3410 | hasBin: true 3411 | peerDependencies: 3412 | '@solidjs/meta': ^0.28.0 3413 | '@solidjs/router': ^0.7.0 3414 | solid-js: ^1.6.2 3415 | vite: ^3.1.8 3416 | dependencies: 3417 | '@babel/core': 7.20.12 3418 | '@babel/generator': 7.20.7 3419 | '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.12 3420 | '@babel/preset-env': 7.20.2_@babel+core@7.20.12 3421 | '@babel/preset-typescript': 7.18.6_@babel+core@7.20.12 3422 | '@babel/template': 7.20.7 3423 | '@solidjs/meta': 0.28.2_solid-js@1.6.9 3424 | '@solidjs/router': 0.7.0_solid-js@1.6.9 3425 | '@types/cookie': 0.5.1 3426 | chokidar: 3.5.3 3427 | compression: 1.7.4 3428 | connect: 3.7.0 3429 | debug: 4.3.4 3430 | dequal: 2.0.3 3431 | dotenv: 16.0.3 3432 | es-module-lexer: 1.1.0 3433 | esbuild: 0.14.54 3434 | esbuild-plugin-solid: 0.4.2_e63rwa75r2qslo2sobfndo3ih4 3435 | fast-glob: 3.2.12 3436 | get-port: 6.1.2 3437 | parse-multipart-data: 1.5.0 3438 | picocolors: 1.0.0 3439 | rollup: 3.10.1 3440 | rollup-plugin-visualizer: 5.9.0_rollup@3.10.1 3441 | rollup-route-manifest: 1.0.0_rollup@3.10.1 3442 | sade: 1.8.1 3443 | set-cookie-parser: 2.5.1 3444 | sirv: 2.0.2 3445 | solid-js: 1.6.9 3446 | terser: 5.16.1 3447 | undici: 5.16.0 3448 | vite: 3.2.5 3449 | vite-plugin-inspect: 0.7.14_rollup@3.10.1+vite@3.2.5 3450 | vite-plugin-solid: 2.5.0_solid-js@1.6.9+vite@3.2.5 3451 | wait-on: 6.0.1_debug@4.3.4 3452 | transitivePeerDependencies: 3453 | - supports-color 3454 | 3455 | /source-map-js/1.0.2: 3456 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} 3457 | engines: {node: '>=0.10.0'} 3458 | 3459 | /source-map-support/0.5.21: 3460 | resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} 3461 | dependencies: 3462 | buffer-from: 1.1.2 3463 | source-map: 0.6.1 3464 | 3465 | /source-map/0.6.1: 3466 | resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} 3467 | engines: {node: '>=0.10.0'} 3468 | 3469 | /source-map/0.7.4: 3470 | resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} 3471 | engines: {node: '>= 8'} 3472 | 3473 | /stack-trace/0.0.10: 3474 | resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==} 3475 | dev: true 3476 | 3477 | /statuses/1.5.0: 3478 | resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} 3479 | engines: {node: '>= 0.6'} 3480 | 3481 | /streamsearch/1.1.0: 3482 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} 3483 | engines: {node: '>=10.0.0'} 3484 | 3485 | /string-width/4.2.3: 3486 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 3487 | engines: {node: '>=8'} 3488 | dependencies: 3489 | emoji-regex: 8.0.0 3490 | is-fullwidth-code-point: 3.0.0 3491 | strip-ansi: 6.0.1 3492 | 3493 | /strip-ansi/6.0.1: 3494 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 3495 | engines: {node: '>=8'} 3496 | dependencies: 3497 | ansi-regex: 5.0.1 3498 | 3499 | /strip-final-newline/3.0.0: 3500 | resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} 3501 | engines: {node: '>=12'} 3502 | dev: true 3503 | 3504 | /supports-color/5.5.0: 3505 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 3506 | engines: {node: '>=4'} 3507 | dependencies: 3508 | has-flag: 3.0.0 3509 | 3510 | /supports-preserve-symlinks-flag/1.0.0: 3511 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 3512 | engines: {node: '>= 0.4'} 3513 | 3514 | /tailwindcss/3.2.4_postcss@8.4.21: 3515 | resolution: {integrity: sha512-AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ==} 3516 | engines: {node: '>=12.13.0'} 3517 | hasBin: true 3518 | peerDependencies: 3519 | postcss: ^8.0.9 3520 | dependencies: 3521 | arg: 5.0.2 3522 | chokidar: 3.5.3 3523 | color-name: 1.1.4 3524 | detective: 5.2.1 3525 | didyoumean: 1.2.2 3526 | dlv: 1.1.3 3527 | fast-glob: 3.2.12 3528 | glob-parent: 6.0.2 3529 | is-glob: 4.0.3 3530 | lilconfig: 2.0.6 3531 | micromatch: 4.0.5 3532 | normalize-path: 3.0.0 3533 | object-hash: 3.0.0 3534 | picocolors: 1.0.0 3535 | postcss: 8.4.21 3536 | postcss-import: 14.1.0_postcss@8.4.21 3537 | postcss-js: 4.0.0_postcss@8.4.21 3538 | postcss-load-config: 3.1.4_postcss@8.4.21 3539 | postcss-nested: 6.0.0_postcss@8.4.21 3540 | postcss-selector-parser: 6.0.11 3541 | postcss-value-parser: 4.2.0 3542 | quick-lru: 5.1.1 3543 | resolve: 1.22.1 3544 | transitivePeerDependencies: 3545 | - ts-node 3546 | dev: true 3547 | 3548 | /terser/5.16.1: 3549 | resolution: {integrity: sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==} 3550 | engines: {node: '>=10'} 3551 | hasBin: true 3552 | dependencies: 3553 | '@jridgewell/source-map': 0.3.2 3554 | acorn: 8.8.2 3555 | commander: 2.20.3 3556 | source-map-support: 0.5.21 3557 | 3558 | /to-fast-properties/2.0.0: 3559 | resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} 3560 | engines: {node: '>=4'} 3561 | 3562 | /to-regex-range/5.0.1: 3563 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 3564 | engines: {node: '>=8.0'} 3565 | dependencies: 3566 | is-number: 7.0.0 3567 | 3568 | /totalist/3.0.0: 3569 | resolution: {integrity: sha512-eM+pCBxXO/njtF7vdFsHuqb+ElbxqtI4r5EAvk6grfAFyJ6IvWlSkfZ5T9ozC6xWw3Fj1fGoSmrl0gUs46JVIw==} 3570 | engines: {node: '>=6'} 3571 | 3572 | /trouter/3.2.0: 3573 | resolution: {integrity: sha512-rLLXbhTObLy2MBVjLC+jTnoIKw99n0GuJs9ov10J870vDw5qhTurPzsDrudNtBf5w/CZ9ctZy2p2IMmhGcel2w==} 3574 | engines: {node: '>=6'} 3575 | dependencies: 3576 | regexparam: 1.3.0 3577 | dev: true 3578 | 3579 | /tslib/2.4.1: 3580 | resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==} 3581 | 3582 | /typescript/4.9.4: 3583 | resolution: {integrity: sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==} 3584 | engines: {node: '>=4.2.0'} 3585 | hasBin: true 3586 | dev: true 3587 | 3588 | /ufo/1.0.1: 3589 | resolution: {integrity: sha512-boAm74ubXHY7KJQZLlXrtMz52qFvpsbOxDcZOnw/Wf+LS4Mmyu7JxmzD4tDLtUQtmZECypJ0FrCz4QIe6dvKRA==} 3590 | 3591 | /undici/5.16.0: 3592 | resolution: {integrity: sha512-KWBOXNv6VX+oJQhchXieUznEmnJMqgXMbs0xxH2t8q/FUAWSJvOSr/rMaZKnX5RIVq7JDn0JbP4BOnKG2SGXLQ==} 3593 | engines: {node: '>=12.18'} 3594 | dependencies: 3595 | busboy: 1.6.0 3596 | 3597 | /undici/5.9.1: 3598 | resolution: {integrity: sha512-6fB3a+SNnWEm4CJbgo0/CWR8RGcOCQP68SF4X0mxtYTq2VNN8T88NYrWVBAeSX+zb7bny2dx2iYhP3XHi00omg==} 3599 | engines: {node: '>=12.18'} 3600 | dev: true 3601 | 3602 | /unicode-canonical-property-names-ecmascript/2.0.0: 3603 | resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} 3604 | engines: {node: '>=4'} 3605 | 3606 | /unicode-match-property-ecmascript/2.0.0: 3607 | resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} 3608 | engines: {node: '>=4'} 3609 | dependencies: 3610 | unicode-canonical-property-names-ecmascript: 2.0.0 3611 | unicode-property-aliases-ecmascript: 2.1.0 3612 | 3613 | /unicode-match-property-value-ecmascript/2.1.0: 3614 | resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} 3615 | engines: {node: '>=4'} 3616 | 3617 | /unicode-property-aliases-ecmascript/2.1.0: 3618 | resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} 3619 | engines: {node: '>=4'} 3620 | 3621 | /universalify/2.0.0: 3622 | resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} 3623 | engines: {node: '>= 10.0.0'} 3624 | 3625 | /unpipe/1.0.0: 3626 | resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} 3627 | engines: {node: '>= 0.8'} 3628 | 3629 | /update-browserslist-db/1.0.10_browserslist@4.21.4: 3630 | resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} 3631 | hasBin: true 3632 | peerDependencies: 3633 | browserslist: '>= 4.21.0' 3634 | dependencies: 3635 | browserslist: 4.21.4 3636 | escalade: 3.1.1 3637 | picocolors: 1.0.0 3638 | 3639 | /urlpattern-polyfill/4.0.3: 3640 | resolution: {integrity: sha512-DOE84vZT2fEcl9gqCUTcnAw5ZY5Id55ikUcziSUntuEFL3pRvavg5kwDmTEUJkeCHInTlV/HexFomgYnzO5kdQ==} 3641 | dev: true 3642 | 3643 | /util-deprecate/1.0.2: 3644 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 3645 | dev: true 3646 | 3647 | /utils-merge/1.0.1: 3648 | resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} 3649 | engines: {node: '>= 0.4.0'} 3650 | 3651 | /validate-html-nesting/1.2.0: 3652 | resolution: {integrity: sha512-sI65QUd3T/e5wbQkdPKjikFsIVLPIaOQK+9uowPp6/k609SN8hs5eqBLrnN5DeW9Kd932Q4Imo0fzK2dxoOsCA==} 3653 | 3654 | /validate-npm-package-name/4.0.0: 3655 | resolution: {integrity: sha512-mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q==} 3656 | engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} 3657 | dependencies: 3658 | builtins: 5.0.1 3659 | dev: true 3660 | 3661 | /vary/1.1.2: 3662 | resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} 3663 | engines: {node: '>= 0.8'} 3664 | 3665 | /vite-plugin-inspect/0.7.14_rollup@3.10.1+vite@3.2.5: 3666 | resolution: {integrity: sha512-C9V93Yy2yUf941oVxIq93K6T1o0SZxoG8MdmyJsnoNDijOAGHT1rVSVjzF/uKFYvgnvLvaXioaoy6ica6aOS0g==} 3667 | engines: {node: '>=14'} 3668 | peerDependencies: 3669 | vite: ^3.1.0 || ^4.0.0 3670 | dependencies: 3671 | '@antfu/utils': 0.7.2 3672 | '@rollup/pluginutils': 5.0.2_rollup@3.10.1 3673 | debug: 4.3.4 3674 | fs-extra: 11.1.0 3675 | kolorist: 1.6.0 3676 | sirv: 2.0.2 3677 | ufo: 1.0.1 3678 | vite: 3.2.5 3679 | transitivePeerDependencies: 3680 | - rollup 3681 | - supports-color 3682 | 3683 | /vite-plugin-solid/2.5.0_solid-js@1.6.9+vite@3.2.5: 3684 | resolution: {integrity: sha512-VneGd3RyFJvwaiffsqgymeMaofn0IzQLPwDzafTV2f1agoWeeJlk5VrI5WqT9BTtLe69vNNbCJWqLhHr9fOdDw==} 3685 | peerDependencies: 3686 | solid-js: ^1.3.17 || ^1.4.0 || ^1.5.0 || ^1.6.0 3687 | vite: ^3.0.0 || ^4.0.0 3688 | dependencies: 3689 | '@babel/core': 7.20.12 3690 | '@babel/preset-typescript': 7.18.6_@babel+core@7.20.12 3691 | babel-preset-solid: 1.6.9_@babel+core@7.20.12 3692 | merge-anything: 5.1.4 3693 | solid-js: 1.6.9 3694 | solid-refresh: 0.4.3_solid-js@1.6.9 3695 | vite: 3.2.5 3696 | vitefu: 0.2.4_vite@3.2.5 3697 | transitivePeerDependencies: 3698 | - supports-color 3699 | 3700 | /vite/3.2.5: 3701 | resolution: {integrity: sha512-4mVEpXpSOgrssFZAOmGIr85wPHKvaDAcXqxVxVRZhljkJOMZi1ibLibzjLHzJvcok8BMguLc7g1W6W/GqZbLdQ==} 3702 | engines: {node: ^14.18.0 || >=16.0.0} 3703 | hasBin: true 3704 | peerDependencies: 3705 | '@types/node': '>= 14' 3706 | less: '*' 3707 | sass: '*' 3708 | stylus: '*' 3709 | sugarss: '*' 3710 | terser: ^5.4.0 3711 | peerDependenciesMeta: 3712 | '@types/node': 3713 | optional: true 3714 | less: 3715 | optional: true 3716 | sass: 3717 | optional: true 3718 | stylus: 3719 | optional: true 3720 | sugarss: 3721 | optional: true 3722 | terser: 3723 | optional: true 3724 | dependencies: 3725 | esbuild: 0.15.18 3726 | postcss: 8.4.21 3727 | resolve: 1.22.1 3728 | rollup: 2.79.1 3729 | optionalDependencies: 3730 | fsevents: 2.3.2 3731 | 3732 | /vitefu/0.2.4_vite@3.2.5: 3733 | resolution: {integrity: sha512-fanAXjSaf9xXtOOeno8wZXIhgia+CZury481LsDaV++lSvcU2R9Ch2bPh3PYFyoHW+w9LqAeYRISVQjUIew14g==} 3734 | peerDependencies: 3735 | vite: ^3.0.0 || ^4.0.0 3736 | peerDependenciesMeta: 3737 | vite: 3738 | optional: true 3739 | dependencies: 3740 | vite: 3.2.5 3741 | 3742 | /wait-on/6.0.1_debug@4.3.4: 3743 | resolution: {integrity: sha512-zht+KASY3usTY5u2LgaNqn/Cd8MukxLGjdcZxT2ns5QzDmTFc4XoWBgC+C/na+sMRZTuVygQoMYwdcVjHnYIVw==} 3744 | engines: {node: '>=10.0.0'} 3745 | hasBin: true 3746 | dependencies: 3747 | axios: 0.25.0_debug@4.3.4 3748 | joi: 17.7.0 3749 | lodash: 4.17.21 3750 | minimist: 1.2.7 3751 | rxjs: 7.8.0 3752 | transitivePeerDependencies: 3753 | - debug 3754 | 3755 | /which/2.0.2: 3756 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 3757 | engines: {node: '>= 8'} 3758 | hasBin: true 3759 | dependencies: 3760 | isexe: 2.0.0 3761 | dev: true 3762 | 3763 | /wrap-ansi/7.0.0: 3764 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 3765 | engines: {node: '>=10'} 3766 | dependencies: 3767 | ansi-styles: 4.3.0 3768 | string-width: 4.2.3 3769 | strip-ansi: 6.0.1 3770 | 3771 | /wrappy/1.0.2: 3772 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 3773 | dev: true 3774 | 3775 | /ws/8.12.0: 3776 | resolution: {integrity: sha512-kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig==} 3777 | engines: {node: '>=10.0.0'} 3778 | peerDependencies: 3779 | bufferutil: ^4.0.1 3780 | utf-8-validate: '>=5.0.2' 3781 | peerDependenciesMeta: 3782 | bufferutil: 3783 | optional: true 3784 | utf-8-validate: 3785 | optional: true 3786 | dev: true 3787 | 3788 | /xtend/4.0.2: 3789 | resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} 3790 | engines: {node: '>=0.4'} 3791 | dev: true 3792 | 3793 | /y18n/5.0.8: 3794 | resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 3795 | engines: {node: '>=10'} 3796 | 3797 | /yallist/3.1.1: 3798 | resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} 3799 | 3800 | /yallist/4.0.0: 3801 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 3802 | dev: true 3803 | 3804 | /yaml/1.10.2: 3805 | resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} 3806 | engines: {node: '>= 6'} 3807 | dev: true 3808 | 3809 | /yargs-parser/21.1.1: 3810 | resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 3811 | engines: {node: '>=12'} 3812 | 3813 | /yargs/17.6.2: 3814 | resolution: {integrity: sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==} 3815 | engines: {node: '>=12'} 3816 | dependencies: 3817 | cliui: 8.0.1 3818 | escalade: 3.1.1 3819 | get-caller-file: 2.0.5 3820 | require-directory: 2.1.1 3821 | string-width: 4.2.3 3822 | y18n: 5.0.8 3823 | yargs-parser: 21.1.1 3824 | 3825 | /youch/2.2.2: 3826 | resolution: {integrity: sha512-/FaCeG3GkuJwaMR34GHVg0l8jCbafZLHiFowSjqLlqhC6OMyf2tPJBu8UirF7/NI9X/R5ai4QfEKUCOxMAGxZQ==} 3827 | dependencies: 3828 | '@types/stack-trace': 0.0.29 3829 | cookie: 0.4.2 3830 | mustache: 4.2.0 3831 | stack-trace: 0.0.10 3832 | dev: true 3833 | -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IS2511/ChatIS/cc4db77301fd11fa1504e1fe101b982b7b87c863/public/favicon.ico -------------------------------------------------------------------------------- /public/img/Peepo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IS2511/ChatIS/cc4db77301fd11fa1504e1fe101b982b7b87c863/public/img/Peepo.png -------------------------------------------------------------------------------- /public/img/is2511-discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IS2511/ChatIS/cc4db77301fd11fa1504e1fe101b982b7b87c863/public/img/is2511-discord.png -------------------------------------------------------------------------------- /public/v3/font/Alsina_Ultrajada.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IS2511/ChatIS/cc4db77301fd11fa1504e1fe101b982b7b87c863/public/v3/font/Alsina_Ultrajada.ttf -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 | "extends": [ 4 | "config:base" 5 | ], 6 | "lockFileMaintenance": { "enabled": true } 7 | } 8 | -------------------------------------------------------------------------------- /src/components/Counter.tsx: -------------------------------------------------------------------------------- 1 | import { createSignal } from "solid-js"; 2 | 3 | export default function Counter() { 4 | const [count, setCount] = createSignal(0); 5 | return ( 6 | 12 | ); 13 | } 14 | -------------------------------------------------------------------------------- /src/components/FeatureCard.tsx: -------------------------------------------------------------------------------- 1 | import { 2 | Button, 3 | Card, 4 | CardActionArea, 5 | CardActions, 6 | CardContent, 7 | CardHeader, 8 | CardMedia, 9 | Typography, 10 | } from "@suid/material" 11 | 12 | export default function FeatureCard(props) { 13 | return ( 14 | 15 | 16 | {/* 17 | Word of the Day 18 | */} 19 | 20 | {props.title} 21 | 22 | {/* 23 | adjective 24 | */} 25 | {/* */} 26 | 27 | {props.description} 28 | 29 | {props.children} 30 | 31 | {/* 32 | 33 | */} 34 | 35 | ); 36 | } -------------------------------------------------------------------------------- /src/components/FeaturesGrid.tsx: -------------------------------------------------------------------------------- 1 | import { 2 | Grid, 3 | List, 4 | ListItem, 5 | ListItemIcon, 6 | ListItemText, 7 | Skeleton, 8 | Stack, 9 | Typography, 10 | } from "@suid/material" 11 | import FeatureCard from "~/components/FeatureCard"; 12 | 13 | import SevenTVIcon from "~/components/icon/SevenTVIcon"; 14 | import TwitchIcon from "~/components/icon/TwitchIcon"; 15 | import BTTVIcon from "~/components/icon/BTTVIcon"; 16 | import FFZIcon from "~/components/icon/FFZIcon"; 17 | import ChatterinoIcon from "~/components/icon/ChatterinoIcon"; 18 | import SevenTVNamepaint from "~/components/SevenTVNamepaint"; 19 | 20 | 21 | export default function FeaturesGrid(props) { 22 | return ( 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | The following emote providers are supported: 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | Say hello to name paints from 7TV! 63 | Like Festive Gold, 80's Pool and many more! 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | The following badge providers are supported: 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | {/* 116 | 117 | 118 | 119 | Chatterino Homies 127 | } secondary="(optional)" /> 128 | */} 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | Any font you have on your system can be used! 140 | We have some sweet defaults though, check out the VSauce font for example. 141 | 142 | 143 | 144 | 145 | And commands! 146 | 147 | Hide messages from bots and messages with commands. No more gambling addicts in your chat! 148 | 149 | 150 | 151 | 152 | 153 | 154 | {/* 155 | 156 | 157 | Any font you have on your system can be used! 158 | We have some sweet defaults though, check out the VSauce font for example. 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | Any font you have on your system can be used! 167 | We have some sweet defaults though, check out the VSauce font for example. 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | Any font you have on your system can be used! 176 | We have some sweet defaults though, check out the VSauce font for example. 177 | 178 | 179 | */} 180 | 181 | 182 | ); 183 | } -------------------------------------------------------------------------------- /src/components/MySiteTitle.tsx: -------------------------------------------------------------------------------- 1 | import {Title} from "solid-start"; 2 | 3 | export default function MySiteTitle(props) { 4 | return {props.children} • ChatIS by IS2511; 5 | } 6 | -------------------------------------------------------------------------------- /src/components/SevenTVNamepaint.tsx: -------------------------------------------------------------------------------- 1 | 2 | 3 | export default function SevenTVNamepaint(props) { 4 | // TODO: Fetch 7TV cosmetics from `https://7tv.io/v2/cosmetics?user_identifier=login` for example, 5 | // construct styles from that, and memoize the result (`useMemo()`). 6 | // Apply those styles to the `span` below based on the `props.login` prop or `props.paint` prop. 7 | 8 | return ( 9 | {props.children} 20 | ); 21 | } 22 | -------------------------------------------------------------------------------- /src/components/icon/BTTVBadIcon.tsx: -------------------------------------------------------------------------------- 1 | import { SvgIcon } from "@suid/material"; 2 | 3 | export default function BTTVBadIcon(props) { 4 | return ( 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | ); 15 | } 16 | -------------------------------------------------------------------------------- /src/components/icon/BTTVIcon.tsx: -------------------------------------------------------------------------------- 1 | import { SvgIcon } from "@suid/material"; 2 | 3 | export default function BTTVBadIcon(props) { 4 | return ( 5 | 6 | 7 | 11 | 12 | 13 | ); 14 | } 15 | -------------------------------------------------------------------------------- /src/components/icon/ChatterinoIcon.tsx: -------------------------------------------------------------------------------- 1 | import { SvgIcon } from "@suid/material"; 2 | 3 | // The SVG was generated from the original Chatterino icon using https://www.vectorizer.io/ 4 | // Hand-edited to make it look better 5 | 6 | export default function ChatterinoIcon(props) { 7 | return ( 8 | 9 | {/* */} 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 20 | ); 21 | } 22 | -------------------------------------------------------------------------------- /src/components/icon/ChatterinoIconColored.tsx: -------------------------------------------------------------------------------- 1 | import { SvgIcon } from "@suid/material"; 2 | 3 | // The SVG was generated from the original Chatterino icon using https://www.vectorizer.io/ 4 | 5 | export default function ChatterinoIconColored(props) { 6 | return ( 7 | 8 | 9 | 10 | 11 | 14 | 15 | 16 | 17 | 18 | 21 | 22 | 23 | 24 | 25 | ); 26 | } 27 | -------------------------------------------------------------------------------- /src/components/icon/FFZIcon.tsx: -------------------------------------------------------------------------------- 1 | import { SvgIcon } from "@suid/material"; 2 | 3 | export default function FFZIcon(props) { 4 | return ( 5 | 6 | 7 | 8 | 12 | 13 | 14 | 15 | ); 16 | } 17 | -------------------------------------------------------------------------------- /src/components/icon/SevenTVIcon.tsx: -------------------------------------------------------------------------------- 1 | import { SvgIcon } from "@suid/material"; 2 | 3 | export default function SevenTVIcon(props) { 4 | return ( 5 | 6 | 7 | 8 | 9 | 13 | 17 | 18 | 19 | 20 | ); 21 | } 22 | -------------------------------------------------------------------------------- /src/components/icon/TwitchIcon.tsx: -------------------------------------------------------------------------------- 1 | import { SvgIcon } from "@suid/material"; 2 | 3 | // The SVG code is from https://brand.twitch.tv/ (official Twitch brand assets) 4 | // In particular from "TwitchGlitchWhite.svg" 5 | // I've removed the XML header, the title tag and the XML namespace declarations. 6 | 7 | export default function TwitchIcon(props) { 8 | return ( 9 | 10 | {/* 11 | */} 12 | {/* xmlns:xlink="http://www.w3.org/1999/xlink" */} 13 | {/* xml:space="preserve" */} 14 | 16 | 19 | {/* Asset 3 */} 20 | 21 | {/* */} 22 | 23 | 24 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | ); 34 | } 35 | -------------------------------------------------------------------------------- /src/components/icon/TwitchIconPurple.tsx: -------------------------------------------------------------------------------- 1 | import { SvgIcon } from "@suid/material"; 2 | 3 | // The SVG code is from https://brand.twitch.tv/ (official Twitch brand assets) 4 | // In particular from "TwitchGlitchPurple.svg" 5 | // I've removed the XML header, the title tag and the XML namespace declarations. 6 | 7 | export default function TwitchIconPurple(props) { 8 | return ( 9 | 10 | {/* 11 | */} 12 | {/* xmlns:xlink="http://www.w3.org/1999/xlink" */} 13 | {/* xml:space="preserve" */} 14 | 16 | 19 | {/* Asset 2 */} 20 | 21 | 22 | 23 | 24 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | ); 34 | } 35 | -------------------------------------------------------------------------------- /src/entry-client.tsx: -------------------------------------------------------------------------------- 1 | import { mount, StartClient } from "solid-start/entry-client"; 2 | 3 | mount(() => , document); 4 | -------------------------------------------------------------------------------- /src/entry-server.tsx: -------------------------------------------------------------------------------- 1 | import { 2 | StartServer, 3 | createHandler, 4 | renderAsync, 5 | } from "solid-start/entry-server"; 6 | 7 | export default createHandler( 8 | renderAsync((event) => ) 9 | ); 10 | -------------------------------------------------------------------------------- /src/root.css: -------------------------------------------------------------------------------- 1 | /* @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; */ 4 | 5 | @font-face { 6 | font-family: Alsina; 7 | src: url(/v3/font/Alsina_Ultrajada.ttf); 8 | } 9 | -------------------------------------------------------------------------------- /src/root.tsx: -------------------------------------------------------------------------------- 1 | // @refresh reload 2 | import { createTheme, CssBaseline, ThemeProvider } from "@suid/material"; 3 | import { Suspense } from "solid-js"; 4 | import { 5 | useLocation, 6 | A, 7 | Body, 8 | ErrorBoundary, 9 | FileRoutes, 10 | Head, 11 | Html, 12 | Meta, 13 | Routes, 14 | Scripts, 15 | Title, 16 | } from "solid-start"; 17 | import "./root.css"; 18 | 19 | export default function Root() { 20 | const darkTheme = createTheme({ 21 | palette: { 22 | mode: "dark", 23 | }, 24 | }); 25 | return ( 26 | 27 | 28 | ChatIS by IS2511 29 | 30 | 31 | 35 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | ); 55 | } 56 | -------------------------------------------------------------------------------- /src/routes/[...404].tsx: -------------------------------------------------------------------------------- 1 | export default function NotFound() { 2 | return ( 3 |
4 |

5 | Not Found 6 |

7 |
8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /src/routes/v3/chat/[channel].tsx: -------------------------------------------------------------------------------- 1 | import { useParams } from "solid-start"; 2 | import MySiteTitle from "~/components/MySiteTitle"; 3 | 4 | export default function Chat() { 5 | let params = useParams<{ channel: string }>(); 6 | let channel = params.channel; 7 | 8 | return ( 9 | <> 10 | #{channel} 11 |
12 | {/*

13 | Hello world! 14 |

*/} 15 | 16 |
17 | 18 | ); 19 | } 20 | -------------------------------------------------------------------------------- /src/routes/v3/index.tsx: -------------------------------------------------------------------------------- 1 | import { 2 | Box, 3 | Container, 4 | createTheme, 5 | Stack, 6 | ThemeProvider, 7 | Typography 8 | } from "@suid/material"; 9 | 10 | import MySiteTitle from "~/components/MySiteTitle"; 11 | import FeaturesGrid from "~/components/FeaturesGrid"; 12 | 13 | export default function ChatSetup() { 14 | let theme = createTheme({ 15 | palette: { 16 | mode: "dark", 17 | // primary: { 18 | // main: '#3f51b5', 19 | // }, 20 | // secondary: { 21 | // main: '#f50057', 22 | // }, 23 | } 24 | }); 25 | 26 | return ( 27 | <> 28 | Setup 29 | {/*
*/} 30 | 31 | {/*
*/} 32 |
33 | 34 | {/* A spacer. Adding a margin makes the container (document.body) move down, ew, breaks background */} 35 | 36 | 37 | 38 | ChatIS logo (mascot Peepo) 39 | 40 | ChatIS 41 | by IS2511 42 | Setup 43 | 44 | 45 | 46 | 47 | ChatIS is a Twitch chat overlay for streamers. Put your chat on screen! 48 | 49 | 50 | Some features: 51 | 52 | 53 | 54 | 55 | 56 | 57 | {/*

58 | Hello world! 59 |

60 | */} 61 |
62 | 63 | 64 | ); 65 | } 66 | -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: ["./src/**/*.{html,js,jsx,ts,tsx}"], 4 | theme: { 5 | extend: {} 6 | }, 7 | plugins: [] 8 | }; 9 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "allowSyntheticDefaultImports": true, 4 | "esModuleInterop": true, 5 | "target": "ESNext", 6 | "module": "ESNext", 7 | "moduleResolution": "node", 8 | "jsxImportSource": "solid-js", 9 | "jsx": "preserve", 10 | "strict": true, 11 | "types": ["vite/client"], 12 | "baseUrl": "./", 13 | "paths": { 14 | "~/*": ["./src/*"] 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | import cloudflare from "solid-start-cloudflare-pages"; 2 | import solid from "solid-start/vite"; 3 | import suidPlugin from "@suid/vite-plugin"; 4 | import { defineConfig } from "vite"; 5 | 6 | export default defineConfig({ 7 | plugins: [ 8 | suidPlugin(), 9 | // TODO: Turn on SSR when SUID adds support for it (upstream moment) 10 | solid({ ssr: false, adapter: cloudflare({})}), 11 | ], 12 | }); 13 | --------------------------------------------------------------------------------