@mr-zwets/bchn-api-wrapper 1.0.2 → 1.0.3

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 (59) hide show
  1. package/dist/src/index.d.ts +4 -0
  2. package/dist/src/index.js +4 -0
  3. package/{src/interfaces/interfaces.ts → dist/src/interfaces/interfaces.d.ts} +51 -65
  4. package/dist/src/interfaces/interfaces.js +1 -0
  5. package/{src/interfaces/restInterfaces/interfaces.ts → dist/src/interfaces/restInterfaces/interfaces.d.ts} +145 -166
  6. package/dist/src/interfaces/restInterfaces/interfaces.js +1 -0
  7. package/dist/src/interfaces/rpcInterfaces/blockchain.d.ts +883 -0
  8. package/dist/src/interfaces/rpcInterfaces/blockchain.js +3 -0
  9. package/dist/src/interfaces/rpcInterfaces/control.d.ts +60 -0
  10. package/dist/src/interfaces/rpcInterfaces/control.js +3 -0
  11. package/dist/src/interfaces/rpcInterfaces/generating.d.ts +19 -0
  12. package/dist/src/interfaces/rpcInterfaces/generating.js +3 -0
  13. package/dist/src/interfaces/rpcInterfaces/index.d.ts +9 -0
  14. package/{src/interfaces/rpcInterfaces/index.ts → dist/src/interfaces/rpcInterfaces/index.js} +1 -3
  15. package/dist/src/interfaces/rpcInterfaces/mining.d.ts +140 -0
  16. package/dist/src/interfaces/rpcInterfaces/mining.js +3 -0
  17. package/dist/src/interfaces/rpcInterfaces/network.d.ts +197 -0
  18. package/dist/src/interfaces/rpcInterfaces/network.js +3 -0
  19. package/dist/src/interfaces/rpcInterfaces/rawtransactions.d.ts +304 -0
  20. package/dist/src/interfaces/rpcInterfaces/rawtransactions.js +3 -0
  21. package/dist/src/interfaces/rpcInterfaces/util.d.ts +49 -0
  22. package/dist/src/interfaces/rpcInterfaces/util.js +3 -0
  23. package/dist/src/interfaces/rpcInterfaces/wallet.d.ts +674 -0
  24. package/dist/src/interfaces/rpcInterfaces/wallet.js +3 -0
  25. package/dist/src/interfaces/rpcInterfaces/zmq.d.ts +9 -0
  26. package/dist/src/interfaces/rpcInterfaces/zmq.js +3 -0
  27. package/dist/src/restClient.d.ts +29 -0
  28. package/dist/src/restClient.js +113 -0
  29. package/dist/src/rpcClient.d.ts +19 -0
  30. package/dist/src/rpcClient.js +92 -0
  31. package/dist/src/utils/errors.d.ts +3 -0
  32. package/dist/src/utils/errors.js +6 -0
  33. package/dist/src/utils/utils.d.ts +11 -0
  34. package/dist/src/utils/utils.js +49 -0
  35. package/package.json +7 -3
  36. package/.claude/settings.local.json +0 -8
  37. package/.github/workflows/ci.yaml +0 -36
  38. package/CLAUDE.md +0 -70
  39. package/pnpm-lock.yaml +0 -1279
  40. package/src/index.ts +0 -4
  41. package/src/interfaces/rpcInterfaces/blockchain.ts +0 -933
  42. package/src/interfaces/rpcInterfaces/control.ts +0 -68
  43. package/src/interfaces/rpcInterfaces/generating.ts +0 -23
  44. package/src/interfaces/rpcInterfaces/mining.ts +0 -151
  45. package/src/interfaces/rpcInterfaces/network.ts +0 -213
  46. package/src/interfaces/rpcInterfaces/rawtransactions.ts +0 -332
  47. package/src/interfaces/rpcInterfaces/util.ts +0 -56
  48. package/src/interfaces/rpcInterfaces/wallet.ts +0 -728
  49. package/src/interfaces/rpcInterfaces/zmq.ts +0 -12
  50. package/src/restClient.ts +0 -134
  51. package/src/rpcClient.ts +0 -100
  52. package/src/utils/errors.ts +0 -6
  53. package/src/utils/utils.ts +0 -55
  54. package/test/restClient.test.ts +0 -34
  55. package/test/rpcClient.test.ts +0 -119
  56. package/test/setupTests.ts +0 -56
  57. package/test/tsconfig.json +0 -4
  58. package/tsconfig.json +0 -13
  59. package/vitest.config.ts +0 -9
package/pnpm-lock.yaml DELETED
@@ -1,1279 +0,0 @@
1
- lockfileVersion: '9.0'
2
-
3
- settings:
4
- autoInstallPeers: true
5
- excludeLinksFromLockfile: false
6
-
7
- importers:
8
-
9
- .:
10
- devDependencies:
11
- '@types/node':
12
- specifier: ^24.10.4
13
- version: 24.10.4
14
- msw:
15
- specifier: ^2.12.4
16
- version: 2.12.4(@types/node@24.10.4)(typescript@5.9.3)
17
- typescript:
18
- specifier: ^5.9.3
19
- version: 5.9.3
20
- vitest:
21
- specifier: ^4.0.16
22
- version: 4.0.16(@types/node@24.10.4)(msw@2.12.4(@types/node@24.10.4)(typescript@5.9.3))
23
-
24
- packages:
25
-
26
- '@esbuild/aix-ppc64@0.27.2':
27
- resolution: {integrity: sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==}
28
- engines: {node: '>=18'}
29
- cpu: [ppc64]
30
- os: [aix]
31
-
32
- '@esbuild/android-arm64@0.27.2':
33
- resolution: {integrity: sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==}
34
- engines: {node: '>=18'}
35
- cpu: [arm64]
36
- os: [android]
37
-
38
- '@esbuild/android-arm@0.27.2':
39
- resolution: {integrity: sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==}
40
- engines: {node: '>=18'}
41
- cpu: [arm]
42
- os: [android]
43
-
44
- '@esbuild/android-x64@0.27.2':
45
- resolution: {integrity: sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==}
46
- engines: {node: '>=18'}
47
- cpu: [x64]
48
- os: [android]
49
-
50
- '@esbuild/darwin-arm64@0.27.2':
51
- resolution: {integrity: sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==}
52
- engines: {node: '>=18'}
53
- cpu: [arm64]
54
- os: [darwin]
55
-
56
- '@esbuild/darwin-x64@0.27.2':
57
- resolution: {integrity: sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==}
58
- engines: {node: '>=18'}
59
- cpu: [x64]
60
- os: [darwin]
61
-
62
- '@esbuild/freebsd-arm64@0.27.2':
63
- resolution: {integrity: sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==}
64
- engines: {node: '>=18'}
65
- cpu: [arm64]
66
- os: [freebsd]
67
-
68
- '@esbuild/freebsd-x64@0.27.2':
69
- resolution: {integrity: sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==}
70
- engines: {node: '>=18'}
71
- cpu: [x64]
72
- os: [freebsd]
73
-
74
- '@esbuild/linux-arm64@0.27.2':
75
- resolution: {integrity: sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==}
76
- engines: {node: '>=18'}
77
- cpu: [arm64]
78
- os: [linux]
79
-
80
- '@esbuild/linux-arm@0.27.2':
81
- resolution: {integrity: sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==}
82
- engines: {node: '>=18'}
83
- cpu: [arm]
84
- os: [linux]
85
-
86
- '@esbuild/linux-ia32@0.27.2':
87
- resolution: {integrity: sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==}
88
- engines: {node: '>=18'}
89
- cpu: [ia32]
90
- os: [linux]
91
-
92
- '@esbuild/linux-loong64@0.27.2':
93
- resolution: {integrity: sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==}
94
- engines: {node: '>=18'}
95
- cpu: [loong64]
96
- os: [linux]
97
-
98
- '@esbuild/linux-mips64el@0.27.2':
99
- resolution: {integrity: sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==}
100
- engines: {node: '>=18'}
101
- cpu: [mips64el]
102
- os: [linux]
103
-
104
- '@esbuild/linux-ppc64@0.27.2':
105
- resolution: {integrity: sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==}
106
- engines: {node: '>=18'}
107
- cpu: [ppc64]
108
- os: [linux]
109
-
110
- '@esbuild/linux-riscv64@0.27.2':
111
- resolution: {integrity: sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==}
112
- engines: {node: '>=18'}
113
- cpu: [riscv64]
114
- os: [linux]
115
-
116
- '@esbuild/linux-s390x@0.27.2':
117
- resolution: {integrity: sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==}
118
- engines: {node: '>=18'}
119
- cpu: [s390x]
120
- os: [linux]
121
-
122
- '@esbuild/linux-x64@0.27.2':
123
- resolution: {integrity: sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==}
124
- engines: {node: '>=18'}
125
- cpu: [x64]
126
- os: [linux]
127
-
128
- '@esbuild/netbsd-arm64@0.27.2':
129
- resolution: {integrity: sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==}
130
- engines: {node: '>=18'}
131
- cpu: [arm64]
132
- os: [netbsd]
133
-
134
- '@esbuild/netbsd-x64@0.27.2':
135
- resolution: {integrity: sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==}
136
- engines: {node: '>=18'}
137
- cpu: [x64]
138
- os: [netbsd]
139
-
140
- '@esbuild/openbsd-arm64@0.27.2':
141
- resolution: {integrity: sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==}
142
- engines: {node: '>=18'}
143
- cpu: [arm64]
144
- os: [openbsd]
145
-
146
- '@esbuild/openbsd-x64@0.27.2':
147
- resolution: {integrity: sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==}
148
- engines: {node: '>=18'}
149
- cpu: [x64]
150
- os: [openbsd]
151
-
152
- '@esbuild/openharmony-arm64@0.27.2':
153
- resolution: {integrity: sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==}
154
- engines: {node: '>=18'}
155
- cpu: [arm64]
156
- os: [openharmony]
157
-
158
- '@esbuild/sunos-x64@0.27.2':
159
- resolution: {integrity: sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==}
160
- engines: {node: '>=18'}
161
- cpu: [x64]
162
- os: [sunos]
163
-
164
- '@esbuild/win32-arm64@0.27.2':
165
- resolution: {integrity: sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==}
166
- engines: {node: '>=18'}
167
- cpu: [arm64]
168
- os: [win32]
169
-
170
- '@esbuild/win32-ia32@0.27.2':
171
- resolution: {integrity: sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==}
172
- engines: {node: '>=18'}
173
- cpu: [ia32]
174
- os: [win32]
175
-
176
- '@esbuild/win32-x64@0.27.2':
177
- resolution: {integrity: sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==}
178
- engines: {node: '>=18'}
179
- cpu: [x64]
180
- os: [win32]
181
-
182
- '@inquirer/confirm@5.1.15':
183
- resolution: {integrity: sha512-SwHMGa8Z47LawQN0rog0sT+6JpiL0B7eW9p1Bb7iCeKDGTI5Ez25TSc2l8kw52VV7hA4sX/C78CGkMrKXfuspA==}
184
- engines: {node: '>=18'}
185
- peerDependencies:
186
- '@types/node': '>=18'
187
- peerDependenciesMeta:
188
- '@types/node':
189
- optional: true
190
-
191
- '@inquirer/core@10.1.15':
192
- resolution: {integrity: sha512-8xrp836RZvKkpNbVvgWUlxjT4CraKk2q+I3Ksy+seI2zkcE+y6wNs1BVhgcv8VyImFecUhdQrYLdW32pAjwBdA==}
193
- engines: {node: '>=18'}
194
- peerDependencies:
195
- '@types/node': '>=18'
196
- peerDependenciesMeta:
197
- '@types/node':
198
- optional: true
199
-
200
- '@inquirer/figures@1.0.13':
201
- resolution: {integrity: sha512-lGPVU3yO9ZNqA7vTYz26jny41lE7yoQansmqdMLBEfqaGsmdg7V3W9mK9Pvb5IL4EVZ9GnSDGMO/cJXud5dMaw==}
202
- engines: {node: '>=18'}
203
-
204
- '@inquirer/type@3.0.8':
205
- resolution: {integrity: sha512-lg9Whz8onIHRthWaN1Q9EGLa/0LFJjyM8mEUbL1eTi6yMGvBf8gvyDLtxSXztQsxMvhxxNpJYrwa1YHdq+w4Jw==}
206
- engines: {node: '>=18'}
207
- peerDependencies:
208
- '@types/node': '>=18'
209
- peerDependenciesMeta:
210
- '@types/node':
211
- optional: true
212
-
213
- '@jridgewell/sourcemap-codec@1.5.5':
214
- resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
215
-
216
- '@mswjs/interceptors@0.40.0':
217
- resolution: {integrity: sha512-EFd6cVbHsgLa6wa4RljGj6Wk75qoHxUSyc5asLyyPSyuhIcdS2Q3Phw6ImS1q+CkALthJRShiYfKANcQMuMqsQ==}
218
- engines: {node: '>=18'}
219
-
220
- '@open-draft/deferred-promise@2.2.0':
221
- resolution: {integrity: sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==}
222
-
223
- '@open-draft/logger@0.3.0':
224
- resolution: {integrity: sha512-X2g45fzhxH238HKO4xbSr7+wBS8Fvw6ixhTDuvLd5mqh6bJJCFAPwU9mPDxbcrRtfxv4u5IHCEH77BmxvXmmxQ==}
225
-
226
- '@open-draft/until@2.1.0':
227
- resolution: {integrity: sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==}
228
-
229
- '@rollup/rollup-android-arm-eabi@4.53.5':
230
- resolution: {integrity: sha512-iDGS/h7D8t7tvZ1t6+WPK04KD0MwzLZrG0se1hzBjSi5fyxlsiggoJHwh18PCFNn7tG43OWb6pdZ6Y+rMlmyNQ==}
231
- cpu: [arm]
232
- os: [android]
233
-
234
- '@rollup/rollup-android-arm64@4.53.5':
235
- resolution: {integrity: sha512-wrSAViWvZHBMMlWk6EJhvg8/rjxzyEhEdgfMMjREHEq11EtJ6IP6yfcCH57YAEca2Oe3FNCE9DSTgU70EIGmVw==}
236
- cpu: [arm64]
237
- os: [android]
238
-
239
- '@rollup/rollup-darwin-arm64@4.53.5':
240
- resolution: {integrity: sha512-S87zZPBmRO6u1YXQLwpveZm4JfPpAa6oHBX7/ghSiGH3rz/KDgAu1rKdGutV+WUI6tKDMbaBJomhnT30Y2t4VQ==}
241
- cpu: [arm64]
242
- os: [darwin]
243
-
244
- '@rollup/rollup-darwin-x64@4.53.5':
245
- resolution: {integrity: sha512-YTbnsAaHo6VrAczISxgpTva8EkfQus0VPEVJCEaboHtZRIb6h6j0BNxRBOwnDciFTZLDPW5r+ZBmhL/+YpTZgA==}
246
- cpu: [x64]
247
- os: [darwin]
248
-
249
- '@rollup/rollup-freebsd-arm64@4.53.5':
250
- resolution: {integrity: sha512-1T8eY2J8rKJWzaznV7zedfdhD1BqVs1iqILhmHDq/bqCUZsrMt+j8VCTHhP0vdfbHK3e1IQ7VYx3jlKqwlf+vw==}
251
- cpu: [arm64]
252
- os: [freebsd]
253
-
254
- '@rollup/rollup-freebsd-x64@4.53.5':
255
- resolution: {integrity: sha512-sHTiuXyBJApxRn+VFMaw1U+Qsz4kcNlxQ742snICYPrY+DDL8/ZbaC4DVIB7vgZmp3jiDaKA0WpBdP0aqPJoBQ==}
256
- cpu: [x64]
257
- os: [freebsd]
258
-
259
- '@rollup/rollup-linux-arm-gnueabihf@4.53.5':
260
- resolution: {integrity: sha512-dV3T9MyAf0w8zPVLVBptVlzaXxka6xg1f16VAQmjg+4KMSTWDvhimI/Y6mp8oHwNrmnmVl9XxJ/w/mO4uIQONA==}
261
- cpu: [arm]
262
- os: [linux]
263
-
264
- '@rollup/rollup-linux-arm-musleabihf@4.53.5':
265
- resolution: {integrity: sha512-wIGYC1x/hyjP+KAu9+ewDI+fi5XSNiUi9Bvg6KGAh2TsNMA3tSEs+Sh6jJ/r4BV/bx/CyWu2ue9kDnIdRyafcQ==}
266
- cpu: [arm]
267
- os: [linux]
268
-
269
- '@rollup/rollup-linux-arm64-gnu@4.53.5':
270
- resolution: {integrity: sha512-Y+qVA0D9d0y2FRNiG9oM3Hut/DgODZbU9I8pLLPwAsU0tUKZ49cyV1tzmB/qRbSzGvY8lpgGkJuMyuhH7Ma+Vg==}
271
- cpu: [arm64]
272
- os: [linux]
273
-
274
- '@rollup/rollup-linux-arm64-musl@4.53.5':
275
- resolution: {integrity: sha512-juaC4bEgJsyFVfqhtGLz8mbopaWD+WeSOYr5E16y+1of6KQjc0BpwZLuxkClqY1i8sco+MdyoXPNiCkQou09+g==}
276
- cpu: [arm64]
277
- os: [linux]
278
-
279
- '@rollup/rollup-linux-loong64-gnu@4.53.5':
280
- resolution: {integrity: sha512-rIEC0hZ17A42iXtHX+EPJVL/CakHo+tT7W0pbzdAGuWOt2jxDFh7A/lRhsNHBcqL4T36+UiAgwO8pbmn3dE8wA==}
281
- cpu: [loong64]
282
- os: [linux]
283
-
284
- '@rollup/rollup-linux-ppc64-gnu@4.53.5':
285
- resolution: {integrity: sha512-T7l409NhUE552RcAOcmJHj3xyZ2h7vMWzcwQI0hvn5tqHh3oSoclf9WgTl+0QqffWFG8MEVZZP1/OBglKZx52Q==}
286
- cpu: [ppc64]
287
- os: [linux]
288
-
289
- '@rollup/rollup-linux-riscv64-gnu@4.53.5':
290
- resolution: {integrity: sha512-7OK5/GhxbnrMcxIFoYfhV/TkknarkYC1hqUw1wU2xUN3TVRLNT5FmBv4KkheSG2xZ6IEbRAhTooTV2+R5Tk0lQ==}
291
- cpu: [riscv64]
292
- os: [linux]
293
-
294
- '@rollup/rollup-linux-riscv64-musl@4.53.5':
295
- resolution: {integrity: sha512-GwuDBE/PsXaTa76lO5eLJTyr2k8QkPipAyOrs4V/KJufHCZBJ495VCGJol35grx9xryk4V+2zd3Ri+3v7NPh+w==}
296
- cpu: [riscv64]
297
- os: [linux]
298
-
299
- '@rollup/rollup-linux-s390x-gnu@4.53.5':
300
- resolution: {integrity: sha512-IAE1Ziyr1qNfnmiQLHBURAD+eh/zH1pIeJjeShleII7Vj8kyEm2PF77o+lf3WTHDpNJcu4IXJxNO0Zluro8bOw==}
301
- cpu: [s390x]
302
- os: [linux]
303
-
304
- '@rollup/rollup-linux-x64-gnu@4.53.5':
305
- resolution: {integrity: sha512-Pg6E+oP7GvZ4XwgRJBuSXZjcqpIW3yCBhK4BcsANvb47qMvAbCjR6E+1a/U2WXz1JJxp9/4Dno3/iSJLcm5auw==}
306
- cpu: [x64]
307
- os: [linux]
308
-
309
- '@rollup/rollup-linux-x64-musl@4.53.5':
310
- resolution: {integrity: sha512-txGtluxDKTxaMDzUduGP0wdfng24y1rygUMnmlUJ88fzCCULCLn7oE5kb2+tRB+MWq1QDZT6ObT5RrR8HFRKqg==}
311
- cpu: [x64]
312
- os: [linux]
313
-
314
- '@rollup/rollup-openharmony-arm64@4.53.5':
315
- resolution: {integrity: sha512-3DFiLPnTxiOQV993fMc+KO8zXHTcIjgaInrqlG8zDp1TlhYl6WgrOHuJkJQ6M8zHEcntSJsUp1XFZSY8C1DYbg==}
316
- cpu: [arm64]
317
- os: [openharmony]
318
-
319
- '@rollup/rollup-win32-arm64-msvc@4.53.5':
320
- resolution: {integrity: sha512-nggc/wPpNTgjGg75hu+Q/3i32R00Lq1B6N1DO7MCU340MRKL3WZJMjA9U4K4gzy3dkZPXm9E1Nc81FItBVGRlA==}
321
- cpu: [arm64]
322
- os: [win32]
323
-
324
- '@rollup/rollup-win32-ia32-msvc@4.53.5':
325
- resolution: {integrity: sha512-U/54pTbdQpPLBdEzCT6NBCFAfSZMvmjr0twhnD9f4EIvlm9wy3jjQ38yQj1AGznrNO65EWQMgm/QUjuIVrYF9w==}
326
- cpu: [ia32]
327
- os: [win32]
328
-
329
- '@rollup/rollup-win32-x64-gnu@4.53.5':
330
- resolution: {integrity: sha512-2NqKgZSuLH9SXBBV2dWNRCZmocgSOx8OJSdpRaEcRlIfX8YrKxUT6z0F1NpvDVhOsl190UFTRh2F2WDWWCYp3A==}
331
- cpu: [x64]
332
- os: [win32]
333
-
334
- '@rollup/rollup-win32-x64-msvc@4.53.5':
335
- resolution: {integrity: sha512-JRpZUhCfhZ4keB5v0fe02gQJy05GqboPOaxvjugW04RLSYYoB/9t2lx2u/tMs/Na/1NXfY8QYjgRljRpN+MjTQ==}
336
- cpu: [x64]
337
- os: [win32]
338
-
339
- '@standard-schema/spec@1.1.0':
340
- resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
341
-
342
- '@types/chai@5.2.3':
343
- resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==}
344
-
345
- '@types/deep-eql@4.0.2':
346
- resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==}
347
-
348
- '@types/estree@1.0.8':
349
- resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
350
-
351
- '@types/node@24.10.4':
352
- resolution: {integrity: sha512-vnDVpYPMzs4wunl27jHrfmwojOGKya0xyM3sH+UE5iv5uPS6vX7UIoh6m+vQc5LGBq52HBKPIn/zcSZVzeDEZg==}
353
-
354
- '@types/statuses@2.0.6':
355
- resolution: {integrity: sha512-xMAgYwceFhRA2zY+XbEA7mxYbA093wdiW8Vu6gZPGWy9cmOyU9XesH1tNcEWsKFd5Vzrqx5T3D38PWx1FIIXkA==}
356
-
357
- '@vitest/expect@4.0.16':
358
- resolution: {integrity: sha512-eshqULT2It7McaJkQGLkPjPjNph+uevROGuIMJdG3V+0BSR2w9u6J9Lwu+E8cK5TETlfou8GRijhafIMhXsimA==}
359
-
360
- '@vitest/mocker@4.0.16':
361
- resolution: {integrity: sha512-yb6k4AZxJTB+q9ycAvsoxGn+j/po0UaPgajllBgt1PzoMAAmJGYFdDk0uCcRcxb3BrME34I6u8gHZTQlkqSZpg==}
362
- peerDependencies:
363
- msw: ^2.4.9
364
- vite: ^6.0.0 || ^7.0.0-0
365
- peerDependenciesMeta:
366
- msw:
367
- optional: true
368
- vite:
369
- optional: true
370
-
371
- '@vitest/pretty-format@4.0.16':
372
- resolution: {integrity: sha512-eNCYNsSty9xJKi/UdVD8Ou16alu7AYiS2fCPRs0b1OdhJiV89buAXQLpTbe+X8V9L6qrs9CqyvU7OaAopJYPsA==}
373
-
374
- '@vitest/runner@4.0.16':
375
- resolution: {integrity: sha512-VWEDm5Wv9xEo80ctjORcTQRJ539EGPB3Pb9ApvVRAY1U/WkHXmmYISqU5E79uCwcW7xYUV38gwZD+RV755fu3Q==}
376
-
377
- '@vitest/snapshot@4.0.16':
378
- resolution: {integrity: sha512-sf6NcrYhYBsSYefxnry+DR8n3UV4xWZwWxYbCJUt2YdvtqzSPR7VfGrY0zsv090DAbjFZsi7ZaMi1KnSRyK1XA==}
379
-
380
- '@vitest/spy@4.0.16':
381
- resolution: {integrity: sha512-4jIOWjKP0ZUaEmJm00E0cOBLU+5WE0BpeNr3XN6TEF05ltro6NJqHWxXD0kA8/Zc8Nh23AT8WQxwNG+WeROupw==}
382
-
383
- '@vitest/utils@4.0.16':
384
- resolution: {integrity: sha512-h8z9yYhV3e1LEfaQ3zdypIrnAg/9hguReGZoS7Gl0aBG5xgA410zBqECqmaF/+RkTggRsfnzc1XaAHA6bmUufA==}
385
-
386
- ansi-escapes@4.3.2:
387
- resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
388
- engines: {node: '>=8'}
389
-
390
- ansi-regex@5.0.1:
391
- resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
392
- engines: {node: '>=8'}
393
-
394
- ansi-styles@4.3.0:
395
- resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
396
- engines: {node: '>=8'}
397
-
398
- assertion-error@2.0.1:
399
- resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
400
- engines: {node: '>=12'}
401
-
402
- chai@6.2.1:
403
- resolution: {integrity: sha512-p4Z49OGG5W/WBCPSS/dH3jQ73kD6tiMmUM+bckNK6Jr5JHMG3k9bg/BvKR8lKmtVBKmOiuVaV2ws8s9oSbwysg==}
404
- engines: {node: '>=18'}
405
-
406
- cli-width@4.1.0:
407
- resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
408
- engines: {node: '>= 12'}
409
-
410
- cliui@8.0.1:
411
- resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
412
- engines: {node: '>=12'}
413
-
414
- color-convert@2.0.1:
415
- resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
416
- engines: {node: '>=7.0.0'}
417
-
418
- color-name@1.1.4:
419
- resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
420
-
421
- cookie@1.1.1:
422
- resolution: {integrity: sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==}
423
- engines: {node: '>=18'}
424
-
425
- emoji-regex@8.0.0:
426
- resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
427
-
428
- es-module-lexer@1.7.0:
429
- resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==}
430
-
431
- esbuild@0.27.2:
432
- resolution: {integrity: sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==}
433
- engines: {node: '>=18'}
434
- hasBin: true
435
-
436
- escalade@3.2.0:
437
- resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
438
- engines: {node: '>=6'}
439
-
440
- estree-walker@3.0.3:
441
- resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
442
-
443
- expect-type@1.3.0:
444
- resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==}
445
- engines: {node: '>=12.0.0'}
446
-
447
- fdir@6.5.0:
448
- resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
449
- engines: {node: '>=12.0.0'}
450
- peerDependencies:
451
- picomatch: ^3 || ^4
452
- peerDependenciesMeta:
453
- picomatch:
454
- optional: true
455
-
456
- fsevents@2.3.3:
457
- resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
458
- engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
459
- os: [darwin]
460
-
461
- get-caller-file@2.0.5:
462
- resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
463
- engines: {node: 6.* || 8.* || >= 10.*}
464
-
465
- graphql@16.12.0:
466
- resolution: {integrity: sha512-DKKrynuQRne0PNpEbzuEdHlYOMksHSUI8Zc9Unei5gTsMNA2/vMpoMz/yKba50pejK56qj98qM0SjYxAKi13gQ==}
467
- engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0}
468
-
469
- headers-polyfill@4.0.3:
470
- resolution: {integrity: sha512-IScLbePpkvO846sIwOtOTDjutRMWdXdJmXdMvk6gCBHxFO8d+QKOQedyZSxFTTFYRSmlgSTDtXqqq4pcenBXLQ==}
471
-
472
- is-fullwidth-code-point@3.0.0:
473
- resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
474
- engines: {node: '>=8'}
475
-
476
- is-node-process@1.2.0:
477
- resolution: {integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==}
478
-
479
- magic-string@0.30.21:
480
- resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
481
-
482
- msw@2.12.4:
483
- resolution: {integrity: sha512-rHNiVfTyKhzc0EjoXUBVGteNKBevdjOlVC6GlIRXpy+/3LHEIGRovnB5WPjcvmNODVQ1TNFnoa7wsGbd0V3epg==}
484
- engines: {node: '>=18'}
485
- hasBin: true
486
- peerDependencies:
487
- typescript: '>= 4.8.x'
488
- peerDependenciesMeta:
489
- typescript:
490
- optional: true
491
-
492
- mute-stream@2.0.0:
493
- resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==}
494
- engines: {node: ^18.17.0 || >=20.5.0}
495
-
496
- nanoid@3.3.11:
497
- resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
498
- engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
499
- hasBin: true
500
-
501
- obug@2.1.1:
502
- resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==}
503
-
504
- outvariant@1.4.3:
505
- resolution: {integrity: sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==}
506
-
507
- path-to-regexp@6.3.0:
508
- resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==}
509
-
510
- pathe@2.0.3:
511
- resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
512
-
513
- picocolors@1.1.1:
514
- resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
515
-
516
- picomatch@4.0.3:
517
- resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
518
- engines: {node: '>=12'}
519
-
520
- postcss@8.5.6:
521
- resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
522
- engines: {node: ^10 || ^12 || >=14}
523
-
524
- require-directory@2.1.1:
525
- resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
526
- engines: {node: '>=0.10.0'}
527
-
528
- rettime@0.7.0:
529
- resolution: {integrity: sha512-LPRKoHnLKd/r3dVxcwO7vhCW+orkOGj9ViueosEBK6ie89CijnfRlhaDhHq/3Hxu4CkWQtxwlBG0mzTQY6uQjw==}
530
-
531
- rollup@4.53.5:
532
- resolution: {integrity: sha512-iTNAbFSlRpcHeeWu73ywU/8KuU/LZmNCSxp6fjQkJBD3ivUb8tpDrXhIxEzA05HlYMEwmtaUnb3RP+YNv162OQ==}
533
- engines: {node: '>=18.0.0', npm: '>=8.0.0'}
534
- hasBin: true
535
-
536
- siginfo@2.0.0:
537
- resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
538
-
539
- signal-exit@4.1.0:
540
- resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
541
- engines: {node: '>=14'}
542
-
543
- source-map-js@1.2.1:
544
- resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
545
- engines: {node: '>=0.10.0'}
546
-
547
- stackback@0.0.2:
548
- resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
549
-
550
- statuses@2.0.2:
551
- resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
552
- engines: {node: '>= 0.8'}
553
-
554
- std-env@3.10.0:
555
- resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==}
556
-
557
- strict-event-emitter@0.5.1:
558
- resolution: {integrity: sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==}
559
-
560
- string-width@4.2.3:
561
- resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
562
- engines: {node: '>=8'}
563
-
564
- strip-ansi@6.0.1:
565
- resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
566
- engines: {node: '>=8'}
567
-
568
- tagged-tag@1.0.0:
569
- resolution: {integrity: sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng==}
570
- engines: {node: '>=20'}
571
-
572
- tinybench@2.9.0:
573
- resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
574
-
575
- tinyexec@1.0.2:
576
- resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==}
577
- engines: {node: '>=18'}
578
-
579
- tinyglobby@0.2.15:
580
- resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
581
- engines: {node: '>=12.0.0'}
582
-
583
- tinyrainbow@3.0.3:
584
- resolution: {integrity: sha512-PSkbLUoxOFRzJYjjxHJt9xro7D+iilgMX/C9lawzVuYiIdcihh9DXmVibBe8lmcFrRi/VzlPjBxbN7rH24q8/Q==}
585
- engines: {node: '>=14.0.0'}
586
-
587
- tldts-core@7.0.19:
588
- resolution: {integrity: sha512-lJX2dEWx0SGH4O6p+7FPwYmJ/bu1JbcGJ8RLaG9b7liIgZ85itUVEPbMtWRVrde/0fnDPEPHW10ZsKW3kVsE9A==}
589
-
590
- tldts@7.0.19:
591
- resolution: {integrity: sha512-8PWx8tvC4jDB39BQw1m4x8y5MH1BcQ5xHeL2n7UVFulMPH/3Q0uiamahFJ3lXA0zO2SUyRXuVVbWSDmstlt9YA==}
592
- hasBin: true
593
-
594
- tough-cookie@6.0.0:
595
- resolution: {integrity: sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==}
596
- engines: {node: '>=16'}
597
-
598
- type-fest@0.21.3:
599
- resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
600
- engines: {node: '>=10'}
601
-
602
- type-fest@5.3.1:
603
- resolution: {integrity: sha512-VCn+LMHbd4t6sF3wfU/+HKT63C9OoyrSIf4b+vtWHpt2U7/4InZG467YDNMFMR70DdHjAdpPWmw2lzRdg0Xqqg==}
604
- engines: {node: '>=20'}
605
-
606
- typescript@5.9.3:
607
- resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
608
- engines: {node: '>=14.17'}
609
- hasBin: true
610
-
611
- undici-types@7.16.0:
612
- resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}
613
-
614
- until-async@3.0.2:
615
- resolution: {integrity: sha512-IiSk4HlzAMqTUseHHe3VhIGyuFmN90zMTpD3Z3y8jeQbzLIq500MVM7Jq2vUAnTKAFPJrqwkzr6PoTcPhGcOiw==}
616
-
617
- vite@7.3.0:
618
- resolution: {integrity: sha512-dZwN5L1VlUBewiP6H9s2+B3e3Jg96D0vzN+Ry73sOefebhYr9f94wwkMNN/9ouoU8pV1BqA1d1zGk8928cx0rg==}
619
- engines: {node: ^20.19.0 || >=22.12.0}
620
- hasBin: true
621
- peerDependencies:
622
- '@types/node': ^20.19.0 || >=22.12.0
623
- jiti: '>=1.21.0'
624
- less: ^4.0.0
625
- lightningcss: ^1.21.0
626
- sass: ^1.70.0
627
- sass-embedded: ^1.70.0
628
- stylus: '>=0.54.8'
629
- sugarss: ^5.0.0
630
- terser: ^5.16.0
631
- tsx: ^4.8.1
632
- yaml: ^2.4.2
633
- peerDependenciesMeta:
634
- '@types/node':
635
- optional: true
636
- jiti:
637
- optional: true
638
- less:
639
- optional: true
640
- lightningcss:
641
- optional: true
642
- sass:
643
- optional: true
644
- sass-embedded:
645
- optional: true
646
- stylus:
647
- optional: true
648
- sugarss:
649
- optional: true
650
- terser:
651
- optional: true
652
- tsx:
653
- optional: true
654
- yaml:
655
- optional: true
656
-
657
- vitest@4.0.16:
658
- resolution: {integrity: sha512-E4t7DJ9pESL6E3I8nFjPa4xGUd3PmiWDLsDztS2qXSJWfHtbQnwAWylaBvSNY48I3vr8PTqIZlyK8TE3V3CA4Q==}
659
- engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0}
660
- hasBin: true
661
- peerDependencies:
662
- '@edge-runtime/vm': '*'
663
- '@opentelemetry/api': ^1.9.0
664
- '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0
665
- '@vitest/browser-playwright': 4.0.16
666
- '@vitest/browser-preview': 4.0.16
667
- '@vitest/browser-webdriverio': 4.0.16
668
- '@vitest/ui': 4.0.16
669
- happy-dom: '*'
670
- jsdom: '*'
671
- peerDependenciesMeta:
672
- '@edge-runtime/vm':
673
- optional: true
674
- '@opentelemetry/api':
675
- optional: true
676
- '@types/node':
677
- optional: true
678
- '@vitest/browser-playwright':
679
- optional: true
680
- '@vitest/browser-preview':
681
- optional: true
682
- '@vitest/browser-webdriverio':
683
- optional: true
684
- '@vitest/ui':
685
- optional: true
686
- happy-dom:
687
- optional: true
688
- jsdom:
689
- optional: true
690
-
691
- why-is-node-running@2.3.0:
692
- resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==}
693
- engines: {node: '>=8'}
694
- hasBin: true
695
-
696
- wrap-ansi@6.2.0:
697
- resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
698
- engines: {node: '>=8'}
699
-
700
- wrap-ansi@7.0.0:
701
- resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
702
- engines: {node: '>=10'}
703
-
704
- y18n@5.0.8:
705
- resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
706
- engines: {node: '>=10'}
707
-
708
- yargs-parser@21.1.1:
709
- resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
710
- engines: {node: '>=12'}
711
-
712
- yargs@17.7.2:
713
- resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
714
- engines: {node: '>=12'}
715
-
716
- yoctocolors-cjs@2.1.2:
717
- resolution: {integrity: sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==}
718
- engines: {node: '>=18'}
719
-
720
- snapshots:
721
-
722
- '@esbuild/aix-ppc64@0.27.2':
723
- optional: true
724
-
725
- '@esbuild/android-arm64@0.27.2':
726
- optional: true
727
-
728
- '@esbuild/android-arm@0.27.2':
729
- optional: true
730
-
731
- '@esbuild/android-x64@0.27.2':
732
- optional: true
733
-
734
- '@esbuild/darwin-arm64@0.27.2':
735
- optional: true
736
-
737
- '@esbuild/darwin-x64@0.27.2':
738
- optional: true
739
-
740
- '@esbuild/freebsd-arm64@0.27.2':
741
- optional: true
742
-
743
- '@esbuild/freebsd-x64@0.27.2':
744
- optional: true
745
-
746
- '@esbuild/linux-arm64@0.27.2':
747
- optional: true
748
-
749
- '@esbuild/linux-arm@0.27.2':
750
- optional: true
751
-
752
- '@esbuild/linux-ia32@0.27.2':
753
- optional: true
754
-
755
- '@esbuild/linux-loong64@0.27.2':
756
- optional: true
757
-
758
- '@esbuild/linux-mips64el@0.27.2':
759
- optional: true
760
-
761
- '@esbuild/linux-ppc64@0.27.2':
762
- optional: true
763
-
764
- '@esbuild/linux-riscv64@0.27.2':
765
- optional: true
766
-
767
- '@esbuild/linux-s390x@0.27.2':
768
- optional: true
769
-
770
- '@esbuild/linux-x64@0.27.2':
771
- optional: true
772
-
773
- '@esbuild/netbsd-arm64@0.27.2':
774
- optional: true
775
-
776
- '@esbuild/netbsd-x64@0.27.2':
777
- optional: true
778
-
779
- '@esbuild/openbsd-arm64@0.27.2':
780
- optional: true
781
-
782
- '@esbuild/openbsd-x64@0.27.2':
783
- optional: true
784
-
785
- '@esbuild/openharmony-arm64@0.27.2':
786
- optional: true
787
-
788
- '@esbuild/sunos-x64@0.27.2':
789
- optional: true
790
-
791
- '@esbuild/win32-arm64@0.27.2':
792
- optional: true
793
-
794
- '@esbuild/win32-ia32@0.27.2':
795
- optional: true
796
-
797
- '@esbuild/win32-x64@0.27.2':
798
- optional: true
799
-
800
- '@inquirer/confirm@5.1.15(@types/node@24.10.4)':
801
- dependencies:
802
- '@inquirer/core': 10.1.15(@types/node@24.10.4)
803
- '@inquirer/type': 3.0.8(@types/node@24.10.4)
804
- optionalDependencies:
805
- '@types/node': 24.10.4
806
-
807
- '@inquirer/core@10.1.15(@types/node@24.10.4)':
808
- dependencies:
809
- '@inquirer/figures': 1.0.13
810
- '@inquirer/type': 3.0.8(@types/node@24.10.4)
811
- ansi-escapes: 4.3.2
812
- cli-width: 4.1.0
813
- mute-stream: 2.0.0
814
- signal-exit: 4.1.0
815
- wrap-ansi: 6.2.0
816
- yoctocolors-cjs: 2.1.2
817
- optionalDependencies:
818
- '@types/node': 24.10.4
819
-
820
- '@inquirer/figures@1.0.13': {}
821
-
822
- '@inquirer/type@3.0.8(@types/node@24.10.4)':
823
- optionalDependencies:
824
- '@types/node': 24.10.4
825
-
826
- '@jridgewell/sourcemap-codec@1.5.5': {}
827
-
828
- '@mswjs/interceptors@0.40.0':
829
- dependencies:
830
- '@open-draft/deferred-promise': 2.2.0
831
- '@open-draft/logger': 0.3.0
832
- '@open-draft/until': 2.1.0
833
- is-node-process: 1.2.0
834
- outvariant: 1.4.3
835
- strict-event-emitter: 0.5.1
836
-
837
- '@open-draft/deferred-promise@2.2.0': {}
838
-
839
- '@open-draft/logger@0.3.0':
840
- dependencies:
841
- is-node-process: 1.2.0
842
- outvariant: 1.4.3
843
-
844
- '@open-draft/until@2.1.0': {}
845
-
846
- '@rollup/rollup-android-arm-eabi@4.53.5':
847
- optional: true
848
-
849
- '@rollup/rollup-android-arm64@4.53.5':
850
- optional: true
851
-
852
- '@rollup/rollup-darwin-arm64@4.53.5':
853
- optional: true
854
-
855
- '@rollup/rollup-darwin-x64@4.53.5':
856
- optional: true
857
-
858
- '@rollup/rollup-freebsd-arm64@4.53.5':
859
- optional: true
860
-
861
- '@rollup/rollup-freebsd-x64@4.53.5':
862
- optional: true
863
-
864
- '@rollup/rollup-linux-arm-gnueabihf@4.53.5':
865
- optional: true
866
-
867
- '@rollup/rollup-linux-arm-musleabihf@4.53.5':
868
- optional: true
869
-
870
- '@rollup/rollup-linux-arm64-gnu@4.53.5':
871
- optional: true
872
-
873
- '@rollup/rollup-linux-arm64-musl@4.53.5':
874
- optional: true
875
-
876
- '@rollup/rollup-linux-loong64-gnu@4.53.5':
877
- optional: true
878
-
879
- '@rollup/rollup-linux-ppc64-gnu@4.53.5':
880
- optional: true
881
-
882
- '@rollup/rollup-linux-riscv64-gnu@4.53.5':
883
- optional: true
884
-
885
- '@rollup/rollup-linux-riscv64-musl@4.53.5':
886
- optional: true
887
-
888
- '@rollup/rollup-linux-s390x-gnu@4.53.5':
889
- optional: true
890
-
891
- '@rollup/rollup-linux-x64-gnu@4.53.5':
892
- optional: true
893
-
894
- '@rollup/rollup-linux-x64-musl@4.53.5':
895
- optional: true
896
-
897
- '@rollup/rollup-openharmony-arm64@4.53.5':
898
- optional: true
899
-
900
- '@rollup/rollup-win32-arm64-msvc@4.53.5':
901
- optional: true
902
-
903
- '@rollup/rollup-win32-ia32-msvc@4.53.5':
904
- optional: true
905
-
906
- '@rollup/rollup-win32-x64-gnu@4.53.5':
907
- optional: true
908
-
909
- '@rollup/rollup-win32-x64-msvc@4.53.5':
910
- optional: true
911
-
912
- '@standard-schema/spec@1.1.0': {}
913
-
914
- '@types/chai@5.2.3':
915
- dependencies:
916
- '@types/deep-eql': 4.0.2
917
- assertion-error: 2.0.1
918
-
919
- '@types/deep-eql@4.0.2': {}
920
-
921
- '@types/estree@1.0.8': {}
922
-
923
- '@types/node@24.10.4':
924
- dependencies:
925
- undici-types: 7.16.0
926
-
927
- '@types/statuses@2.0.6': {}
928
-
929
- '@vitest/expect@4.0.16':
930
- dependencies:
931
- '@standard-schema/spec': 1.1.0
932
- '@types/chai': 5.2.3
933
- '@vitest/spy': 4.0.16
934
- '@vitest/utils': 4.0.16
935
- chai: 6.2.1
936
- tinyrainbow: 3.0.3
937
-
938
- '@vitest/mocker@4.0.16(msw@2.12.4(@types/node@24.10.4)(typescript@5.9.3))(vite@7.3.0(@types/node@24.10.4))':
939
- dependencies:
940
- '@vitest/spy': 4.0.16
941
- estree-walker: 3.0.3
942
- magic-string: 0.30.21
943
- optionalDependencies:
944
- msw: 2.12.4(@types/node@24.10.4)(typescript@5.9.3)
945
- vite: 7.3.0(@types/node@24.10.4)
946
-
947
- '@vitest/pretty-format@4.0.16':
948
- dependencies:
949
- tinyrainbow: 3.0.3
950
-
951
- '@vitest/runner@4.0.16':
952
- dependencies:
953
- '@vitest/utils': 4.0.16
954
- pathe: 2.0.3
955
-
956
- '@vitest/snapshot@4.0.16':
957
- dependencies:
958
- '@vitest/pretty-format': 4.0.16
959
- magic-string: 0.30.21
960
- pathe: 2.0.3
961
-
962
- '@vitest/spy@4.0.16': {}
963
-
964
- '@vitest/utils@4.0.16':
965
- dependencies:
966
- '@vitest/pretty-format': 4.0.16
967
- tinyrainbow: 3.0.3
968
-
969
- ansi-escapes@4.3.2:
970
- dependencies:
971
- type-fest: 0.21.3
972
-
973
- ansi-regex@5.0.1: {}
974
-
975
- ansi-styles@4.3.0:
976
- dependencies:
977
- color-convert: 2.0.1
978
-
979
- assertion-error@2.0.1: {}
980
-
981
- chai@6.2.1: {}
982
-
983
- cli-width@4.1.0: {}
984
-
985
- cliui@8.0.1:
986
- dependencies:
987
- string-width: 4.2.3
988
- strip-ansi: 6.0.1
989
- wrap-ansi: 7.0.0
990
-
991
- color-convert@2.0.1:
992
- dependencies:
993
- color-name: 1.1.4
994
-
995
- color-name@1.1.4: {}
996
-
997
- cookie@1.1.1: {}
998
-
999
- emoji-regex@8.0.0: {}
1000
-
1001
- es-module-lexer@1.7.0: {}
1002
-
1003
- esbuild@0.27.2:
1004
- optionalDependencies:
1005
- '@esbuild/aix-ppc64': 0.27.2
1006
- '@esbuild/android-arm': 0.27.2
1007
- '@esbuild/android-arm64': 0.27.2
1008
- '@esbuild/android-x64': 0.27.2
1009
- '@esbuild/darwin-arm64': 0.27.2
1010
- '@esbuild/darwin-x64': 0.27.2
1011
- '@esbuild/freebsd-arm64': 0.27.2
1012
- '@esbuild/freebsd-x64': 0.27.2
1013
- '@esbuild/linux-arm': 0.27.2
1014
- '@esbuild/linux-arm64': 0.27.2
1015
- '@esbuild/linux-ia32': 0.27.2
1016
- '@esbuild/linux-loong64': 0.27.2
1017
- '@esbuild/linux-mips64el': 0.27.2
1018
- '@esbuild/linux-ppc64': 0.27.2
1019
- '@esbuild/linux-riscv64': 0.27.2
1020
- '@esbuild/linux-s390x': 0.27.2
1021
- '@esbuild/linux-x64': 0.27.2
1022
- '@esbuild/netbsd-arm64': 0.27.2
1023
- '@esbuild/netbsd-x64': 0.27.2
1024
- '@esbuild/openbsd-arm64': 0.27.2
1025
- '@esbuild/openbsd-x64': 0.27.2
1026
- '@esbuild/openharmony-arm64': 0.27.2
1027
- '@esbuild/sunos-x64': 0.27.2
1028
- '@esbuild/win32-arm64': 0.27.2
1029
- '@esbuild/win32-ia32': 0.27.2
1030
- '@esbuild/win32-x64': 0.27.2
1031
-
1032
- escalade@3.2.0: {}
1033
-
1034
- estree-walker@3.0.3:
1035
- dependencies:
1036
- '@types/estree': 1.0.8
1037
-
1038
- expect-type@1.3.0: {}
1039
-
1040
- fdir@6.5.0(picomatch@4.0.3):
1041
- optionalDependencies:
1042
- picomatch: 4.0.3
1043
-
1044
- fsevents@2.3.3:
1045
- optional: true
1046
-
1047
- get-caller-file@2.0.5: {}
1048
-
1049
- graphql@16.12.0: {}
1050
-
1051
- headers-polyfill@4.0.3: {}
1052
-
1053
- is-fullwidth-code-point@3.0.0: {}
1054
-
1055
- is-node-process@1.2.0: {}
1056
-
1057
- magic-string@0.30.21:
1058
- dependencies:
1059
- '@jridgewell/sourcemap-codec': 1.5.5
1060
-
1061
- msw@2.12.4(@types/node@24.10.4)(typescript@5.9.3):
1062
- dependencies:
1063
- '@inquirer/confirm': 5.1.15(@types/node@24.10.4)
1064
- '@mswjs/interceptors': 0.40.0
1065
- '@open-draft/deferred-promise': 2.2.0
1066
- '@types/statuses': 2.0.6
1067
- cookie: 1.1.1
1068
- graphql: 16.12.0
1069
- headers-polyfill: 4.0.3
1070
- is-node-process: 1.2.0
1071
- outvariant: 1.4.3
1072
- path-to-regexp: 6.3.0
1073
- picocolors: 1.1.1
1074
- rettime: 0.7.0
1075
- statuses: 2.0.2
1076
- strict-event-emitter: 0.5.1
1077
- tough-cookie: 6.0.0
1078
- type-fest: 5.3.1
1079
- until-async: 3.0.2
1080
- yargs: 17.7.2
1081
- optionalDependencies:
1082
- typescript: 5.9.3
1083
- transitivePeerDependencies:
1084
- - '@types/node'
1085
-
1086
- mute-stream@2.0.0: {}
1087
-
1088
- nanoid@3.3.11: {}
1089
-
1090
- obug@2.1.1: {}
1091
-
1092
- outvariant@1.4.3: {}
1093
-
1094
- path-to-regexp@6.3.0: {}
1095
-
1096
- pathe@2.0.3: {}
1097
-
1098
- picocolors@1.1.1: {}
1099
-
1100
- picomatch@4.0.3: {}
1101
-
1102
- postcss@8.5.6:
1103
- dependencies:
1104
- nanoid: 3.3.11
1105
- picocolors: 1.1.1
1106
- source-map-js: 1.2.1
1107
-
1108
- require-directory@2.1.1: {}
1109
-
1110
- rettime@0.7.0: {}
1111
-
1112
- rollup@4.53.5:
1113
- dependencies:
1114
- '@types/estree': 1.0.8
1115
- optionalDependencies:
1116
- '@rollup/rollup-android-arm-eabi': 4.53.5
1117
- '@rollup/rollup-android-arm64': 4.53.5
1118
- '@rollup/rollup-darwin-arm64': 4.53.5
1119
- '@rollup/rollup-darwin-x64': 4.53.5
1120
- '@rollup/rollup-freebsd-arm64': 4.53.5
1121
- '@rollup/rollup-freebsd-x64': 4.53.5
1122
- '@rollup/rollup-linux-arm-gnueabihf': 4.53.5
1123
- '@rollup/rollup-linux-arm-musleabihf': 4.53.5
1124
- '@rollup/rollup-linux-arm64-gnu': 4.53.5
1125
- '@rollup/rollup-linux-arm64-musl': 4.53.5
1126
- '@rollup/rollup-linux-loong64-gnu': 4.53.5
1127
- '@rollup/rollup-linux-ppc64-gnu': 4.53.5
1128
- '@rollup/rollup-linux-riscv64-gnu': 4.53.5
1129
- '@rollup/rollup-linux-riscv64-musl': 4.53.5
1130
- '@rollup/rollup-linux-s390x-gnu': 4.53.5
1131
- '@rollup/rollup-linux-x64-gnu': 4.53.5
1132
- '@rollup/rollup-linux-x64-musl': 4.53.5
1133
- '@rollup/rollup-openharmony-arm64': 4.53.5
1134
- '@rollup/rollup-win32-arm64-msvc': 4.53.5
1135
- '@rollup/rollup-win32-ia32-msvc': 4.53.5
1136
- '@rollup/rollup-win32-x64-gnu': 4.53.5
1137
- '@rollup/rollup-win32-x64-msvc': 4.53.5
1138
- fsevents: 2.3.3
1139
-
1140
- siginfo@2.0.0: {}
1141
-
1142
- signal-exit@4.1.0: {}
1143
-
1144
- source-map-js@1.2.1: {}
1145
-
1146
- stackback@0.0.2: {}
1147
-
1148
- statuses@2.0.2: {}
1149
-
1150
- std-env@3.10.0: {}
1151
-
1152
- strict-event-emitter@0.5.1: {}
1153
-
1154
- string-width@4.2.3:
1155
- dependencies:
1156
- emoji-regex: 8.0.0
1157
- is-fullwidth-code-point: 3.0.0
1158
- strip-ansi: 6.0.1
1159
-
1160
- strip-ansi@6.0.1:
1161
- dependencies:
1162
- ansi-regex: 5.0.1
1163
-
1164
- tagged-tag@1.0.0: {}
1165
-
1166
- tinybench@2.9.0: {}
1167
-
1168
- tinyexec@1.0.2: {}
1169
-
1170
- tinyglobby@0.2.15:
1171
- dependencies:
1172
- fdir: 6.5.0(picomatch@4.0.3)
1173
- picomatch: 4.0.3
1174
-
1175
- tinyrainbow@3.0.3: {}
1176
-
1177
- tldts-core@7.0.19: {}
1178
-
1179
- tldts@7.0.19:
1180
- dependencies:
1181
- tldts-core: 7.0.19
1182
-
1183
- tough-cookie@6.0.0:
1184
- dependencies:
1185
- tldts: 7.0.19
1186
-
1187
- type-fest@0.21.3: {}
1188
-
1189
- type-fest@5.3.1:
1190
- dependencies:
1191
- tagged-tag: 1.0.0
1192
-
1193
- typescript@5.9.3: {}
1194
-
1195
- undici-types@7.16.0: {}
1196
-
1197
- until-async@3.0.2: {}
1198
-
1199
- vite@7.3.0(@types/node@24.10.4):
1200
- dependencies:
1201
- esbuild: 0.27.2
1202
- fdir: 6.5.0(picomatch@4.0.3)
1203
- picomatch: 4.0.3
1204
- postcss: 8.5.6
1205
- rollup: 4.53.5
1206
- tinyglobby: 0.2.15
1207
- optionalDependencies:
1208
- '@types/node': 24.10.4
1209
- fsevents: 2.3.3
1210
-
1211
- vitest@4.0.16(@types/node@24.10.4)(msw@2.12.4(@types/node@24.10.4)(typescript@5.9.3)):
1212
- dependencies:
1213
- '@vitest/expect': 4.0.16
1214
- '@vitest/mocker': 4.0.16(msw@2.12.4(@types/node@24.10.4)(typescript@5.9.3))(vite@7.3.0(@types/node@24.10.4))
1215
- '@vitest/pretty-format': 4.0.16
1216
- '@vitest/runner': 4.0.16
1217
- '@vitest/snapshot': 4.0.16
1218
- '@vitest/spy': 4.0.16
1219
- '@vitest/utils': 4.0.16
1220
- es-module-lexer: 1.7.0
1221
- expect-type: 1.3.0
1222
- magic-string: 0.30.21
1223
- obug: 2.1.1
1224
- pathe: 2.0.3
1225
- picomatch: 4.0.3
1226
- std-env: 3.10.0
1227
- tinybench: 2.9.0
1228
- tinyexec: 1.0.2
1229
- tinyglobby: 0.2.15
1230
- tinyrainbow: 3.0.3
1231
- vite: 7.3.0(@types/node@24.10.4)
1232
- why-is-node-running: 2.3.0
1233
- optionalDependencies:
1234
- '@types/node': 24.10.4
1235
- transitivePeerDependencies:
1236
- - jiti
1237
- - less
1238
- - lightningcss
1239
- - msw
1240
- - sass
1241
- - sass-embedded
1242
- - stylus
1243
- - sugarss
1244
- - terser
1245
- - tsx
1246
- - yaml
1247
-
1248
- why-is-node-running@2.3.0:
1249
- dependencies:
1250
- siginfo: 2.0.0
1251
- stackback: 0.0.2
1252
-
1253
- wrap-ansi@6.2.0:
1254
- dependencies:
1255
- ansi-styles: 4.3.0
1256
- string-width: 4.2.3
1257
- strip-ansi: 6.0.1
1258
-
1259
- wrap-ansi@7.0.0:
1260
- dependencies:
1261
- ansi-styles: 4.3.0
1262
- string-width: 4.2.3
1263
- strip-ansi: 6.0.1
1264
-
1265
- y18n@5.0.8: {}
1266
-
1267
- yargs-parser@21.1.1: {}
1268
-
1269
- yargs@17.7.2:
1270
- dependencies:
1271
- cliui: 8.0.1
1272
- escalade: 3.2.0
1273
- get-caller-file: 2.0.5
1274
- require-directory: 2.1.1
1275
- string-width: 4.2.3
1276
- y18n: 5.0.8
1277
- yargs-parser: 21.1.1
1278
-
1279
- yoctocolors-cjs@2.1.2: {}