cdk-cost-analyzer 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (228) hide show
  1. package/.cdk-cost-analyzer-cache/metadata.json +12 -0
  2. package/.gitlab-ci.yml +214 -0
  3. package/.husky/pre-commit +12 -0
  4. package/.kiro/hooks/accessibility-audit.kiro.hook +18 -0
  5. package/.kiro/hooks/api-schema-validation.kiro.hook +21 -0
  6. package/.kiro/hooks/auto-test-on-save.kiro.hook +19 -0
  7. package/.kiro/hooks/cdk-synth-on-change.kiro.hook +20 -0
  8. package/.kiro/hooks/code-coverage-check.kiro.hook +14 -0
  9. package/.kiro/hooks/commit-message-helper.kiro.hook +14 -0
  10. package/.kiro/hooks/dependency-update-check.kiro.hook +14 -0
  11. package/.kiro/hooks/env-file-validation.kiro.hook +18 -0
  12. package/.kiro/hooks/lint-and-format-on-save.kiro.hook +21 -0
  13. package/.kiro/hooks/mcp-config-validation.kiro.hook +17 -0
  14. package/.kiro/hooks/mcp-server-test.kiro.hook +14 -0
  15. package/.kiro/hooks/performance-analysis.kiro.hook +14 -0
  16. package/.kiro/hooks/readme-spell-check.kiro.hook +14 -0
  17. package/.kiro/hooks/security-scan-on-dependency-change.kiro.hook +21 -0
  18. package/.kiro/hooks/translation-update.kiro.hook +18 -0
  19. package/.kiro/hooks/update-documentation.kiro.hook +18 -0
  20. package/.kiro/settings/mcp.json +20 -0
  21. package/.kiro/specs/cdk-cost-analyzer/design.md +620 -0
  22. package/.kiro/specs/cdk-cost-analyzer/requirements.md +183 -0
  23. package/.kiro/specs/cdk-cost-analyzer/tasks.md +357 -0
  24. package/.kiro/specs/github-actions-ci/design.md +281 -0
  25. package/.kiro/specs/github-actions-ci/requirements.md +86 -0
  26. package/.kiro/specs/github-actions-ci/tasks.md +115 -0
  27. package/.kiro/specs/nlb-calculator-test-coverage/design.md +190 -0
  28. package/.kiro/specs/nlb-calculator-test-coverage/requirements.md +84 -0
  29. package/.kiro/specs/nlb-calculator-test-coverage/tasks.md +150 -0
  30. package/.kiro/specs/production-readiness/design.md +1213 -0
  31. package/.kiro/specs/production-readiness/requirements.md +312 -0
  32. package/.kiro/specs/production-readiness/tasks.md +269 -0
  33. package/.kiro/specs/repository-cleanup/design.md +283 -0
  34. package/.kiro/specs/repository-cleanup/requirements.md +74 -0
  35. package/.kiro/specs/repository-cleanup/tasks.md +64 -0
  36. package/.kiro/steering/aws-cli-best-practices.md +41 -0
  37. package/.kiro/steering/cdk-best-practices.md +49 -0
  38. package/.kiro/steering/development-standards.md +54 -0
  39. package/.kiro/steering/docker-best-practices.md +34 -0
  40. package/.kiro/steering/documentation-style.md +151 -0
  41. package/.kiro/steering/git-best-practices.md +37 -0
  42. package/.kiro/steering/mcp-best-practices.md +95 -0
  43. package/.kiro/steering/python-best-practices.md +48 -0
  44. package/.kiro/steering/react-best-practices.md +44 -0
  45. package/.kiro/steering/security-best-practices.md +41 -0
  46. package/.kiro/steering/testing-best-practices.md +59 -0
  47. package/.kiro/steering/typescript-best-practices.md +40 -0
  48. package/CHANGELOG.md +49 -0
  49. package/CONTRIBUTING.md +258 -0
  50. package/LICENSE +19 -0
  51. package/README.md +480 -0
  52. package/SECURITY.md +117 -0
  53. package/dist/api/index.d.ts +11 -0
  54. package/dist/api/index.js +65 -0
  55. package/dist/api/types.d.ts +15 -0
  56. package/dist/api/types.js +3 -0
  57. package/dist/cli/index.d.ts +2 -0
  58. package/dist/cli/index.js +262 -0
  59. package/dist/config/ConfigManager.d.ts +40 -0
  60. package/dist/config/ConfigManager.js +238 -0
  61. package/dist/config/index.d.ts +2 -0
  62. package/dist/config/index.js +19 -0
  63. package/dist/config/types.d.ts +72 -0
  64. package/dist/config/types.js +15 -0
  65. package/dist/diff/DiffEngine.d.ts +7 -0
  66. package/dist/diff/DiffEngine.js +73 -0
  67. package/dist/diff/index.d.ts +2 -0
  68. package/dist/diff/index.js +21 -0
  69. package/dist/diff/types.d.ts +20 -0
  70. package/dist/diff/types.js +3 -0
  71. package/dist/integrations/GitLabIntegration.d.ts +7 -0
  72. package/dist/integrations/GitLabIntegration.js +45 -0
  73. package/dist/integrations/index.d.ts +2 -0
  74. package/dist/integrations/index.js +21 -0
  75. package/dist/integrations/types.d.ts +11 -0
  76. package/dist/integrations/types.js +13 -0
  77. package/dist/parser/TemplateParser.d.ts +8 -0
  78. package/dist/parser/TemplateParser.js +75 -0
  79. package/dist/parser/index.d.ts +2 -0
  80. package/dist/parser/index.js +22 -0
  81. package/dist/parser/types.d.ts +30 -0
  82. package/dist/parser/types.js +3 -0
  83. package/dist/pipeline/PipelineOrchestrator.d.ts +23 -0
  84. package/dist/pipeline/PipelineOrchestrator.js +191 -0
  85. package/dist/pipeline/index.d.ts +2 -0
  86. package/dist/pipeline/index.js +19 -0
  87. package/dist/pipeline/types.d.ts +41 -0
  88. package/dist/pipeline/types.js +13 -0
  89. package/dist/pricing/CacheManager.d.ts +75 -0
  90. package/dist/pricing/CacheManager.js +195 -0
  91. package/dist/pricing/PricingClient.d.ts +17 -0
  92. package/dist/pricing/PricingClient.js +122 -0
  93. package/dist/pricing/PricingService.d.ts +16 -0
  94. package/dist/pricing/PricingService.js +149 -0
  95. package/dist/pricing/calculators/ALBCalculator.d.ts +16 -0
  96. package/dist/pricing/calculators/ALBCalculator.js +163 -0
  97. package/dist/pricing/calculators/APIGatewayCalculator.d.ts +10 -0
  98. package/dist/pricing/calculators/APIGatewayCalculator.js +177 -0
  99. package/dist/pricing/calculators/CloudFrontCalculator.d.ts +59 -0
  100. package/dist/pricing/calculators/CloudFrontCalculator.js +151 -0
  101. package/dist/pricing/calculators/DynamoDBCalculator.d.ts +9 -0
  102. package/dist/pricing/calculators/DynamoDBCalculator.js +146 -0
  103. package/dist/pricing/calculators/EC2Calculator.d.ts +7 -0
  104. package/dist/pricing/calculators/EC2Calculator.js +80 -0
  105. package/dist/pricing/calculators/ECSCalculator.d.ts +9 -0
  106. package/dist/pricing/calculators/ECSCalculator.js +116 -0
  107. package/dist/pricing/calculators/ElastiCacheCalculator.d.ts +8 -0
  108. package/dist/pricing/calculators/ElastiCacheCalculator.js +106 -0
  109. package/dist/pricing/calculators/LambdaCalculator.d.ts +13 -0
  110. package/dist/pricing/calculators/LambdaCalculator.js +111 -0
  111. package/dist/pricing/calculators/NLBCalculator.d.ts +16 -0
  112. package/dist/pricing/calculators/NLBCalculator.js +138 -0
  113. package/dist/pricing/calculators/NatGatewayCalculator.d.ts +12 -0
  114. package/dist/pricing/calculators/NatGatewayCalculator.js +116 -0
  115. package/dist/pricing/calculators/RDSCalculator.d.ts +9 -0
  116. package/dist/pricing/calculators/RDSCalculator.js +103 -0
  117. package/dist/pricing/calculators/S3Calculator.d.ts +8 -0
  118. package/dist/pricing/calculators/S3Calculator.js +68 -0
  119. package/dist/pricing/calculators/VPCEndpointCalculator.d.ts +12 -0
  120. package/dist/pricing/calculators/VPCEndpointCalculator.js +129 -0
  121. package/dist/pricing/index.d.ts +10 -0
  122. package/dist/pricing/index.js +37 -0
  123. package/dist/pricing/types.d.ts +53 -0
  124. package/dist/pricing/types.js +22 -0
  125. package/dist/releasetag.txt +1 -0
  126. package/dist/reporter/Reporter.d.ts +18 -0
  127. package/dist/reporter/Reporter.js +412 -0
  128. package/dist/reporter/index.d.ts +2 -0
  129. package/dist/reporter/index.js +21 -0
  130. package/dist/reporter/types.d.ts +72 -0
  131. package/dist/reporter/types.js +3 -0
  132. package/dist/synthesis/SynthesisOrchestrator.d.ts +26 -0
  133. package/dist/synthesis/SynthesisOrchestrator.js +243 -0
  134. package/dist/synthesis/index.d.ts +2 -0
  135. package/dist/synthesis/index.js +19 -0
  136. package/dist/synthesis/types.d.ts +17 -0
  137. package/dist/synthesis/types.js +13 -0
  138. package/dist/threshold/ThresholdEnforcer.d.ts +29 -0
  139. package/dist/threshold/ThresholdEnforcer.js +143 -0
  140. package/dist/threshold/index.d.ts +2 -0
  141. package/dist/threshold/index.js +19 -0
  142. package/dist/threshold/types.d.ts +15 -0
  143. package/dist/threshold/types.js +17 -0
  144. package/docs/CALCULATORS.md +820 -0
  145. package/docs/CI_CD.md +608 -0
  146. package/docs/CONFIGURATION.md +407 -0
  147. package/docs/DEVELOPMENT.md +387 -0
  148. package/docs/RELEASE.md +223 -0
  149. package/docs/TROUBLESHOOTING.md +847 -0
  150. package/examples/.cdk-cost-analyzer.yml +85 -0
  151. package/examples/.gitlab-ci.yml +125 -0
  152. package/examples/api-usage.js +26 -0
  153. package/examples/complex/base.json +16 -0
  154. package/examples/complex/target.json +29 -0
  155. package/examples/monorepo/.gitlab-ci.yml +251 -0
  156. package/examples/monorepo/README.md +341 -0
  157. package/examples/monorepo/package.json +27 -0
  158. package/examples/monorepo/packages/backend-infra/.cdk-cost-analyzer.yml +34 -0
  159. package/examples/monorepo/packages/backend-infra/bin/app.ts +16 -0
  160. package/examples/monorepo/packages/backend-infra/cdk.json +7 -0
  161. package/examples/monorepo/packages/backend-infra/lib/backend-stack.ts +128 -0
  162. package/examples/monorepo/packages/backend-infra/package.json +30 -0
  163. package/examples/monorepo/packages/backend-infra/tsconfig.json +11 -0
  164. package/examples/monorepo/packages/data-infra/.cdk-cost-analyzer.yml +38 -0
  165. package/examples/monorepo/packages/data-infra/bin/app.ts +16 -0
  166. package/examples/monorepo/packages/data-infra/cdk.json +7 -0
  167. package/examples/monorepo/packages/data-infra/lib/data-stack.ts +121 -0
  168. package/examples/monorepo/packages/data-infra/package.json +30 -0
  169. package/examples/monorepo/packages/data-infra/tsconfig.json +11 -0
  170. package/examples/monorepo/packages/frontend-infra/.cdk-cost-analyzer.yml +31 -0
  171. package/examples/monorepo/packages/frontend-infra/bin/app.ts +16 -0
  172. package/examples/monorepo/packages/frontend-infra/cdk.json +7 -0
  173. package/examples/monorepo/packages/frontend-infra/lib/frontend-stack.ts +60 -0
  174. package/examples/monorepo/packages/frontend-infra/package.json +30 -0
  175. package/examples/monorepo/packages/frontend-infra/tsconfig.json +11 -0
  176. package/examples/monorepo/tsconfig.json +35 -0
  177. package/examples/multi-stack/.cdk-cost-analyzer.yml +72 -0
  178. package/examples/multi-stack/.gitlab-ci.yml +184 -0
  179. package/examples/multi-stack/README.md +279 -0
  180. package/examples/multi-stack/bin/app.ts +36 -0
  181. package/examples/multi-stack/cdk.json +72 -0
  182. package/examples/multi-stack/lib/compute-stack.ts +128 -0
  183. package/examples/multi-stack/lib/networking-stack.ts +69 -0
  184. package/examples/multi-stack/lib/storage-stack.ts +141 -0
  185. package/examples/multi-stack/package-lock.json +4437 -0
  186. package/examples/multi-stack/package.json +42 -0
  187. package/examples/multi-stack/tsconfig.json +34 -0
  188. package/examples/simple/base.json +8 -0
  189. package/examples/simple/target.json +14 -0
  190. package/examples/single-stack/.NVP +0 -0
  191. package/examples/single-stack/.cdk-cost-analyzer.yml +52 -0
  192. package/examples/single-stack/.gitlab-ci.yml +126 -0
  193. package/examples/single-stack/README.md +184 -0
  194. package/examples/single-stack/UeK +0 -0
  195. package/examples/single-stack/bin/app.ts +16 -0
  196. package/examples/single-stack/cdk.json +72 -0
  197. package/examples/single-stack/lib/infrastructure-stack.ts +119 -0
  198. package/examples/single-stack/package-lock.json +4443 -0
  199. package/examples/single-stack/package.json +38 -0
  200. package/examples/single-stack/tsconfig.json +34 -0
  201. package/package.json +139 -0
  202. package/test-cdk-project/README-COMPUTE.md +141 -0
  203. package/test-cdk-project/README.md +95 -0
  204. package/test-cdk-project/app-with-compute.js +102 -0
  205. package/test-cdk-project/app.js +81 -0
  206. package/test-cdk-project/cdk-compute.json +3 -0
  207. package/test-cdk-project/cdk.context.json +7 -0
  208. package/test-cdk-project/cdk.json +3 -0
  209. package/test-cdk-project/cdk.out/TestStack.assets.json +21 -0
  210. package/test-cdk-project/cdk.out/TestStack.template.json +115 -0
  211. package/test-cdk-project/cdk.out/cdk.out +1 -0
  212. package/test-cdk-project/cdk.out/manifest.json +503 -0
  213. package/test-cdk-project/cdk.out/tree.json +1 -0
  214. package/test-cdk-project/cdk.out.base/TestStack.assets.json +21 -0
  215. package/test-cdk-project/cdk.out.base/TestStack.template.json +115 -0
  216. package/test-cdk-project/cdk.out.base/cdk.out +1 -0
  217. package/test-cdk-project/cdk.out.base/manifest.json +503 -0
  218. package/test-cdk-project/cdk.out.base/tree.json +1 -0
  219. package/test-cdk-project/cdk.out.target/TestStack.assets.json +21 -0
  220. package/test-cdk-project/cdk.out.target/TestStack.template.json +183 -0
  221. package/test-cdk-project/cdk.out.target/cdk.out +1 -0
  222. package/test-cdk-project/cdk.out.target/manifest.json +521 -0
  223. package/test-cdk-project/cdk.out.target/tree.json +1 -0
  224. package/test-cdk-project/package-lock.json +422 -0
  225. package/test-cdk-project/package.json +17 -0
  226. package/tools/workflows/README.md +102 -0
  227. package/tools/workflows/validate-workflows.js +109 -0
  228. package/tools/workflows/workflow-utils.ts +181 -0
@@ -0,0 +1,4437 @@
1
+ {
2
+ "name": "cdk-cost-analyzer-multi-stack-example",
3
+ "version": "1.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "cdk-cost-analyzer-multi-stack-example",
9
+ "version": "1.0.0",
10
+ "license": "MIT",
11
+ "dependencies": {
12
+ "aws-cdk-lib": "^2.233.0",
13
+ "constructs": "^10.4.2"
14
+ },
15
+ "bin": {
16
+ "multi-stack": "bin/app.js"
17
+ },
18
+ "devDependencies": {
19
+ "@types/jest": "^29.5.14",
20
+ "@types/node": "^22.10.2",
21
+ "aws-cdk": "^2.233.0",
22
+ "jest": "^29.7.0",
23
+ "ts-jest": "^29.2.5",
24
+ "ts-node": "^10.9.2",
25
+ "typescript": "^5.7.2"
26
+ }
27
+ },
28
+ "node_modules/@aws-cdk/asset-awscli-v1": {
29
+ "version": "2.2.242",
30
+ "resolved": "https://registry.npmjs.org/@aws-cdk/asset-awscli-v1/-/asset-awscli-v1-2.2.242.tgz",
31
+ "integrity": "sha512-4c1bAy2ISzcdKXYS1k4HYZsNrgiwbiDzj36ybwFVxEWZXVAP0dimQTCaB9fxu7sWzEjw3d+eaw6Fon+QTfTIpQ==",
32
+ "license": "Apache-2.0"
33
+ },
34
+ "node_modules/@aws-cdk/asset-node-proxy-agent-v6": {
35
+ "version": "2.1.0",
36
+ "resolved": "https://registry.npmjs.org/@aws-cdk/asset-node-proxy-agent-v6/-/asset-node-proxy-agent-v6-2.1.0.tgz",
37
+ "integrity": "sha512-7bY3J8GCVxLupn/kNmpPc5VJz8grx+4RKfnnJiO1LG+uxkZfANZG3RMHhE+qQxxwkyQ9/MfPtTpf748UhR425A==",
38
+ "license": "Apache-2.0"
39
+ },
40
+ "node_modules/@aws-cdk/cloud-assembly-schema": {
41
+ "version": "48.20.0",
42
+ "resolved": "https://registry.npmjs.org/@aws-cdk/cloud-assembly-schema/-/cloud-assembly-schema-48.20.0.tgz",
43
+ "integrity": "sha512-+eeiav9LY4wbF/EFuCt/vfvi/Zoxo8bf94PW5clbMraChEliq83w4TbRVy0jB9jE0v1ooFTtIjSQkowSPkfISg==",
44
+ "bundleDependencies": [
45
+ "jsonschema",
46
+ "semver"
47
+ ],
48
+ "license": "Apache-2.0",
49
+ "dependencies": {
50
+ "jsonschema": "~1.4.1",
51
+ "semver": "^7.7.2"
52
+ },
53
+ "engines": {
54
+ "node": ">= 18.0.0"
55
+ }
56
+ },
57
+ "node_modules/@aws-cdk/cloud-assembly-schema/node_modules/jsonschema": {
58
+ "version": "1.4.1",
59
+ "inBundle": true,
60
+ "license": "MIT",
61
+ "engines": {
62
+ "node": "*"
63
+ }
64
+ },
65
+ "node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver": {
66
+ "version": "7.7.2",
67
+ "inBundle": true,
68
+ "license": "ISC",
69
+ "bin": {
70
+ "semver": "bin/semver.js"
71
+ },
72
+ "engines": {
73
+ "node": ">=10"
74
+ }
75
+ },
76
+ "node_modules/@babel/code-frame": {
77
+ "version": "7.27.1",
78
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
79
+ "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
80
+ "dev": true,
81
+ "license": "MIT",
82
+ "dependencies": {
83
+ "@babel/helper-validator-identifier": "^7.27.1",
84
+ "js-tokens": "^4.0.0",
85
+ "picocolors": "^1.1.1"
86
+ },
87
+ "engines": {
88
+ "node": ">=6.9.0"
89
+ }
90
+ },
91
+ "node_modules/@babel/compat-data": {
92
+ "version": "7.28.5",
93
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz",
94
+ "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==",
95
+ "dev": true,
96
+ "license": "MIT",
97
+ "engines": {
98
+ "node": ">=6.9.0"
99
+ }
100
+ },
101
+ "node_modules/@babel/core": {
102
+ "version": "7.28.5",
103
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz",
104
+ "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==",
105
+ "dev": true,
106
+ "license": "MIT",
107
+ "dependencies": {
108
+ "@babel/code-frame": "^7.27.1",
109
+ "@babel/generator": "^7.28.5",
110
+ "@babel/helper-compilation-targets": "^7.27.2",
111
+ "@babel/helper-module-transforms": "^7.28.3",
112
+ "@babel/helpers": "^7.28.4",
113
+ "@babel/parser": "^7.28.5",
114
+ "@babel/template": "^7.27.2",
115
+ "@babel/traverse": "^7.28.5",
116
+ "@babel/types": "^7.28.5",
117
+ "@jridgewell/remapping": "^2.3.5",
118
+ "convert-source-map": "^2.0.0",
119
+ "debug": "^4.1.0",
120
+ "gensync": "^1.0.0-beta.2",
121
+ "json5": "^2.2.3",
122
+ "semver": "^6.3.1"
123
+ },
124
+ "engines": {
125
+ "node": ">=6.9.0"
126
+ },
127
+ "funding": {
128
+ "type": "opencollective",
129
+ "url": "https://opencollective.com/babel"
130
+ }
131
+ },
132
+ "node_modules/@babel/generator": {
133
+ "version": "7.28.5",
134
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz",
135
+ "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==",
136
+ "dev": true,
137
+ "license": "MIT",
138
+ "dependencies": {
139
+ "@babel/parser": "^7.28.5",
140
+ "@babel/types": "^7.28.5",
141
+ "@jridgewell/gen-mapping": "^0.3.12",
142
+ "@jridgewell/trace-mapping": "^0.3.28",
143
+ "jsesc": "^3.0.2"
144
+ },
145
+ "engines": {
146
+ "node": ">=6.9.0"
147
+ }
148
+ },
149
+ "node_modules/@babel/helper-compilation-targets": {
150
+ "version": "7.27.2",
151
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz",
152
+ "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==",
153
+ "dev": true,
154
+ "license": "MIT",
155
+ "dependencies": {
156
+ "@babel/compat-data": "^7.27.2",
157
+ "@babel/helper-validator-option": "^7.27.1",
158
+ "browserslist": "^4.24.0",
159
+ "lru-cache": "^5.1.1",
160
+ "semver": "^6.3.1"
161
+ },
162
+ "engines": {
163
+ "node": ">=6.9.0"
164
+ }
165
+ },
166
+ "node_modules/@babel/helper-globals": {
167
+ "version": "7.28.0",
168
+ "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
169
+ "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
170
+ "dev": true,
171
+ "license": "MIT",
172
+ "engines": {
173
+ "node": ">=6.9.0"
174
+ }
175
+ },
176
+ "node_modules/@babel/helper-module-imports": {
177
+ "version": "7.27.1",
178
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz",
179
+ "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==",
180
+ "dev": true,
181
+ "license": "MIT",
182
+ "dependencies": {
183
+ "@babel/traverse": "^7.27.1",
184
+ "@babel/types": "^7.27.1"
185
+ },
186
+ "engines": {
187
+ "node": ">=6.9.0"
188
+ }
189
+ },
190
+ "node_modules/@babel/helper-module-transforms": {
191
+ "version": "7.28.3",
192
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz",
193
+ "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==",
194
+ "dev": true,
195
+ "license": "MIT",
196
+ "dependencies": {
197
+ "@babel/helper-module-imports": "^7.27.1",
198
+ "@babel/helper-validator-identifier": "^7.27.1",
199
+ "@babel/traverse": "^7.28.3"
200
+ },
201
+ "engines": {
202
+ "node": ">=6.9.0"
203
+ },
204
+ "peerDependencies": {
205
+ "@babel/core": "^7.0.0"
206
+ }
207
+ },
208
+ "node_modules/@babel/helper-plugin-utils": {
209
+ "version": "7.27.1",
210
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz",
211
+ "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==",
212
+ "dev": true,
213
+ "license": "MIT",
214
+ "engines": {
215
+ "node": ">=6.9.0"
216
+ }
217
+ },
218
+ "node_modules/@babel/helper-string-parser": {
219
+ "version": "7.27.1",
220
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
221
+ "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
222
+ "dev": true,
223
+ "license": "MIT",
224
+ "engines": {
225
+ "node": ">=6.9.0"
226
+ }
227
+ },
228
+ "node_modules/@babel/helper-validator-identifier": {
229
+ "version": "7.28.5",
230
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
231
+ "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
232
+ "dev": true,
233
+ "license": "MIT",
234
+ "engines": {
235
+ "node": ">=6.9.0"
236
+ }
237
+ },
238
+ "node_modules/@babel/helper-validator-option": {
239
+ "version": "7.27.1",
240
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
241
+ "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
242
+ "dev": true,
243
+ "license": "MIT",
244
+ "engines": {
245
+ "node": ">=6.9.0"
246
+ }
247
+ },
248
+ "node_modules/@babel/helpers": {
249
+ "version": "7.28.4",
250
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz",
251
+ "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==",
252
+ "dev": true,
253
+ "license": "MIT",
254
+ "dependencies": {
255
+ "@babel/template": "^7.27.2",
256
+ "@babel/types": "^7.28.4"
257
+ },
258
+ "engines": {
259
+ "node": ">=6.9.0"
260
+ }
261
+ },
262
+ "node_modules/@babel/parser": {
263
+ "version": "7.28.5",
264
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz",
265
+ "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==",
266
+ "dev": true,
267
+ "license": "MIT",
268
+ "dependencies": {
269
+ "@babel/types": "^7.28.5"
270
+ },
271
+ "bin": {
272
+ "parser": "bin/babel-parser.js"
273
+ },
274
+ "engines": {
275
+ "node": ">=6.0.0"
276
+ }
277
+ },
278
+ "node_modules/@babel/plugin-syntax-async-generators": {
279
+ "version": "7.8.4",
280
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
281
+ "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
282
+ "dev": true,
283
+ "license": "MIT",
284
+ "dependencies": {
285
+ "@babel/helper-plugin-utils": "^7.8.0"
286
+ },
287
+ "peerDependencies": {
288
+ "@babel/core": "^7.0.0-0"
289
+ }
290
+ },
291
+ "node_modules/@babel/plugin-syntax-bigint": {
292
+ "version": "7.8.3",
293
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
294
+ "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==",
295
+ "dev": true,
296
+ "license": "MIT",
297
+ "dependencies": {
298
+ "@babel/helper-plugin-utils": "^7.8.0"
299
+ },
300
+ "peerDependencies": {
301
+ "@babel/core": "^7.0.0-0"
302
+ }
303
+ },
304
+ "node_modules/@babel/plugin-syntax-class-properties": {
305
+ "version": "7.12.13",
306
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz",
307
+ "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==",
308
+ "dev": true,
309
+ "license": "MIT",
310
+ "dependencies": {
311
+ "@babel/helper-plugin-utils": "^7.12.13"
312
+ },
313
+ "peerDependencies": {
314
+ "@babel/core": "^7.0.0-0"
315
+ }
316
+ },
317
+ "node_modules/@babel/plugin-syntax-class-static-block": {
318
+ "version": "7.14.5",
319
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz",
320
+ "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==",
321
+ "dev": true,
322
+ "license": "MIT",
323
+ "dependencies": {
324
+ "@babel/helper-plugin-utils": "^7.14.5"
325
+ },
326
+ "engines": {
327
+ "node": ">=6.9.0"
328
+ },
329
+ "peerDependencies": {
330
+ "@babel/core": "^7.0.0-0"
331
+ }
332
+ },
333
+ "node_modules/@babel/plugin-syntax-import-attributes": {
334
+ "version": "7.27.1",
335
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz",
336
+ "integrity": "sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==",
337
+ "dev": true,
338
+ "license": "MIT",
339
+ "dependencies": {
340
+ "@babel/helper-plugin-utils": "^7.27.1"
341
+ },
342
+ "engines": {
343
+ "node": ">=6.9.0"
344
+ },
345
+ "peerDependencies": {
346
+ "@babel/core": "^7.0.0-0"
347
+ }
348
+ },
349
+ "node_modules/@babel/plugin-syntax-import-meta": {
350
+ "version": "7.10.4",
351
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
352
+ "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
353
+ "dev": true,
354
+ "license": "MIT",
355
+ "dependencies": {
356
+ "@babel/helper-plugin-utils": "^7.10.4"
357
+ },
358
+ "peerDependencies": {
359
+ "@babel/core": "^7.0.0-0"
360
+ }
361
+ },
362
+ "node_modules/@babel/plugin-syntax-json-strings": {
363
+ "version": "7.8.3",
364
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
365
+ "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
366
+ "dev": true,
367
+ "license": "MIT",
368
+ "dependencies": {
369
+ "@babel/helper-plugin-utils": "^7.8.0"
370
+ },
371
+ "peerDependencies": {
372
+ "@babel/core": "^7.0.0-0"
373
+ }
374
+ },
375
+ "node_modules/@babel/plugin-syntax-jsx": {
376
+ "version": "7.27.1",
377
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz",
378
+ "integrity": "sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==",
379
+ "dev": true,
380
+ "license": "MIT",
381
+ "dependencies": {
382
+ "@babel/helper-plugin-utils": "^7.27.1"
383
+ },
384
+ "engines": {
385
+ "node": ">=6.9.0"
386
+ },
387
+ "peerDependencies": {
388
+ "@babel/core": "^7.0.0-0"
389
+ }
390
+ },
391
+ "node_modules/@babel/plugin-syntax-logical-assignment-operators": {
392
+ "version": "7.10.4",
393
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
394
+ "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
395
+ "dev": true,
396
+ "license": "MIT",
397
+ "dependencies": {
398
+ "@babel/helper-plugin-utils": "^7.10.4"
399
+ },
400
+ "peerDependencies": {
401
+ "@babel/core": "^7.0.0-0"
402
+ }
403
+ },
404
+ "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": {
405
+ "version": "7.8.3",
406
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
407
+ "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
408
+ "dev": true,
409
+ "license": "MIT",
410
+ "dependencies": {
411
+ "@babel/helper-plugin-utils": "^7.8.0"
412
+ },
413
+ "peerDependencies": {
414
+ "@babel/core": "^7.0.0-0"
415
+ }
416
+ },
417
+ "node_modules/@babel/plugin-syntax-numeric-separator": {
418
+ "version": "7.10.4",
419
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
420
+ "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
421
+ "dev": true,
422
+ "license": "MIT",
423
+ "dependencies": {
424
+ "@babel/helper-plugin-utils": "^7.10.4"
425
+ },
426
+ "peerDependencies": {
427
+ "@babel/core": "^7.0.0-0"
428
+ }
429
+ },
430
+ "node_modules/@babel/plugin-syntax-object-rest-spread": {
431
+ "version": "7.8.3",
432
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
433
+ "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
434
+ "dev": true,
435
+ "license": "MIT",
436
+ "dependencies": {
437
+ "@babel/helper-plugin-utils": "^7.8.0"
438
+ },
439
+ "peerDependencies": {
440
+ "@babel/core": "^7.0.0-0"
441
+ }
442
+ },
443
+ "node_modules/@babel/plugin-syntax-optional-catch-binding": {
444
+ "version": "7.8.3",
445
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
446
+ "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
447
+ "dev": true,
448
+ "license": "MIT",
449
+ "dependencies": {
450
+ "@babel/helper-plugin-utils": "^7.8.0"
451
+ },
452
+ "peerDependencies": {
453
+ "@babel/core": "^7.0.0-0"
454
+ }
455
+ },
456
+ "node_modules/@babel/plugin-syntax-optional-chaining": {
457
+ "version": "7.8.3",
458
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
459
+ "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
460
+ "dev": true,
461
+ "license": "MIT",
462
+ "dependencies": {
463
+ "@babel/helper-plugin-utils": "^7.8.0"
464
+ },
465
+ "peerDependencies": {
466
+ "@babel/core": "^7.0.0-0"
467
+ }
468
+ },
469
+ "node_modules/@babel/plugin-syntax-private-property-in-object": {
470
+ "version": "7.14.5",
471
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz",
472
+ "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==",
473
+ "dev": true,
474
+ "license": "MIT",
475
+ "dependencies": {
476
+ "@babel/helper-plugin-utils": "^7.14.5"
477
+ },
478
+ "engines": {
479
+ "node": ">=6.9.0"
480
+ },
481
+ "peerDependencies": {
482
+ "@babel/core": "^7.0.0-0"
483
+ }
484
+ },
485
+ "node_modules/@babel/plugin-syntax-top-level-await": {
486
+ "version": "7.14.5",
487
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz",
488
+ "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==",
489
+ "dev": true,
490
+ "license": "MIT",
491
+ "dependencies": {
492
+ "@babel/helper-plugin-utils": "^7.14.5"
493
+ },
494
+ "engines": {
495
+ "node": ">=6.9.0"
496
+ },
497
+ "peerDependencies": {
498
+ "@babel/core": "^7.0.0-0"
499
+ }
500
+ },
501
+ "node_modules/@babel/plugin-syntax-typescript": {
502
+ "version": "7.27.1",
503
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz",
504
+ "integrity": "sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==",
505
+ "dev": true,
506
+ "license": "MIT",
507
+ "dependencies": {
508
+ "@babel/helper-plugin-utils": "^7.27.1"
509
+ },
510
+ "engines": {
511
+ "node": ">=6.9.0"
512
+ },
513
+ "peerDependencies": {
514
+ "@babel/core": "^7.0.0-0"
515
+ }
516
+ },
517
+ "node_modules/@babel/template": {
518
+ "version": "7.27.2",
519
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz",
520
+ "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==",
521
+ "dev": true,
522
+ "license": "MIT",
523
+ "dependencies": {
524
+ "@babel/code-frame": "^7.27.1",
525
+ "@babel/parser": "^7.27.2",
526
+ "@babel/types": "^7.27.1"
527
+ },
528
+ "engines": {
529
+ "node": ">=6.9.0"
530
+ }
531
+ },
532
+ "node_modules/@babel/traverse": {
533
+ "version": "7.28.5",
534
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz",
535
+ "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==",
536
+ "dev": true,
537
+ "license": "MIT",
538
+ "dependencies": {
539
+ "@babel/code-frame": "^7.27.1",
540
+ "@babel/generator": "^7.28.5",
541
+ "@babel/helper-globals": "^7.28.0",
542
+ "@babel/parser": "^7.28.5",
543
+ "@babel/template": "^7.27.2",
544
+ "@babel/types": "^7.28.5",
545
+ "debug": "^4.3.1"
546
+ },
547
+ "engines": {
548
+ "node": ">=6.9.0"
549
+ }
550
+ },
551
+ "node_modules/@babel/types": {
552
+ "version": "7.28.5",
553
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz",
554
+ "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==",
555
+ "dev": true,
556
+ "license": "MIT",
557
+ "dependencies": {
558
+ "@babel/helper-string-parser": "^7.27.1",
559
+ "@babel/helper-validator-identifier": "^7.28.5"
560
+ },
561
+ "engines": {
562
+ "node": ">=6.9.0"
563
+ }
564
+ },
565
+ "node_modules/@bcoe/v8-coverage": {
566
+ "version": "0.2.3",
567
+ "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
568
+ "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
569
+ "dev": true,
570
+ "license": "MIT"
571
+ },
572
+ "node_modules/@cspotcode/source-map-support": {
573
+ "version": "0.8.1",
574
+ "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz",
575
+ "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==",
576
+ "dev": true,
577
+ "license": "MIT",
578
+ "dependencies": {
579
+ "@jridgewell/trace-mapping": "0.3.9"
580
+ },
581
+ "engines": {
582
+ "node": ">=12"
583
+ }
584
+ },
585
+ "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": {
586
+ "version": "0.3.9",
587
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz",
588
+ "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==",
589
+ "dev": true,
590
+ "license": "MIT",
591
+ "dependencies": {
592
+ "@jridgewell/resolve-uri": "^3.0.3",
593
+ "@jridgewell/sourcemap-codec": "^1.4.10"
594
+ }
595
+ },
596
+ "node_modules/@istanbuljs/load-nyc-config": {
597
+ "version": "1.1.0",
598
+ "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
599
+ "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==",
600
+ "dev": true,
601
+ "license": "ISC",
602
+ "dependencies": {
603
+ "camelcase": "^5.3.1",
604
+ "find-up": "^4.1.0",
605
+ "get-package-type": "^0.1.0",
606
+ "js-yaml": "^3.13.1",
607
+ "resolve-from": "^5.0.0"
608
+ },
609
+ "engines": {
610
+ "node": ">=8"
611
+ }
612
+ },
613
+ "node_modules/@istanbuljs/schema": {
614
+ "version": "0.1.3",
615
+ "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz",
616
+ "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==",
617
+ "dev": true,
618
+ "license": "MIT",
619
+ "engines": {
620
+ "node": ">=8"
621
+ }
622
+ },
623
+ "node_modules/@jest/console": {
624
+ "version": "29.7.0",
625
+ "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz",
626
+ "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==",
627
+ "dev": true,
628
+ "license": "MIT",
629
+ "dependencies": {
630
+ "@jest/types": "^29.6.3",
631
+ "@types/node": "*",
632
+ "chalk": "^4.0.0",
633
+ "jest-message-util": "^29.7.0",
634
+ "jest-util": "^29.7.0",
635
+ "slash": "^3.0.0"
636
+ },
637
+ "engines": {
638
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
639
+ }
640
+ },
641
+ "node_modules/@jest/core": {
642
+ "version": "29.7.0",
643
+ "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz",
644
+ "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==",
645
+ "dev": true,
646
+ "license": "MIT",
647
+ "dependencies": {
648
+ "@jest/console": "^29.7.0",
649
+ "@jest/reporters": "^29.7.0",
650
+ "@jest/test-result": "^29.7.0",
651
+ "@jest/transform": "^29.7.0",
652
+ "@jest/types": "^29.6.3",
653
+ "@types/node": "*",
654
+ "ansi-escapes": "^4.2.1",
655
+ "chalk": "^4.0.0",
656
+ "ci-info": "^3.2.0",
657
+ "exit": "^0.1.2",
658
+ "graceful-fs": "^4.2.9",
659
+ "jest-changed-files": "^29.7.0",
660
+ "jest-config": "^29.7.0",
661
+ "jest-haste-map": "^29.7.0",
662
+ "jest-message-util": "^29.7.0",
663
+ "jest-regex-util": "^29.6.3",
664
+ "jest-resolve": "^29.7.0",
665
+ "jest-resolve-dependencies": "^29.7.0",
666
+ "jest-runner": "^29.7.0",
667
+ "jest-runtime": "^29.7.0",
668
+ "jest-snapshot": "^29.7.0",
669
+ "jest-util": "^29.7.0",
670
+ "jest-validate": "^29.7.0",
671
+ "jest-watcher": "^29.7.0",
672
+ "micromatch": "^4.0.4",
673
+ "pretty-format": "^29.7.0",
674
+ "slash": "^3.0.0",
675
+ "strip-ansi": "^6.0.0"
676
+ },
677
+ "engines": {
678
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
679
+ },
680
+ "peerDependencies": {
681
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
682
+ },
683
+ "peerDependenciesMeta": {
684
+ "node-notifier": {
685
+ "optional": true
686
+ }
687
+ }
688
+ },
689
+ "node_modules/@jest/environment": {
690
+ "version": "29.7.0",
691
+ "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz",
692
+ "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==",
693
+ "dev": true,
694
+ "license": "MIT",
695
+ "dependencies": {
696
+ "@jest/fake-timers": "^29.7.0",
697
+ "@jest/types": "^29.6.3",
698
+ "@types/node": "*",
699
+ "jest-mock": "^29.7.0"
700
+ },
701
+ "engines": {
702
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
703
+ }
704
+ },
705
+ "node_modules/@jest/expect": {
706
+ "version": "29.7.0",
707
+ "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz",
708
+ "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==",
709
+ "dev": true,
710
+ "license": "MIT",
711
+ "dependencies": {
712
+ "expect": "^29.7.0",
713
+ "jest-snapshot": "^29.7.0"
714
+ },
715
+ "engines": {
716
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
717
+ }
718
+ },
719
+ "node_modules/@jest/expect-utils": {
720
+ "version": "29.7.0",
721
+ "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz",
722
+ "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==",
723
+ "dev": true,
724
+ "license": "MIT",
725
+ "dependencies": {
726
+ "jest-get-type": "^29.6.3"
727
+ },
728
+ "engines": {
729
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
730
+ }
731
+ },
732
+ "node_modules/@jest/fake-timers": {
733
+ "version": "29.7.0",
734
+ "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz",
735
+ "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==",
736
+ "dev": true,
737
+ "license": "MIT",
738
+ "dependencies": {
739
+ "@jest/types": "^29.6.3",
740
+ "@sinonjs/fake-timers": "^10.0.2",
741
+ "@types/node": "*",
742
+ "jest-message-util": "^29.7.0",
743
+ "jest-mock": "^29.7.0",
744
+ "jest-util": "^29.7.0"
745
+ },
746
+ "engines": {
747
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
748
+ }
749
+ },
750
+ "node_modules/@jest/globals": {
751
+ "version": "29.7.0",
752
+ "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz",
753
+ "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==",
754
+ "dev": true,
755
+ "license": "MIT",
756
+ "dependencies": {
757
+ "@jest/environment": "^29.7.0",
758
+ "@jest/expect": "^29.7.0",
759
+ "@jest/types": "^29.6.3",
760
+ "jest-mock": "^29.7.0"
761
+ },
762
+ "engines": {
763
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
764
+ }
765
+ },
766
+ "node_modules/@jest/reporters": {
767
+ "version": "29.7.0",
768
+ "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz",
769
+ "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==",
770
+ "dev": true,
771
+ "license": "MIT",
772
+ "dependencies": {
773
+ "@bcoe/v8-coverage": "^0.2.3",
774
+ "@jest/console": "^29.7.0",
775
+ "@jest/test-result": "^29.7.0",
776
+ "@jest/transform": "^29.7.0",
777
+ "@jest/types": "^29.6.3",
778
+ "@jridgewell/trace-mapping": "^0.3.18",
779
+ "@types/node": "*",
780
+ "chalk": "^4.0.0",
781
+ "collect-v8-coverage": "^1.0.0",
782
+ "exit": "^0.1.2",
783
+ "glob": "^7.1.3",
784
+ "graceful-fs": "^4.2.9",
785
+ "istanbul-lib-coverage": "^3.0.0",
786
+ "istanbul-lib-instrument": "^6.0.0",
787
+ "istanbul-lib-report": "^3.0.0",
788
+ "istanbul-lib-source-maps": "^4.0.0",
789
+ "istanbul-reports": "^3.1.3",
790
+ "jest-message-util": "^29.7.0",
791
+ "jest-util": "^29.7.0",
792
+ "jest-worker": "^29.7.0",
793
+ "slash": "^3.0.0",
794
+ "string-length": "^4.0.1",
795
+ "strip-ansi": "^6.0.0",
796
+ "v8-to-istanbul": "^9.0.1"
797
+ },
798
+ "engines": {
799
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
800
+ },
801
+ "peerDependencies": {
802
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
803
+ },
804
+ "peerDependenciesMeta": {
805
+ "node-notifier": {
806
+ "optional": true
807
+ }
808
+ }
809
+ },
810
+ "node_modules/@jest/schemas": {
811
+ "version": "29.6.3",
812
+ "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz",
813
+ "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==",
814
+ "dev": true,
815
+ "license": "MIT",
816
+ "dependencies": {
817
+ "@sinclair/typebox": "^0.27.8"
818
+ },
819
+ "engines": {
820
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
821
+ }
822
+ },
823
+ "node_modules/@jest/source-map": {
824
+ "version": "29.6.3",
825
+ "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz",
826
+ "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==",
827
+ "dev": true,
828
+ "license": "MIT",
829
+ "dependencies": {
830
+ "@jridgewell/trace-mapping": "^0.3.18",
831
+ "callsites": "^3.0.0",
832
+ "graceful-fs": "^4.2.9"
833
+ },
834
+ "engines": {
835
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
836
+ }
837
+ },
838
+ "node_modules/@jest/test-result": {
839
+ "version": "29.7.0",
840
+ "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz",
841
+ "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==",
842
+ "dev": true,
843
+ "license": "MIT",
844
+ "dependencies": {
845
+ "@jest/console": "^29.7.0",
846
+ "@jest/types": "^29.6.3",
847
+ "@types/istanbul-lib-coverage": "^2.0.0",
848
+ "collect-v8-coverage": "^1.0.0"
849
+ },
850
+ "engines": {
851
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
852
+ }
853
+ },
854
+ "node_modules/@jest/test-sequencer": {
855
+ "version": "29.7.0",
856
+ "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz",
857
+ "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==",
858
+ "dev": true,
859
+ "license": "MIT",
860
+ "dependencies": {
861
+ "@jest/test-result": "^29.7.0",
862
+ "graceful-fs": "^4.2.9",
863
+ "jest-haste-map": "^29.7.0",
864
+ "slash": "^3.0.0"
865
+ },
866
+ "engines": {
867
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
868
+ }
869
+ },
870
+ "node_modules/@jest/transform": {
871
+ "version": "29.7.0",
872
+ "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz",
873
+ "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==",
874
+ "dev": true,
875
+ "license": "MIT",
876
+ "dependencies": {
877
+ "@babel/core": "^7.11.6",
878
+ "@jest/types": "^29.6.3",
879
+ "@jridgewell/trace-mapping": "^0.3.18",
880
+ "babel-plugin-istanbul": "^6.1.1",
881
+ "chalk": "^4.0.0",
882
+ "convert-source-map": "^2.0.0",
883
+ "fast-json-stable-stringify": "^2.1.0",
884
+ "graceful-fs": "^4.2.9",
885
+ "jest-haste-map": "^29.7.0",
886
+ "jest-regex-util": "^29.6.3",
887
+ "jest-util": "^29.7.0",
888
+ "micromatch": "^4.0.4",
889
+ "pirates": "^4.0.4",
890
+ "slash": "^3.0.0",
891
+ "write-file-atomic": "^4.0.2"
892
+ },
893
+ "engines": {
894
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
895
+ }
896
+ },
897
+ "node_modules/@jest/types": {
898
+ "version": "29.6.3",
899
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz",
900
+ "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==",
901
+ "dev": true,
902
+ "license": "MIT",
903
+ "dependencies": {
904
+ "@jest/schemas": "^29.6.3",
905
+ "@types/istanbul-lib-coverage": "^2.0.0",
906
+ "@types/istanbul-reports": "^3.0.0",
907
+ "@types/node": "*",
908
+ "@types/yargs": "^17.0.8",
909
+ "chalk": "^4.0.0"
910
+ },
911
+ "engines": {
912
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
913
+ }
914
+ },
915
+ "node_modules/@jridgewell/gen-mapping": {
916
+ "version": "0.3.13",
917
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
918
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
919
+ "dev": true,
920
+ "license": "MIT",
921
+ "dependencies": {
922
+ "@jridgewell/sourcemap-codec": "^1.5.0",
923
+ "@jridgewell/trace-mapping": "^0.3.24"
924
+ }
925
+ },
926
+ "node_modules/@jridgewell/remapping": {
927
+ "version": "2.3.5",
928
+ "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
929
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
930
+ "dev": true,
931
+ "license": "MIT",
932
+ "dependencies": {
933
+ "@jridgewell/gen-mapping": "^0.3.5",
934
+ "@jridgewell/trace-mapping": "^0.3.24"
935
+ }
936
+ },
937
+ "node_modules/@jridgewell/resolve-uri": {
938
+ "version": "3.1.2",
939
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
940
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
941
+ "dev": true,
942
+ "license": "MIT",
943
+ "engines": {
944
+ "node": ">=6.0.0"
945
+ }
946
+ },
947
+ "node_modules/@jridgewell/sourcemap-codec": {
948
+ "version": "1.5.5",
949
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
950
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
951
+ "dev": true,
952
+ "license": "MIT"
953
+ },
954
+ "node_modules/@jridgewell/trace-mapping": {
955
+ "version": "0.3.31",
956
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
957
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
958
+ "dev": true,
959
+ "license": "MIT",
960
+ "dependencies": {
961
+ "@jridgewell/resolve-uri": "^3.1.0",
962
+ "@jridgewell/sourcemap-codec": "^1.4.14"
963
+ }
964
+ },
965
+ "node_modules/@sinclair/typebox": {
966
+ "version": "0.27.8",
967
+ "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz",
968
+ "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==",
969
+ "dev": true,
970
+ "license": "MIT"
971
+ },
972
+ "node_modules/@sinonjs/commons": {
973
+ "version": "3.0.1",
974
+ "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz",
975
+ "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==",
976
+ "dev": true,
977
+ "license": "BSD-3-Clause",
978
+ "dependencies": {
979
+ "type-detect": "4.0.8"
980
+ }
981
+ },
982
+ "node_modules/@sinonjs/fake-timers": {
983
+ "version": "10.3.0",
984
+ "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz",
985
+ "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==",
986
+ "dev": true,
987
+ "license": "BSD-3-Clause",
988
+ "dependencies": {
989
+ "@sinonjs/commons": "^3.0.0"
990
+ }
991
+ },
992
+ "node_modules/@tsconfig/node10": {
993
+ "version": "1.0.12",
994
+ "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.12.tgz",
995
+ "integrity": "sha512-UCYBaeFvM11aU2y3YPZ//O5Rhj+xKyzy7mvcIoAjASbigy8mHMryP5cK7dgjlz2hWxh1g5pLw084E0a/wlUSFQ==",
996
+ "dev": true,
997
+ "license": "MIT"
998
+ },
999
+ "node_modules/@tsconfig/node12": {
1000
+ "version": "1.0.11",
1001
+ "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz",
1002
+ "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==",
1003
+ "dev": true,
1004
+ "license": "MIT"
1005
+ },
1006
+ "node_modules/@tsconfig/node14": {
1007
+ "version": "1.0.3",
1008
+ "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz",
1009
+ "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==",
1010
+ "dev": true,
1011
+ "license": "MIT"
1012
+ },
1013
+ "node_modules/@tsconfig/node16": {
1014
+ "version": "1.0.4",
1015
+ "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz",
1016
+ "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==",
1017
+ "dev": true,
1018
+ "license": "MIT"
1019
+ },
1020
+ "node_modules/@types/babel__core": {
1021
+ "version": "7.20.5",
1022
+ "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
1023
+ "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
1024
+ "dev": true,
1025
+ "license": "MIT",
1026
+ "dependencies": {
1027
+ "@babel/parser": "^7.20.7",
1028
+ "@babel/types": "^7.20.7",
1029
+ "@types/babel__generator": "*",
1030
+ "@types/babel__template": "*",
1031
+ "@types/babel__traverse": "*"
1032
+ }
1033
+ },
1034
+ "node_modules/@types/babel__generator": {
1035
+ "version": "7.27.0",
1036
+ "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz",
1037
+ "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
1038
+ "dev": true,
1039
+ "license": "MIT",
1040
+ "dependencies": {
1041
+ "@babel/types": "^7.0.0"
1042
+ }
1043
+ },
1044
+ "node_modules/@types/babel__template": {
1045
+ "version": "7.4.4",
1046
+ "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
1047
+ "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
1048
+ "dev": true,
1049
+ "license": "MIT",
1050
+ "dependencies": {
1051
+ "@babel/parser": "^7.1.0",
1052
+ "@babel/types": "^7.0.0"
1053
+ }
1054
+ },
1055
+ "node_modules/@types/babel__traverse": {
1056
+ "version": "7.28.0",
1057
+ "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz",
1058
+ "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==",
1059
+ "dev": true,
1060
+ "license": "MIT",
1061
+ "dependencies": {
1062
+ "@babel/types": "^7.28.2"
1063
+ }
1064
+ },
1065
+ "node_modules/@types/graceful-fs": {
1066
+ "version": "4.1.9",
1067
+ "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz",
1068
+ "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==",
1069
+ "dev": true,
1070
+ "license": "MIT",
1071
+ "dependencies": {
1072
+ "@types/node": "*"
1073
+ }
1074
+ },
1075
+ "node_modules/@types/istanbul-lib-coverage": {
1076
+ "version": "2.0.6",
1077
+ "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz",
1078
+ "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==",
1079
+ "dev": true,
1080
+ "license": "MIT"
1081
+ },
1082
+ "node_modules/@types/istanbul-lib-report": {
1083
+ "version": "3.0.3",
1084
+ "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz",
1085
+ "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==",
1086
+ "dev": true,
1087
+ "license": "MIT",
1088
+ "dependencies": {
1089
+ "@types/istanbul-lib-coverage": "*"
1090
+ }
1091
+ },
1092
+ "node_modules/@types/istanbul-reports": {
1093
+ "version": "3.0.4",
1094
+ "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz",
1095
+ "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==",
1096
+ "dev": true,
1097
+ "license": "MIT",
1098
+ "dependencies": {
1099
+ "@types/istanbul-lib-report": "*"
1100
+ }
1101
+ },
1102
+ "node_modules/@types/jest": {
1103
+ "version": "29.5.14",
1104
+ "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.14.tgz",
1105
+ "integrity": "sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==",
1106
+ "dev": true,
1107
+ "license": "MIT",
1108
+ "dependencies": {
1109
+ "expect": "^29.0.0",
1110
+ "pretty-format": "^29.0.0"
1111
+ }
1112
+ },
1113
+ "node_modules/@types/node": {
1114
+ "version": "22.19.3",
1115
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.3.tgz",
1116
+ "integrity": "sha512-1N9SBnWYOJTrNZCdh/yJE+t910Y128BoyY+zBLWhL3r0TYzlTmFdXrPwHL9DyFZmlEXNQQolTZh3KHV31QDhyA==",
1117
+ "dev": true,
1118
+ "license": "MIT",
1119
+ "peer": true,
1120
+ "dependencies": {
1121
+ "undici-types": "~6.21.0"
1122
+ }
1123
+ },
1124
+ "node_modules/@types/stack-utils": {
1125
+ "version": "2.0.3",
1126
+ "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz",
1127
+ "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==",
1128
+ "dev": true,
1129
+ "license": "MIT"
1130
+ },
1131
+ "node_modules/@types/yargs": {
1132
+ "version": "17.0.35",
1133
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.35.tgz",
1134
+ "integrity": "sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==",
1135
+ "dev": true,
1136
+ "license": "MIT",
1137
+ "dependencies": {
1138
+ "@types/yargs-parser": "*"
1139
+ }
1140
+ },
1141
+ "node_modules/@types/yargs-parser": {
1142
+ "version": "21.0.3",
1143
+ "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz",
1144
+ "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==",
1145
+ "dev": true,
1146
+ "license": "MIT"
1147
+ },
1148
+ "node_modules/acorn": {
1149
+ "version": "8.15.0",
1150
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
1151
+ "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
1152
+ "dev": true,
1153
+ "license": "MIT",
1154
+ "bin": {
1155
+ "acorn": "bin/acorn"
1156
+ },
1157
+ "engines": {
1158
+ "node": ">=0.4.0"
1159
+ }
1160
+ },
1161
+ "node_modules/acorn-walk": {
1162
+ "version": "8.3.4",
1163
+ "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz",
1164
+ "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==",
1165
+ "dev": true,
1166
+ "license": "MIT",
1167
+ "dependencies": {
1168
+ "acorn": "^8.11.0"
1169
+ },
1170
+ "engines": {
1171
+ "node": ">=0.4.0"
1172
+ }
1173
+ },
1174
+ "node_modules/ansi-escapes": {
1175
+ "version": "4.3.2",
1176
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
1177
+ "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
1178
+ "dev": true,
1179
+ "license": "MIT",
1180
+ "dependencies": {
1181
+ "type-fest": "^0.21.3"
1182
+ },
1183
+ "engines": {
1184
+ "node": ">=8"
1185
+ },
1186
+ "funding": {
1187
+ "url": "https://github.com/sponsors/sindresorhus"
1188
+ }
1189
+ },
1190
+ "node_modules/ansi-regex": {
1191
+ "version": "5.0.1",
1192
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
1193
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
1194
+ "dev": true,
1195
+ "license": "MIT",
1196
+ "engines": {
1197
+ "node": ">=8"
1198
+ }
1199
+ },
1200
+ "node_modules/ansi-styles": {
1201
+ "version": "4.3.0",
1202
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
1203
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
1204
+ "dev": true,
1205
+ "license": "MIT",
1206
+ "dependencies": {
1207
+ "color-convert": "^2.0.1"
1208
+ },
1209
+ "engines": {
1210
+ "node": ">=8"
1211
+ },
1212
+ "funding": {
1213
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
1214
+ }
1215
+ },
1216
+ "node_modules/anymatch": {
1217
+ "version": "3.1.3",
1218
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
1219
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
1220
+ "dev": true,
1221
+ "license": "ISC",
1222
+ "dependencies": {
1223
+ "normalize-path": "^3.0.0",
1224
+ "picomatch": "^2.0.4"
1225
+ },
1226
+ "engines": {
1227
+ "node": ">= 8"
1228
+ }
1229
+ },
1230
+ "node_modules/arg": {
1231
+ "version": "4.1.3",
1232
+ "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz",
1233
+ "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==",
1234
+ "dev": true,
1235
+ "license": "MIT"
1236
+ },
1237
+ "node_modules/argparse": {
1238
+ "version": "1.0.10",
1239
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
1240
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
1241
+ "dev": true,
1242
+ "license": "MIT",
1243
+ "dependencies": {
1244
+ "sprintf-js": "~1.0.2"
1245
+ }
1246
+ },
1247
+ "node_modules/aws-cdk": {
1248
+ "version": "2.1100.2",
1249
+ "resolved": "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.1100.2.tgz",
1250
+ "integrity": "sha512-PK80VEunZGpGW3+66EbPUpoKZKxsK7/BBR3X2qqtgk5wrSVJn+rq3Rwlih5lCD223rpf2RXAnC5weGHdEtgSuA==",
1251
+ "dev": true,
1252
+ "license": "Apache-2.0",
1253
+ "bin": {
1254
+ "cdk": "bin/cdk"
1255
+ },
1256
+ "engines": {
1257
+ "node": ">= 18.0.0"
1258
+ },
1259
+ "optionalDependencies": {
1260
+ "fsevents": "2.3.2"
1261
+ }
1262
+ },
1263
+ "node_modules/aws-cdk-lib": {
1264
+ "version": "2.233.0",
1265
+ "resolved": "https://registry.npmjs.org/aws-cdk-lib/-/aws-cdk-lib-2.233.0.tgz",
1266
+ "integrity": "sha512-rBOzIA8TGC5eB8TyVIvckAVlX7a0/gVPE634FguhSee9RFaovjgc5+IixGyyLJhu3lLsMSjqDoqTJg2ab+p8ng==",
1267
+ "bundleDependencies": [
1268
+ "@balena/dockerignore",
1269
+ "case",
1270
+ "fs-extra",
1271
+ "ignore",
1272
+ "jsonschema",
1273
+ "minimatch",
1274
+ "punycode",
1275
+ "semver",
1276
+ "table",
1277
+ "yaml",
1278
+ "mime-types"
1279
+ ],
1280
+ "license": "Apache-2.0",
1281
+ "dependencies": {
1282
+ "@aws-cdk/asset-awscli-v1": "2.2.242",
1283
+ "@aws-cdk/asset-node-proxy-agent-v6": "^2.1.0",
1284
+ "@aws-cdk/cloud-assembly-schema": "^48.20.0",
1285
+ "@balena/dockerignore": "^1.0.2",
1286
+ "case": "1.6.3",
1287
+ "fs-extra": "^11.3.2",
1288
+ "ignore": "^5.3.2",
1289
+ "jsonschema": "^1.5.0",
1290
+ "mime-types": "^2.1.35",
1291
+ "minimatch": "^3.1.2",
1292
+ "punycode": "^2.3.1",
1293
+ "semver": "^7.7.3",
1294
+ "table": "^6.9.0",
1295
+ "yaml": "1.10.2"
1296
+ },
1297
+ "engines": {
1298
+ "node": ">= 18.0.0"
1299
+ },
1300
+ "peerDependencies": {
1301
+ "constructs": "^10.0.0"
1302
+ }
1303
+ },
1304
+ "node_modules/aws-cdk-lib/node_modules/@balena/dockerignore": {
1305
+ "version": "1.0.2",
1306
+ "inBundle": true,
1307
+ "license": "Apache-2.0"
1308
+ },
1309
+ "node_modules/aws-cdk-lib/node_modules/ajv": {
1310
+ "version": "8.17.1",
1311
+ "inBundle": true,
1312
+ "license": "MIT",
1313
+ "dependencies": {
1314
+ "fast-deep-equal": "^3.1.3",
1315
+ "fast-uri": "^3.0.1",
1316
+ "json-schema-traverse": "^1.0.0",
1317
+ "require-from-string": "^2.0.2"
1318
+ },
1319
+ "funding": {
1320
+ "type": "github",
1321
+ "url": "https://github.com/sponsors/epoberezkin"
1322
+ }
1323
+ },
1324
+ "node_modules/aws-cdk-lib/node_modules/ansi-regex": {
1325
+ "version": "5.0.1",
1326
+ "inBundle": true,
1327
+ "license": "MIT",
1328
+ "engines": {
1329
+ "node": ">=8"
1330
+ }
1331
+ },
1332
+ "node_modules/aws-cdk-lib/node_modules/ansi-styles": {
1333
+ "version": "4.3.0",
1334
+ "inBundle": true,
1335
+ "license": "MIT",
1336
+ "dependencies": {
1337
+ "color-convert": "^2.0.1"
1338
+ },
1339
+ "engines": {
1340
+ "node": ">=8"
1341
+ },
1342
+ "funding": {
1343
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
1344
+ }
1345
+ },
1346
+ "node_modules/aws-cdk-lib/node_modules/astral-regex": {
1347
+ "version": "2.0.0",
1348
+ "inBundle": true,
1349
+ "license": "MIT",
1350
+ "engines": {
1351
+ "node": ">=8"
1352
+ }
1353
+ },
1354
+ "node_modules/aws-cdk-lib/node_modules/balanced-match": {
1355
+ "version": "1.0.2",
1356
+ "inBundle": true,
1357
+ "license": "MIT"
1358
+ },
1359
+ "node_modules/aws-cdk-lib/node_modules/brace-expansion": {
1360
+ "version": "1.1.12",
1361
+ "inBundle": true,
1362
+ "license": "MIT",
1363
+ "dependencies": {
1364
+ "balanced-match": "^1.0.0",
1365
+ "concat-map": "0.0.1"
1366
+ }
1367
+ },
1368
+ "node_modules/aws-cdk-lib/node_modules/case": {
1369
+ "version": "1.6.3",
1370
+ "inBundle": true,
1371
+ "license": "(MIT OR GPL-3.0-or-later)",
1372
+ "engines": {
1373
+ "node": ">= 0.8.0"
1374
+ }
1375
+ },
1376
+ "node_modules/aws-cdk-lib/node_modules/color-convert": {
1377
+ "version": "2.0.1",
1378
+ "inBundle": true,
1379
+ "license": "MIT",
1380
+ "dependencies": {
1381
+ "color-name": "~1.1.4"
1382
+ },
1383
+ "engines": {
1384
+ "node": ">=7.0.0"
1385
+ }
1386
+ },
1387
+ "node_modules/aws-cdk-lib/node_modules/color-name": {
1388
+ "version": "1.1.4",
1389
+ "inBundle": true,
1390
+ "license": "MIT"
1391
+ },
1392
+ "node_modules/aws-cdk-lib/node_modules/concat-map": {
1393
+ "version": "0.0.1",
1394
+ "inBundle": true,
1395
+ "license": "MIT"
1396
+ },
1397
+ "node_modules/aws-cdk-lib/node_modules/emoji-regex": {
1398
+ "version": "8.0.0",
1399
+ "inBundle": true,
1400
+ "license": "MIT"
1401
+ },
1402
+ "node_modules/aws-cdk-lib/node_modules/fast-deep-equal": {
1403
+ "version": "3.1.3",
1404
+ "inBundle": true,
1405
+ "license": "MIT"
1406
+ },
1407
+ "node_modules/aws-cdk-lib/node_modules/fast-uri": {
1408
+ "version": "3.1.0",
1409
+ "funding": [
1410
+ {
1411
+ "type": "github",
1412
+ "url": "https://github.com/sponsors/fastify"
1413
+ },
1414
+ {
1415
+ "type": "opencollective",
1416
+ "url": "https://opencollective.com/fastify"
1417
+ }
1418
+ ],
1419
+ "inBundle": true,
1420
+ "license": "BSD-3-Clause"
1421
+ },
1422
+ "node_modules/aws-cdk-lib/node_modules/fs-extra": {
1423
+ "version": "11.3.2",
1424
+ "inBundle": true,
1425
+ "license": "MIT",
1426
+ "dependencies": {
1427
+ "graceful-fs": "^4.2.0",
1428
+ "jsonfile": "^6.0.1",
1429
+ "universalify": "^2.0.0"
1430
+ },
1431
+ "engines": {
1432
+ "node": ">=14.14"
1433
+ }
1434
+ },
1435
+ "node_modules/aws-cdk-lib/node_modules/graceful-fs": {
1436
+ "version": "4.2.11",
1437
+ "inBundle": true,
1438
+ "license": "ISC"
1439
+ },
1440
+ "node_modules/aws-cdk-lib/node_modules/ignore": {
1441
+ "version": "5.3.2",
1442
+ "inBundle": true,
1443
+ "license": "MIT",
1444
+ "engines": {
1445
+ "node": ">= 4"
1446
+ }
1447
+ },
1448
+ "node_modules/aws-cdk-lib/node_modules/is-fullwidth-code-point": {
1449
+ "version": "3.0.0",
1450
+ "inBundle": true,
1451
+ "license": "MIT",
1452
+ "engines": {
1453
+ "node": ">=8"
1454
+ }
1455
+ },
1456
+ "node_modules/aws-cdk-lib/node_modules/json-schema-traverse": {
1457
+ "version": "1.0.0",
1458
+ "inBundle": true,
1459
+ "license": "MIT"
1460
+ },
1461
+ "node_modules/aws-cdk-lib/node_modules/jsonfile": {
1462
+ "version": "6.2.0",
1463
+ "inBundle": true,
1464
+ "license": "MIT",
1465
+ "dependencies": {
1466
+ "universalify": "^2.0.0"
1467
+ },
1468
+ "optionalDependencies": {
1469
+ "graceful-fs": "^4.1.6"
1470
+ }
1471
+ },
1472
+ "node_modules/aws-cdk-lib/node_modules/jsonschema": {
1473
+ "version": "1.5.0",
1474
+ "inBundle": true,
1475
+ "license": "MIT",
1476
+ "engines": {
1477
+ "node": "*"
1478
+ }
1479
+ },
1480
+ "node_modules/aws-cdk-lib/node_modules/lodash.truncate": {
1481
+ "version": "4.4.2",
1482
+ "inBundle": true,
1483
+ "license": "MIT"
1484
+ },
1485
+ "node_modules/aws-cdk-lib/node_modules/mime-db": {
1486
+ "version": "1.52.0",
1487
+ "inBundle": true,
1488
+ "license": "MIT",
1489
+ "engines": {
1490
+ "node": ">= 0.6"
1491
+ }
1492
+ },
1493
+ "node_modules/aws-cdk-lib/node_modules/mime-types": {
1494
+ "version": "2.1.35",
1495
+ "inBundle": true,
1496
+ "license": "MIT",
1497
+ "dependencies": {
1498
+ "mime-db": "1.52.0"
1499
+ },
1500
+ "engines": {
1501
+ "node": ">= 0.6"
1502
+ }
1503
+ },
1504
+ "node_modules/aws-cdk-lib/node_modules/minimatch": {
1505
+ "version": "3.1.2",
1506
+ "inBundle": true,
1507
+ "license": "ISC",
1508
+ "dependencies": {
1509
+ "brace-expansion": "^1.1.7"
1510
+ },
1511
+ "engines": {
1512
+ "node": "*"
1513
+ }
1514
+ },
1515
+ "node_modules/aws-cdk-lib/node_modules/punycode": {
1516
+ "version": "2.3.1",
1517
+ "inBundle": true,
1518
+ "license": "MIT",
1519
+ "engines": {
1520
+ "node": ">=6"
1521
+ }
1522
+ },
1523
+ "node_modules/aws-cdk-lib/node_modules/require-from-string": {
1524
+ "version": "2.0.2",
1525
+ "inBundle": true,
1526
+ "license": "MIT",
1527
+ "engines": {
1528
+ "node": ">=0.10.0"
1529
+ }
1530
+ },
1531
+ "node_modules/aws-cdk-lib/node_modules/semver": {
1532
+ "version": "7.7.3",
1533
+ "inBundle": true,
1534
+ "license": "ISC",
1535
+ "bin": {
1536
+ "semver": "bin/semver.js"
1537
+ },
1538
+ "engines": {
1539
+ "node": ">=10"
1540
+ }
1541
+ },
1542
+ "node_modules/aws-cdk-lib/node_modules/slice-ansi": {
1543
+ "version": "4.0.0",
1544
+ "inBundle": true,
1545
+ "license": "MIT",
1546
+ "dependencies": {
1547
+ "ansi-styles": "^4.0.0",
1548
+ "astral-regex": "^2.0.0",
1549
+ "is-fullwidth-code-point": "^3.0.0"
1550
+ },
1551
+ "engines": {
1552
+ "node": ">=10"
1553
+ },
1554
+ "funding": {
1555
+ "url": "https://github.com/chalk/slice-ansi?sponsor=1"
1556
+ }
1557
+ },
1558
+ "node_modules/aws-cdk-lib/node_modules/string-width": {
1559
+ "version": "4.2.3",
1560
+ "inBundle": true,
1561
+ "license": "MIT",
1562
+ "dependencies": {
1563
+ "emoji-regex": "^8.0.0",
1564
+ "is-fullwidth-code-point": "^3.0.0",
1565
+ "strip-ansi": "^6.0.1"
1566
+ },
1567
+ "engines": {
1568
+ "node": ">=8"
1569
+ }
1570
+ },
1571
+ "node_modules/aws-cdk-lib/node_modules/strip-ansi": {
1572
+ "version": "6.0.1",
1573
+ "inBundle": true,
1574
+ "license": "MIT",
1575
+ "dependencies": {
1576
+ "ansi-regex": "^5.0.1"
1577
+ },
1578
+ "engines": {
1579
+ "node": ">=8"
1580
+ }
1581
+ },
1582
+ "node_modules/aws-cdk-lib/node_modules/table": {
1583
+ "version": "6.9.0",
1584
+ "inBundle": true,
1585
+ "license": "BSD-3-Clause",
1586
+ "dependencies": {
1587
+ "ajv": "^8.0.1",
1588
+ "lodash.truncate": "^4.4.2",
1589
+ "slice-ansi": "^4.0.0",
1590
+ "string-width": "^4.2.3",
1591
+ "strip-ansi": "^6.0.1"
1592
+ },
1593
+ "engines": {
1594
+ "node": ">=10.0.0"
1595
+ }
1596
+ },
1597
+ "node_modules/aws-cdk-lib/node_modules/universalify": {
1598
+ "version": "2.0.1",
1599
+ "inBundle": true,
1600
+ "license": "MIT",
1601
+ "engines": {
1602
+ "node": ">= 10.0.0"
1603
+ }
1604
+ },
1605
+ "node_modules/aws-cdk-lib/node_modules/yaml": {
1606
+ "version": "1.10.2",
1607
+ "inBundle": true,
1608
+ "license": "ISC",
1609
+ "engines": {
1610
+ "node": ">= 6"
1611
+ }
1612
+ },
1613
+ "node_modules/babel-jest": {
1614
+ "version": "29.7.0",
1615
+ "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz",
1616
+ "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==",
1617
+ "dev": true,
1618
+ "license": "MIT",
1619
+ "dependencies": {
1620
+ "@jest/transform": "^29.7.0",
1621
+ "@types/babel__core": "^7.1.14",
1622
+ "babel-plugin-istanbul": "^6.1.1",
1623
+ "babel-preset-jest": "^29.6.3",
1624
+ "chalk": "^4.0.0",
1625
+ "graceful-fs": "^4.2.9",
1626
+ "slash": "^3.0.0"
1627
+ },
1628
+ "engines": {
1629
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
1630
+ },
1631
+ "peerDependencies": {
1632
+ "@babel/core": "^7.8.0"
1633
+ }
1634
+ },
1635
+ "node_modules/babel-plugin-istanbul": {
1636
+ "version": "6.1.1",
1637
+ "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz",
1638
+ "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==",
1639
+ "dev": true,
1640
+ "license": "BSD-3-Clause",
1641
+ "dependencies": {
1642
+ "@babel/helper-plugin-utils": "^7.0.0",
1643
+ "@istanbuljs/load-nyc-config": "^1.0.0",
1644
+ "@istanbuljs/schema": "^0.1.2",
1645
+ "istanbul-lib-instrument": "^5.0.4",
1646
+ "test-exclude": "^6.0.0"
1647
+ },
1648
+ "engines": {
1649
+ "node": ">=8"
1650
+ }
1651
+ },
1652
+ "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": {
1653
+ "version": "5.2.1",
1654
+ "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz",
1655
+ "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==",
1656
+ "dev": true,
1657
+ "license": "BSD-3-Clause",
1658
+ "dependencies": {
1659
+ "@babel/core": "^7.12.3",
1660
+ "@babel/parser": "^7.14.7",
1661
+ "@istanbuljs/schema": "^0.1.2",
1662
+ "istanbul-lib-coverage": "^3.2.0",
1663
+ "semver": "^6.3.0"
1664
+ },
1665
+ "engines": {
1666
+ "node": ">=8"
1667
+ }
1668
+ },
1669
+ "node_modules/babel-plugin-jest-hoist": {
1670
+ "version": "29.6.3",
1671
+ "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz",
1672
+ "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==",
1673
+ "dev": true,
1674
+ "license": "MIT",
1675
+ "dependencies": {
1676
+ "@babel/template": "^7.3.3",
1677
+ "@babel/types": "^7.3.3",
1678
+ "@types/babel__core": "^7.1.14",
1679
+ "@types/babel__traverse": "^7.0.6"
1680
+ },
1681
+ "engines": {
1682
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
1683
+ }
1684
+ },
1685
+ "node_modules/babel-preset-current-node-syntax": {
1686
+ "version": "1.2.0",
1687
+ "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.2.0.tgz",
1688
+ "integrity": "sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==",
1689
+ "dev": true,
1690
+ "license": "MIT",
1691
+ "dependencies": {
1692
+ "@babel/plugin-syntax-async-generators": "^7.8.4",
1693
+ "@babel/plugin-syntax-bigint": "^7.8.3",
1694
+ "@babel/plugin-syntax-class-properties": "^7.12.13",
1695
+ "@babel/plugin-syntax-class-static-block": "^7.14.5",
1696
+ "@babel/plugin-syntax-import-attributes": "^7.24.7",
1697
+ "@babel/plugin-syntax-import-meta": "^7.10.4",
1698
+ "@babel/plugin-syntax-json-strings": "^7.8.3",
1699
+ "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
1700
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
1701
+ "@babel/plugin-syntax-numeric-separator": "^7.10.4",
1702
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
1703
+ "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
1704
+ "@babel/plugin-syntax-optional-chaining": "^7.8.3",
1705
+ "@babel/plugin-syntax-private-property-in-object": "^7.14.5",
1706
+ "@babel/plugin-syntax-top-level-await": "^7.14.5"
1707
+ },
1708
+ "peerDependencies": {
1709
+ "@babel/core": "^7.0.0 || ^8.0.0-0"
1710
+ }
1711
+ },
1712
+ "node_modules/babel-preset-jest": {
1713
+ "version": "29.6.3",
1714
+ "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz",
1715
+ "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==",
1716
+ "dev": true,
1717
+ "license": "MIT",
1718
+ "dependencies": {
1719
+ "babel-plugin-jest-hoist": "^29.6.3",
1720
+ "babel-preset-current-node-syntax": "^1.0.0"
1721
+ },
1722
+ "engines": {
1723
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
1724
+ },
1725
+ "peerDependencies": {
1726
+ "@babel/core": "^7.0.0"
1727
+ }
1728
+ },
1729
+ "node_modules/balanced-match": {
1730
+ "version": "1.0.2",
1731
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
1732
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
1733
+ "license": "MIT"
1734
+ },
1735
+ "node_modules/baseline-browser-mapping": {
1736
+ "version": "2.9.11",
1737
+ "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.11.tgz",
1738
+ "integrity": "sha512-Sg0xJUNDU1sJNGdfGWhVHX0kkZ+HWcvmVymJbj6NSgZZmW/8S9Y2HQ5euytnIgakgxN6papOAWiwDo1ctFDcoQ==",
1739
+ "dev": true,
1740
+ "license": "Apache-2.0",
1741
+ "bin": {
1742
+ "baseline-browser-mapping": "dist/cli.js"
1743
+ }
1744
+ },
1745
+ "node_modules/brace-expansion": {
1746
+ "version": "1.1.12",
1747
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
1748
+ "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
1749
+ "license": "MIT",
1750
+ "dependencies": {
1751
+ "balanced-match": "^1.0.0",
1752
+ "concat-map": "0.0.1"
1753
+ }
1754
+ },
1755
+ "node_modules/braces": {
1756
+ "version": "3.0.3",
1757
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
1758
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
1759
+ "dev": true,
1760
+ "license": "MIT",
1761
+ "dependencies": {
1762
+ "fill-range": "^7.1.1"
1763
+ },
1764
+ "engines": {
1765
+ "node": ">=8"
1766
+ }
1767
+ },
1768
+ "node_modules/browserslist": {
1769
+ "version": "4.28.1",
1770
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz",
1771
+ "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
1772
+ "dev": true,
1773
+ "funding": [
1774
+ {
1775
+ "type": "opencollective",
1776
+ "url": "https://opencollective.com/browserslist"
1777
+ },
1778
+ {
1779
+ "type": "tidelift",
1780
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
1781
+ },
1782
+ {
1783
+ "type": "github",
1784
+ "url": "https://github.com/sponsors/ai"
1785
+ }
1786
+ ],
1787
+ "license": "MIT",
1788
+ "peer": true,
1789
+ "dependencies": {
1790
+ "baseline-browser-mapping": "^2.9.0",
1791
+ "caniuse-lite": "^1.0.30001759",
1792
+ "electron-to-chromium": "^1.5.263",
1793
+ "node-releases": "^2.0.27",
1794
+ "update-browserslist-db": "^1.2.0"
1795
+ },
1796
+ "bin": {
1797
+ "browserslist": "cli.js"
1798
+ },
1799
+ "engines": {
1800
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
1801
+ }
1802
+ },
1803
+ "node_modules/bs-logger": {
1804
+ "version": "0.2.6",
1805
+ "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz",
1806
+ "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==",
1807
+ "dev": true,
1808
+ "license": "MIT",
1809
+ "dependencies": {
1810
+ "fast-json-stable-stringify": "2.x"
1811
+ },
1812
+ "engines": {
1813
+ "node": ">= 6"
1814
+ }
1815
+ },
1816
+ "node_modules/bser": {
1817
+ "version": "2.1.1",
1818
+ "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz",
1819
+ "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==",
1820
+ "dev": true,
1821
+ "license": "Apache-2.0",
1822
+ "dependencies": {
1823
+ "node-int64": "^0.4.0"
1824
+ }
1825
+ },
1826
+ "node_modules/buffer-from": {
1827
+ "version": "1.1.2",
1828
+ "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
1829
+ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
1830
+ "dev": true,
1831
+ "license": "MIT"
1832
+ },
1833
+ "node_modules/callsites": {
1834
+ "version": "3.1.0",
1835
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
1836
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
1837
+ "dev": true,
1838
+ "license": "MIT",
1839
+ "engines": {
1840
+ "node": ">=6"
1841
+ }
1842
+ },
1843
+ "node_modules/camelcase": {
1844
+ "version": "5.3.1",
1845
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
1846
+ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
1847
+ "dev": true,
1848
+ "license": "MIT",
1849
+ "engines": {
1850
+ "node": ">=6"
1851
+ }
1852
+ },
1853
+ "node_modules/caniuse-lite": {
1854
+ "version": "1.0.30001762",
1855
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001762.tgz",
1856
+ "integrity": "sha512-PxZwGNvH7Ak8WX5iXzoK1KPZttBXNPuaOvI2ZYU7NrlM+d9Ov+TUvlLOBNGzVXAntMSMMlJPd+jY6ovrVjSmUw==",
1857
+ "dev": true,
1858
+ "funding": [
1859
+ {
1860
+ "type": "opencollective",
1861
+ "url": "https://opencollective.com/browserslist"
1862
+ },
1863
+ {
1864
+ "type": "tidelift",
1865
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
1866
+ },
1867
+ {
1868
+ "type": "github",
1869
+ "url": "https://github.com/sponsors/ai"
1870
+ }
1871
+ ],
1872
+ "license": "CC-BY-4.0"
1873
+ },
1874
+ "node_modules/chalk": {
1875
+ "version": "4.1.2",
1876
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
1877
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
1878
+ "dev": true,
1879
+ "license": "MIT",
1880
+ "dependencies": {
1881
+ "ansi-styles": "^4.1.0",
1882
+ "supports-color": "^7.1.0"
1883
+ },
1884
+ "engines": {
1885
+ "node": ">=10"
1886
+ },
1887
+ "funding": {
1888
+ "url": "https://github.com/chalk/chalk?sponsor=1"
1889
+ }
1890
+ },
1891
+ "node_modules/char-regex": {
1892
+ "version": "1.0.2",
1893
+ "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz",
1894
+ "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==",
1895
+ "dev": true,
1896
+ "license": "MIT",
1897
+ "engines": {
1898
+ "node": ">=10"
1899
+ }
1900
+ },
1901
+ "node_modules/ci-info": {
1902
+ "version": "3.9.0",
1903
+ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
1904
+ "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
1905
+ "dev": true,
1906
+ "funding": [
1907
+ {
1908
+ "type": "github",
1909
+ "url": "https://github.com/sponsors/sibiraj-s"
1910
+ }
1911
+ ],
1912
+ "license": "MIT",
1913
+ "engines": {
1914
+ "node": ">=8"
1915
+ }
1916
+ },
1917
+ "node_modules/cjs-module-lexer": {
1918
+ "version": "1.4.3",
1919
+ "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz",
1920
+ "integrity": "sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==",
1921
+ "dev": true,
1922
+ "license": "MIT"
1923
+ },
1924
+ "node_modules/cliui": {
1925
+ "version": "8.0.1",
1926
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
1927
+ "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
1928
+ "dev": true,
1929
+ "license": "ISC",
1930
+ "dependencies": {
1931
+ "string-width": "^4.2.0",
1932
+ "strip-ansi": "^6.0.1",
1933
+ "wrap-ansi": "^7.0.0"
1934
+ },
1935
+ "engines": {
1936
+ "node": ">=12"
1937
+ }
1938
+ },
1939
+ "node_modules/co": {
1940
+ "version": "4.6.0",
1941
+ "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
1942
+ "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==",
1943
+ "dev": true,
1944
+ "license": "MIT",
1945
+ "engines": {
1946
+ "iojs": ">= 1.0.0",
1947
+ "node": ">= 0.12.0"
1948
+ }
1949
+ },
1950
+ "node_modules/collect-v8-coverage": {
1951
+ "version": "1.0.3",
1952
+ "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.3.tgz",
1953
+ "integrity": "sha512-1L5aqIkwPfiodaMgQunkF1zRhNqifHBmtbbbxcr6yVxxBnliw4TDOW6NxpO8DJLgJ16OT+Y4ztZqP6p/FtXnAw==",
1954
+ "dev": true,
1955
+ "license": "MIT"
1956
+ },
1957
+ "node_modules/color-convert": {
1958
+ "version": "2.0.1",
1959
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
1960
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
1961
+ "dev": true,
1962
+ "license": "MIT",
1963
+ "dependencies": {
1964
+ "color-name": "~1.1.4"
1965
+ },
1966
+ "engines": {
1967
+ "node": ">=7.0.0"
1968
+ }
1969
+ },
1970
+ "node_modules/color-name": {
1971
+ "version": "1.1.4",
1972
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
1973
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
1974
+ "dev": true,
1975
+ "license": "MIT"
1976
+ },
1977
+ "node_modules/concat-map": {
1978
+ "version": "0.0.1",
1979
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
1980
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
1981
+ "license": "MIT"
1982
+ },
1983
+ "node_modules/constructs": {
1984
+ "version": "10.4.4",
1985
+ "resolved": "https://registry.npmjs.org/constructs/-/constructs-10.4.4.tgz",
1986
+ "integrity": "sha512-lP0qC1oViYf1cutHo9/KQ8QL637f/W29tDmv/6sy35F5zs+MD9f66nbAAIjicwc7fwyuF3rkg6PhZh4sfvWIpA==",
1987
+ "license": "Apache-2.0",
1988
+ "peer": true
1989
+ },
1990
+ "node_modules/convert-source-map": {
1991
+ "version": "2.0.0",
1992
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
1993
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
1994
+ "dev": true,
1995
+ "license": "MIT"
1996
+ },
1997
+ "node_modules/create-jest": {
1998
+ "version": "29.7.0",
1999
+ "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz",
2000
+ "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==",
2001
+ "dev": true,
2002
+ "license": "MIT",
2003
+ "dependencies": {
2004
+ "@jest/types": "^29.6.3",
2005
+ "chalk": "^4.0.0",
2006
+ "exit": "^0.1.2",
2007
+ "graceful-fs": "^4.2.9",
2008
+ "jest-config": "^29.7.0",
2009
+ "jest-util": "^29.7.0",
2010
+ "prompts": "^2.0.1"
2011
+ },
2012
+ "bin": {
2013
+ "create-jest": "bin/create-jest.js"
2014
+ },
2015
+ "engines": {
2016
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2017
+ }
2018
+ },
2019
+ "node_modules/create-require": {
2020
+ "version": "1.1.1",
2021
+ "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz",
2022
+ "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==",
2023
+ "dev": true,
2024
+ "license": "MIT"
2025
+ },
2026
+ "node_modules/cross-spawn": {
2027
+ "version": "7.0.6",
2028
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
2029
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
2030
+ "dev": true,
2031
+ "license": "MIT",
2032
+ "dependencies": {
2033
+ "path-key": "^3.1.0",
2034
+ "shebang-command": "^2.0.0",
2035
+ "which": "^2.0.1"
2036
+ },
2037
+ "engines": {
2038
+ "node": ">= 8"
2039
+ }
2040
+ },
2041
+ "node_modules/debug": {
2042
+ "version": "4.4.3",
2043
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
2044
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
2045
+ "dev": true,
2046
+ "license": "MIT",
2047
+ "dependencies": {
2048
+ "ms": "^2.1.3"
2049
+ },
2050
+ "engines": {
2051
+ "node": ">=6.0"
2052
+ },
2053
+ "peerDependenciesMeta": {
2054
+ "supports-color": {
2055
+ "optional": true
2056
+ }
2057
+ }
2058
+ },
2059
+ "node_modules/dedent": {
2060
+ "version": "1.7.1",
2061
+ "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.7.1.tgz",
2062
+ "integrity": "sha512-9JmrhGZpOlEgOLdQgSm0zxFaYoQon408V1v49aqTWuXENVlnCuY9JBZcXZiCsZQWDjTm5Qf/nIvAy77mXDAjEg==",
2063
+ "dev": true,
2064
+ "license": "MIT",
2065
+ "peerDependencies": {
2066
+ "babel-plugin-macros": "^3.1.0"
2067
+ },
2068
+ "peerDependenciesMeta": {
2069
+ "babel-plugin-macros": {
2070
+ "optional": true
2071
+ }
2072
+ }
2073
+ },
2074
+ "node_modules/deepmerge": {
2075
+ "version": "4.3.1",
2076
+ "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
2077
+ "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
2078
+ "dev": true,
2079
+ "license": "MIT",
2080
+ "engines": {
2081
+ "node": ">=0.10.0"
2082
+ }
2083
+ },
2084
+ "node_modules/detect-newline": {
2085
+ "version": "3.1.0",
2086
+ "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz",
2087
+ "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==",
2088
+ "dev": true,
2089
+ "license": "MIT",
2090
+ "engines": {
2091
+ "node": ">=8"
2092
+ }
2093
+ },
2094
+ "node_modules/diff": {
2095
+ "version": "4.0.2",
2096
+ "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
2097
+ "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==",
2098
+ "dev": true,
2099
+ "license": "BSD-3-Clause",
2100
+ "engines": {
2101
+ "node": ">=0.3.1"
2102
+ }
2103
+ },
2104
+ "node_modules/diff-sequences": {
2105
+ "version": "29.6.3",
2106
+ "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz",
2107
+ "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==",
2108
+ "dev": true,
2109
+ "license": "MIT",
2110
+ "engines": {
2111
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2112
+ }
2113
+ },
2114
+ "node_modules/electron-to-chromium": {
2115
+ "version": "1.5.267",
2116
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.267.tgz",
2117
+ "integrity": "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==",
2118
+ "dev": true,
2119
+ "license": "ISC"
2120
+ },
2121
+ "node_modules/emittery": {
2122
+ "version": "0.13.1",
2123
+ "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz",
2124
+ "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==",
2125
+ "dev": true,
2126
+ "license": "MIT",
2127
+ "engines": {
2128
+ "node": ">=12"
2129
+ },
2130
+ "funding": {
2131
+ "url": "https://github.com/sindresorhus/emittery?sponsor=1"
2132
+ }
2133
+ },
2134
+ "node_modules/emoji-regex": {
2135
+ "version": "8.0.0",
2136
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
2137
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
2138
+ "dev": true,
2139
+ "license": "MIT"
2140
+ },
2141
+ "node_modules/error-ex": {
2142
+ "version": "1.3.4",
2143
+ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.4.tgz",
2144
+ "integrity": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==",
2145
+ "dev": true,
2146
+ "license": "MIT",
2147
+ "dependencies": {
2148
+ "is-arrayish": "^0.2.1"
2149
+ }
2150
+ },
2151
+ "node_modules/escalade": {
2152
+ "version": "3.2.0",
2153
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
2154
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
2155
+ "dev": true,
2156
+ "license": "MIT",
2157
+ "engines": {
2158
+ "node": ">=6"
2159
+ }
2160
+ },
2161
+ "node_modules/escape-string-regexp": {
2162
+ "version": "2.0.0",
2163
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
2164
+ "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
2165
+ "dev": true,
2166
+ "license": "MIT",
2167
+ "engines": {
2168
+ "node": ">=8"
2169
+ }
2170
+ },
2171
+ "node_modules/esprima": {
2172
+ "version": "4.0.1",
2173
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
2174
+ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
2175
+ "dev": true,
2176
+ "license": "BSD-2-Clause",
2177
+ "bin": {
2178
+ "esparse": "bin/esparse.js",
2179
+ "esvalidate": "bin/esvalidate.js"
2180
+ },
2181
+ "engines": {
2182
+ "node": ">=4"
2183
+ }
2184
+ },
2185
+ "node_modules/execa": {
2186
+ "version": "5.1.1",
2187
+ "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
2188
+ "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
2189
+ "dev": true,
2190
+ "license": "MIT",
2191
+ "dependencies": {
2192
+ "cross-spawn": "^7.0.3",
2193
+ "get-stream": "^6.0.0",
2194
+ "human-signals": "^2.1.0",
2195
+ "is-stream": "^2.0.0",
2196
+ "merge-stream": "^2.0.0",
2197
+ "npm-run-path": "^4.0.1",
2198
+ "onetime": "^5.1.2",
2199
+ "signal-exit": "^3.0.3",
2200
+ "strip-final-newline": "^2.0.0"
2201
+ },
2202
+ "engines": {
2203
+ "node": ">=10"
2204
+ },
2205
+ "funding": {
2206
+ "url": "https://github.com/sindresorhus/execa?sponsor=1"
2207
+ }
2208
+ },
2209
+ "node_modules/exit": {
2210
+ "version": "0.1.2",
2211
+ "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
2212
+ "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==",
2213
+ "dev": true,
2214
+ "engines": {
2215
+ "node": ">= 0.8.0"
2216
+ }
2217
+ },
2218
+ "node_modules/expect": {
2219
+ "version": "29.7.0",
2220
+ "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz",
2221
+ "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==",
2222
+ "dev": true,
2223
+ "license": "MIT",
2224
+ "dependencies": {
2225
+ "@jest/expect-utils": "^29.7.0",
2226
+ "jest-get-type": "^29.6.3",
2227
+ "jest-matcher-utils": "^29.7.0",
2228
+ "jest-message-util": "^29.7.0",
2229
+ "jest-util": "^29.7.0"
2230
+ },
2231
+ "engines": {
2232
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2233
+ }
2234
+ },
2235
+ "node_modules/fast-json-stable-stringify": {
2236
+ "version": "2.1.0",
2237
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
2238
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
2239
+ "dev": true,
2240
+ "license": "MIT"
2241
+ },
2242
+ "node_modules/fb-watchman": {
2243
+ "version": "2.0.2",
2244
+ "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz",
2245
+ "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==",
2246
+ "dev": true,
2247
+ "license": "Apache-2.0",
2248
+ "dependencies": {
2249
+ "bser": "2.1.1"
2250
+ }
2251
+ },
2252
+ "node_modules/fill-range": {
2253
+ "version": "7.1.1",
2254
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
2255
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
2256
+ "dev": true,
2257
+ "license": "MIT",
2258
+ "dependencies": {
2259
+ "to-regex-range": "^5.0.1"
2260
+ },
2261
+ "engines": {
2262
+ "node": ">=8"
2263
+ }
2264
+ },
2265
+ "node_modules/find-up": {
2266
+ "version": "4.1.0",
2267
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
2268
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
2269
+ "dev": true,
2270
+ "license": "MIT",
2271
+ "dependencies": {
2272
+ "locate-path": "^5.0.0",
2273
+ "path-exists": "^4.0.0"
2274
+ },
2275
+ "engines": {
2276
+ "node": ">=8"
2277
+ }
2278
+ },
2279
+ "node_modules/fs.realpath": {
2280
+ "version": "1.0.0",
2281
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
2282
+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
2283
+ "dev": true,
2284
+ "license": "ISC"
2285
+ },
2286
+ "node_modules/fsevents": {
2287
+ "version": "2.3.2",
2288
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
2289
+ "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
2290
+ "dev": true,
2291
+ "hasInstallScript": true,
2292
+ "license": "MIT",
2293
+ "optional": true,
2294
+ "os": [
2295
+ "darwin"
2296
+ ],
2297
+ "engines": {
2298
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
2299
+ }
2300
+ },
2301
+ "node_modules/function-bind": {
2302
+ "version": "1.1.2",
2303
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
2304
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
2305
+ "dev": true,
2306
+ "license": "MIT",
2307
+ "funding": {
2308
+ "url": "https://github.com/sponsors/ljharb"
2309
+ }
2310
+ },
2311
+ "node_modules/gensync": {
2312
+ "version": "1.0.0-beta.2",
2313
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
2314
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
2315
+ "dev": true,
2316
+ "license": "MIT",
2317
+ "engines": {
2318
+ "node": ">=6.9.0"
2319
+ }
2320
+ },
2321
+ "node_modules/get-caller-file": {
2322
+ "version": "2.0.5",
2323
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
2324
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
2325
+ "dev": true,
2326
+ "license": "ISC",
2327
+ "engines": {
2328
+ "node": "6.* || 8.* || >= 10.*"
2329
+ }
2330
+ },
2331
+ "node_modules/get-package-type": {
2332
+ "version": "0.1.0",
2333
+ "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz",
2334
+ "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==",
2335
+ "dev": true,
2336
+ "license": "MIT",
2337
+ "engines": {
2338
+ "node": ">=8.0.0"
2339
+ }
2340
+ },
2341
+ "node_modules/get-stream": {
2342
+ "version": "6.0.1",
2343
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
2344
+ "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
2345
+ "dev": true,
2346
+ "license": "MIT",
2347
+ "engines": {
2348
+ "node": ">=10"
2349
+ },
2350
+ "funding": {
2351
+ "url": "https://github.com/sponsors/sindresorhus"
2352
+ }
2353
+ },
2354
+ "node_modules/glob": {
2355
+ "version": "7.2.3",
2356
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
2357
+ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
2358
+ "deprecated": "Glob versions prior to v9 are no longer supported",
2359
+ "dev": true,
2360
+ "license": "ISC",
2361
+ "dependencies": {
2362
+ "fs.realpath": "^1.0.0",
2363
+ "inflight": "^1.0.4",
2364
+ "inherits": "2",
2365
+ "minimatch": "^3.1.1",
2366
+ "once": "^1.3.0",
2367
+ "path-is-absolute": "^1.0.0"
2368
+ },
2369
+ "engines": {
2370
+ "node": "*"
2371
+ },
2372
+ "funding": {
2373
+ "url": "https://github.com/sponsors/isaacs"
2374
+ }
2375
+ },
2376
+ "node_modules/graceful-fs": {
2377
+ "version": "4.2.11",
2378
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
2379
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
2380
+ "dev": true,
2381
+ "license": "ISC"
2382
+ },
2383
+ "node_modules/handlebars": {
2384
+ "version": "4.7.8",
2385
+ "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz",
2386
+ "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==",
2387
+ "dev": true,
2388
+ "license": "MIT",
2389
+ "dependencies": {
2390
+ "minimist": "^1.2.5",
2391
+ "neo-async": "^2.6.2",
2392
+ "source-map": "^0.6.1",
2393
+ "wordwrap": "^1.0.0"
2394
+ },
2395
+ "bin": {
2396
+ "handlebars": "bin/handlebars"
2397
+ },
2398
+ "engines": {
2399
+ "node": ">=0.4.7"
2400
+ },
2401
+ "optionalDependencies": {
2402
+ "uglify-js": "^3.1.4"
2403
+ }
2404
+ },
2405
+ "node_modules/has-flag": {
2406
+ "version": "4.0.0",
2407
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
2408
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
2409
+ "dev": true,
2410
+ "license": "MIT",
2411
+ "engines": {
2412
+ "node": ">=8"
2413
+ }
2414
+ },
2415
+ "node_modules/hasown": {
2416
+ "version": "2.0.2",
2417
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
2418
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
2419
+ "dev": true,
2420
+ "license": "MIT",
2421
+ "dependencies": {
2422
+ "function-bind": "^1.1.2"
2423
+ },
2424
+ "engines": {
2425
+ "node": ">= 0.4"
2426
+ }
2427
+ },
2428
+ "node_modules/html-escaper": {
2429
+ "version": "2.0.2",
2430
+ "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
2431
+ "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==",
2432
+ "dev": true,
2433
+ "license": "MIT"
2434
+ },
2435
+ "node_modules/human-signals": {
2436
+ "version": "2.1.0",
2437
+ "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
2438
+ "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
2439
+ "dev": true,
2440
+ "license": "Apache-2.0",
2441
+ "engines": {
2442
+ "node": ">=10.17.0"
2443
+ }
2444
+ },
2445
+ "node_modules/import-local": {
2446
+ "version": "3.2.0",
2447
+ "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz",
2448
+ "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==",
2449
+ "dev": true,
2450
+ "license": "MIT",
2451
+ "dependencies": {
2452
+ "pkg-dir": "^4.2.0",
2453
+ "resolve-cwd": "^3.0.0"
2454
+ },
2455
+ "bin": {
2456
+ "import-local-fixture": "fixtures/cli.js"
2457
+ },
2458
+ "engines": {
2459
+ "node": ">=8"
2460
+ },
2461
+ "funding": {
2462
+ "url": "https://github.com/sponsors/sindresorhus"
2463
+ }
2464
+ },
2465
+ "node_modules/imurmurhash": {
2466
+ "version": "0.1.4",
2467
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
2468
+ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
2469
+ "dev": true,
2470
+ "license": "MIT",
2471
+ "engines": {
2472
+ "node": ">=0.8.19"
2473
+ }
2474
+ },
2475
+ "node_modules/inflight": {
2476
+ "version": "1.0.6",
2477
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
2478
+ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
2479
+ "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
2480
+ "dev": true,
2481
+ "license": "ISC",
2482
+ "dependencies": {
2483
+ "once": "^1.3.0",
2484
+ "wrappy": "1"
2485
+ }
2486
+ },
2487
+ "node_modules/inherits": {
2488
+ "version": "2.0.4",
2489
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
2490
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
2491
+ "dev": true,
2492
+ "license": "ISC"
2493
+ },
2494
+ "node_modules/is-arrayish": {
2495
+ "version": "0.2.1",
2496
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
2497
+ "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
2498
+ "dev": true,
2499
+ "license": "MIT"
2500
+ },
2501
+ "node_modules/is-core-module": {
2502
+ "version": "2.16.1",
2503
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
2504
+ "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
2505
+ "dev": true,
2506
+ "license": "MIT",
2507
+ "dependencies": {
2508
+ "hasown": "^2.0.2"
2509
+ },
2510
+ "engines": {
2511
+ "node": ">= 0.4"
2512
+ },
2513
+ "funding": {
2514
+ "url": "https://github.com/sponsors/ljharb"
2515
+ }
2516
+ },
2517
+ "node_modules/is-fullwidth-code-point": {
2518
+ "version": "3.0.0",
2519
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
2520
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
2521
+ "dev": true,
2522
+ "license": "MIT",
2523
+ "engines": {
2524
+ "node": ">=8"
2525
+ }
2526
+ },
2527
+ "node_modules/is-generator-fn": {
2528
+ "version": "2.1.0",
2529
+ "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz",
2530
+ "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==",
2531
+ "dev": true,
2532
+ "license": "MIT",
2533
+ "engines": {
2534
+ "node": ">=6"
2535
+ }
2536
+ },
2537
+ "node_modules/is-number": {
2538
+ "version": "7.0.0",
2539
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
2540
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
2541
+ "dev": true,
2542
+ "license": "MIT",
2543
+ "engines": {
2544
+ "node": ">=0.12.0"
2545
+ }
2546
+ },
2547
+ "node_modules/is-stream": {
2548
+ "version": "2.0.1",
2549
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
2550
+ "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
2551
+ "dev": true,
2552
+ "license": "MIT",
2553
+ "engines": {
2554
+ "node": ">=8"
2555
+ },
2556
+ "funding": {
2557
+ "url": "https://github.com/sponsors/sindresorhus"
2558
+ }
2559
+ },
2560
+ "node_modules/isexe": {
2561
+ "version": "2.0.0",
2562
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
2563
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
2564
+ "dev": true,
2565
+ "license": "ISC"
2566
+ },
2567
+ "node_modules/istanbul-lib-coverage": {
2568
+ "version": "3.2.2",
2569
+ "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz",
2570
+ "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==",
2571
+ "dev": true,
2572
+ "license": "BSD-3-Clause",
2573
+ "engines": {
2574
+ "node": ">=8"
2575
+ }
2576
+ },
2577
+ "node_modules/istanbul-lib-instrument": {
2578
+ "version": "6.0.3",
2579
+ "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz",
2580
+ "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==",
2581
+ "dev": true,
2582
+ "license": "BSD-3-Clause",
2583
+ "dependencies": {
2584
+ "@babel/core": "^7.23.9",
2585
+ "@babel/parser": "^7.23.9",
2586
+ "@istanbuljs/schema": "^0.1.3",
2587
+ "istanbul-lib-coverage": "^3.2.0",
2588
+ "semver": "^7.5.4"
2589
+ },
2590
+ "engines": {
2591
+ "node": ">=10"
2592
+ }
2593
+ },
2594
+ "node_modules/istanbul-lib-instrument/node_modules/semver": {
2595
+ "version": "7.7.3",
2596
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
2597
+ "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
2598
+ "dev": true,
2599
+ "license": "ISC",
2600
+ "bin": {
2601
+ "semver": "bin/semver.js"
2602
+ },
2603
+ "engines": {
2604
+ "node": ">=10"
2605
+ }
2606
+ },
2607
+ "node_modules/istanbul-lib-report": {
2608
+ "version": "3.0.1",
2609
+ "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz",
2610
+ "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==",
2611
+ "dev": true,
2612
+ "license": "BSD-3-Clause",
2613
+ "dependencies": {
2614
+ "istanbul-lib-coverage": "^3.0.0",
2615
+ "make-dir": "^4.0.0",
2616
+ "supports-color": "^7.1.0"
2617
+ },
2618
+ "engines": {
2619
+ "node": ">=10"
2620
+ }
2621
+ },
2622
+ "node_modules/istanbul-lib-source-maps": {
2623
+ "version": "4.0.1",
2624
+ "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz",
2625
+ "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==",
2626
+ "dev": true,
2627
+ "license": "BSD-3-Clause",
2628
+ "dependencies": {
2629
+ "debug": "^4.1.1",
2630
+ "istanbul-lib-coverage": "^3.0.0",
2631
+ "source-map": "^0.6.1"
2632
+ },
2633
+ "engines": {
2634
+ "node": ">=10"
2635
+ }
2636
+ },
2637
+ "node_modules/istanbul-reports": {
2638
+ "version": "3.2.0",
2639
+ "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.2.0.tgz",
2640
+ "integrity": "sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==",
2641
+ "dev": true,
2642
+ "license": "BSD-3-Clause",
2643
+ "dependencies": {
2644
+ "html-escaper": "^2.0.0",
2645
+ "istanbul-lib-report": "^3.0.0"
2646
+ },
2647
+ "engines": {
2648
+ "node": ">=8"
2649
+ }
2650
+ },
2651
+ "node_modules/jest": {
2652
+ "version": "29.7.0",
2653
+ "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz",
2654
+ "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==",
2655
+ "dev": true,
2656
+ "license": "MIT",
2657
+ "peer": true,
2658
+ "dependencies": {
2659
+ "@jest/core": "^29.7.0",
2660
+ "@jest/types": "^29.6.3",
2661
+ "import-local": "^3.0.2",
2662
+ "jest-cli": "^29.7.0"
2663
+ },
2664
+ "bin": {
2665
+ "jest": "bin/jest.js"
2666
+ },
2667
+ "engines": {
2668
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2669
+ },
2670
+ "peerDependencies": {
2671
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
2672
+ },
2673
+ "peerDependenciesMeta": {
2674
+ "node-notifier": {
2675
+ "optional": true
2676
+ }
2677
+ }
2678
+ },
2679
+ "node_modules/jest-changed-files": {
2680
+ "version": "29.7.0",
2681
+ "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz",
2682
+ "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==",
2683
+ "dev": true,
2684
+ "license": "MIT",
2685
+ "dependencies": {
2686
+ "execa": "^5.0.0",
2687
+ "jest-util": "^29.7.0",
2688
+ "p-limit": "^3.1.0"
2689
+ },
2690
+ "engines": {
2691
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2692
+ }
2693
+ },
2694
+ "node_modules/jest-circus": {
2695
+ "version": "29.7.0",
2696
+ "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz",
2697
+ "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==",
2698
+ "dev": true,
2699
+ "license": "MIT",
2700
+ "dependencies": {
2701
+ "@jest/environment": "^29.7.0",
2702
+ "@jest/expect": "^29.7.0",
2703
+ "@jest/test-result": "^29.7.0",
2704
+ "@jest/types": "^29.6.3",
2705
+ "@types/node": "*",
2706
+ "chalk": "^4.0.0",
2707
+ "co": "^4.6.0",
2708
+ "dedent": "^1.0.0",
2709
+ "is-generator-fn": "^2.0.0",
2710
+ "jest-each": "^29.7.0",
2711
+ "jest-matcher-utils": "^29.7.0",
2712
+ "jest-message-util": "^29.7.0",
2713
+ "jest-runtime": "^29.7.0",
2714
+ "jest-snapshot": "^29.7.0",
2715
+ "jest-util": "^29.7.0",
2716
+ "p-limit": "^3.1.0",
2717
+ "pretty-format": "^29.7.0",
2718
+ "pure-rand": "^6.0.0",
2719
+ "slash": "^3.0.0",
2720
+ "stack-utils": "^2.0.3"
2721
+ },
2722
+ "engines": {
2723
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2724
+ }
2725
+ },
2726
+ "node_modules/jest-cli": {
2727
+ "version": "29.7.0",
2728
+ "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz",
2729
+ "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==",
2730
+ "dev": true,
2731
+ "license": "MIT",
2732
+ "dependencies": {
2733
+ "@jest/core": "^29.7.0",
2734
+ "@jest/test-result": "^29.7.0",
2735
+ "@jest/types": "^29.6.3",
2736
+ "chalk": "^4.0.0",
2737
+ "create-jest": "^29.7.0",
2738
+ "exit": "^0.1.2",
2739
+ "import-local": "^3.0.2",
2740
+ "jest-config": "^29.7.0",
2741
+ "jest-util": "^29.7.0",
2742
+ "jest-validate": "^29.7.0",
2743
+ "yargs": "^17.3.1"
2744
+ },
2745
+ "bin": {
2746
+ "jest": "bin/jest.js"
2747
+ },
2748
+ "engines": {
2749
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2750
+ },
2751
+ "peerDependencies": {
2752
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
2753
+ },
2754
+ "peerDependenciesMeta": {
2755
+ "node-notifier": {
2756
+ "optional": true
2757
+ }
2758
+ }
2759
+ },
2760
+ "node_modules/jest-config": {
2761
+ "version": "29.7.0",
2762
+ "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz",
2763
+ "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==",
2764
+ "dev": true,
2765
+ "license": "MIT",
2766
+ "dependencies": {
2767
+ "@babel/core": "^7.11.6",
2768
+ "@jest/test-sequencer": "^29.7.0",
2769
+ "@jest/types": "^29.6.3",
2770
+ "babel-jest": "^29.7.0",
2771
+ "chalk": "^4.0.0",
2772
+ "ci-info": "^3.2.0",
2773
+ "deepmerge": "^4.2.2",
2774
+ "glob": "^7.1.3",
2775
+ "graceful-fs": "^4.2.9",
2776
+ "jest-circus": "^29.7.0",
2777
+ "jest-environment-node": "^29.7.0",
2778
+ "jest-get-type": "^29.6.3",
2779
+ "jest-regex-util": "^29.6.3",
2780
+ "jest-resolve": "^29.7.0",
2781
+ "jest-runner": "^29.7.0",
2782
+ "jest-util": "^29.7.0",
2783
+ "jest-validate": "^29.7.0",
2784
+ "micromatch": "^4.0.4",
2785
+ "parse-json": "^5.2.0",
2786
+ "pretty-format": "^29.7.0",
2787
+ "slash": "^3.0.0",
2788
+ "strip-json-comments": "^3.1.1"
2789
+ },
2790
+ "engines": {
2791
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2792
+ },
2793
+ "peerDependencies": {
2794
+ "@types/node": "*",
2795
+ "ts-node": ">=9.0.0"
2796
+ },
2797
+ "peerDependenciesMeta": {
2798
+ "@types/node": {
2799
+ "optional": true
2800
+ },
2801
+ "ts-node": {
2802
+ "optional": true
2803
+ }
2804
+ }
2805
+ },
2806
+ "node_modules/jest-diff": {
2807
+ "version": "29.7.0",
2808
+ "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz",
2809
+ "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==",
2810
+ "dev": true,
2811
+ "license": "MIT",
2812
+ "dependencies": {
2813
+ "chalk": "^4.0.0",
2814
+ "diff-sequences": "^29.6.3",
2815
+ "jest-get-type": "^29.6.3",
2816
+ "pretty-format": "^29.7.0"
2817
+ },
2818
+ "engines": {
2819
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2820
+ }
2821
+ },
2822
+ "node_modules/jest-docblock": {
2823
+ "version": "29.7.0",
2824
+ "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz",
2825
+ "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==",
2826
+ "dev": true,
2827
+ "license": "MIT",
2828
+ "dependencies": {
2829
+ "detect-newline": "^3.0.0"
2830
+ },
2831
+ "engines": {
2832
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2833
+ }
2834
+ },
2835
+ "node_modules/jest-each": {
2836
+ "version": "29.7.0",
2837
+ "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz",
2838
+ "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==",
2839
+ "dev": true,
2840
+ "license": "MIT",
2841
+ "dependencies": {
2842
+ "@jest/types": "^29.6.3",
2843
+ "chalk": "^4.0.0",
2844
+ "jest-get-type": "^29.6.3",
2845
+ "jest-util": "^29.7.0",
2846
+ "pretty-format": "^29.7.0"
2847
+ },
2848
+ "engines": {
2849
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2850
+ }
2851
+ },
2852
+ "node_modules/jest-environment-node": {
2853
+ "version": "29.7.0",
2854
+ "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz",
2855
+ "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==",
2856
+ "dev": true,
2857
+ "license": "MIT",
2858
+ "dependencies": {
2859
+ "@jest/environment": "^29.7.0",
2860
+ "@jest/fake-timers": "^29.7.0",
2861
+ "@jest/types": "^29.6.3",
2862
+ "@types/node": "*",
2863
+ "jest-mock": "^29.7.0",
2864
+ "jest-util": "^29.7.0"
2865
+ },
2866
+ "engines": {
2867
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2868
+ }
2869
+ },
2870
+ "node_modules/jest-get-type": {
2871
+ "version": "29.6.3",
2872
+ "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz",
2873
+ "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==",
2874
+ "dev": true,
2875
+ "license": "MIT",
2876
+ "engines": {
2877
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2878
+ }
2879
+ },
2880
+ "node_modules/jest-haste-map": {
2881
+ "version": "29.7.0",
2882
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz",
2883
+ "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==",
2884
+ "dev": true,
2885
+ "license": "MIT",
2886
+ "dependencies": {
2887
+ "@jest/types": "^29.6.3",
2888
+ "@types/graceful-fs": "^4.1.3",
2889
+ "@types/node": "*",
2890
+ "anymatch": "^3.0.3",
2891
+ "fb-watchman": "^2.0.0",
2892
+ "graceful-fs": "^4.2.9",
2893
+ "jest-regex-util": "^29.6.3",
2894
+ "jest-util": "^29.7.0",
2895
+ "jest-worker": "^29.7.0",
2896
+ "micromatch": "^4.0.4",
2897
+ "walker": "^1.0.8"
2898
+ },
2899
+ "engines": {
2900
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2901
+ },
2902
+ "optionalDependencies": {
2903
+ "fsevents": "^2.3.2"
2904
+ }
2905
+ },
2906
+ "node_modules/jest-leak-detector": {
2907
+ "version": "29.7.0",
2908
+ "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz",
2909
+ "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==",
2910
+ "dev": true,
2911
+ "license": "MIT",
2912
+ "dependencies": {
2913
+ "jest-get-type": "^29.6.3",
2914
+ "pretty-format": "^29.7.0"
2915
+ },
2916
+ "engines": {
2917
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2918
+ }
2919
+ },
2920
+ "node_modules/jest-matcher-utils": {
2921
+ "version": "29.7.0",
2922
+ "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz",
2923
+ "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==",
2924
+ "dev": true,
2925
+ "license": "MIT",
2926
+ "dependencies": {
2927
+ "chalk": "^4.0.0",
2928
+ "jest-diff": "^29.7.0",
2929
+ "jest-get-type": "^29.6.3",
2930
+ "pretty-format": "^29.7.0"
2931
+ },
2932
+ "engines": {
2933
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2934
+ }
2935
+ },
2936
+ "node_modules/jest-message-util": {
2937
+ "version": "29.7.0",
2938
+ "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz",
2939
+ "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==",
2940
+ "dev": true,
2941
+ "license": "MIT",
2942
+ "dependencies": {
2943
+ "@babel/code-frame": "^7.12.13",
2944
+ "@jest/types": "^29.6.3",
2945
+ "@types/stack-utils": "^2.0.0",
2946
+ "chalk": "^4.0.0",
2947
+ "graceful-fs": "^4.2.9",
2948
+ "micromatch": "^4.0.4",
2949
+ "pretty-format": "^29.7.0",
2950
+ "slash": "^3.0.0",
2951
+ "stack-utils": "^2.0.3"
2952
+ },
2953
+ "engines": {
2954
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2955
+ }
2956
+ },
2957
+ "node_modules/jest-mock": {
2958
+ "version": "29.7.0",
2959
+ "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz",
2960
+ "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==",
2961
+ "dev": true,
2962
+ "license": "MIT",
2963
+ "dependencies": {
2964
+ "@jest/types": "^29.6.3",
2965
+ "@types/node": "*",
2966
+ "jest-util": "^29.7.0"
2967
+ },
2968
+ "engines": {
2969
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2970
+ }
2971
+ },
2972
+ "node_modules/jest-pnp-resolver": {
2973
+ "version": "1.2.3",
2974
+ "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz",
2975
+ "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==",
2976
+ "dev": true,
2977
+ "license": "MIT",
2978
+ "engines": {
2979
+ "node": ">=6"
2980
+ },
2981
+ "peerDependencies": {
2982
+ "jest-resolve": "*"
2983
+ },
2984
+ "peerDependenciesMeta": {
2985
+ "jest-resolve": {
2986
+ "optional": true
2987
+ }
2988
+ }
2989
+ },
2990
+ "node_modules/jest-regex-util": {
2991
+ "version": "29.6.3",
2992
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz",
2993
+ "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==",
2994
+ "dev": true,
2995
+ "license": "MIT",
2996
+ "engines": {
2997
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2998
+ }
2999
+ },
3000
+ "node_modules/jest-resolve": {
3001
+ "version": "29.7.0",
3002
+ "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz",
3003
+ "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==",
3004
+ "dev": true,
3005
+ "license": "MIT",
3006
+ "dependencies": {
3007
+ "chalk": "^4.0.0",
3008
+ "graceful-fs": "^4.2.9",
3009
+ "jest-haste-map": "^29.7.0",
3010
+ "jest-pnp-resolver": "^1.2.2",
3011
+ "jest-util": "^29.7.0",
3012
+ "jest-validate": "^29.7.0",
3013
+ "resolve": "^1.20.0",
3014
+ "resolve.exports": "^2.0.0",
3015
+ "slash": "^3.0.0"
3016
+ },
3017
+ "engines": {
3018
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3019
+ }
3020
+ },
3021
+ "node_modules/jest-resolve-dependencies": {
3022
+ "version": "29.7.0",
3023
+ "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz",
3024
+ "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==",
3025
+ "dev": true,
3026
+ "license": "MIT",
3027
+ "dependencies": {
3028
+ "jest-regex-util": "^29.6.3",
3029
+ "jest-snapshot": "^29.7.0"
3030
+ },
3031
+ "engines": {
3032
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3033
+ }
3034
+ },
3035
+ "node_modules/jest-runner": {
3036
+ "version": "29.7.0",
3037
+ "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz",
3038
+ "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==",
3039
+ "dev": true,
3040
+ "license": "MIT",
3041
+ "dependencies": {
3042
+ "@jest/console": "^29.7.0",
3043
+ "@jest/environment": "^29.7.0",
3044
+ "@jest/test-result": "^29.7.0",
3045
+ "@jest/transform": "^29.7.0",
3046
+ "@jest/types": "^29.6.3",
3047
+ "@types/node": "*",
3048
+ "chalk": "^4.0.0",
3049
+ "emittery": "^0.13.1",
3050
+ "graceful-fs": "^4.2.9",
3051
+ "jest-docblock": "^29.7.0",
3052
+ "jest-environment-node": "^29.7.0",
3053
+ "jest-haste-map": "^29.7.0",
3054
+ "jest-leak-detector": "^29.7.0",
3055
+ "jest-message-util": "^29.7.0",
3056
+ "jest-resolve": "^29.7.0",
3057
+ "jest-runtime": "^29.7.0",
3058
+ "jest-util": "^29.7.0",
3059
+ "jest-watcher": "^29.7.0",
3060
+ "jest-worker": "^29.7.0",
3061
+ "p-limit": "^3.1.0",
3062
+ "source-map-support": "0.5.13"
3063
+ },
3064
+ "engines": {
3065
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3066
+ }
3067
+ },
3068
+ "node_modules/jest-runtime": {
3069
+ "version": "29.7.0",
3070
+ "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz",
3071
+ "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==",
3072
+ "dev": true,
3073
+ "license": "MIT",
3074
+ "dependencies": {
3075
+ "@jest/environment": "^29.7.0",
3076
+ "@jest/fake-timers": "^29.7.0",
3077
+ "@jest/globals": "^29.7.0",
3078
+ "@jest/source-map": "^29.6.3",
3079
+ "@jest/test-result": "^29.7.0",
3080
+ "@jest/transform": "^29.7.0",
3081
+ "@jest/types": "^29.6.3",
3082
+ "@types/node": "*",
3083
+ "chalk": "^4.0.0",
3084
+ "cjs-module-lexer": "^1.0.0",
3085
+ "collect-v8-coverage": "^1.0.0",
3086
+ "glob": "^7.1.3",
3087
+ "graceful-fs": "^4.2.9",
3088
+ "jest-haste-map": "^29.7.0",
3089
+ "jest-message-util": "^29.7.0",
3090
+ "jest-mock": "^29.7.0",
3091
+ "jest-regex-util": "^29.6.3",
3092
+ "jest-resolve": "^29.7.0",
3093
+ "jest-snapshot": "^29.7.0",
3094
+ "jest-util": "^29.7.0",
3095
+ "slash": "^3.0.0",
3096
+ "strip-bom": "^4.0.0"
3097
+ },
3098
+ "engines": {
3099
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3100
+ }
3101
+ },
3102
+ "node_modules/jest-snapshot": {
3103
+ "version": "29.7.0",
3104
+ "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz",
3105
+ "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==",
3106
+ "dev": true,
3107
+ "license": "MIT",
3108
+ "dependencies": {
3109
+ "@babel/core": "^7.11.6",
3110
+ "@babel/generator": "^7.7.2",
3111
+ "@babel/plugin-syntax-jsx": "^7.7.2",
3112
+ "@babel/plugin-syntax-typescript": "^7.7.2",
3113
+ "@babel/types": "^7.3.3",
3114
+ "@jest/expect-utils": "^29.7.0",
3115
+ "@jest/transform": "^29.7.0",
3116
+ "@jest/types": "^29.6.3",
3117
+ "babel-preset-current-node-syntax": "^1.0.0",
3118
+ "chalk": "^4.0.0",
3119
+ "expect": "^29.7.0",
3120
+ "graceful-fs": "^4.2.9",
3121
+ "jest-diff": "^29.7.0",
3122
+ "jest-get-type": "^29.6.3",
3123
+ "jest-matcher-utils": "^29.7.0",
3124
+ "jest-message-util": "^29.7.0",
3125
+ "jest-util": "^29.7.0",
3126
+ "natural-compare": "^1.4.0",
3127
+ "pretty-format": "^29.7.0",
3128
+ "semver": "^7.5.3"
3129
+ },
3130
+ "engines": {
3131
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3132
+ }
3133
+ },
3134
+ "node_modules/jest-snapshot/node_modules/semver": {
3135
+ "version": "7.7.3",
3136
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
3137
+ "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
3138
+ "dev": true,
3139
+ "license": "ISC",
3140
+ "bin": {
3141
+ "semver": "bin/semver.js"
3142
+ },
3143
+ "engines": {
3144
+ "node": ">=10"
3145
+ }
3146
+ },
3147
+ "node_modules/jest-util": {
3148
+ "version": "29.7.0",
3149
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz",
3150
+ "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==",
3151
+ "dev": true,
3152
+ "license": "MIT",
3153
+ "dependencies": {
3154
+ "@jest/types": "^29.6.3",
3155
+ "@types/node": "*",
3156
+ "chalk": "^4.0.0",
3157
+ "ci-info": "^3.2.0",
3158
+ "graceful-fs": "^4.2.9",
3159
+ "picomatch": "^2.2.3"
3160
+ },
3161
+ "engines": {
3162
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3163
+ }
3164
+ },
3165
+ "node_modules/jest-validate": {
3166
+ "version": "29.7.0",
3167
+ "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz",
3168
+ "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==",
3169
+ "dev": true,
3170
+ "license": "MIT",
3171
+ "dependencies": {
3172
+ "@jest/types": "^29.6.3",
3173
+ "camelcase": "^6.2.0",
3174
+ "chalk": "^4.0.0",
3175
+ "jest-get-type": "^29.6.3",
3176
+ "leven": "^3.1.0",
3177
+ "pretty-format": "^29.7.0"
3178
+ },
3179
+ "engines": {
3180
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3181
+ }
3182
+ },
3183
+ "node_modules/jest-validate/node_modules/camelcase": {
3184
+ "version": "6.3.0",
3185
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
3186
+ "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
3187
+ "dev": true,
3188
+ "license": "MIT",
3189
+ "engines": {
3190
+ "node": ">=10"
3191
+ },
3192
+ "funding": {
3193
+ "url": "https://github.com/sponsors/sindresorhus"
3194
+ }
3195
+ },
3196
+ "node_modules/jest-watcher": {
3197
+ "version": "29.7.0",
3198
+ "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz",
3199
+ "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==",
3200
+ "dev": true,
3201
+ "license": "MIT",
3202
+ "dependencies": {
3203
+ "@jest/test-result": "^29.7.0",
3204
+ "@jest/types": "^29.6.3",
3205
+ "@types/node": "*",
3206
+ "ansi-escapes": "^4.2.1",
3207
+ "chalk": "^4.0.0",
3208
+ "emittery": "^0.13.1",
3209
+ "jest-util": "^29.7.0",
3210
+ "string-length": "^4.0.1"
3211
+ },
3212
+ "engines": {
3213
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3214
+ }
3215
+ },
3216
+ "node_modules/jest-worker": {
3217
+ "version": "29.7.0",
3218
+ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz",
3219
+ "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==",
3220
+ "dev": true,
3221
+ "license": "MIT",
3222
+ "dependencies": {
3223
+ "@types/node": "*",
3224
+ "jest-util": "^29.7.0",
3225
+ "merge-stream": "^2.0.0",
3226
+ "supports-color": "^8.0.0"
3227
+ },
3228
+ "engines": {
3229
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3230
+ }
3231
+ },
3232
+ "node_modules/jest-worker/node_modules/supports-color": {
3233
+ "version": "8.1.1",
3234
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
3235
+ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
3236
+ "dev": true,
3237
+ "license": "MIT",
3238
+ "dependencies": {
3239
+ "has-flag": "^4.0.0"
3240
+ },
3241
+ "engines": {
3242
+ "node": ">=10"
3243
+ },
3244
+ "funding": {
3245
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
3246
+ }
3247
+ },
3248
+ "node_modules/js-tokens": {
3249
+ "version": "4.0.0",
3250
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
3251
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
3252
+ "dev": true,
3253
+ "license": "MIT"
3254
+ },
3255
+ "node_modules/js-yaml": {
3256
+ "version": "3.14.2",
3257
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.2.tgz",
3258
+ "integrity": "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==",
3259
+ "dev": true,
3260
+ "license": "MIT",
3261
+ "dependencies": {
3262
+ "argparse": "^1.0.7",
3263
+ "esprima": "^4.0.0"
3264
+ },
3265
+ "bin": {
3266
+ "js-yaml": "bin/js-yaml.js"
3267
+ }
3268
+ },
3269
+ "node_modules/jsesc": {
3270
+ "version": "3.1.0",
3271
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
3272
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
3273
+ "dev": true,
3274
+ "license": "MIT",
3275
+ "bin": {
3276
+ "jsesc": "bin/jsesc"
3277
+ },
3278
+ "engines": {
3279
+ "node": ">=6"
3280
+ }
3281
+ },
3282
+ "node_modules/json-parse-even-better-errors": {
3283
+ "version": "2.3.1",
3284
+ "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
3285
+ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
3286
+ "dev": true,
3287
+ "license": "MIT"
3288
+ },
3289
+ "node_modules/json5": {
3290
+ "version": "2.2.3",
3291
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
3292
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
3293
+ "dev": true,
3294
+ "license": "MIT",
3295
+ "bin": {
3296
+ "json5": "lib/cli.js"
3297
+ },
3298
+ "engines": {
3299
+ "node": ">=6"
3300
+ }
3301
+ },
3302
+ "node_modules/kleur": {
3303
+ "version": "3.0.3",
3304
+ "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
3305
+ "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
3306
+ "dev": true,
3307
+ "license": "MIT",
3308
+ "engines": {
3309
+ "node": ">=6"
3310
+ }
3311
+ },
3312
+ "node_modules/leven": {
3313
+ "version": "3.1.0",
3314
+ "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz",
3315
+ "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==",
3316
+ "dev": true,
3317
+ "license": "MIT",
3318
+ "engines": {
3319
+ "node": ">=6"
3320
+ }
3321
+ },
3322
+ "node_modules/lines-and-columns": {
3323
+ "version": "1.2.4",
3324
+ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
3325
+ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
3326
+ "dev": true,
3327
+ "license": "MIT"
3328
+ },
3329
+ "node_modules/locate-path": {
3330
+ "version": "5.0.0",
3331
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
3332
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
3333
+ "dev": true,
3334
+ "license": "MIT",
3335
+ "dependencies": {
3336
+ "p-locate": "^4.1.0"
3337
+ },
3338
+ "engines": {
3339
+ "node": ">=8"
3340
+ }
3341
+ },
3342
+ "node_modules/lodash.memoize": {
3343
+ "version": "4.1.2",
3344
+ "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
3345
+ "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==",
3346
+ "dev": true,
3347
+ "license": "MIT"
3348
+ },
3349
+ "node_modules/lru-cache": {
3350
+ "version": "5.1.1",
3351
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
3352
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
3353
+ "dev": true,
3354
+ "license": "ISC",
3355
+ "dependencies": {
3356
+ "yallist": "^3.0.2"
3357
+ }
3358
+ },
3359
+ "node_modules/make-dir": {
3360
+ "version": "4.0.0",
3361
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz",
3362
+ "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==",
3363
+ "dev": true,
3364
+ "license": "MIT",
3365
+ "dependencies": {
3366
+ "semver": "^7.5.3"
3367
+ },
3368
+ "engines": {
3369
+ "node": ">=10"
3370
+ },
3371
+ "funding": {
3372
+ "url": "https://github.com/sponsors/sindresorhus"
3373
+ }
3374
+ },
3375
+ "node_modules/make-dir/node_modules/semver": {
3376
+ "version": "7.7.3",
3377
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
3378
+ "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
3379
+ "dev": true,
3380
+ "license": "ISC",
3381
+ "bin": {
3382
+ "semver": "bin/semver.js"
3383
+ },
3384
+ "engines": {
3385
+ "node": ">=10"
3386
+ }
3387
+ },
3388
+ "node_modules/make-error": {
3389
+ "version": "1.3.6",
3390
+ "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
3391
+ "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==",
3392
+ "dev": true,
3393
+ "license": "ISC"
3394
+ },
3395
+ "node_modules/makeerror": {
3396
+ "version": "1.0.12",
3397
+ "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz",
3398
+ "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==",
3399
+ "dev": true,
3400
+ "license": "BSD-3-Clause",
3401
+ "dependencies": {
3402
+ "tmpl": "1.0.5"
3403
+ }
3404
+ },
3405
+ "node_modules/merge-stream": {
3406
+ "version": "2.0.0",
3407
+ "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
3408
+ "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
3409
+ "dev": true,
3410
+ "license": "MIT"
3411
+ },
3412
+ "node_modules/micromatch": {
3413
+ "version": "4.0.8",
3414
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
3415
+ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
3416
+ "dev": true,
3417
+ "license": "MIT",
3418
+ "dependencies": {
3419
+ "braces": "^3.0.3",
3420
+ "picomatch": "^2.3.1"
3421
+ },
3422
+ "engines": {
3423
+ "node": ">=8.6"
3424
+ }
3425
+ },
3426
+ "node_modules/mimic-fn": {
3427
+ "version": "2.1.0",
3428
+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
3429
+ "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
3430
+ "dev": true,
3431
+ "license": "MIT",
3432
+ "engines": {
3433
+ "node": ">=6"
3434
+ }
3435
+ },
3436
+ "node_modules/minimatch": {
3437
+ "version": "3.1.2",
3438
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
3439
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
3440
+ "license": "ISC",
3441
+ "dependencies": {
3442
+ "brace-expansion": "^1.1.7"
3443
+ },
3444
+ "engines": {
3445
+ "node": "*"
3446
+ }
3447
+ },
3448
+ "node_modules/minimist": {
3449
+ "version": "1.2.8",
3450
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
3451
+ "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
3452
+ "dev": true,
3453
+ "license": "MIT",
3454
+ "funding": {
3455
+ "url": "https://github.com/sponsors/ljharb"
3456
+ }
3457
+ },
3458
+ "node_modules/ms": {
3459
+ "version": "2.1.3",
3460
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
3461
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
3462
+ "dev": true,
3463
+ "license": "MIT"
3464
+ },
3465
+ "node_modules/natural-compare": {
3466
+ "version": "1.4.0",
3467
+ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
3468
+ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
3469
+ "dev": true,
3470
+ "license": "MIT"
3471
+ },
3472
+ "node_modules/neo-async": {
3473
+ "version": "2.6.2",
3474
+ "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz",
3475
+ "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
3476
+ "dev": true,
3477
+ "license": "MIT"
3478
+ },
3479
+ "node_modules/node-int64": {
3480
+ "version": "0.4.0",
3481
+ "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz",
3482
+ "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==",
3483
+ "dev": true,
3484
+ "license": "MIT"
3485
+ },
3486
+ "node_modules/node-releases": {
3487
+ "version": "2.0.27",
3488
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz",
3489
+ "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
3490
+ "dev": true,
3491
+ "license": "MIT"
3492
+ },
3493
+ "node_modules/normalize-path": {
3494
+ "version": "3.0.0",
3495
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
3496
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
3497
+ "dev": true,
3498
+ "license": "MIT",
3499
+ "engines": {
3500
+ "node": ">=0.10.0"
3501
+ }
3502
+ },
3503
+ "node_modules/npm-run-path": {
3504
+ "version": "4.0.1",
3505
+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
3506
+ "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
3507
+ "dev": true,
3508
+ "license": "MIT",
3509
+ "dependencies": {
3510
+ "path-key": "^3.0.0"
3511
+ },
3512
+ "engines": {
3513
+ "node": ">=8"
3514
+ }
3515
+ },
3516
+ "node_modules/once": {
3517
+ "version": "1.4.0",
3518
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
3519
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
3520
+ "dev": true,
3521
+ "license": "ISC",
3522
+ "dependencies": {
3523
+ "wrappy": "1"
3524
+ }
3525
+ },
3526
+ "node_modules/onetime": {
3527
+ "version": "5.1.2",
3528
+ "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
3529
+ "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
3530
+ "dev": true,
3531
+ "license": "MIT",
3532
+ "dependencies": {
3533
+ "mimic-fn": "^2.1.0"
3534
+ },
3535
+ "engines": {
3536
+ "node": ">=6"
3537
+ },
3538
+ "funding": {
3539
+ "url": "https://github.com/sponsors/sindresorhus"
3540
+ }
3541
+ },
3542
+ "node_modules/p-limit": {
3543
+ "version": "3.1.0",
3544
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
3545
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
3546
+ "dev": true,
3547
+ "license": "MIT",
3548
+ "dependencies": {
3549
+ "yocto-queue": "^0.1.0"
3550
+ },
3551
+ "engines": {
3552
+ "node": ">=10"
3553
+ },
3554
+ "funding": {
3555
+ "url": "https://github.com/sponsors/sindresorhus"
3556
+ }
3557
+ },
3558
+ "node_modules/p-locate": {
3559
+ "version": "4.1.0",
3560
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
3561
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
3562
+ "dev": true,
3563
+ "license": "MIT",
3564
+ "dependencies": {
3565
+ "p-limit": "^2.2.0"
3566
+ },
3567
+ "engines": {
3568
+ "node": ">=8"
3569
+ }
3570
+ },
3571
+ "node_modules/p-locate/node_modules/p-limit": {
3572
+ "version": "2.3.0",
3573
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
3574
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
3575
+ "dev": true,
3576
+ "license": "MIT",
3577
+ "dependencies": {
3578
+ "p-try": "^2.0.0"
3579
+ },
3580
+ "engines": {
3581
+ "node": ">=6"
3582
+ },
3583
+ "funding": {
3584
+ "url": "https://github.com/sponsors/sindresorhus"
3585
+ }
3586
+ },
3587
+ "node_modules/p-try": {
3588
+ "version": "2.2.0",
3589
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
3590
+ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
3591
+ "dev": true,
3592
+ "license": "MIT",
3593
+ "engines": {
3594
+ "node": ">=6"
3595
+ }
3596
+ },
3597
+ "node_modules/parse-json": {
3598
+ "version": "5.2.0",
3599
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
3600
+ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
3601
+ "dev": true,
3602
+ "license": "MIT",
3603
+ "dependencies": {
3604
+ "@babel/code-frame": "^7.0.0",
3605
+ "error-ex": "^1.3.1",
3606
+ "json-parse-even-better-errors": "^2.3.0",
3607
+ "lines-and-columns": "^1.1.6"
3608
+ },
3609
+ "engines": {
3610
+ "node": ">=8"
3611
+ },
3612
+ "funding": {
3613
+ "url": "https://github.com/sponsors/sindresorhus"
3614
+ }
3615
+ },
3616
+ "node_modules/path-exists": {
3617
+ "version": "4.0.0",
3618
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
3619
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
3620
+ "dev": true,
3621
+ "license": "MIT",
3622
+ "engines": {
3623
+ "node": ">=8"
3624
+ }
3625
+ },
3626
+ "node_modules/path-is-absolute": {
3627
+ "version": "1.0.1",
3628
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
3629
+ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
3630
+ "dev": true,
3631
+ "license": "MIT",
3632
+ "engines": {
3633
+ "node": ">=0.10.0"
3634
+ }
3635
+ },
3636
+ "node_modules/path-key": {
3637
+ "version": "3.1.1",
3638
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
3639
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
3640
+ "dev": true,
3641
+ "license": "MIT",
3642
+ "engines": {
3643
+ "node": ">=8"
3644
+ }
3645
+ },
3646
+ "node_modules/path-parse": {
3647
+ "version": "1.0.7",
3648
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
3649
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
3650
+ "dev": true,
3651
+ "license": "MIT"
3652
+ },
3653
+ "node_modules/picocolors": {
3654
+ "version": "1.1.1",
3655
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
3656
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
3657
+ "dev": true,
3658
+ "license": "ISC"
3659
+ },
3660
+ "node_modules/picomatch": {
3661
+ "version": "2.3.1",
3662
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
3663
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
3664
+ "dev": true,
3665
+ "license": "MIT",
3666
+ "engines": {
3667
+ "node": ">=8.6"
3668
+ },
3669
+ "funding": {
3670
+ "url": "https://github.com/sponsors/jonschlinkert"
3671
+ }
3672
+ },
3673
+ "node_modules/pirates": {
3674
+ "version": "4.0.7",
3675
+ "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz",
3676
+ "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==",
3677
+ "dev": true,
3678
+ "license": "MIT",
3679
+ "engines": {
3680
+ "node": ">= 6"
3681
+ }
3682
+ },
3683
+ "node_modules/pkg-dir": {
3684
+ "version": "4.2.0",
3685
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
3686
+ "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
3687
+ "dev": true,
3688
+ "license": "MIT",
3689
+ "dependencies": {
3690
+ "find-up": "^4.0.0"
3691
+ },
3692
+ "engines": {
3693
+ "node": ">=8"
3694
+ }
3695
+ },
3696
+ "node_modules/pretty-format": {
3697
+ "version": "29.7.0",
3698
+ "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz",
3699
+ "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
3700
+ "dev": true,
3701
+ "license": "MIT",
3702
+ "dependencies": {
3703
+ "@jest/schemas": "^29.6.3",
3704
+ "ansi-styles": "^5.0.0",
3705
+ "react-is": "^18.0.0"
3706
+ },
3707
+ "engines": {
3708
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3709
+ }
3710
+ },
3711
+ "node_modules/pretty-format/node_modules/ansi-styles": {
3712
+ "version": "5.2.0",
3713
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
3714
+ "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
3715
+ "dev": true,
3716
+ "license": "MIT",
3717
+ "engines": {
3718
+ "node": ">=10"
3719
+ },
3720
+ "funding": {
3721
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
3722
+ }
3723
+ },
3724
+ "node_modules/prompts": {
3725
+ "version": "2.4.2",
3726
+ "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
3727
+ "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
3728
+ "dev": true,
3729
+ "license": "MIT",
3730
+ "dependencies": {
3731
+ "kleur": "^3.0.3",
3732
+ "sisteransi": "^1.0.5"
3733
+ },
3734
+ "engines": {
3735
+ "node": ">= 6"
3736
+ }
3737
+ },
3738
+ "node_modules/pure-rand": {
3739
+ "version": "6.1.0",
3740
+ "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz",
3741
+ "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==",
3742
+ "dev": true,
3743
+ "funding": [
3744
+ {
3745
+ "type": "individual",
3746
+ "url": "https://github.com/sponsors/dubzzz"
3747
+ },
3748
+ {
3749
+ "type": "opencollective",
3750
+ "url": "https://opencollective.com/fast-check"
3751
+ }
3752
+ ],
3753
+ "license": "MIT"
3754
+ },
3755
+ "node_modules/react-is": {
3756
+ "version": "18.3.1",
3757
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
3758
+ "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
3759
+ "dev": true,
3760
+ "license": "MIT"
3761
+ },
3762
+ "node_modules/require-directory": {
3763
+ "version": "2.1.1",
3764
+ "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
3765
+ "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
3766
+ "dev": true,
3767
+ "license": "MIT",
3768
+ "engines": {
3769
+ "node": ">=0.10.0"
3770
+ }
3771
+ },
3772
+ "node_modules/resolve": {
3773
+ "version": "1.22.11",
3774
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz",
3775
+ "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==",
3776
+ "dev": true,
3777
+ "license": "MIT",
3778
+ "dependencies": {
3779
+ "is-core-module": "^2.16.1",
3780
+ "path-parse": "^1.0.7",
3781
+ "supports-preserve-symlinks-flag": "^1.0.0"
3782
+ },
3783
+ "bin": {
3784
+ "resolve": "bin/resolve"
3785
+ },
3786
+ "engines": {
3787
+ "node": ">= 0.4"
3788
+ },
3789
+ "funding": {
3790
+ "url": "https://github.com/sponsors/ljharb"
3791
+ }
3792
+ },
3793
+ "node_modules/resolve-cwd": {
3794
+ "version": "3.0.0",
3795
+ "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz",
3796
+ "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==",
3797
+ "dev": true,
3798
+ "license": "MIT",
3799
+ "dependencies": {
3800
+ "resolve-from": "^5.0.0"
3801
+ },
3802
+ "engines": {
3803
+ "node": ">=8"
3804
+ }
3805
+ },
3806
+ "node_modules/resolve-from": {
3807
+ "version": "5.0.0",
3808
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
3809
+ "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
3810
+ "dev": true,
3811
+ "license": "MIT",
3812
+ "engines": {
3813
+ "node": ">=8"
3814
+ }
3815
+ },
3816
+ "node_modules/resolve.exports": {
3817
+ "version": "2.0.3",
3818
+ "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz",
3819
+ "integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==",
3820
+ "dev": true,
3821
+ "license": "MIT",
3822
+ "engines": {
3823
+ "node": ">=10"
3824
+ }
3825
+ },
3826
+ "node_modules/semver": {
3827
+ "version": "6.3.1",
3828
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
3829
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
3830
+ "license": "ISC",
3831
+ "bin": {
3832
+ "semver": "bin/semver.js"
3833
+ }
3834
+ },
3835
+ "node_modules/shebang-command": {
3836
+ "version": "2.0.0",
3837
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
3838
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
3839
+ "dev": true,
3840
+ "license": "MIT",
3841
+ "dependencies": {
3842
+ "shebang-regex": "^3.0.0"
3843
+ },
3844
+ "engines": {
3845
+ "node": ">=8"
3846
+ }
3847
+ },
3848
+ "node_modules/shebang-regex": {
3849
+ "version": "3.0.0",
3850
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
3851
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
3852
+ "dev": true,
3853
+ "license": "MIT",
3854
+ "engines": {
3855
+ "node": ">=8"
3856
+ }
3857
+ },
3858
+ "node_modules/signal-exit": {
3859
+ "version": "3.0.7",
3860
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
3861
+ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
3862
+ "dev": true,
3863
+ "license": "ISC"
3864
+ },
3865
+ "node_modules/sisteransi": {
3866
+ "version": "1.0.5",
3867
+ "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
3868
+ "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
3869
+ "dev": true,
3870
+ "license": "MIT"
3871
+ },
3872
+ "node_modules/slash": {
3873
+ "version": "3.0.0",
3874
+ "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
3875
+ "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
3876
+ "dev": true,
3877
+ "license": "MIT",
3878
+ "engines": {
3879
+ "node": ">=8"
3880
+ }
3881
+ },
3882
+ "node_modules/source-map": {
3883
+ "version": "0.6.1",
3884
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
3885
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
3886
+ "dev": true,
3887
+ "license": "BSD-3-Clause",
3888
+ "engines": {
3889
+ "node": ">=0.10.0"
3890
+ }
3891
+ },
3892
+ "node_modules/source-map-support": {
3893
+ "version": "0.5.13",
3894
+ "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz",
3895
+ "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==",
3896
+ "dev": true,
3897
+ "license": "MIT",
3898
+ "dependencies": {
3899
+ "buffer-from": "^1.0.0",
3900
+ "source-map": "^0.6.0"
3901
+ }
3902
+ },
3903
+ "node_modules/sprintf-js": {
3904
+ "version": "1.0.3",
3905
+ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
3906
+ "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==",
3907
+ "dev": true,
3908
+ "license": "BSD-3-Clause"
3909
+ },
3910
+ "node_modules/stack-utils": {
3911
+ "version": "2.0.6",
3912
+ "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz",
3913
+ "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==",
3914
+ "dev": true,
3915
+ "license": "MIT",
3916
+ "dependencies": {
3917
+ "escape-string-regexp": "^2.0.0"
3918
+ },
3919
+ "engines": {
3920
+ "node": ">=10"
3921
+ }
3922
+ },
3923
+ "node_modules/string-length": {
3924
+ "version": "4.0.2",
3925
+ "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz",
3926
+ "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==",
3927
+ "dev": true,
3928
+ "license": "MIT",
3929
+ "dependencies": {
3930
+ "char-regex": "^1.0.2",
3931
+ "strip-ansi": "^6.0.0"
3932
+ },
3933
+ "engines": {
3934
+ "node": ">=10"
3935
+ }
3936
+ },
3937
+ "node_modules/string-width": {
3938
+ "version": "4.2.3",
3939
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
3940
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
3941
+ "dev": true,
3942
+ "license": "MIT",
3943
+ "dependencies": {
3944
+ "emoji-regex": "^8.0.0",
3945
+ "is-fullwidth-code-point": "^3.0.0",
3946
+ "strip-ansi": "^6.0.1"
3947
+ },
3948
+ "engines": {
3949
+ "node": ">=8"
3950
+ }
3951
+ },
3952
+ "node_modules/strip-ansi": {
3953
+ "version": "6.0.1",
3954
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
3955
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
3956
+ "dev": true,
3957
+ "license": "MIT",
3958
+ "dependencies": {
3959
+ "ansi-regex": "^5.0.1"
3960
+ },
3961
+ "engines": {
3962
+ "node": ">=8"
3963
+ }
3964
+ },
3965
+ "node_modules/strip-bom": {
3966
+ "version": "4.0.0",
3967
+ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz",
3968
+ "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==",
3969
+ "dev": true,
3970
+ "license": "MIT",
3971
+ "engines": {
3972
+ "node": ">=8"
3973
+ }
3974
+ },
3975
+ "node_modules/strip-final-newline": {
3976
+ "version": "2.0.0",
3977
+ "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
3978
+ "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
3979
+ "dev": true,
3980
+ "license": "MIT",
3981
+ "engines": {
3982
+ "node": ">=6"
3983
+ }
3984
+ },
3985
+ "node_modules/strip-json-comments": {
3986
+ "version": "3.1.1",
3987
+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
3988
+ "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
3989
+ "dev": true,
3990
+ "license": "MIT",
3991
+ "engines": {
3992
+ "node": ">=8"
3993
+ },
3994
+ "funding": {
3995
+ "url": "https://github.com/sponsors/sindresorhus"
3996
+ }
3997
+ },
3998
+ "node_modules/supports-color": {
3999
+ "version": "7.2.0",
4000
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
4001
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
4002
+ "dev": true,
4003
+ "license": "MIT",
4004
+ "dependencies": {
4005
+ "has-flag": "^4.0.0"
4006
+ },
4007
+ "engines": {
4008
+ "node": ">=8"
4009
+ }
4010
+ },
4011
+ "node_modules/supports-preserve-symlinks-flag": {
4012
+ "version": "1.0.0",
4013
+ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
4014
+ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
4015
+ "dev": true,
4016
+ "license": "MIT",
4017
+ "engines": {
4018
+ "node": ">= 0.4"
4019
+ },
4020
+ "funding": {
4021
+ "url": "https://github.com/sponsors/ljharb"
4022
+ }
4023
+ },
4024
+ "node_modules/test-exclude": {
4025
+ "version": "6.0.0",
4026
+ "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz",
4027
+ "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==",
4028
+ "dev": true,
4029
+ "license": "ISC",
4030
+ "dependencies": {
4031
+ "@istanbuljs/schema": "^0.1.2",
4032
+ "glob": "^7.1.4",
4033
+ "minimatch": "^3.0.4"
4034
+ },
4035
+ "engines": {
4036
+ "node": ">=8"
4037
+ }
4038
+ },
4039
+ "node_modules/tmpl": {
4040
+ "version": "1.0.5",
4041
+ "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz",
4042
+ "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==",
4043
+ "dev": true,
4044
+ "license": "BSD-3-Clause"
4045
+ },
4046
+ "node_modules/to-regex-range": {
4047
+ "version": "5.0.1",
4048
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
4049
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
4050
+ "dev": true,
4051
+ "license": "MIT",
4052
+ "dependencies": {
4053
+ "is-number": "^7.0.0"
4054
+ },
4055
+ "engines": {
4056
+ "node": ">=8.0"
4057
+ }
4058
+ },
4059
+ "node_modules/ts-jest": {
4060
+ "version": "29.4.6",
4061
+ "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.4.6.tgz",
4062
+ "integrity": "sha512-fSpWtOO/1AjSNQguk43hb/JCo16oJDnMJf3CdEGNkqsEX3t0KX96xvyX1D7PfLCpVoKu4MfVrqUkFyblYoY4lA==",
4063
+ "dev": true,
4064
+ "license": "MIT",
4065
+ "dependencies": {
4066
+ "bs-logger": "^0.2.6",
4067
+ "fast-json-stable-stringify": "^2.1.0",
4068
+ "handlebars": "^4.7.8",
4069
+ "json5": "^2.2.3",
4070
+ "lodash.memoize": "^4.1.2",
4071
+ "make-error": "^1.3.6",
4072
+ "semver": "^7.7.3",
4073
+ "type-fest": "^4.41.0",
4074
+ "yargs-parser": "^21.1.1"
4075
+ },
4076
+ "bin": {
4077
+ "ts-jest": "cli.js"
4078
+ },
4079
+ "engines": {
4080
+ "node": "^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0"
4081
+ },
4082
+ "peerDependencies": {
4083
+ "@babel/core": ">=7.0.0-beta.0 <8",
4084
+ "@jest/transform": "^29.0.0 || ^30.0.0",
4085
+ "@jest/types": "^29.0.0 || ^30.0.0",
4086
+ "babel-jest": "^29.0.0 || ^30.0.0",
4087
+ "jest": "^29.0.0 || ^30.0.0",
4088
+ "jest-util": "^29.0.0 || ^30.0.0",
4089
+ "typescript": ">=4.3 <6"
4090
+ },
4091
+ "peerDependenciesMeta": {
4092
+ "@babel/core": {
4093
+ "optional": true
4094
+ },
4095
+ "@jest/transform": {
4096
+ "optional": true
4097
+ },
4098
+ "@jest/types": {
4099
+ "optional": true
4100
+ },
4101
+ "babel-jest": {
4102
+ "optional": true
4103
+ },
4104
+ "esbuild": {
4105
+ "optional": true
4106
+ },
4107
+ "jest-util": {
4108
+ "optional": true
4109
+ }
4110
+ }
4111
+ },
4112
+ "node_modules/ts-jest/node_modules/semver": {
4113
+ "version": "7.7.3",
4114
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
4115
+ "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
4116
+ "dev": true,
4117
+ "license": "ISC",
4118
+ "bin": {
4119
+ "semver": "bin/semver.js"
4120
+ },
4121
+ "engines": {
4122
+ "node": ">=10"
4123
+ }
4124
+ },
4125
+ "node_modules/ts-jest/node_modules/type-fest": {
4126
+ "version": "4.41.0",
4127
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.41.0.tgz",
4128
+ "integrity": "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==",
4129
+ "dev": true,
4130
+ "license": "(MIT OR CC0-1.0)",
4131
+ "engines": {
4132
+ "node": ">=16"
4133
+ },
4134
+ "funding": {
4135
+ "url": "https://github.com/sponsors/sindresorhus"
4136
+ }
4137
+ },
4138
+ "node_modules/ts-node": {
4139
+ "version": "10.9.2",
4140
+ "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz",
4141
+ "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==",
4142
+ "dev": true,
4143
+ "license": "MIT",
4144
+ "peer": true,
4145
+ "dependencies": {
4146
+ "@cspotcode/source-map-support": "^0.8.0",
4147
+ "@tsconfig/node10": "^1.0.7",
4148
+ "@tsconfig/node12": "^1.0.7",
4149
+ "@tsconfig/node14": "^1.0.0",
4150
+ "@tsconfig/node16": "^1.0.2",
4151
+ "acorn": "^8.4.1",
4152
+ "acorn-walk": "^8.1.1",
4153
+ "arg": "^4.1.0",
4154
+ "create-require": "^1.1.0",
4155
+ "diff": "^4.0.1",
4156
+ "make-error": "^1.1.1",
4157
+ "v8-compile-cache-lib": "^3.0.1",
4158
+ "yn": "3.1.1"
4159
+ },
4160
+ "bin": {
4161
+ "ts-node": "dist/bin.js",
4162
+ "ts-node-cwd": "dist/bin-cwd.js",
4163
+ "ts-node-esm": "dist/bin-esm.js",
4164
+ "ts-node-script": "dist/bin-script.js",
4165
+ "ts-node-transpile-only": "dist/bin-transpile.js",
4166
+ "ts-script": "dist/bin-script-deprecated.js"
4167
+ },
4168
+ "peerDependencies": {
4169
+ "@swc/core": ">=1.2.50",
4170
+ "@swc/wasm": ">=1.2.50",
4171
+ "@types/node": "*",
4172
+ "typescript": ">=2.7"
4173
+ },
4174
+ "peerDependenciesMeta": {
4175
+ "@swc/core": {
4176
+ "optional": true
4177
+ },
4178
+ "@swc/wasm": {
4179
+ "optional": true
4180
+ }
4181
+ }
4182
+ },
4183
+ "node_modules/type-detect": {
4184
+ "version": "4.0.8",
4185
+ "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
4186
+ "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
4187
+ "dev": true,
4188
+ "license": "MIT",
4189
+ "engines": {
4190
+ "node": ">=4"
4191
+ }
4192
+ },
4193
+ "node_modules/type-fest": {
4194
+ "version": "0.21.3",
4195
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
4196
+ "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
4197
+ "dev": true,
4198
+ "license": "(MIT OR CC0-1.0)",
4199
+ "engines": {
4200
+ "node": ">=10"
4201
+ },
4202
+ "funding": {
4203
+ "url": "https://github.com/sponsors/sindresorhus"
4204
+ }
4205
+ },
4206
+ "node_modules/typescript": {
4207
+ "version": "5.9.3",
4208
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
4209
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
4210
+ "dev": true,
4211
+ "license": "Apache-2.0",
4212
+ "peer": true,
4213
+ "bin": {
4214
+ "tsc": "bin/tsc",
4215
+ "tsserver": "bin/tsserver"
4216
+ },
4217
+ "engines": {
4218
+ "node": ">=14.17"
4219
+ }
4220
+ },
4221
+ "node_modules/uglify-js": {
4222
+ "version": "3.19.3",
4223
+ "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.3.tgz",
4224
+ "integrity": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==",
4225
+ "dev": true,
4226
+ "license": "BSD-2-Clause",
4227
+ "optional": true,
4228
+ "bin": {
4229
+ "uglifyjs": "bin/uglifyjs"
4230
+ },
4231
+ "engines": {
4232
+ "node": ">=0.8.0"
4233
+ }
4234
+ },
4235
+ "node_modules/undici-types": {
4236
+ "version": "6.21.0",
4237
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
4238
+ "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
4239
+ "dev": true,
4240
+ "license": "MIT"
4241
+ },
4242
+ "node_modules/update-browserslist-db": {
4243
+ "version": "1.2.3",
4244
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
4245
+ "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
4246
+ "dev": true,
4247
+ "funding": [
4248
+ {
4249
+ "type": "opencollective",
4250
+ "url": "https://opencollective.com/browserslist"
4251
+ },
4252
+ {
4253
+ "type": "tidelift",
4254
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
4255
+ },
4256
+ {
4257
+ "type": "github",
4258
+ "url": "https://github.com/sponsors/ai"
4259
+ }
4260
+ ],
4261
+ "license": "MIT",
4262
+ "dependencies": {
4263
+ "escalade": "^3.2.0",
4264
+ "picocolors": "^1.1.1"
4265
+ },
4266
+ "bin": {
4267
+ "update-browserslist-db": "cli.js"
4268
+ },
4269
+ "peerDependencies": {
4270
+ "browserslist": ">= 4.21.0"
4271
+ }
4272
+ },
4273
+ "node_modules/v8-compile-cache-lib": {
4274
+ "version": "3.0.1",
4275
+ "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz",
4276
+ "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==",
4277
+ "dev": true,
4278
+ "license": "MIT"
4279
+ },
4280
+ "node_modules/v8-to-istanbul": {
4281
+ "version": "9.3.0",
4282
+ "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz",
4283
+ "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==",
4284
+ "dev": true,
4285
+ "license": "ISC",
4286
+ "dependencies": {
4287
+ "@jridgewell/trace-mapping": "^0.3.12",
4288
+ "@types/istanbul-lib-coverage": "^2.0.1",
4289
+ "convert-source-map": "^2.0.0"
4290
+ },
4291
+ "engines": {
4292
+ "node": ">=10.12.0"
4293
+ }
4294
+ },
4295
+ "node_modules/walker": {
4296
+ "version": "1.0.8",
4297
+ "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz",
4298
+ "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==",
4299
+ "dev": true,
4300
+ "license": "Apache-2.0",
4301
+ "dependencies": {
4302
+ "makeerror": "1.0.12"
4303
+ }
4304
+ },
4305
+ "node_modules/which": {
4306
+ "version": "2.0.2",
4307
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
4308
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
4309
+ "dev": true,
4310
+ "license": "ISC",
4311
+ "dependencies": {
4312
+ "isexe": "^2.0.0"
4313
+ },
4314
+ "bin": {
4315
+ "node-which": "bin/node-which"
4316
+ },
4317
+ "engines": {
4318
+ "node": ">= 8"
4319
+ }
4320
+ },
4321
+ "node_modules/wordwrap": {
4322
+ "version": "1.0.0",
4323
+ "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
4324
+ "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==",
4325
+ "dev": true,
4326
+ "license": "MIT"
4327
+ },
4328
+ "node_modules/wrap-ansi": {
4329
+ "version": "7.0.0",
4330
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
4331
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
4332
+ "dev": true,
4333
+ "license": "MIT",
4334
+ "dependencies": {
4335
+ "ansi-styles": "^4.0.0",
4336
+ "string-width": "^4.1.0",
4337
+ "strip-ansi": "^6.0.0"
4338
+ },
4339
+ "engines": {
4340
+ "node": ">=10"
4341
+ },
4342
+ "funding": {
4343
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
4344
+ }
4345
+ },
4346
+ "node_modules/wrappy": {
4347
+ "version": "1.0.2",
4348
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
4349
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
4350
+ "dev": true,
4351
+ "license": "ISC"
4352
+ },
4353
+ "node_modules/write-file-atomic": {
4354
+ "version": "4.0.2",
4355
+ "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz",
4356
+ "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==",
4357
+ "dev": true,
4358
+ "license": "ISC",
4359
+ "dependencies": {
4360
+ "imurmurhash": "^0.1.4",
4361
+ "signal-exit": "^3.0.7"
4362
+ },
4363
+ "engines": {
4364
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
4365
+ }
4366
+ },
4367
+ "node_modules/y18n": {
4368
+ "version": "5.0.8",
4369
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
4370
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
4371
+ "dev": true,
4372
+ "license": "ISC",
4373
+ "engines": {
4374
+ "node": ">=10"
4375
+ }
4376
+ },
4377
+ "node_modules/yallist": {
4378
+ "version": "3.1.1",
4379
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
4380
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
4381
+ "dev": true,
4382
+ "license": "ISC"
4383
+ },
4384
+ "node_modules/yargs": {
4385
+ "version": "17.7.2",
4386
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
4387
+ "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
4388
+ "dev": true,
4389
+ "license": "MIT",
4390
+ "dependencies": {
4391
+ "cliui": "^8.0.1",
4392
+ "escalade": "^3.1.1",
4393
+ "get-caller-file": "^2.0.5",
4394
+ "require-directory": "^2.1.1",
4395
+ "string-width": "^4.2.3",
4396
+ "y18n": "^5.0.5",
4397
+ "yargs-parser": "^21.1.1"
4398
+ },
4399
+ "engines": {
4400
+ "node": ">=12"
4401
+ }
4402
+ },
4403
+ "node_modules/yargs-parser": {
4404
+ "version": "21.1.1",
4405
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
4406
+ "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
4407
+ "dev": true,
4408
+ "license": "ISC",
4409
+ "engines": {
4410
+ "node": ">=12"
4411
+ }
4412
+ },
4413
+ "node_modules/yn": {
4414
+ "version": "3.1.1",
4415
+ "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz",
4416
+ "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==",
4417
+ "dev": true,
4418
+ "license": "MIT",
4419
+ "engines": {
4420
+ "node": ">=6"
4421
+ }
4422
+ },
4423
+ "node_modules/yocto-queue": {
4424
+ "version": "0.1.0",
4425
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
4426
+ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
4427
+ "dev": true,
4428
+ "license": "MIT",
4429
+ "engines": {
4430
+ "node": ">=10"
4431
+ },
4432
+ "funding": {
4433
+ "url": "https://github.com/sponsors/sindresorhus"
4434
+ }
4435
+ }
4436
+ }
4437
+ }