create-koppajs 1.1.0 → 1.2.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.
- package/CHANGELOG.md +40 -0
- package/README.md +123 -122
- package/bin/create-koppajs.js +158 -13
- package/package.json +2 -1
- package/template/package.json +2 -2
- package/template/pnpm-lock.yaml +11 -18
- package/template-overlays/router/ARCHITECTURE.md +86 -0
- package/template-overlays/router/CHANGELOG.md +44 -0
- package/template-overlays/router/DEVELOPMENT_RULES.md +57 -0
- package/template-overlays/router/README.md +243 -0
- package/template-overlays/router/ROADMAP.md +34 -0
- package/template-overlays/router/TESTING_STRATEGY.md +67 -0
- package/template-overlays/router/docs/adr/0001-keep-the-starter-minimal.md +32 -0
- package/template-overlays/router/docs/architecture/module-boundaries.md +39 -0
- package/template-overlays/router/docs/meta/maintenance.md +38 -0
- package/template-overlays/router/docs/specs/README.md +19 -0
- package/template-overlays/router/docs/specs/app-bootstrap.md +42 -0
- package/template-overlays/router/docs/specs/router-navigation.md +41 -0
- package/template-overlays/router/index.html +14 -0
- package/template-overlays/router/package.json +74 -0
- package/template-overlays/router/pnpm-lock.yaml +3786 -0
- package/template-overlays/router/src/app-view.kpa +128 -0
- package/template-overlays/router/src/home-page.kpa +100 -0
- package/template-overlays/router/src/main.ts +89 -0
- package/template-overlays/router/src/not-found-page.kpa +69 -0
- package/template-overlays/router/src/router-page.kpa +102 -0
- package/template-overlays/router/src/style.css +51 -0
- package/template-overlays/router/tests/e2e/app.spec.ts +38 -0
- package/template-overlays/router/tests/integration/main-bootstrap.test.ts +150 -0
|
@@ -0,0 +1,3786 @@
|
|
|
1
|
+
lockfileVersion: '9.0'
|
|
2
|
+
|
|
3
|
+
settings:
|
|
4
|
+
autoInstallPeers: true
|
|
5
|
+
excludeLinksFromLockfile: false
|
|
6
|
+
|
|
7
|
+
importers:
|
|
8
|
+
|
|
9
|
+
.:
|
|
10
|
+
dependencies:
|
|
11
|
+
'@koppajs/koppajs-core':
|
|
12
|
+
specifier: ^3.0.3
|
|
13
|
+
version: 3.0.3
|
|
14
|
+
'@koppajs/koppajs-router':
|
|
15
|
+
specifier: ^0.1.0
|
|
16
|
+
version: 0.1.0
|
|
17
|
+
devDependencies:
|
|
18
|
+
'@commitlint/cli':
|
|
19
|
+
specifier: ^20.1.0
|
|
20
|
+
version: 20.5.0(@types/node@25.4.0)(conventional-commits-parser@6.3.0)(typescript@5.9.3)
|
|
21
|
+
'@commitlint/config-conventional':
|
|
22
|
+
specifier: ^20.0.0
|
|
23
|
+
version: 20.5.0
|
|
24
|
+
'@eslint/js':
|
|
25
|
+
specifier: ^10.0.1
|
|
26
|
+
version: 10.0.1(eslint@10.0.3(jiti@2.6.1))
|
|
27
|
+
'@koppajs/koppajs-vite-plugin':
|
|
28
|
+
specifier: ^1.0.1
|
|
29
|
+
version: 1.0.1(typescript@5.9.3)(vite@7.2.6(@types/node@25.4.0)(jiti@2.6.1)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))
|
|
30
|
+
'@playwright/test':
|
|
31
|
+
specifier: ^1.58.2
|
|
32
|
+
version: 1.58.2
|
|
33
|
+
'@types/node':
|
|
34
|
+
specifier: ^25.4.0
|
|
35
|
+
version: 25.4.0
|
|
36
|
+
'@vitest/coverage-v8':
|
|
37
|
+
specifier: ^4.0.18
|
|
38
|
+
version: 4.0.18(vitest@4.0.18(@types/node@25.4.0)(jiti@2.6.1)(jsdom@27.4.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))
|
|
39
|
+
eslint:
|
|
40
|
+
specifier: ^10.0.3
|
|
41
|
+
version: 10.0.3(jiti@2.6.1)
|
|
42
|
+
globals:
|
|
43
|
+
specifier: ^17.4.0
|
|
44
|
+
version: 17.4.0
|
|
45
|
+
husky:
|
|
46
|
+
specifier: ^9.1.7
|
|
47
|
+
version: 9.1.7
|
|
48
|
+
lint-staged:
|
|
49
|
+
specifier: ^16.3.3
|
|
50
|
+
version: 16.3.3
|
|
51
|
+
prettier:
|
|
52
|
+
specifier: ^3.8.1
|
|
53
|
+
version: 3.8.1
|
|
54
|
+
typescript:
|
|
55
|
+
specifier: ^5.9.3
|
|
56
|
+
version: 5.9.3
|
|
57
|
+
typescript-eslint:
|
|
58
|
+
specifier: ^8.57.0
|
|
59
|
+
version: 8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)
|
|
60
|
+
vite:
|
|
61
|
+
specifier: 7.2.6
|
|
62
|
+
version: 7.2.6(@types/node@25.4.0)(jiti@2.6.1)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)
|
|
63
|
+
vitest:
|
|
64
|
+
specifier: ^4.0.18
|
|
65
|
+
version: 4.0.18(@types/node@25.4.0)(jiti@2.6.1)(jsdom@27.4.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)
|
|
66
|
+
|
|
67
|
+
packages:
|
|
68
|
+
|
|
69
|
+
'@acemir/cssom@0.9.31':
|
|
70
|
+
resolution: {integrity: sha512-ZnR3GSaH+/vJ0YlHau21FjfLYjMpYVIzTD8M8vIEQvIGxeOXyXdzCI140rrCY862p/C/BbzWsjc1dgnM9mkoTA==}
|
|
71
|
+
|
|
72
|
+
'@asamuzakjp/css-color@4.1.1':
|
|
73
|
+
resolution: {integrity: sha512-B0Hv6G3gWGMn0xKJ0txEi/jM5iFpT3MfDxmhZFb4W047GvytCf1DHQ1D69W3zHI4yWe2aTZAA0JnbMZ7Xc8DuQ==}
|
|
74
|
+
|
|
75
|
+
'@asamuzakjp/dom-selector@6.7.6':
|
|
76
|
+
resolution: {integrity: sha512-hBaJER6A9MpdG3WgdlOolHmbOYvSk46y7IQN/1+iqiCuUu6iWdQrs9DGKF8ocqsEqWujWf/V7b7vaDgiUmIvUg==}
|
|
77
|
+
|
|
78
|
+
'@asamuzakjp/nwsapi@2.3.9':
|
|
79
|
+
resolution: {integrity: sha512-n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q==}
|
|
80
|
+
|
|
81
|
+
'@babel/code-frame@7.29.0':
|
|
82
|
+
resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
|
|
83
|
+
engines: {node: '>=6.9.0'}
|
|
84
|
+
|
|
85
|
+
'@babel/helper-string-parser@7.27.1':
|
|
86
|
+
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
|
|
87
|
+
engines: {node: '>=6.9.0'}
|
|
88
|
+
|
|
89
|
+
'@babel/helper-validator-identifier@7.28.5':
|
|
90
|
+
resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
|
|
91
|
+
engines: {node: '>=6.9.0'}
|
|
92
|
+
|
|
93
|
+
'@babel/parser@7.28.5':
|
|
94
|
+
resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==}
|
|
95
|
+
engines: {node: '>=6.0.0'}
|
|
96
|
+
hasBin: true
|
|
97
|
+
|
|
98
|
+
'@babel/types@7.28.5':
|
|
99
|
+
resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==}
|
|
100
|
+
engines: {node: '>=6.9.0'}
|
|
101
|
+
|
|
102
|
+
'@bcoe/v8-coverage@1.0.2':
|
|
103
|
+
resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==}
|
|
104
|
+
engines: {node: '>=18'}
|
|
105
|
+
|
|
106
|
+
'@commitlint/cli@20.5.0':
|
|
107
|
+
resolution: {integrity: sha512-yNkyN/tuKTJS3wdVfsZ2tXDM4G4Gi7z+jW54Cki8N8tZqwKBltbIvUUrSbT4hz1bhW/h0CdR+5sCSpXD+wMKaQ==}
|
|
108
|
+
engines: {node: '>=v18'}
|
|
109
|
+
hasBin: true
|
|
110
|
+
|
|
111
|
+
'@commitlint/config-conventional@20.5.0':
|
|
112
|
+
resolution: {integrity: sha512-t3Ni88rFw1XMa4nZHgOKJ8fIAT9M2j5TnKyTqJzsxea7FUetlNdYFus9dz+MhIRZmc16P0PPyEfh6X2d/qw8SA==}
|
|
113
|
+
engines: {node: '>=v18'}
|
|
114
|
+
|
|
115
|
+
'@commitlint/config-validator@20.5.0':
|
|
116
|
+
resolution: {integrity: sha512-T/Uh6iJUzyx7j35GmHWdIiGRQB+ouZDk0pwAaYq4SXgB54KZhFdJ0vYmxiW6AMYICTIWuyMxDBl1jK74oFp/Gw==}
|
|
117
|
+
engines: {node: '>=v18'}
|
|
118
|
+
|
|
119
|
+
'@commitlint/ensure@20.5.0':
|
|
120
|
+
resolution: {integrity: sha512-IpHqAUesBeW1EDDdjzJeaOxU9tnogLAyXLRBn03SHlj1SGENn2JGZqSWGkFvBJkJzfXAuCNtsoYzax+ZPS+puw==}
|
|
121
|
+
engines: {node: '>=v18'}
|
|
122
|
+
|
|
123
|
+
'@commitlint/execute-rule@20.0.0':
|
|
124
|
+
resolution: {integrity: sha512-xyCoOShoPuPL44gVa+5EdZsBVao/pNzpQhkzq3RdtlFdKZtjWcLlUFQHSWBuhk5utKYykeJPSz2i8ABHQA+ZZw==}
|
|
125
|
+
engines: {node: '>=v18'}
|
|
126
|
+
|
|
127
|
+
'@commitlint/format@20.5.0':
|
|
128
|
+
resolution: {integrity: sha512-TI9EwFU/qZWSK7a5qyXMpKPPv3qta7FO4tKW+Wt2al7sgMbLWTsAcDpX1cU8k16TRdsiiet9aOw0zpvRXNJu7Q==}
|
|
129
|
+
engines: {node: '>=v18'}
|
|
130
|
+
|
|
131
|
+
'@commitlint/is-ignored@20.5.0':
|
|
132
|
+
resolution: {integrity: sha512-JWLarAsurHJhPozbuAH6GbP4p/hdOCoqS9zJMfqwswne+/GPs5V0+rrsfOkP68Y8PSLphwtFXV0EzJ+GTXTTGg==}
|
|
133
|
+
engines: {node: '>=v18'}
|
|
134
|
+
|
|
135
|
+
'@commitlint/lint@20.5.0':
|
|
136
|
+
resolution: {integrity: sha512-jiM3hNUdu04jFBf1VgPdjtIPvbuVfDTBAc6L98AWcoLjF5sYqkulBHBzlVWll4rMF1T5zeQFB6r//a+s+BBKlA==}
|
|
137
|
+
engines: {node: '>=v18'}
|
|
138
|
+
|
|
139
|
+
'@commitlint/load@20.5.0':
|
|
140
|
+
resolution: {integrity: sha512-sLhhYTL/KxeOTZjjabKDhwidGZan84XKK1+XFkwDYL/4883kIajcz/dZFAhBJmZPtL8+nBx6bnkzA95YxPeDPw==}
|
|
141
|
+
engines: {node: '>=v18'}
|
|
142
|
+
|
|
143
|
+
'@commitlint/message@20.4.3':
|
|
144
|
+
resolution: {integrity: sha512-6akwCYrzcrFcTYz9GyUaWlhisY4lmQ3KvrnabmhoeAV8nRH4dXJAh4+EUQ3uArtxxKQkvxJS78hNX2EU3USgxQ==}
|
|
145
|
+
engines: {node: '>=v18'}
|
|
146
|
+
|
|
147
|
+
'@commitlint/parse@20.5.0':
|
|
148
|
+
resolution: {integrity: sha512-SeKWHBMk7YOTnnEWUhx+d1a9vHsjjuo6Uo1xRfPNfeY4bdYFasCH1dDpAv13Lyn+dDPOels+jP6D2GRZqzc5fA==}
|
|
149
|
+
engines: {node: '>=v18'}
|
|
150
|
+
|
|
151
|
+
'@commitlint/read@20.5.0':
|
|
152
|
+
resolution: {integrity: sha512-JDEIJ2+GnWpK8QqwfmW7O42h0aycJEWNqcdkJnyzLD11nf9dW2dWLTVEa8Wtlo4IZFGLPATjR5neA5QlOvIH1w==}
|
|
153
|
+
engines: {node: '>=v18'}
|
|
154
|
+
|
|
155
|
+
'@commitlint/resolve-extends@20.5.0':
|
|
156
|
+
resolution: {integrity: sha512-3SHPWUW2v0tyspCTcfSsYml0gses92l6TlogwzvM2cbxDgmhSRc+fldDjvGkCXJrjSM87BBaWYTPWwwyASZRrg==}
|
|
157
|
+
engines: {node: '>=v18'}
|
|
158
|
+
|
|
159
|
+
'@commitlint/rules@20.5.0':
|
|
160
|
+
resolution: {integrity: sha512-5NdQXQEdnDPT5pK8O39ZA7HohzPRHEsDGU23cyVCNPQy4WegAbAwrQk3nIu7p2sl3dutPk8RZd91yKTrMTnRkQ==}
|
|
161
|
+
engines: {node: '>=v18'}
|
|
162
|
+
|
|
163
|
+
'@commitlint/to-lines@20.0.0':
|
|
164
|
+
resolution: {integrity: sha512-2l9gmwiCRqZNWgV+pX1X7z4yP0b3ex/86UmUFgoRt672Ez6cAM2lOQeHFRUTuE6sPpi8XBCGnd8Kh3bMoyHwJw==}
|
|
165
|
+
engines: {node: '>=v18'}
|
|
166
|
+
|
|
167
|
+
'@commitlint/top-level@20.4.3':
|
|
168
|
+
resolution: {integrity: sha512-qD9xfP6dFg5jQ3NMrOhG0/w5y3bBUsVGyJvXxdWEwBm8hyx4WOk3kKXw28T5czBYvyeCVJgJJ6aoJZUWDpaacQ==}
|
|
169
|
+
engines: {node: '>=v18'}
|
|
170
|
+
|
|
171
|
+
'@commitlint/types@20.5.0':
|
|
172
|
+
resolution: {integrity: sha512-ZJoS8oSq2CAZEpc/YI9SulLrdiIyXeHb/OGqGrkUP6Q7YV+0ouNAa7GjqRdXeQPncHQIDz/jbCTlHScvYvO/gA==}
|
|
173
|
+
engines: {node: '>=v18'}
|
|
174
|
+
|
|
175
|
+
'@conventional-changelog/git-client@2.6.0':
|
|
176
|
+
resolution: {integrity: sha512-T+uPDciKf0/ioNNDpMGc8FDsehJClZP0yR3Q5MN6wE/Y/1QZ7F+80OgznnTCOlMEG4AV0LvH2UJi3C/nBnaBUg==}
|
|
177
|
+
engines: {node: '>=18'}
|
|
178
|
+
peerDependencies:
|
|
179
|
+
conventional-commits-filter: ^5.0.0
|
|
180
|
+
conventional-commits-parser: ^6.3.0
|
|
181
|
+
peerDependenciesMeta:
|
|
182
|
+
conventional-commits-filter:
|
|
183
|
+
optional: true
|
|
184
|
+
conventional-commits-parser:
|
|
185
|
+
optional: true
|
|
186
|
+
|
|
187
|
+
'@csstools/color-helpers@5.1.0':
|
|
188
|
+
resolution: {integrity: sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==}
|
|
189
|
+
engines: {node: '>=18'}
|
|
190
|
+
|
|
191
|
+
'@csstools/css-calc@2.1.4':
|
|
192
|
+
resolution: {integrity: sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==}
|
|
193
|
+
engines: {node: '>=18'}
|
|
194
|
+
peerDependencies:
|
|
195
|
+
'@csstools/css-parser-algorithms': ^3.0.5
|
|
196
|
+
'@csstools/css-tokenizer': ^3.0.4
|
|
197
|
+
|
|
198
|
+
'@csstools/css-color-parser@3.1.0':
|
|
199
|
+
resolution: {integrity: sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==}
|
|
200
|
+
engines: {node: '>=18'}
|
|
201
|
+
peerDependencies:
|
|
202
|
+
'@csstools/css-parser-algorithms': ^3.0.5
|
|
203
|
+
'@csstools/css-tokenizer': ^3.0.4
|
|
204
|
+
|
|
205
|
+
'@csstools/css-parser-algorithms@3.0.5':
|
|
206
|
+
resolution: {integrity: sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==}
|
|
207
|
+
engines: {node: '>=18'}
|
|
208
|
+
peerDependencies:
|
|
209
|
+
'@csstools/css-tokenizer': ^3.0.4
|
|
210
|
+
|
|
211
|
+
'@csstools/css-syntax-patches-for-csstree@1.0.22':
|
|
212
|
+
resolution: {integrity: sha512-qBcx6zYlhleiFfdtzkRgwNC7VVoAwfK76Vmsw5t+PbvtdknO9StgRk7ROvq9so1iqbdW4uLIDAsXRsTfUrIoOw==}
|
|
213
|
+
engines: {node: '>=18'}
|
|
214
|
+
|
|
215
|
+
'@csstools/css-tokenizer@3.0.4':
|
|
216
|
+
resolution: {integrity: sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==}
|
|
217
|
+
engines: {node: '>=18'}
|
|
218
|
+
|
|
219
|
+
'@esbuild/aix-ppc64@0.25.12':
|
|
220
|
+
resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==}
|
|
221
|
+
engines: {node: '>=18'}
|
|
222
|
+
cpu: [ppc64]
|
|
223
|
+
os: [aix]
|
|
224
|
+
|
|
225
|
+
'@esbuild/aix-ppc64@0.27.2':
|
|
226
|
+
resolution: {integrity: sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==}
|
|
227
|
+
engines: {node: '>=18'}
|
|
228
|
+
cpu: [ppc64]
|
|
229
|
+
os: [aix]
|
|
230
|
+
|
|
231
|
+
'@esbuild/android-arm64@0.25.12':
|
|
232
|
+
resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
|
|
233
|
+
engines: {node: '>=18'}
|
|
234
|
+
cpu: [arm64]
|
|
235
|
+
os: [android]
|
|
236
|
+
|
|
237
|
+
'@esbuild/android-arm64@0.27.2':
|
|
238
|
+
resolution: {integrity: sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==}
|
|
239
|
+
engines: {node: '>=18'}
|
|
240
|
+
cpu: [arm64]
|
|
241
|
+
os: [android]
|
|
242
|
+
|
|
243
|
+
'@esbuild/android-arm@0.25.12':
|
|
244
|
+
resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
|
|
245
|
+
engines: {node: '>=18'}
|
|
246
|
+
cpu: [arm]
|
|
247
|
+
os: [android]
|
|
248
|
+
|
|
249
|
+
'@esbuild/android-arm@0.27.2':
|
|
250
|
+
resolution: {integrity: sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==}
|
|
251
|
+
engines: {node: '>=18'}
|
|
252
|
+
cpu: [arm]
|
|
253
|
+
os: [android]
|
|
254
|
+
|
|
255
|
+
'@esbuild/android-x64@0.25.12':
|
|
256
|
+
resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
|
|
257
|
+
engines: {node: '>=18'}
|
|
258
|
+
cpu: [x64]
|
|
259
|
+
os: [android]
|
|
260
|
+
|
|
261
|
+
'@esbuild/android-x64@0.27.2':
|
|
262
|
+
resolution: {integrity: sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==}
|
|
263
|
+
engines: {node: '>=18'}
|
|
264
|
+
cpu: [x64]
|
|
265
|
+
os: [android]
|
|
266
|
+
|
|
267
|
+
'@esbuild/darwin-arm64@0.25.12':
|
|
268
|
+
resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
|
|
269
|
+
engines: {node: '>=18'}
|
|
270
|
+
cpu: [arm64]
|
|
271
|
+
os: [darwin]
|
|
272
|
+
|
|
273
|
+
'@esbuild/darwin-arm64@0.27.2':
|
|
274
|
+
resolution: {integrity: sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==}
|
|
275
|
+
engines: {node: '>=18'}
|
|
276
|
+
cpu: [arm64]
|
|
277
|
+
os: [darwin]
|
|
278
|
+
|
|
279
|
+
'@esbuild/darwin-x64@0.25.12':
|
|
280
|
+
resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
|
|
281
|
+
engines: {node: '>=18'}
|
|
282
|
+
cpu: [x64]
|
|
283
|
+
os: [darwin]
|
|
284
|
+
|
|
285
|
+
'@esbuild/darwin-x64@0.27.2':
|
|
286
|
+
resolution: {integrity: sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==}
|
|
287
|
+
engines: {node: '>=18'}
|
|
288
|
+
cpu: [x64]
|
|
289
|
+
os: [darwin]
|
|
290
|
+
|
|
291
|
+
'@esbuild/freebsd-arm64@0.25.12':
|
|
292
|
+
resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
|
|
293
|
+
engines: {node: '>=18'}
|
|
294
|
+
cpu: [arm64]
|
|
295
|
+
os: [freebsd]
|
|
296
|
+
|
|
297
|
+
'@esbuild/freebsd-arm64@0.27.2':
|
|
298
|
+
resolution: {integrity: sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==}
|
|
299
|
+
engines: {node: '>=18'}
|
|
300
|
+
cpu: [arm64]
|
|
301
|
+
os: [freebsd]
|
|
302
|
+
|
|
303
|
+
'@esbuild/freebsd-x64@0.25.12':
|
|
304
|
+
resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
|
|
305
|
+
engines: {node: '>=18'}
|
|
306
|
+
cpu: [x64]
|
|
307
|
+
os: [freebsd]
|
|
308
|
+
|
|
309
|
+
'@esbuild/freebsd-x64@0.27.2':
|
|
310
|
+
resolution: {integrity: sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==}
|
|
311
|
+
engines: {node: '>=18'}
|
|
312
|
+
cpu: [x64]
|
|
313
|
+
os: [freebsd]
|
|
314
|
+
|
|
315
|
+
'@esbuild/linux-arm64@0.25.12':
|
|
316
|
+
resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
|
|
317
|
+
engines: {node: '>=18'}
|
|
318
|
+
cpu: [arm64]
|
|
319
|
+
os: [linux]
|
|
320
|
+
|
|
321
|
+
'@esbuild/linux-arm64@0.27.2':
|
|
322
|
+
resolution: {integrity: sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==}
|
|
323
|
+
engines: {node: '>=18'}
|
|
324
|
+
cpu: [arm64]
|
|
325
|
+
os: [linux]
|
|
326
|
+
|
|
327
|
+
'@esbuild/linux-arm@0.25.12':
|
|
328
|
+
resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
|
|
329
|
+
engines: {node: '>=18'}
|
|
330
|
+
cpu: [arm]
|
|
331
|
+
os: [linux]
|
|
332
|
+
|
|
333
|
+
'@esbuild/linux-arm@0.27.2':
|
|
334
|
+
resolution: {integrity: sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==}
|
|
335
|
+
engines: {node: '>=18'}
|
|
336
|
+
cpu: [arm]
|
|
337
|
+
os: [linux]
|
|
338
|
+
|
|
339
|
+
'@esbuild/linux-ia32@0.25.12':
|
|
340
|
+
resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
|
|
341
|
+
engines: {node: '>=18'}
|
|
342
|
+
cpu: [ia32]
|
|
343
|
+
os: [linux]
|
|
344
|
+
|
|
345
|
+
'@esbuild/linux-ia32@0.27.2':
|
|
346
|
+
resolution: {integrity: sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==}
|
|
347
|
+
engines: {node: '>=18'}
|
|
348
|
+
cpu: [ia32]
|
|
349
|
+
os: [linux]
|
|
350
|
+
|
|
351
|
+
'@esbuild/linux-loong64@0.25.12':
|
|
352
|
+
resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
|
|
353
|
+
engines: {node: '>=18'}
|
|
354
|
+
cpu: [loong64]
|
|
355
|
+
os: [linux]
|
|
356
|
+
|
|
357
|
+
'@esbuild/linux-loong64@0.27.2':
|
|
358
|
+
resolution: {integrity: sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==}
|
|
359
|
+
engines: {node: '>=18'}
|
|
360
|
+
cpu: [loong64]
|
|
361
|
+
os: [linux]
|
|
362
|
+
|
|
363
|
+
'@esbuild/linux-mips64el@0.25.12':
|
|
364
|
+
resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
|
|
365
|
+
engines: {node: '>=18'}
|
|
366
|
+
cpu: [mips64el]
|
|
367
|
+
os: [linux]
|
|
368
|
+
|
|
369
|
+
'@esbuild/linux-mips64el@0.27.2':
|
|
370
|
+
resolution: {integrity: sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==}
|
|
371
|
+
engines: {node: '>=18'}
|
|
372
|
+
cpu: [mips64el]
|
|
373
|
+
os: [linux]
|
|
374
|
+
|
|
375
|
+
'@esbuild/linux-ppc64@0.25.12':
|
|
376
|
+
resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
|
|
377
|
+
engines: {node: '>=18'}
|
|
378
|
+
cpu: [ppc64]
|
|
379
|
+
os: [linux]
|
|
380
|
+
|
|
381
|
+
'@esbuild/linux-ppc64@0.27.2':
|
|
382
|
+
resolution: {integrity: sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==}
|
|
383
|
+
engines: {node: '>=18'}
|
|
384
|
+
cpu: [ppc64]
|
|
385
|
+
os: [linux]
|
|
386
|
+
|
|
387
|
+
'@esbuild/linux-riscv64@0.25.12':
|
|
388
|
+
resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
|
|
389
|
+
engines: {node: '>=18'}
|
|
390
|
+
cpu: [riscv64]
|
|
391
|
+
os: [linux]
|
|
392
|
+
|
|
393
|
+
'@esbuild/linux-riscv64@0.27.2':
|
|
394
|
+
resolution: {integrity: sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==}
|
|
395
|
+
engines: {node: '>=18'}
|
|
396
|
+
cpu: [riscv64]
|
|
397
|
+
os: [linux]
|
|
398
|
+
|
|
399
|
+
'@esbuild/linux-s390x@0.25.12':
|
|
400
|
+
resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
|
|
401
|
+
engines: {node: '>=18'}
|
|
402
|
+
cpu: [s390x]
|
|
403
|
+
os: [linux]
|
|
404
|
+
|
|
405
|
+
'@esbuild/linux-s390x@0.27.2':
|
|
406
|
+
resolution: {integrity: sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==}
|
|
407
|
+
engines: {node: '>=18'}
|
|
408
|
+
cpu: [s390x]
|
|
409
|
+
os: [linux]
|
|
410
|
+
|
|
411
|
+
'@esbuild/linux-x64@0.25.12':
|
|
412
|
+
resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
|
|
413
|
+
engines: {node: '>=18'}
|
|
414
|
+
cpu: [x64]
|
|
415
|
+
os: [linux]
|
|
416
|
+
|
|
417
|
+
'@esbuild/linux-x64@0.27.2':
|
|
418
|
+
resolution: {integrity: sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==}
|
|
419
|
+
engines: {node: '>=18'}
|
|
420
|
+
cpu: [x64]
|
|
421
|
+
os: [linux]
|
|
422
|
+
|
|
423
|
+
'@esbuild/netbsd-arm64@0.25.12':
|
|
424
|
+
resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
|
|
425
|
+
engines: {node: '>=18'}
|
|
426
|
+
cpu: [arm64]
|
|
427
|
+
os: [netbsd]
|
|
428
|
+
|
|
429
|
+
'@esbuild/netbsd-arm64@0.27.2':
|
|
430
|
+
resolution: {integrity: sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==}
|
|
431
|
+
engines: {node: '>=18'}
|
|
432
|
+
cpu: [arm64]
|
|
433
|
+
os: [netbsd]
|
|
434
|
+
|
|
435
|
+
'@esbuild/netbsd-x64@0.25.12':
|
|
436
|
+
resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
|
|
437
|
+
engines: {node: '>=18'}
|
|
438
|
+
cpu: [x64]
|
|
439
|
+
os: [netbsd]
|
|
440
|
+
|
|
441
|
+
'@esbuild/netbsd-x64@0.27.2':
|
|
442
|
+
resolution: {integrity: sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==}
|
|
443
|
+
engines: {node: '>=18'}
|
|
444
|
+
cpu: [x64]
|
|
445
|
+
os: [netbsd]
|
|
446
|
+
|
|
447
|
+
'@esbuild/openbsd-arm64@0.25.12':
|
|
448
|
+
resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
|
|
449
|
+
engines: {node: '>=18'}
|
|
450
|
+
cpu: [arm64]
|
|
451
|
+
os: [openbsd]
|
|
452
|
+
|
|
453
|
+
'@esbuild/openbsd-arm64@0.27.2':
|
|
454
|
+
resolution: {integrity: sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==}
|
|
455
|
+
engines: {node: '>=18'}
|
|
456
|
+
cpu: [arm64]
|
|
457
|
+
os: [openbsd]
|
|
458
|
+
|
|
459
|
+
'@esbuild/openbsd-x64@0.25.12':
|
|
460
|
+
resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
|
|
461
|
+
engines: {node: '>=18'}
|
|
462
|
+
cpu: [x64]
|
|
463
|
+
os: [openbsd]
|
|
464
|
+
|
|
465
|
+
'@esbuild/openbsd-x64@0.27.2':
|
|
466
|
+
resolution: {integrity: sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==}
|
|
467
|
+
engines: {node: '>=18'}
|
|
468
|
+
cpu: [x64]
|
|
469
|
+
os: [openbsd]
|
|
470
|
+
|
|
471
|
+
'@esbuild/openharmony-arm64@0.25.12':
|
|
472
|
+
resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
|
|
473
|
+
engines: {node: '>=18'}
|
|
474
|
+
cpu: [arm64]
|
|
475
|
+
os: [openharmony]
|
|
476
|
+
|
|
477
|
+
'@esbuild/openharmony-arm64@0.27.2':
|
|
478
|
+
resolution: {integrity: sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==}
|
|
479
|
+
engines: {node: '>=18'}
|
|
480
|
+
cpu: [arm64]
|
|
481
|
+
os: [openharmony]
|
|
482
|
+
|
|
483
|
+
'@esbuild/sunos-x64@0.25.12':
|
|
484
|
+
resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
|
|
485
|
+
engines: {node: '>=18'}
|
|
486
|
+
cpu: [x64]
|
|
487
|
+
os: [sunos]
|
|
488
|
+
|
|
489
|
+
'@esbuild/sunos-x64@0.27.2':
|
|
490
|
+
resolution: {integrity: sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==}
|
|
491
|
+
engines: {node: '>=18'}
|
|
492
|
+
cpu: [x64]
|
|
493
|
+
os: [sunos]
|
|
494
|
+
|
|
495
|
+
'@esbuild/win32-arm64@0.25.12':
|
|
496
|
+
resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
|
|
497
|
+
engines: {node: '>=18'}
|
|
498
|
+
cpu: [arm64]
|
|
499
|
+
os: [win32]
|
|
500
|
+
|
|
501
|
+
'@esbuild/win32-arm64@0.27.2':
|
|
502
|
+
resolution: {integrity: sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==}
|
|
503
|
+
engines: {node: '>=18'}
|
|
504
|
+
cpu: [arm64]
|
|
505
|
+
os: [win32]
|
|
506
|
+
|
|
507
|
+
'@esbuild/win32-ia32@0.25.12':
|
|
508
|
+
resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
|
|
509
|
+
engines: {node: '>=18'}
|
|
510
|
+
cpu: [ia32]
|
|
511
|
+
os: [win32]
|
|
512
|
+
|
|
513
|
+
'@esbuild/win32-ia32@0.27.2':
|
|
514
|
+
resolution: {integrity: sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==}
|
|
515
|
+
engines: {node: '>=18'}
|
|
516
|
+
cpu: [ia32]
|
|
517
|
+
os: [win32]
|
|
518
|
+
|
|
519
|
+
'@esbuild/win32-x64@0.25.12':
|
|
520
|
+
resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
|
|
521
|
+
engines: {node: '>=18'}
|
|
522
|
+
cpu: [x64]
|
|
523
|
+
os: [win32]
|
|
524
|
+
|
|
525
|
+
'@esbuild/win32-x64@0.27.2':
|
|
526
|
+
resolution: {integrity: sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==}
|
|
527
|
+
engines: {node: '>=18'}
|
|
528
|
+
cpu: [x64]
|
|
529
|
+
os: [win32]
|
|
530
|
+
|
|
531
|
+
'@eslint-community/eslint-utils@4.9.1':
|
|
532
|
+
resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
|
|
533
|
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
534
|
+
peerDependencies:
|
|
535
|
+
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
|
|
536
|
+
|
|
537
|
+
'@eslint-community/regexpp@4.12.2':
|
|
538
|
+
resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
|
|
539
|
+
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
|
|
540
|
+
|
|
541
|
+
'@eslint/config-array@0.23.3':
|
|
542
|
+
resolution: {integrity: sha512-j+eEWmB6YYLwcNOdlwQ6L2OsptI/LO6lNBuLIqe5R7RetD658HLoF+Mn7LzYmAWWNNzdC6cqP+L6r8ujeYXWLw==}
|
|
543
|
+
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
544
|
+
|
|
545
|
+
'@eslint/config-helpers@0.5.3':
|
|
546
|
+
resolution: {integrity: sha512-lzGN0onllOZCGroKJmRwY6QcEHxbjBw1gwB8SgRSqK8YbbtEXMvKynsXc3553ckIEBxsbMBU7oOZXKIPGZNeZw==}
|
|
547
|
+
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
548
|
+
|
|
549
|
+
'@eslint/core@1.1.1':
|
|
550
|
+
resolution: {integrity: sha512-QUPblTtE51/7/Zhfv8BDwO0qkkzQL7P/aWWbqcf4xWLEYn1oKjdO0gglQBB4GAsu7u6wjijbCmzsUTy6mnk6oQ==}
|
|
551
|
+
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
552
|
+
|
|
553
|
+
'@eslint/js@10.0.1':
|
|
554
|
+
resolution: {integrity: sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA==}
|
|
555
|
+
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
556
|
+
peerDependencies:
|
|
557
|
+
eslint: ^10.0.0
|
|
558
|
+
peerDependenciesMeta:
|
|
559
|
+
eslint:
|
|
560
|
+
optional: true
|
|
561
|
+
|
|
562
|
+
'@eslint/object-schema@3.0.3':
|
|
563
|
+
resolution: {integrity: sha512-iM869Pugn9Nsxbh/YHRqYiqd23AmIbxJOcpUMOuWCVNdoQJ5ZtwL6h3t0bcZzJUlC3Dq9jCFCESBZnX0GTv7iQ==}
|
|
564
|
+
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
565
|
+
|
|
566
|
+
'@eslint/plugin-kit@0.6.1':
|
|
567
|
+
resolution: {integrity: sha512-iH1B076HoAshH1mLpHMgwdGeTs0CYwL0SPMkGuSebZrwBp16v415e9NZXg2jtrqPVQjf6IANe2Vtlr5KswtcZQ==}
|
|
568
|
+
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
569
|
+
|
|
570
|
+
'@exodus/bytes@1.8.0':
|
|
571
|
+
resolution: {integrity: sha512-8JPn18Bcp8Uo1T82gR8lh2guEOa5KKU/IEKvvdp0sgmi7coPBWf1Doi1EXsGZb2ehc8ym/StJCjffYV+ne7sXQ==}
|
|
572
|
+
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
|
|
573
|
+
peerDependencies:
|
|
574
|
+
'@exodus/crypto': ^1.0.0-rc.4
|
|
575
|
+
peerDependenciesMeta:
|
|
576
|
+
'@exodus/crypto':
|
|
577
|
+
optional: true
|
|
578
|
+
|
|
579
|
+
'@humanfs/core@0.19.1':
|
|
580
|
+
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
|
|
581
|
+
engines: {node: '>=18.18.0'}
|
|
582
|
+
|
|
583
|
+
'@humanfs/node@0.16.7':
|
|
584
|
+
resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
|
|
585
|
+
engines: {node: '>=18.18.0'}
|
|
586
|
+
|
|
587
|
+
'@humanwhocodes/module-importer@1.0.1':
|
|
588
|
+
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
|
|
589
|
+
engines: {node: '>=12.22'}
|
|
590
|
+
|
|
591
|
+
'@humanwhocodes/retry@0.4.3':
|
|
592
|
+
resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
|
|
593
|
+
engines: {node: '>=18.18'}
|
|
594
|
+
|
|
595
|
+
'@jridgewell/gen-mapping@0.3.13':
|
|
596
|
+
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
|
|
597
|
+
|
|
598
|
+
'@jridgewell/resolve-uri@3.1.2':
|
|
599
|
+
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
|
|
600
|
+
engines: {node: '>=6.0.0'}
|
|
601
|
+
|
|
602
|
+
'@jridgewell/source-map@0.3.11':
|
|
603
|
+
resolution: {integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==}
|
|
604
|
+
|
|
605
|
+
'@jridgewell/sourcemap-codec@1.5.5':
|
|
606
|
+
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
|
|
607
|
+
|
|
608
|
+
'@jridgewell/trace-mapping@0.3.31':
|
|
609
|
+
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
|
|
610
|
+
|
|
611
|
+
'@koppajs/koppajs-core@3.0.3':
|
|
612
|
+
resolution: {integrity: sha512-l6e+M8hEugVW/4crOzddeImLM/0j+rqSJ5ZkFyBZPdv57Bp45WWdbmoK7HNKzPd+L70SehCaH7CcgRKM8ltbCQ==}
|
|
613
|
+
engines: {node: '>=20', pnpm: '>=10.24.0'}
|
|
614
|
+
|
|
615
|
+
'@koppajs/koppajs-router@0.1.0':
|
|
616
|
+
resolution: {integrity: sha512-XJclUeB2Nwc/tDviuyFDSupFeOdI0NrkBKAoxwGdXE3vI6TN7AIoV6bfuiFnE8u4vLtVKhJ2Ds0IId7wlpF73Q==}
|
|
617
|
+
engines: {node: '>=20', pnpm: '>=10.17.1'}
|
|
618
|
+
|
|
619
|
+
'@koppajs/koppajs-vite-plugin@1.0.1':
|
|
620
|
+
resolution: {integrity: sha512-idjAD9zYQsK68yLxAI9So2bZScH7R4akDPsznHHivVCksMHSvkvQVtq328oeAg8rCi9AYN4z1Q0SAUB90aMDbg==}
|
|
621
|
+
engines: {node: '>=20', pnpm: '>=10.24.0'}
|
|
622
|
+
peerDependencies:
|
|
623
|
+
typescript: '>=5.5 <6'
|
|
624
|
+
vite: ^7.0.0
|
|
625
|
+
|
|
626
|
+
'@parcel/watcher-android-arm64@2.5.1':
|
|
627
|
+
resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==}
|
|
628
|
+
engines: {node: '>= 10.0.0'}
|
|
629
|
+
cpu: [arm64]
|
|
630
|
+
os: [android]
|
|
631
|
+
|
|
632
|
+
'@parcel/watcher-darwin-arm64@2.5.1':
|
|
633
|
+
resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==}
|
|
634
|
+
engines: {node: '>= 10.0.0'}
|
|
635
|
+
cpu: [arm64]
|
|
636
|
+
os: [darwin]
|
|
637
|
+
|
|
638
|
+
'@parcel/watcher-darwin-x64@2.5.1':
|
|
639
|
+
resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==}
|
|
640
|
+
engines: {node: '>= 10.0.0'}
|
|
641
|
+
cpu: [x64]
|
|
642
|
+
os: [darwin]
|
|
643
|
+
|
|
644
|
+
'@parcel/watcher-freebsd-x64@2.5.1':
|
|
645
|
+
resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==}
|
|
646
|
+
engines: {node: '>= 10.0.0'}
|
|
647
|
+
cpu: [x64]
|
|
648
|
+
os: [freebsd]
|
|
649
|
+
|
|
650
|
+
'@parcel/watcher-linux-arm-glibc@2.5.1':
|
|
651
|
+
resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==}
|
|
652
|
+
engines: {node: '>= 10.0.0'}
|
|
653
|
+
cpu: [arm]
|
|
654
|
+
os: [linux]
|
|
655
|
+
|
|
656
|
+
'@parcel/watcher-linux-arm-musl@2.5.1':
|
|
657
|
+
resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==}
|
|
658
|
+
engines: {node: '>= 10.0.0'}
|
|
659
|
+
cpu: [arm]
|
|
660
|
+
os: [linux]
|
|
661
|
+
|
|
662
|
+
'@parcel/watcher-linux-arm64-glibc@2.5.1':
|
|
663
|
+
resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==}
|
|
664
|
+
engines: {node: '>= 10.0.0'}
|
|
665
|
+
cpu: [arm64]
|
|
666
|
+
os: [linux]
|
|
667
|
+
|
|
668
|
+
'@parcel/watcher-linux-arm64-musl@2.5.1':
|
|
669
|
+
resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==}
|
|
670
|
+
engines: {node: '>= 10.0.0'}
|
|
671
|
+
cpu: [arm64]
|
|
672
|
+
os: [linux]
|
|
673
|
+
|
|
674
|
+
'@parcel/watcher-linux-x64-glibc@2.5.1':
|
|
675
|
+
resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==}
|
|
676
|
+
engines: {node: '>= 10.0.0'}
|
|
677
|
+
cpu: [x64]
|
|
678
|
+
os: [linux]
|
|
679
|
+
|
|
680
|
+
'@parcel/watcher-linux-x64-musl@2.5.1':
|
|
681
|
+
resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==}
|
|
682
|
+
engines: {node: '>= 10.0.0'}
|
|
683
|
+
cpu: [x64]
|
|
684
|
+
os: [linux]
|
|
685
|
+
|
|
686
|
+
'@parcel/watcher-win32-arm64@2.5.1':
|
|
687
|
+
resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==}
|
|
688
|
+
engines: {node: '>= 10.0.0'}
|
|
689
|
+
cpu: [arm64]
|
|
690
|
+
os: [win32]
|
|
691
|
+
|
|
692
|
+
'@parcel/watcher-win32-ia32@2.5.1':
|
|
693
|
+
resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==}
|
|
694
|
+
engines: {node: '>= 10.0.0'}
|
|
695
|
+
cpu: [ia32]
|
|
696
|
+
os: [win32]
|
|
697
|
+
|
|
698
|
+
'@parcel/watcher-win32-x64@2.5.1':
|
|
699
|
+
resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==}
|
|
700
|
+
engines: {node: '>= 10.0.0'}
|
|
701
|
+
cpu: [x64]
|
|
702
|
+
os: [win32]
|
|
703
|
+
|
|
704
|
+
'@parcel/watcher@2.5.1':
|
|
705
|
+
resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==}
|
|
706
|
+
engines: {node: '>= 10.0.0'}
|
|
707
|
+
|
|
708
|
+
'@playwright/test@1.58.2':
|
|
709
|
+
resolution: {integrity: sha512-akea+6bHYBBfA9uQqSYmlJXn61cTa+jbO87xVLCWbTqbWadRVmhxlXATaOjOgcBaWU4ePo0wB41KMFv3o35IXA==}
|
|
710
|
+
engines: {node: '>=18'}
|
|
711
|
+
hasBin: true
|
|
712
|
+
|
|
713
|
+
'@rollup/rollup-android-arm-eabi@4.54.0':
|
|
714
|
+
resolution: {integrity: sha512-OywsdRHrFvCdvsewAInDKCNyR3laPA2mc9bRYJ6LBp5IyvF3fvXbbNR0bSzHlZVFtn6E0xw2oZlyjg4rKCVcng==}
|
|
715
|
+
cpu: [arm]
|
|
716
|
+
os: [android]
|
|
717
|
+
|
|
718
|
+
'@rollup/rollup-android-arm64@4.54.0':
|
|
719
|
+
resolution: {integrity: sha512-Skx39Uv+u7H224Af+bDgNinitlmHyQX1K/atIA32JP3JQw6hVODX5tkbi2zof/E69M1qH2UoN3Xdxgs90mmNYw==}
|
|
720
|
+
cpu: [arm64]
|
|
721
|
+
os: [android]
|
|
722
|
+
|
|
723
|
+
'@rollup/rollup-darwin-arm64@4.54.0':
|
|
724
|
+
resolution: {integrity: sha512-k43D4qta/+6Fq+nCDhhv9yP2HdeKeP56QrUUTW7E6PhZP1US6NDqpJj4MY0jBHlJivVJD5P8NxrjuobZBJTCRw==}
|
|
725
|
+
cpu: [arm64]
|
|
726
|
+
os: [darwin]
|
|
727
|
+
|
|
728
|
+
'@rollup/rollup-darwin-x64@4.54.0':
|
|
729
|
+
resolution: {integrity: sha512-cOo7biqwkpawslEfox5Vs8/qj83M/aZCSSNIWpVzfU2CYHa2G3P1UN5WF01RdTHSgCkri7XOlTdtk17BezlV3A==}
|
|
730
|
+
cpu: [x64]
|
|
731
|
+
os: [darwin]
|
|
732
|
+
|
|
733
|
+
'@rollup/rollup-freebsd-arm64@4.54.0':
|
|
734
|
+
resolution: {integrity: sha512-miSvuFkmvFbgJ1BevMa4CPCFt5MPGw094knM64W9I0giUIMMmRYcGW/JWZDriaw/k1kOBtsWh1z6nIFV1vPNtA==}
|
|
735
|
+
cpu: [arm64]
|
|
736
|
+
os: [freebsd]
|
|
737
|
+
|
|
738
|
+
'@rollup/rollup-freebsd-x64@4.54.0':
|
|
739
|
+
resolution: {integrity: sha512-KGXIs55+b/ZfZsq9aR026tmr/+7tq6VG6MsnrvF4H8VhwflTIuYh+LFUlIsRdQSgrgmtM3fVATzEAj4hBQlaqQ==}
|
|
740
|
+
cpu: [x64]
|
|
741
|
+
os: [freebsd]
|
|
742
|
+
|
|
743
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.54.0':
|
|
744
|
+
resolution: {integrity: sha512-EHMUcDwhtdRGlXZsGSIuXSYwD5kOT9NVnx9sqzYiwAc91wfYOE1g1djOEDseZJKKqtHAHGwnGPQu3kytmfaXLQ==}
|
|
745
|
+
cpu: [arm]
|
|
746
|
+
os: [linux]
|
|
747
|
+
|
|
748
|
+
'@rollup/rollup-linux-arm-musleabihf@4.54.0':
|
|
749
|
+
resolution: {integrity: sha512-+pBrqEjaakN2ySv5RVrj/qLytYhPKEUwk+e3SFU5jTLHIcAtqh2rLrd/OkbNuHJpsBgxsD8ccJt5ga/SeG0JmA==}
|
|
750
|
+
cpu: [arm]
|
|
751
|
+
os: [linux]
|
|
752
|
+
|
|
753
|
+
'@rollup/rollup-linux-arm64-gnu@4.54.0':
|
|
754
|
+
resolution: {integrity: sha512-NSqc7rE9wuUaRBsBp5ckQ5CVz5aIRKCwsoa6WMF7G01sX3/qHUw/z4pv+D+ahL1EIKy6Enpcnz1RY8pf7bjwng==}
|
|
755
|
+
cpu: [arm64]
|
|
756
|
+
os: [linux]
|
|
757
|
+
|
|
758
|
+
'@rollup/rollup-linux-arm64-musl@4.54.0':
|
|
759
|
+
resolution: {integrity: sha512-gr5vDbg3Bakga5kbdpqx81m2n9IX8M6gIMlQQIXiLTNeQW6CucvuInJ91EuCJ/JYvc+rcLLsDFcfAD1K7fMofg==}
|
|
760
|
+
cpu: [arm64]
|
|
761
|
+
os: [linux]
|
|
762
|
+
|
|
763
|
+
'@rollup/rollup-linux-loong64-gnu@4.54.0':
|
|
764
|
+
resolution: {integrity: sha512-gsrtB1NA3ZYj2vq0Rzkylo9ylCtW/PhpLEivlgWe0bpgtX5+9j9EZa0wtZiCjgu6zmSeZWyI/e2YRX1URozpIw==}
|
|
765
|
+
cpu: [loong64]
|
|
766
|
+
os: [linux]
|
|
767
|
+
|
|
768
|
+
'@rollup/rollup-linux-ppc64-gnu@4.54.0':
|
|
769
|
+
resolution: {integrity: sha512-y3qNOfTBStmFNq+t4s7Tmc9hW2ENtPg8FeUD/VShI7rKxNW7O4fFeaYbMsd3tpFlIg1Q8IapFgy7Q9i2BqeBvA==}
|
|
770
|
+
cpu: [ppc64]
|
|
771
|
+
os: [linux]
|
|
772
|
+
|
|
773
|
+
'@rollup/rollup-linux-riscv64-gnu@4.54.0':
|
|
774
|
+
resolution: {integrity: sha512-89sepv7h2lIVPsFma8iwmccN7Yjjtgz0Rj/Ou6fEqg3HDhpCa+Et+YSufy27i6b0Wav69Qv4WBNl3Rs6pwhebQ==}
|
|
775
|
+
cpu: [riscv64]
|
|
776
|
+
os: [linux]
|
|
777
|
+
|
|
778
|
+
'@rollup/rollup-linux-riscv64-musl@4.54.0':
|
|
779
|
+
resolution: {integrity: sha512-ZcU77ieh0M2Q8Ur7D5X7KvK+UxbXeDHwiOt/CPSBTI1fBmeDMivW0dPkdqkT4rOgDjrDDBUed9x4EgraIKoR2A==}
|
|
780
|
+
cpu: [riscv64]
|
|
781
|
+
os: [linux]
|
|
782
|
+
|
|
783
|
+
'@rollup/rollup-linux-s390x-gnu@4.54.0':
|
|
784
|
+
resolution: {integrity: sha512-2AdWy5RdDF5+4YfG/YesGDDtbyJlC9LHmL6rZw6FurBJ5n4vFGupsOBGfwMRjBYH7qRQowT8D/U4LoSvVwOhSQ==}
|
|
785
|
+
cpu: [s390x]
|
|
786
|
+
os: [linux]
|
|
787
|
+
|
|
788
|
+
'@rollup/rollup-linux-x64-gnu@4.54.0':
|
|
789
|
+
resolution: {integrity: sha512-WGt5J8Ij/rvyqpFexxk3ffKqqbLf9AqrTBbWDk7ApGUzaIs6V+s2s84kAxklFwmMF/vBNGrVdYgbblCOFFezMQ==}
|
|
790
|
+
cpu: [x64]
|
|
791
|
+
os: [linux]
|
|
792
|
+
|
|
793
|
+
'@rollup/rollup-linux-x64-musl@4.54.0':
|
|
794
|
+
resolution: {integrity: sha512-JzQmb38ATzHjxlPHuTH6tE7ojnMKM2kYNzt44LO/jJi8BpceEC8QuXYA908n8r3CNuG/B3BV8VR3Hi1rYtmPiw==}
|
|
795
|
+
cpu: [x64]
|
|
796
|
+
os: [linux]
|
|
797
|
+
|
|
798
|
+
'@rollup/rollup-openharmony-arm64@4.54.0':
|
|
799
|
+
resolution: {integrity: sha512-huT3fd0iC7jigGh7n3q/+lfPcXxBi+om/Rs3yiFxjvSxbSB6aohDFXbWvlspaqjeOh+hx7DDHS+5Es5qRkWkZg==}
|
|
800
|
+
cpu: [arm64]
|
|
801
|
+
os: [openharmony]
|
|
802
|
+
|
|
803
|
+
'@rollup/rollup-win32-arm64-msvc@4.54.0':
|
|
804
|
+
resolution: {integrity: sha512-c2V0W1bsKIKfbLMBu/WGBz6Yci8nJ/ZJdheE0EwB73N3MvHYKiKGs3mVilX4Gs70eGeDaMqEob25Tw2Gb9Nqyw==}
|
|
805
|
+
cpu: [arm64]
|
|
806
|
+
os: [win32]
|
|
807
|
+
|
|
808
|
+
'@rollup/rollup-win32-ia32-msvc@4.54.0':
|
|
809
|
+
resolution: {integrity: sha512-woEHgqQqDCkAzrDhvDipnSirm5vxUXtSKDYTVpZG3nUdW/VVB5VdCYA2iReSj/u3yCZzXID4kuKG7OynPnB3WQ==}
|
|
810
|
+
cpu: [ia32]
|
|
811
|
+
os: [win32]
|
|
812
|
+
|
|
813
|
+
'@rollup/rollup-win32-x64-gnu@4.54.0':
|
|
814
|
+
resolution: {integrity: sha512-dzAc53LOuFvHwbCEOS0rPbXp6SIhAf2txMP5p6mGyOXXw5mWY8NGGbPMPrs4P1WItkfApDathBj/NzMLUZ9rtQ==}
|
|
815
|
+
cpu: [x64]
|
|
816
|
+
os: [win32]
|
|
817
|
+
|
|
818
|
+
'@rollup/rollup-win32-x64-msvc@4.54.0':
|
|
819
|
+
resolution: {integrity: sha512-hYT5d3YNdSh3mbCU1gwQyPgQd3T2ne0A3KG8KSBdav5TiBg6eInVmV+TeR5uHufiIgSFg0XsOWGW5/RhNcSvPg==}
|
|
820
|
+
cpu: [x64]
|
|
821
|
+
os: [win32]
|
|
822
|
+
|
|
823
|
+
'@simple-libs/child-process-utils@1.0.2':
|
|
824
|
+
resolution: {integrity: sha512-/4R8QKnd/8agJynkNdJmNw2MBxuFTRcNFnE5Sg/G+jkSsV8/UBgULMzhizWWW42p8L5H7flImV2ATi79Ove2Tw==}
|
|
825
|
+
engines: {node: '>=18'}
|
|
826
|
+
|
|
827
|
+
'@simple-libs/stream-utils@1.2.0':
|
|
828
|
+
resolution: {integrity: sha512-KxXvfapcixpz6rVEB6HPjOUZT22yN6v0vI0urQSk1L8MlEWPDFCZkhw2xmkyoTGYeFw7tWTZd7e3lVzRZRN/EA==}
|
|
829
|
+
engines: {node: '>=18'}
|
|
830
|
+
|
|
831
|
+
'@standard-schema/spec@1.1.0':
|
|
832
|
+
resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
|
|
833
|
+
|
|
834
|
+
'@types/chai@5.2.3':
|
|
835
|
+
resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==}
|
|
836
|
+
|
|
837
|
+
'@types/deep-eql@4.0.2':
|
|
838
|
+
resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==}
|
|
839
|
+
|
|
840
|
+
'@types/esrecurse@4.3.1':
|
|
841
|
+
resolution: {integrity: sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==}
|
|
842
|
+
|
|
843
|
+
'@types/estree@1.0.8':
|
|
844
|
+
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
|
|
845
|
+
|
|
846
|
+
'@types/json-schema@7.0.15':
|
|
847
|
+
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
|
|
848
|
+
|
|
849
|
+
'@types/node@25.4.0':
|
|
850
|
+
resolution: {integrity: sha512-9wLpoeWuBlcbBpOY3XmzSTG3oscB6xjBEEtn+pYXTfhyXhIxC5FsBer2KTopBlvKEiW9l13po9fq+SJY/5lkhw==}
|
|
851
|
+
|
|
852
|
+
'@typescript-eslint/eslint-plugin@8.57.0':
|
|
853
|
+
resolution: {integrity: sha512-qeu4rTHR3/IaFORbD16gmjq9+rEs9fGKdX0kF6BKSfi+gCuG3RCKLlSBYzn/bGsY9Tj7KE/DAQStbp8AHJGHEQ==}
|
|
854
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
855
|
+
peerDependencies:
|
|
856
|
+
'@typescript-eslint/parser': ^8.57.0
|
|
857
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
858
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
859
|
+
|
|
860
|
+
'@typescript-eslint/parser@8.57.0':
|
|
861
|
+
resolution: {integrity: sha512-XZzOmihLIr8AD1b9hL9ccNMzEMWt/dE2u7NyTY9jJG6YNiNthaD5XtUHVF2uCXZ15ng+z2hT3MVuxnUYhq6k1g==}
|
|
862
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
863
|
+
peerDependencies:
|
|
864
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
865
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
866
|
+
|
|
867
|
+
'@typescript-eslint/project-service@8.57.0':
|
|
868
|
+
resolution: {integrity: sha512-pR+dK0BlxCLxtWfaKQWtYr7MhKmzqZxuii+ZjuFlZlIGRZm22HnXFqa2eY+90MUz8/i80YJmzFGDUsi8dMOV5w==}
|
|
869
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
870
|
+
peerDependencies:
|
|
871
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
872
|
+
|
|
873
|
+
'@typescript-eslint/scope-manager@8.57.0':
|
|
874
|
+
resolution: {integrity: sha512-nvExQqAHF01lUM66MskSaZulpPL5pgy5hI5RfrxviLgzZVffB5yYzw27uK/ft8QnKXI2X0LBrHJFr1TaZtAibw==}
|
|
875
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
876
|
+
|
|
877
|
+
'@typescript-eslint/tsconfig-utils@8.57.0':
|
|
878
|
+
resolution: {integrity: sha512-LtXRihc5ytjJIQEH+xqjB0+YgsV4/tW35XKX3GTZHpWtcC8SPkT/d4tqdf1cKtesryHm2bgp6l555NYcT2NLvA==}
|
|
879
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
880
|
+
peerDependencies:
|
|
881
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
882
|
+
|
|
883
|
+
'@typescript-eslint/type-utils@8.57.0':
|
|
884
|
+
resolution: {integrity: sha512-yjgh7gmDcJ1+TcEg8x3uWQmn8ifvSupnPfjP21twPKrDP/pTHlEQgmKcitzF/rzPSmv7QjJ90vRpN4U+zoUjwQ==}
|
|
885
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
886
|
+
peerDependencies:
|
|
887
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
888
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
889
|
+
|
|
890
|
+
'@typescript-eslint/types@8.57.0':
|
|
891
|
+
resolution: {integrity: sha512-dTLI8PEXhjUC7B9Kre+u0XznO696BhXcTlOn0/6kf1fHaQW8+VjJAVHJ3eTI14ZapTxdkOmc80HblPQLaEeJdg==}
|
|
892
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
893
|
+
|
|
894
|
+
'@typescript-eslint/typescript-estree@8.57.0':
|
|
895
|
+
resolution: {integrity: sha512-m7faHcyVg0BT3VdYTlX8GdJEM7COexXxS6KqGopxdtkQRvBanK377QDHr4W/vIPAR+ah9+B/RclSW5ldVniO1Q==}
|
|
896
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
897
|
+
peerDependencies:
|
|
898
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
899
|
+
|
|
900
|
+
'@typescript-eslint/utils@8.57.0':
|
|
901
|
+
resolution: {integrity: sha512-5iIHvpD3CZe06riAsbNxxreP+MuYgVUsV0n4bwLH//VJmgtt54sQeY2GszntJ4BjYCpMzrfVh2SBnUQTtys2lQ==}
|
|
902
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
903
|
+
peerDependencies:
|
|
904
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
905
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
906
|
+
|
|
907
|
+
'@typescript-eslint/visitor-keys@8.57.0':
|
|
908
|
+
resolution: {integrity: sha512-zm6xx8UT/Xy2oSr2ZXD0pZo7Jx2XsCoID2IUh9YSTFRu7z+WdwYTRk6LhUftm1crwqbuoF6I8zAFeCMw0YjwDg==}
|
|
909
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
910
|
+
|
|
911
|
+
'@vitest/coverage-v8@4.0.18':
|
|
912
|
+
resolution: {integrity: sha512-7i+N2i0+ME+2JFZhfuz7Tg/FqKtilHjGyGvoHYQ6iLV0zahbsJ9sljC9OcFcPDbhYKCet+sG8SsVqlyGvPflZg==}
|
|
913
|
+
peerDependencies:
|
|
914
|
+
'@vitest/browser': 4.0.18
|
|
915
|
+
vitest: 4.0.18
|
|
916
|
+
peerDependenciesMeta:
|
|
917
|
+
'@vitest/browser':
|
|
918
|
+
optional: true
|
|
919
|
+
|
|
920
|
+
'@vitest/expect@4.0.18':
|
|
921
|
+
resolution: {integrity: sha512-8sCWUyckXXYvx4opfzVY03EOiYVxyNrHS5QxX3DAIi5dpJAAkyJezHCP77VMX4HKA2LDT/Jpfo8i2r5BE3GnQQ==}
|
|
922
|
+
|
|
923
|
+
'@vitest/mocker@4.0.18':
|
|
924
|
+
resolution: {integrity: sha512-HhVd0MDnzzsgevnOWCBj5Otnzobjy5wLBe4EdeeFGv8luMsGcYqDuFRMcttKWZA5vVO8RFjexVovXvAM4JoJDQ==}
|
|
925
|
+
peerDependencies:
|
|
926
|
+
msw: ^2.4.9
|
|
927
|
+
vite: ^6.0.0 || ^7.0.0-0
|
|
928
|
+
peerDependenciesMeta:
|
|
929
|
+
msw:
|
|
930
|
+
optional: true
|
|
931
|
+
vite:
|
|
932
|
+
optional: true
|
|
933
|
+
|
|
934
|
+
'@vitest/pretty-format@4.0.18':
|
|
935
|
+
resolution: {integrity: sha512-P24GK3GulZWC5tz87ux0m8OADrQIUVDPIjjj65vBXYG17ZeU3qD7r+MNZ1RNv4l8CGU2vtTRqixrOi9fYk/yKw==}
|
|
936
|
+
|
|
937
|
+
'@vitest/runner@4.0.18':
|
|
938
|
+
resolution: {integrity: sha512-rpk9y12PGa22Jg6g5M3UVVnTS7+zycIGk9ZNGN+m6tZHKQb7jrP7/77WfZy13Y/EUDd52NDsLRQhYKtv7XfPQw==}
|
|
939
|
+
|
|
940
|
+
'@vitest/snapshot@4.0.18':
|
|
941
|
+
resolution: {integrity: sha512-PCiV0rcl7jKQjbgYqjtakly6T1uwv/5BQ9SwBLekVg/EaYeQFPiXcgrC2Y7vDMA8dM1SUEAEV82kgSQIlXNMvA==}
|
|
942
|
+
|
|
943
|
+
'@vitest/spy@4.0.18':
|
|
944
|
+
resolution: {integrity: sha512-cbQt3PTSD7P2OARdVW3qWER5EGq7PHlvE+QfzSC0lbwO+xnt7+XH06ZzFjFRgzUX//JmpxrCu92VdwvEPlWSNw==}
|
|
945
|
+
|
|
946
|
+
'@vitest/utils@4.0.18':
|
|
947
|
+
resolution: {integrity: sha512-msMRKLMVLWygpK3u2Hybgi4MNjcYJvwTb0Ru09+fOyCXIgT5raYP041DRRdiJiI3k/2U6SEbAETB3YtBrUkCFA==}
|
|
948
|
+
|
|
949
|
+
acorn-jsx@5.3.2:
|
|
950
|
+
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
|
|
951
|
+
peerDependencies:
|
|
952
|
+
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
953
|
+
|
|
954
|
+
acorn@8.16.0:
|
|
955
|
+
resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
|
|
956
|
+
engines: {node: '>=0.4.0'}
|
|
957
|
+
hasBin: true
|
|
958
|
+
|
|
959
|
+
agent-base@7.1.4:
|
|
960
|
+
resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==}
|
|
961
|
+
engines: {node: '>= 14'}
|
|
962
|
+
|
|
963
|
+
ajv@6.14.0:
|
|
964
|
+
resolution: {integrity: sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==}
|
|
965
|
+
|
|
966
|
+
ajv@8.18.0:
|
|
967
|
+
resolution: {integrity: sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==}
|
|
968
|
+
|
|
969
|
+
ansi-escapes@7.2.0:
|
|
970
|
+
resolution: {integrity: sha512-g6LhBsl+GBPRWGWsBtutpzBYuIIdBkLEvad5C/va/74Db018+5TZiyA26cZJAr3Rft5lprVqOIPxf5Vid6tqAw==}
|
|
971
|
+
engines: {node: '>=18'}
|
|
972
|
+
|
|
973
|
+
ansi-regex@5.0.1:
|
|
974
|
+
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
|
|
975
|
+
engines: {node: '>=8'}
|
|
976
|
+
|
|
977
|
+
ansi-regex@6.2.2:
|
|
978
|
+
resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
|
|
979
|
+
engines: {node: '>=12'}
|
|
980
|
+
|
|
981
|
+
ansi-styles@4.3.0:
|
|
982
|
+
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
|
983
|
+
engines: {node: '>=8'}
|
|
984
|
+
|
|
985
|
+
ansi-styles@6.2.3:
|
|
986
|
+
resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
|
|
987
|
+
engines: {node: '>=12'}
|
|
988
|
+
|
|
989
|
+
argparse@2.0.1:
|
|
990
|
+
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
|
991
|
+
|
|
992
|
+
array-ify@1.0.0:
|
|
993
|
+
resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==}
|
|
994
|
+
|
|
995
|
+
assertion-error@2.0.1:
|
|
996
|
+
resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
|
|
997
|
+
engines: {node: '>=12'}
|
|
998
|
+
|
|
999
|
+
ast-v8-to-istanbul@0.3.10:
|
|
1000
|
+
resolution: {integrity: sha512-p4K7vMz2ZSk3wN8l5o3y2bJAoZXT3VuJI5OLTATY/01CYWumWvwkUw0SqDBnNq6IiTO3qDa1eSQDibAV8g7XOQ==}
|
|
1001
|
+
|
|
1002
|
+
autoprefixer@10.4.23:
|
|
1003
|
+
resolution: {integrity: sha512-YYTXSFulfwytnjAPlw8QHncHJmlvFKtczb8InXaAx9Q0LbfDnfEYDE55omerIJKihhmU61Ft+cAOSzQVaBUmeA==}
|
|
1004
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
1005
|
+
hasBin: true
|
|
1006
|
+
peerDependencies:
|
|
1007
|
+
postcss: ^8.1.0
|
|
1008
|
+
|
|
1009
|
+
balanced-match@4.0.4:
|
|
1010
|
+
resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==}
|
|
1011
|
+
engines: {node: 18 || 20 || >=22}
|
|
1012
|
+
|
|
1013
|
+
baseline-browser-mapping@2.9.11:
|
|
1014
|
+
resolution: {integrity: sha512-Sg0xJUNDU1sJNGdfGWhVHX0kkZ+HWcvmVymJbj6NSgZZmW/8S9Y2HQ5euytnIgakgxN6papOAWiwDo1ctFDcoQ==}
|
|
1015
|
+
hasBin: true
|
|
1016
|
+
|
|
1017
|
+
bidi-js@1.0.3:
|
|
1018
|
+
resolution: {integrity: sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==}
|
|
1019
|
+
|
|
1020
|
+
brace-expansion@5.0.4:
|
|
1021
|
+
resolution: {integrity: sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==}
|
|
1022
|
+
engines: {node: 18 || 20 || >=22}
|
|
1023
|
+
|
|
1024
|
+
braces@3.0.3:
|
|
1025
|
+
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
|
|
1026
|
+
engines: {node: '>=8'}
|
|
1027
|
+
|
|
1028
|
+
browserslist@4.28.1:
|
|
1029
|
+
resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==}
|
|
1030
|
+
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
1031
|
+
hasBin: true
|
|
1032
|
+
|
|
1033
|
+
buffer-from@1.1.2:
|
|
1034
|
+
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
|
|
1035
|
+
|
|
1036
|
+
callsites@3.1.0:
|
|
1037
|
+
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
|
|
1038
|
+
engines: {node: '>=6'}
|
|
1039
|
+
|
|
1040
|
+
caniuse-lite@1.0.30001762:
|
|
1041
|
+
resolution: {integrity: sha512-PxZwGNvH7Ak8WX5iXzoK1KPZttBXNPuaOvI2ZYU7NrlM+d9Ov+TUvlLOBNGzVXAntMSMMlJPd+jY6ovrVjSmUw==}
|
|
1042
|
+
|
|
1043
|
+
chai@6.2.2:
|
|
1044
|
+
resolution: {integrity: sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==}
|
|
1045
|
+
engines: {node: '>=18'}
|
|
1046
|
+
|
|
1047
|
+
chokidar@4.0.3:
|
|
1048
|
+
resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
|
|
1049
|
+
engines: {node: '>= 14.16.0'}
|
|
1050
|
+
|
|
1051
|
+
cli-cursor@5.0.0:
|
|
1052
|
+
resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==}
|
|
1053
|
+
engines: {node: '>=18'}
|
|
1054
|
+
|
|
1055
|
+
cli-truncate@5.1.1:
|
|
1056
|
+
resolution: {integrity: sha512-SroPvNHxUnk+vIW/dOSfNqdy1sPEFkrTk6TUtqLCnBlo3N7TNYYkzzN7uSD6+jVjrdO4+p8nH7JzH6cIvUem6A==}
|
|
1057
|
+
engines: {node: '>=20'}
|
|
1058
|
+
|
|
1059
|
+
cliui@8.0.1:
|
|
1060
|
+
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
|
|
1061
|
+
engines: {node: '>=12'}
|
|
1062
|
+
|
|
1063
|
+
color-convert@2.0.1:
|
|
1064
|
+
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
|
1065
|
+
engines: {node: '>=7.0.0'}
|
|
1066
|
+
|
|
1067
|
+
color-name@1.1.4:
|
|
1068
|
+
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
|
1069
|
+
|
|
1070
|
+
colorette@2.0.20:
|
|
1071
|
+
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
|
|
1072
|
+
|
|
1073
|
+
commander@14.0.3:
|
|
1074
|
+
resolution: {integrity: sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==}
|
|
1075
|
+
engines: {node: '>=20'}
|
|
1076
|
+
|
|
1077
|
+
commander@2.20.3:
|
|
1078
|
+
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
|
|
1079
|
+
|
|
1080
|
+
compare-func@2.0.0:
|
|
1081
|
+
resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==}
|
|
1082
|
+
|
|
1083
|
+
conventional-changelog-angular@8.3.0:
|
|
1084
|
+
resolution: {integrity: sha512-DOuBwYSqWzfwuRByY9O4oOIvDlkUCTDzfbOgcSbkY+imXXj+4tmrEFao3K+FxemClYfYnZzsvudbwrhje9VHDA==}
|
|
1085
|
+
engines: {node: '>=18'}
|
|
1086
|
+
|
|
1087
|
+
conventional-changelog-conventionalcommits@9.3.0:
|
|
1088
|
+
resolution: {integrity: sha512-kYFx6gAyjSIMwNtASkI3ZE99U1fuVDJr0yTYgVy+I2QG46zNZfl2her+0+eoviG82c5WQvW1jMt1eOQTeJLodA==}
|
|
1089
|
+
engines: {node: '>=18'}
|
|
1090
|
+
|
|
1091
|
+
conventional-commits-parser@6.3.0:
|
|
1092
|
+
resolution: {integrity: sha512-RfOq/Cqy9xV9bOA8N+ZH6DlrDR+5S3Mi0B5kACEjESpE+AviIpAptx9a9cFpWCCvgRtWT+0BbUw+e1BZfts9jg==}
|
|
1093
|
+
engines: {node: '>=18'}
|
|
1094
|
+
hasBin: true
|
|
1095
|
+
|
|
1096
|
+
cosmiconfig-typescript-loader@6.2.0:
|
|
1097
|
+
resolution: {integrity: sha512-GEN39v7TgdxgIoNcdkRE3uiAzQt3UXLyHbRHD6YoL048XAeOomyxaP+Hh/+2C6C2wYjxJ2onhJcsQp+L4YEkVQ==}
|
|
1098
|
+
engines: {node: '>=v18'}
|
|
1099
|
+
peerDependencies:
|
|
1100
|
+
'@types/node': '*'
|
|
1101
|
+
cosmiconfig: '>=9'
|
|
1102
|
+
typescript: '>=5'
|
|
1103
|
+
|
|
1104
|
+
cosmiconfig@9.0.1:
|
|
1105
|
+
resolution: {integrity: sha512-hr4ihw+DBqcvrsEDioRO31Z17x71pUYoNe/4h6Z0wB72p7MU7/9gH8Q3s12NFhHPfYBBOV3qyfUxmr/Yn3shnQ==}
|
|
1106
|
+
engines: {node: '>=14'}
|
|
1107
|
+
peerDependencies:
|
|
1108
|
+
typescript: '>=4.9.5'
|
|
1109
|
+
peerDependenciesMeta:
|
|
1110
|
+
typescript:
|
|
1111
|
+
optional: true
|
|
1112
|
+
|
|
1113
|
+
cross-spawn@7.0.6:
|
|
1114
|
+
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
|
|
1115
|
+
engines: {node: '>= 8'}
|
|
1116
|
+
|
|
1117
|
+
css-tree@3.1.0:
|
|
1118
|
+
resolution: {integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==}
|
|
1119
|
+
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
|
|
1120
|
+
|
|
1121
|
+
cssstyle@5.3.7:
|
|
1122
|
+
resolution: {integrity: sha512-7D2EPVltRrsTkhpQmksIu+LxeWAIEk6wRDMJ1qljlv+CKHJM+cJLlfhWIzNA44eAsHXSNe3+vO6DW1yCYx8SuQ==}
|
|
1123
|
+
engines: {node: '>=20'}
|
|
1124
|
+
|
|
1125
|
+
data-urls@6.0.0:
|
|
1126
|
+
resolution: {integrity: sha512-BnBS08aLUM+DKamupXs3w2tJJoqU+AkaE/+6vQxi/G/DPmIZFJJp9Dkb1kM03AZx8ADehDUZgsNxju3mPXZYIA==}
|
|
1127
|
+
engines: {node: '>=20'}
|
|
1128
|
+
|
|
1129
|
+
debug@4.4.3:
|
|
1130
|
+
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
|
|
1131
|
+
engines: {node: '>=6.0'}
|
|
1132
|
+
peerDependencies:
|
|
1133
|
+
supports-color: '*'
|
|
1134
|
+
peerDependenciesMeta:
|
|
1135
|
+
supports-color:
|
|
1136
|
+
optional: true
|
|
1137
|
+
|
|
1138
|
+
decimal.js@10.6.0:
|
|
1139
|
+
resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==}
|
|
1140
|
+
|
|
1141
|
+
deep-is@0.1.4:
|
|
1142
|
+
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
|
|
1143
|
+
|
|
1144
|
+
detect-libc@1.0.3:
|
|
1145
|
+
resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
|
|
1146
|
+
engines: {node: '>=0.10'}
|
|
1147
|
+
hasBin: true
|
|
1148
|
+
|
|
1149
|
+
dot-prop@5.3.0:
|
|
1150
|
+
resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==}
|
|
1151
|
+
engines: {node: '>=8'}
|
|
1152
|
+
|
|
1153
|
+
electron-to-chromium@1.5.267:
|
|
1154
|
+
resolution: {integrity: sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==}
|
|
1155
|
+
|
|
1156
|
+
emoji-regex@10.6.0:
|
|
1157
|
+
resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==}
|
|
1158
|
+
|
|
1159
|
+
emoji-regex@8.0.0:
|
|
1160
|
+
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
|
|
1161
|
+
|
|
1162
|
+
entities@6.0.1:
|
|
1163
|
+
resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
|
|
1164
|
+
engines: {node: '>=0.12'}
|
|
1165
|
+
|
|
1166
|
+
env-paths@2.2.1:
|
|
1167
|
+
resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
|
|
1168
|
+
engines: {node: '>=6'}
|
|
1169
|
+
|
|
1170
|
+
environment@1.1.0:
|
|
1171
|
+
resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==}
|
|
1172
|
+
engines: {node: '>=18'}
|
|
1173
|
+
|
|
1174
|
+
error-ex@1.3.4:
|
|
1175
|
+
resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==}
|
|
1176
|
+
|
|
1177
|
+
es-module-lexer@1.7.0:
|
|
1178
|
+
resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==}
|
|
1179
|
+
|
|
1180
|
+
esbuild@0.25.12:
|
|
1181
|
+
resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
|
|
1182
|
+
engines: {node: '>=18'}
|
|
1183
|
+
hasBin: true
|
|
1184
|
+
|
|
1185
|
+
esbuild@0.27.2:
|
|
1186
|
+
resolution: {integrity: sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==}
|
|
1187
|
+
engines: {node: '>=18'}
|
|
1188
|
+
hasBin: true
|
|
1189
|
+
|
|
1190
|
+
escalade@3.2.0:
|
|
1191
|
+
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
|
|
1192
|
+
engines: {node: '>=6'}
|
|
1193
|
+
|
|
1194
|
+
escape-string-regexp@4.0.0:
|
|
1195
|
+
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
|
|
1196
|
+
engines: {node: '>=10'}
|
|
1197
|
+
|
|
1198
|
+
eslint-scope@9.1.2:
|
|
1199
|
+
resolution: {integrity: sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==}
|
|
1200
|
+
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
1201
|
+
|
|
1202
|
+
eslint-visitor-keys@3.4.3:
|
|
1203
|
+
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
|
|
1204
|
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
1205
|
+
|
|
1206
|
+
eslint-visitor-keys@5.0.1:
|
|
1207
|
+
resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
|
|
1208
|
+
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
1209
|
+
|
|
1210
|
+
eslint@10.0.3:
|
|
1211
|
+
resolution: {integrity: sha512-COV33RzXZkqhG9P2rZCFl9ZmJ7WL+gQSCRzE7RhkbclbQPtLAWReL7ysA0Sh4c8Im2U9ynybdR56PV0XcKvqaQ==}
|
|
1212
|
+
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
1213
|
+
hasBin: true
|
|
1214
|
+
peerDependencies:
|
|
1215
|
+
jiti: '*'
|
|
1216
|
+
peerDependenciesMeta:
|
|
1217
|
+
jiti:
|
|
1218
|
+
optional: true
|
|
1219
|
+
|
|
1220
|
+
espree@11.2.0:
|
|
1221
|
+
resolution: {integrity: sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==}
|
|
1222
|
+
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
1223
|
+
|
|
1224
|
+
esquery@1.7.0:
|
|
1225
|
+
resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
|
|
1226
|
+
engines: {node: '>=0.10'}
|
|
1227
|
+
|
|
1228
|
+
esrecurse@4.3.0:
|
|
1229
|
+
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
|
|
1230
|
+
engines: {node: '>=4.0'}
|
|
1231
|
+
|
|
1232
|
+
estraverse@5.3.0:
|
|
1233
|
+
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
|
|
1234
|
+
engines: {node: '>=4.0'}
|
|
1235
|
+
|
|
1236
|
+
estree-walker@3.0.3:
|
|
1237
|
+
resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
|
|
1238
|
+
|
|
1239
|
+
esutils@2.0.3:
|
|
1240
|
+
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
|
|
1241
|
+
engines: {node: '>=0.10.0'}
|
|
1242
|
+
|
|
1243
|
+
eventemitter3@5.0.1:
|
|
1244
|
+
resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
|
|
1245
|
+
|
|
1246
|
+
expect-type@1.3.0:
|
|
1247
|
+
resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==}
|
|
1248
|
+
engines: {node: '>=12.0.0'}
|
|
1249
|
+
|
|
1250
|
+
fast-deep-equal@3.1.3:
|
|
1251
|
+
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
|
1252
|
+
|
|
1253
|
+
fast-json-stable-stringify@2.1.0:
|
|
1254
|
+
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
|
|
1255
|
+
|
|
1256
|
+
fast-levenshtein@2.0.6:
|
|
1257
|
+
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
|
|
1258
|
+
|
|
1259
|
+
fast-uri@3.1.0:
|
|
1260
|
+
resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
|
|
1261
|
+
|
|
1262
|
+
fdir@6.5.0:
|
|
1263
|
+
resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
|
|
1264
|
+
engines: {node: '>=12.0.0'}
|
|
1265
|
+
peerDependencies:
|
|
1266
|
+
picomatch: ^3 || ^4
|
|
1267
|
+
peerDependenciesMeta:
|
|
1268
|
+
picomatch:
|
|
1269
|
+
optional: true
|
|
1270
|
+
|
|
1271
|
+
file-entry-cache@8.0.0:
|
|
1272
|
+
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
|
|
1273
|
+
engines: {node: '>=16.0.0'}
|
|
1274
|
+
|
|
1275
|
+
fill-range@7.1.1:
|
|
1276
|
+
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
|
|
1277
|
+
engines: {node: '>=8'}
|
|
1278
|
+
|
|
1279
|
+
find-up@5.0.0:
|
|
1280
|
+
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
|
|
1281
|
+
engines: {node: '>=10'}
|
|
1282
|
+
|
|
1283
|
+
flat-cache@4.0.1:
|
|
1284
|
+
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
|
|
1285
|
+
engines: {node: '>=16'}
|
|
1286
|
+
|
|
1287
|
+
flatted@3.3.3:
|
|
1288
|
+
resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
|
|
1289
|
+
|
|
1290
|
+
fraction.js@5.3.4:
|
|
1291
|
+
resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==}
|
|
1292
|
+
|
|
1293
|
+
fsevents@2.3.2:
|
|
1294
|
+
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
|
|
1295
|
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
1296
|
+
os: [darwin]
|
|
1297
|
+
|
|
1298
|
+
fsevents@2.3.3:
|
|
1299
|
+
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
1300
|
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
1301
|
+
os: [darwin]
|
|
1302
|
+
|
|
1303
|
+
get-caller-file@2.0.5:
|
|
1304
|
+
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
|
|
1305
|
+
engines: {node: 6.* || 8.* || >= 10.*}
|
|
1306
|
+
|
|
1307
|
+
get-east-asian-width@1.4.0:
|
|
1308
|
+
resolution: {integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==}
|
|
1309
|
+
engines: {node: '>=18'}
|
|
1310
|
+
|
|
1311
|
+
get-tsconfig@4.13.0:
|
|
1312
|
+
resolution: {integrity: sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==}
|
|
1313
|
+
|
|
1314
|
+
git-raw-commits@5.0.1:
|
|
1315
|
+
resolution: {integrity: sha512-Y+csSm2GD/PCSh6Isd/WiMjNAydu0VBiG9J7EdQsNA5P9uXvLayqjmTsNlK5Gs9IhblFZqOU0yid5Il5JPoLiQ==}
|
|
1316
|
+
engines: {node: '>=18'}
|
|
1317
|
+
hasBin: true
|
|
1318
|
+
|
|
1319
|
+
glob-parent@6.0.2:
|
|
1320
|
+
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
|
|
1321
|
+
engines: {node: '>=10.13.0'}
|
|
1322
|
+
|
|
1323
|
+
global-directory@4.0.1:
|
|
1324
|
+
resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==}
|
|
1325
|
+
engines: {node: '>=18'}
|
|
1326
|
+
|
|
1327
|
+
globals@17.4.0:
|
|
1328
|
+
resolution: {integrity: sha512-hjrNztw/VajQwOLsMNT1cbJiH2muO3OROCHnbehc8eY5JyD2gqz4AcMHPqgaOR59DjgUjYAYLeH699g/eWi2jw==}
|
|
1329
|
+
engines: {node: '>=18'}
|
|
1330
|
+
|
|
1331
|
+
has-flag@4.0.0:
|
|
1332
|
+
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
|
|
1333
|
+
engines: {node: '>=8'}
|
|
1334
|
+
|
|
1335
|
+
html-encoding-sniffer@6.0.0:
|
|
1336
|
+
resolution: {integrity: sha512-CV9TW3Y3f8/wT0BRFc1/KAVQ3TUHiXmaAb6VW9vtiMFf7SLoMd1PdAc4W3KFOFETBJUb90KatHqlsZMWV+R9Gg==}
|
|
1337
|
+
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
|
|
1338
|
+
|
|
1339
|
+
html-escaper@2.0.2:
|
|
1340
|
+
resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
|
|
1341
|
+
|
|
1342
|
+
http-proxy-agent@7.0.2:
|
|
1343
|
+
resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
|
|
1344
|
+
engines: {node: '>= 14'}
|
|
1345
|
+
|
|
1346
|
+
https-proxy-agent@7.0.6:
|
|
1347
|
+
resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
|
|
1348
|
+
engines: {node: '>= 14'}
|
|
1349
|
+
|
|
1350
|
+
husky@9.1.7:
|
|
1351
|
+
resolution: {integrity: sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==}
|
|
1352
|
+
engines: {node: '>=18'}
|
|
1353
|
+
hasBin: true
|
|
1354
|
+
|
|
1355
|
+
ignore@5.3.2:
|
|
1356
|
+
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
|
|
1357
|
+
engines: {node: '>= 4'}
|
|
1358
|
+
|
|
1359
|
+
ignore@7.0.5:
|
|
1360
|
+
resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
|
|
1361
|
+
engines: {node: '>= 4'}
|
|
1362
|
+
|
|
1363
|
+
immutable@5.1.4:
|
|
1364
|
+
resolution: {integrity: sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==}
|
|
1365
|
+
|
|
1366
|
+
import-fresh@3.3.1:
|
|
1367
|
+
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
|
|
1368
|
+
engines: {node: '>=6'}
|
|
1369
|
+
|
|
1370
|
+
import-meta-resolve@4.2.0:
|
|
1371
|
+
resolution: {integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==}
|
|
1372
|
+
|
|
1373
|
+
imurmurhash@0.1.4:
|
|
1374
|
+
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
|
|
1375
|
+
engines: {node: '>=0.8.19'}
|
|
1376
|
+
|
|
1377
|
+
ini@4.1.1:
|
|
1378
|
+
resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==}
|
|
1379
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
1380
|
+
|
|
1381
|
+
is-arrayish@0.2.1:
|
|
1382
|
+
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
|
|
1383
|
+
|
|
1384
|
+
is-extglob@2.1.1:
|
|
1385
|
+
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
|
|
1386
|
+
engines: {node: '>=0.10.0'}
|
|
1387
|
+
|
|
1388
|
+
is-fullwidth-code-point@3.0.0:
|
|
1389
|
+
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
|
|
1390
|
+
engines: {node: '>=8'}
|
|
1391
|
+
|
|
1392
|
+
is-fullwidth-code-point@5.1.0:
|
|
1393
|
+
resolution: {integrity: sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ==}
|
|
1394
|
+
engines: {node: '>=18'}
|
|
1395
|
+
|
|
1396
|
+
is-glob@4.0.3:
|
|
1397
|
+
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
|
|
1398
|
+
engines: {node: '>=0.10.0'}
|
|
1399
|
+
|
|
1400
|
+
is-number@7.0.0:
|
|
1401
|
+
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
|
|
1402
|
+
engines: {node: '>=0.12.0'}
|
|
1403
|
+
|
|
1404
|
+
is-obj@2.0.0:
|
|
1405
|
+
resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==}
|
|
1406
|
+
engines: {node: '>=8'}
|
|
1407
|
+
|
|
1408
|
+
is-plain-obj@4.1.0:
|
|
1409
|
+
resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
|
|
1410
|
+
engines: {node: '>=12'}
|
|
1411
|
+
|
|
1412
|
+
is-potential-custom-element-name@1.0.1:
|
|
1413
|
+
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
|
|
1414
|
+
|
|
1415
|
+
isexe@2.0.0:
|
|
1416
|
+
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
|
1417
|
+
|
|
1418
|
+
istanbul-lib-coverage@3.2.2:
|
|
1419
|
+
resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==}
|
|
1420
|
+
engines: {node: '>=8'}
|
|
1421
|
+
|
|
1422
|
+
istanbul-lib-report@3.0.1:
|
|
1423
|
+
resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==}
|
|
1424
|
+
engines: {node: '>=10'}
|
|
1425
|
+
|
|
1426
|
+
istanbul-reports@3.2.0:
|
|
1427
|
+
resolution: {integrity: sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==}
|
|
1428
|
+
engines: {node: '>=8'}
|
|
1429
|
+
|
|
1430
|
+
jiti@2.6.1:
|
|
1431
|
+
resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
|
|
1432
|
+
hasBin: true
|
|
1433
|
+
|
|
1434
|
+
js-tokens@4.0.0:
|
|
1435
|
+
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
|
1436
|
+
|
|
1437
|
+
js-tokens@9.0.1:
|
|
1438
|
+
resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
|
|
1439
|
+
|
|
1440
|
+
js-yaml@4.1.1:
|
|
1441
|
+
resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
|
|
1442
|
+
hasBin: true
|
|
1443
|
+
|
|
1444
|
+
jsdom@27.4.0:
|
|
1445
|
+
resolution: {integrity: sha512-mjzqwWRD9Y1J1KUi7W97Gja1bwOOM5Ug0EZ6UDK3xS7j7mndrkwozHtSblfomlzyB4NepioNt+B2sOSzczVgtQ==}
|
|
1446
|
+
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
|
|
1447
|
+
peerDependencies:
|
|
1448
|
+
canvas: ^3.0.0
|
|
1449
|
+
peerDependenciesMeta:
|
|
1450
|
+
canvas:
|
|
1451
|
+
optional: true
|
|
1452
|
+
|
|
1453
|
+
json-buffer@3.0.1:
|
|
1454
|
+
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
|
|
1455
|
+
|
|
1456
|
+
json-parse-even-better-errors@2.3.1:
|
|
1457
|
+
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
|
|
1458
|
+
|
|
1459
|
+
json-schema-traverse@0.4.1:
|
|
1460
|
+
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
|
|
1461
|
+
|
|
1462
|
+
json-schema-traverse@1.0.0:
|
|
1463
|
+
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
|
|
1464
|
+
|
|
1465
|
+
json-stable-stringify-without-jsonify@1.0.1:
|
|
1466
|
+
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
|
|
1467
|
+
|
|
1468
|
+
keyv@4.5.4:
|
|
1469
|
+
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
|
|
1470
|
+
|
|
1471
|
+
levn@0.4.1:
|
|
1472
|
+
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
|
|
1473
|
+
engines: {node: '>= 0.8.0'}
|
|
1474
|
+
|
|
1475
|
+
lines-and-columns@1.2.4:
|
|
1476
|
+
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
|
|
1477
|
+
|
|
1478
|
+
lint-staged@16.3.3:
|
|
1479
|
+
resolution: {integrity: sha512-RLq2koZ5fGWrx7tcqx2tSTMQj4lRkfNJaebO/li/uunhCJbtZqwTuwPHpgIimAHHi/2nZIiGrkCHDCOeR1onxA==}
|
|
1480
|
+
engines: {node: '>=20.17'}
|
|
1481
|
+
hasBin: true
|
|
1482
|
+
|
|
1483
|
+
listr2@9.0.5:
|
|
1484
|
+
resolution: {integrity: sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==}
|
|
1485
|
+
engines: {node: '>=20.0.0'}
|
|
1486
|
+
|
|
1487
|
+
locate-path@6.0.0:
|
|
1488
|
+
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
|
|
1489
|
+
engines: {node: '>=10'}
|
|
1490
|
+
|
|
1491
|
+
lodash.camelcase@4.3.0:
|
|
1492
|
+
resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
|
|
1493
|
+
|
|
1494
|
+
lodash.kebabcase@4.1.1:
|
|
1495
|
+
resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==}
|
|
1496
|
+
|
|
1497
|
+
lodash.mergewith@4.6.2:
|
|
1498
|
+
resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==}
|
|
1499
|
+
|
|
1500
|
+
lodash.snakecase@4.1.1:
|
|
1501
|
+
resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==}
|
|
1502
|
+
|
|
1503
|
+
lodash.startcase@4.4.0:
|
|
1504
|
+
resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==}
|
|
1505
|
+
|
|
1506
|
+
lodash.upperfirst@4.3.1:
|
|
1507
|
+
resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==}
|
|
1508
|
+
|
|
1509
|
+
log-update@6.1.0:
|
|
1510
|
+
resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==}
|
|
1511
|
+
engines: {node: '>=18'}
|
|
1512
|
+
|
|
1513
|
+
lru-cache@11.2.4:
|
|
1514
|
+
resolution: {integrity: sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==}
|
|
1515
|
+
engines: {node: 20 || >=22}
|
|
1516
|
+
|
|
1517
|
+
magic-string@0.30.21:
|
|
1518
|
+
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
|
|
1519
|
+
|
|
1520
|
+
magicast@0.5.1:
|
|
1521
|
+
resolution: {integrity: sha512-xrHS24IxaLrvuo613F719wvOIv9xPHFWQHuvGUBmPnCA/3MQxKI3b+r7n1jAoDHmsbC5bRhTZYR77invLAxVnw==}
|
|
1522
|
+
|
|
1523
|
+
make-dir@4.0.0:
|
|
1524
|
+
resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
|
|
1525
|
+
engines: {node: '>=10'}
|
|
1526
|
+
|
|
1527
|
+
mdn-data@2.12.2:
|
|
1528
|
+
resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==}
|
|
1529
|
+
|
|
1530
|
+
meow@13.2.0:
|
|
1531
|
+
resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==}
|
|
1532
|
+
engines: {node: '>=18'}
|
|
1533
|
+
|
|
1534
|
+
micromatch@4.0.8:
|
|
1535
|
+
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
|
|
1536
|
+
engines: {node: '>=8.6'}
|
|
1537
|
+
|
|
1538
|
+
mimic-function@5.0.1:
|
|
1539
|
+
resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
|
|
1540
|
+
engines: {node: '>=18'}
|
|
1541
|
+
|
|
1542
|
+
minimatch@10.2.4:
|
|
1543
|
+
resolution: {integrity: sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==}
|
|
1544
|
+
engines: {node: 18 || 20 || >=22}
|
|
1545
|
+
|
|
1546
|
+
minimist@1.2.8:
|
|
1547
|
+
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
|
|
1548
|
+
|
|
1549
|
+
ms@2.1.3:
|
|
1550
|
+
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
1551
|
+
|
|
1552
|
+
nanoid@3.3.11:
|
|
1553
|
+
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
|
|
1554
|
+
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
1555
|
+
hasBin: true
|
|
1556
|
+
|
|
1557
|
+
natural-compare@1.4.0:
|
|
1558
|
+
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
|
|
1559
|
+
|
|
1560
|
+
node-addon-api@7.1.1:
|
|
1561
|
+
resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
|
|
1562
|
+
|
|
1563
|
+
node-releases@2.0.27:
|
|
1564
|
+
resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
|
|
1565
|
+
|
|
1566
|
+
obug@2.1.1:
|
|
1567
|
+
resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==}
|
|
1568
|
+
|
|
1569
|
+
onetime@7.0.0:
|
|
1570
|
+
resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
|
|
1571
|
+
engines: {node: '>=18'}
|
|
1572
|
+
|
|
1573
|
+
optionator@0.9.4:
|
|
1574
|
+
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
|
|
1575
|
+
engines: {node: '>= 0.8.0'}
|
|
1576
|
+
|
|
1577
|
+
p-limit@3.1.0:
|
|
1578
|
+
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
|
|
1579
|
+
engines: {node: '>=10'}
|
|
1580
|
+
|
|
1581
|
+
p-locate@5.0.0:
|
|
1582
|
+
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
|
|
1583
|
+
engines: {node: '>=10'}
|
|
1584
|
+
|
|
1585
|
+
parent-module@1.0.1:
|
|
1586
|
+
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
|
|
1587
|
+
engines: {node: '>=6'}
|
|
1588
|
+
|
|
1589
|
+
parse-json@5.2.0:
|
|
1590
|
+
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
|
|
1591
|
+
engines: {node: '>=8'}
|
|
1592
|
+
|
|
1593
|
+
parse5@8.0.0:
|
|
1594
|
+
resolution: {integrity: sha512-9m4m5GSgXjL4AjumKzq1Fgfp3Z8rsvjRNbnkVwfu2ImRqE5D0LnY2QfDen18FSY9C573YU5XxSapdHZTZ2WolA==}
|
|
1595
|
+
|
|
1596
|
+
path-exists@4.0.0:
|
|
1597
|
+
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
|
|
1598
|
+
engines: {node: '>=8'}
|
|
1599
|
+
|
|
1600
|
+
path-key@3.1.1:
|
|
1601
|
+
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
|
1602
|
+
engines: {node: '>=8'}
|
|
1603
|
+
|
|
1604
|
+
pathe@2.0.3:
|
|
1605
|
+
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
|
|
1606
|
+
|
|
1607
|
+
picocolors@1.1.1:
|
|
1608
|
+
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
1609
|
+
|
|
1610
|
+
picomatch@2.3.1:
|
|
1611
|
+
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
|
|
1612
|
+
engines: {node: '>=8.6'}
|
|
1613
|
+
|
|
1614
|
+
picomatch@4.0.3:
|
|
1615
|
+
resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
|
|
1616
|
+
engines: {node: '>=12'}
|
|
1617
|
+
|
|
1618
|
+
playwright-core@1.58.2:
|
|
1619
|
+
resolution: {integrity: sha512-yZkEtftgwS8CsfYo7nm0KE8jsvm6i/PTgVtB8DL726wNf6H2IMsDuxCpJj59KDaxCtSnrWan2AeDqM7JBaultg==}
|
|
1620
|
+
engines: {node: '>=18'}
|
|
1621
|
+
hasBin: true
|
|
1622
|
+
|
|
1623
|
+
playwright@1.58.2:
|
|
1624
|
+
resolution: {integrity: sha512-vA30H8Nvkq/cPBnNw4Q8TWz1EJyqgpuinBcHET0YVJVFldr8JDNiU9LaWAE1KqSkRYazuaBhTpB5ZzShOezQ6A==}
|
|
1625
|
+
engines: {node: '>=18'}
|
|
1626
|
+
hasBin: true
|
|
1627
|
+
|
|
1628
|
+
postcss-value-parser@4.2.0:
|
|
1629
|
+
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
|
|
1630
|
+
|
|
1631
|
+
postcss@8.5.6:
|
|
1632
|
+
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
|
|
1633
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
1634
|
+
|
|
1635
|
+
prelude-ls@1.2.1:
|
|
1636
|
+
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
|
|
1637
|
+
engines: {node: '>= 0.8.0'}
|
|
1638
|
+
|
|
1639
|
+
prettier@3.8.1:
|
|
1640
|
+
resolution: {integrity: sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==}
|
|
1641
|
+
engines: {node: '>=14'}
|
|
1642
|
+
hasBin: true
|
|
1643
|
+
|
|
1644
|
+
punycode@2.3.1:
|
|
1645
|
+
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
|
|
1646
|
+
engines: {node: '>=6'}
|
|
1647
|
+
|
|
1648
|
+
readdirp@4.1.2:
|
|
1649
|
+
resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
|
|
1650
|
+
engines: {node: '>= 14.18.0'}
|
|
1651
|
+
|
|
1652
|
+
require-directory@2.1.1:
|
|
1653
|
+
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
|
|
1654
|
+
engines: {node: '>=0.10.0'}
|
|
1655
|
+
|
|
1656
|
+
require-from-string@2.0.2:
|
|
1657
|
+
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
|
|
1658
|
+
engines: {node: '>=0.10.0'}
|
|
1659
|
+
|
|
1660
|
+
resolve-from@4.0.0:
|
|
1661
|
+
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
|
|
1662
|
+
engines: {node: '>=4'}
|
|
1663
|
+
|
|
1664
|
+
resolve-from@5.0.0:
|
|
1665
|
+
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
|
|
1666
|
+
engines: {node: '>=8'}
|
|
1667
|
+
|
|
1668
|
+
resolve-pkg-maps@1.0.0:
|
|
1669
|
+
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
|
|
1670
|
+
|
|
1671
|
+
restore-cursor@5.1.0:
|
|
1672
|
+
resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
|
|
1673
|
+
engines: {node: '>=18'}
|
|
1674
|
+
|
|
1675
|
+
rfdc@1.4.1:
|
|
1676
|
+
resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
|
|
1677
|
+
|
|
1678
|
+
rollup@4.54.0:
|
|
1679
|
+
resolution: {integrity: sha512-3nk8Y3a9Ea8szgKhinMlGMhGMw89mqule3KWczxhIzqudyHdCIOHw8WJlj/r329fACjKLEh13ZSk7oE22kyeIw==}
|
|
1680
|
+
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
|
1681
|
+
hasBin: true
|
|
1682
|
+
|
|
1683
|
+
sass@1.97.1:
|
|
1684
|
+
resolution: {integrity: sha512-uf6HoO8fy6ClsrShvMgaKUn14f2EHQLQRtpsZZLeU/Mv0Q1K5P0+x2uvH6Cub39TVVbWNSrraUhDAoFph6vh0A==}
|
|
1685
|
+
engines: {node: '>=14.0.0'}
|
|
1686
|
+
hasBin: true
|
|
1687
|
+
|
|
1688
|
+
saxes@6.0.0:
|
|
1689
|
+
resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
|
|
1690
|
+
engines: {node: '>=v12.22.7'}
|
|
1691
|
+
|
|
1692
|
+
semver@7.7.3:
|
|
1693
|
+
resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
|
|
1694
|
+
engines: {node: '>=10'}
|
|
1695
|
+
hasBin: true
|
|
1696
|
+
|
|
1697
|
+
shebang-command@2.0.0:
|
|
1698
|
+
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
|
1699
|
+
engines: {node: '>=8'}
|
|
1700
|
+
|
|
1701
|
+
shebang-regex@3.0.0:
|
|
1702
|
+
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
|
1703
|
+
engines: {node: '>=8'}
|
|
1704
|
+
|
|
1705
|
+
siginfo@2.0.0:
|
|
1706
|
+
resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
|
|
1707
|
+
|
|
1708
|
+
signal-exit@4.1.0:
|
|
1709
|
+
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
|
|
1710
|
+
engines: {node: '>=14'}
|
|
1711
|
+
|
|
1712
|
+
slice-ansi@7.1.2:
|
|
1713
|
+
resolution: {integrity: sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==}
|
|
1714
|
+
engines: {node: '>=18'}
|
|
1715
|
+
|
|
1716
|
+
source-map-js@1.2.1:
|
|
1717
|
+
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
1718
|
+
engines: {node: '>=0.10.0'}
|
|
1719
|
+
|
|
1720
|
+
source-map-support@0.5.21:
|
|
1721
|
+
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
|
|
1722
|
+
|
|
1723
|
+
source-map@0.6.1:
|
|
1724
|
+
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
|
|
1725
|
+
engines: {node: '>=0.10.0'}
|
|
1726
|
+
|
|
1727
|
+
stackback@0.0.2:
|
|
1728
|
+
resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
|
|
1729
|
+
|
|
1730
|
+
std-env@3.10.0:
|
|
1731
|
+
resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==}
|
|
1732
|
+
|
|
1733
|
+
string-argv@0.3.2:
|
|
1734
|
+
resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
|
|
1735
|
+
engines: {node: '>=0.6.19'}
|
|
1736
|
+
|
|
1737
|
+
string-width@4.2.3:
|
|
1738
|
+
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
|
|
1739
|
+
engines: {node: '>=8'}
|
|
1740
|
+
|
|
1741
|
+
string-width@7.2.0:
|
|
1742
|
+
resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
|
|
1743
|
+
engines: {node: '>=18'}
|
|
1744
|
+
|
|
1745
|
+
string-width@8.1.0:
|
|
1746
|
+
resolution: {integrity: sha512-Kxl3KJGb/gxkaUMOjRsQ8IrXiGW75O4E3RPjFIINOVH8AMl2SQ/yWdTzWwF3FevIX9LcMAjJW+GRwAlAbTSXdg==}
|
|
1747
|
+
engines: {node: '>=20'}
|
|
1748
|
+
|
|
1749
|
+
strip-ansi@6.0.1:
|
|
1750
|
+
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
|
|
1751
|
+
engines: {node: '>=8'}
|
|
1752
|
+
|
|
1753
|
+
strip-ansi@7.1.2:
|
|
1754
|
+
resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==}
|
|
1755
|
+
engines: {node: '>=12'}
|
|
1756
|
+
|
|
1757
|
+
supports-color@7.2.0:
|
|
1758
|
+
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
|
|
1759
|
+
engines: {node: '>=8'}
|
|
1760
|
+
|
|
1761
|
+
symbol-tree@3.2.4:
|
|
1762
|
+
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
|
|
1763
|
+
|
|
1764
|
+
terser@5.44.1:
|
|
1765
|
+
resolution: {integrity: sha512-t/R3R/n0MSwnnazuPpPNVO60LX0SKL45pyl9YlvxIdkH0Of7D5qM2EVe+yASRIlY5pZ73nclYJfNANGWPwFDZw==}
|
|
1766
|
+
engines: {node: '>=10'}
|
|
1767
|
+
hasBin: true
|
|
1768
|
+
|
|
1769
|
+
tinybench@2.9.0:
|
|
1770
|
+
resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
|
|
1771
|
+
|
|
1772
|
+
tinyexec@1.0.2:
|
|
1773
|
+
resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==}
|
|
1774
|
+
engines: {node: '>=18'}
|
|
1775
|
+
|
|
1776
|
+
tinyglobby@0.2.15:
|
|
1777
|
+
resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
|
|
1778
|
+
engines: {node: '>=12.0.0'}
|
|
1779
|
+
|
|
1780
|
+
tinyrainbow@3.0.3:
|
|
1781
|
+
resolution: {integrity: sha512-PSkbLUoxOFRzJYjjxHJt9xro7D+iilgMX/C9lawzVuYiIdcihh9DXmVibBe8lmcFrRi/VzlPjBxbN7rH24q8/Q==}
|
|
1782
|
+
engines: {node: '>=14.0.0'}
|
|
1783
|
+
|
|
1784
|
+
tldts-core@7.0.19:
|
|
1785
|
+
resolution: {integrity: sha512-lJX2dEWx0SGH4O6p+7FPwYmJ/bu1JbcGJ8RLaG9b7liIgZ85itUVEPbMtWRVrde/0fnDPEPHW10ZsKW3kVsE9A==}
|
|
1786
|
+
|
|
1787
|
+
tldts@7.0.19:
|
|
1788
|
+
resolution: {integrity: sha512-8PWx8tvC4jDB39BQw1m4x8y5MH1BcQ5xHeL2n7UVFulMPH/3Q0uiamahFJ3lXA0zO2SUyRXuVVbWSDmstlt9YA==}
|
|
1789
|
+
hasBin: true
|
|
1790
|
+
|
|
1791
|
+
to-regex-range@5.0.1:
|
|
1792
|
+
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
|
|
1793
|
+
engines: {node: '>=8.0'}
|
|
1794
|
+
|
|
1795
|
+
tough-cookie@6.0.0:
|
|
1796
|
+
resolution: {integrity: sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==}
|
|
1797
|
+
engines: {node: '>=16'}
|
|
1798
|
+
|
|
1799
|
+
tr46@6.0.0:
|
|
1800
|
+
resolution: {integrity: sha512-bLVMLPtstlZ4iMQHpFHTR7GAGj2jxi8Dg0s2h2MafAE4uSWF98FC/3MomU51iQAMf8/qDUbKWf5GxuvvVcXEhw==}
|
|
1801
|
+
engines: {node: '>=20'}
|
|
1802
|
+
|
|
1803
|
+
ts-api-utils@2.4.0:
|
|
1804
|
+
resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
|
|
1805
|
+
engines: {node: '>=18.12'}
|
|
1806
|
+
peerDependencies:
|
|
1807
|
+
typescript: '>=4.8.4'
|
|
1808
|
+
|
|
1809
|
+
tsx@4.21.0:
|
|
1810
|
+
resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==}
|
|
1811
|
+
engines: {node: '>=18.0.0'}
|
|
1812
|
+
hasBin: true
|
|
1813
|
+
|
|
1814
|
+
type-check@0.4.0:
|
|
1815
|
+
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
|
1816
|
+
engines: {node: '>= 0.8.0'}
|
|
1817
|
+
|
|
1818
|
+
typescript-eslint@8.57.0:
|
|
1819
|
+
resolution: {integrity: sha512-W8GcigEMEeB07xEZol8oJ26rigm3+bfPHxHvwbYUlu1fUDsGuQ7Hiskx5xGW/xM4USc9Ephe3jtv7ZYPQntHeA==}
|
|
1820
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1821
|
+
peerDependencies:
|
|
1822
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
1823
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
1824
|
+
|
|
1825
|
+
typescript@5.9.3:
|
|
1826
|
+
resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
|
|
1827
|
+
engines: {node: '>=14.17'}
|
|
1828
|
+
hasBin: true
|
|
1829
|
+
|
|
1830
|
+
undici-types@7.18.2:
|
|
1831
|
+
resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==}
|
|
1832
|
+
|
|
1833
|
+
update-browserslist-db@1.2.3:
|
|
1834
|
+
resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
|
|
1835
|
+
hasBin: true
|
|
1836
|
+
peerDependencies:
|
|
1837
|
+
browserslist: '>= 4.21.0'
|
|
1838
|
+
|
|
1839
|
+
uri-js@4.4.1:
|
|
1840
|
+
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
|
1841
|
+
|
|
1842
|
+
vite@7.2.6:
|
|
1843
|
+
resolution: {integrity: sha512-tI2l/nFHC5rLh7+5+o7QjKjSR04ivXDF4jcgV0f/bTQ+OJiITy5S6gaynVsEM+7RqzufMnVbIon6Sr5x1SDYaQ==}
|
|
1844
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1845
|
+
hasBin: true
|
|
1846
|
+
peerDependencies:
|
|
1847
|
+
'@types/node': ^20.19.0 || >=22.12.0
|
|
1848
|
+
jiti: '>=1.21.0'
|
|
1849
|
+
less: ^4.0.0
|
|
1850
|
+
lightningcss: ^1.21.0
|
|
1851
|
+
sass: ^1.70.0
|
|
1852
|
+
sass-embedded: ^1.70.0
|
|
1853
|
+
stylus: '>=0.54.8'
|
|
1854
|
+
sugarss: ^5.0.0
|
|
1855
|
+
terser: ^5.16.0
|
|
1856
|
+
tsx: ^4.8.1
|
|
1857
|
+
yaml: ^2.4.2
|
|
1858
|
+
peerDependenciesMeta:
|
|
1859
|
+
'@types/node':
|
|
1860
|
+
optional: true
|
|
1861
|
+
jiti:
|
|
1862
|
+
optional: true
|
|
1863
|
+
less:
|
|
1864
|
+
optional: true
|
|
1865
|
+
lightningcss:
|
|
1866
|
+
optional: true
|
|
1867
|
+
sass:
|
|
1868
|
+
optional: true
|
|
1869
|
+
sass-embedded:
|
|
1870
|
+
optional: true
|
|
1871
|
+
stylus:
|
|
1872
|
+
optional: true
|
|
1873
|
+
sugarss:
|
|
1874
|
+
optional: true
|
|
1875
|
+
terser:
|
|
1876
|
+
optional: true
|
|
1877
|
+
tsx:
|
|
1878
|
+
optional: true
|
|
1879
|
+
yaml:
|
|
1880
|
+
optional: true
|
|
1881
|
+
|
|
1882
|
+
vitest@4.0.18:
|
|
1883
|
+
resolution: {integrity: sha512-hOQuK7h0FGKgBAas7v0mSAsnvrIgAvWmRFjmzpJ7SwFHH3g1k2u37JtYwOwmEKhK6ZO3v9ggDBBm0La1LCK4uQ==}
|
|
1884
|
+
engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0}
|
|
1885
|
+
hasBin: true
|
|
1886
|
+
peerDependencies:
|
|
1887
|
+
'@edge-runtime/vm': '*'
|
|
1888
|
+
'@opentelemetry/api': ^1.9.0
|
|
1889
|
+
'@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0
|
|
1890
|
+
'@vitest/browser-playwright': 4.0.18
|
|
1891
|
+
'@vitest/browser-preview': 4.0.18
|
|
1892
|
+
'@vitest/browser-webdriverio': 4.0.18
|
|
1893
|
+
'@vitest/ui': 4.0.18
|
|
1894
|
+
happy-dom: '*'
|
|
1895
|
+
jsdom: '*'
|
|
1896
|
+
peerDependenciesMeta:
|
|
1897
|
+
'@edge-runtime/vm':
|
|
1898
|
+
optional: true
|
|
1899
|
+
'@opentelemetry/api':
|
|
1900
|
+
optional: true
|
|
1901
|
+
'@types/node':
|
|
1902
|
+
optional: true
|
|
1903
|
+
'@vitest/browser-playwright':
|
|
1904
|
+
optional: true
|
|
1905
|
+
'@vitest/browser-preview':
|
|
1906
|
+
optional: true
|
|
1907
|
+
'@vitest/browser-webdriverio':
|
|
1908
|
+
optional: true
|
|
1909
|
+
'@vitest/ui':
|
|
1910
|
+
optional: true
|
|
1911
|
+
happy-dom:
|
|
1912
|
+
optional: true
|
|
1913
|
+
jsdom:
|
|
1914
|
+
optional: true
|
|
1915
|
+
|
|
1916
|
+
w3c-xmlserializer@5.0.0:
|
|
1917
|
+
resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
|
|
1918
|
+
engines: {node: '>=18'}
|
|
1919
|
+
|
|
1920
|
+
webidl-conversions@8.0.1:
|
|
1921
|
+
resolution: {integrity: sha512-BMhLD/Sw+GbJC21C/UgyaZX41nPt8bUTg+jWyDeg7e7YN4xOM05YPSIXceACnXVtqyEw/LMClUQMtMZ+PGGpqQ==}
|
|
1922
|
+
engines: {node: '>=20'}
|
|
1923
|
+
|
|
1924
|
+
whatwg-mimetype@4.0.0:
|
|
1925
|
+
resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
|
|
1926
|
+
engines: {node: '>=18'}
|
|
1927
|
+
|
|
1928
|
+
whatwg-url@15.1.0:
|
|
1929
|
+
resolution: {integrity: sha512-2ytDk0kiEj/yu90JOAp44PVPUkO9+jVhyf+SybKlRHSDlvOOZhdPIrr7xTH64l4WixO2cP+wQIcgujkGBPPz6g==}
|
|
1930
|
+
engines: {node: '>=20'}
|
|
1931
|
+
|
|
1932
|
+
which@2.0.2:
|
|
1933
|
+
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
|
1934
|
+
engines: {node: '>= 8'}
|
|
1935
|
+
hasBin: true
|
|
1936
|
+
|
|
1937
|
+
why-is-node-running@2.3.0:
|
|
1938
|
+
resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==}
|
|
1939
|
+
engines: {node: '>=8'}
|
|
1940
|
+
hasBin: true
|
|
1941
|
+
|
|
1942
|
+
word-wrap@1.2.5:
|
|
1943
|
+
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
|
|
1944
|
+
engines: {node: '>=0.10.0'}
|
|
1945
|
+
|
|
1946
|
+
wrap-ansi@7.0.0:
|
|
1947
|
+
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
|
|
1948
|
+
engines: {node: '>=10'}
|
|
1949
|
+
|
|
1950
|
+
wrap-ansi@9.0.2:
|
|
1951
|
+
resolution: {integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==}
|
|
1952
|
+
engines: {node: '>=18'}
|
|
1953
|
+
|
|
1954
|
+
ws@8.19.0:
|
|
1955
|
+
resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
|
|
1956
|
+
engines: {node: '>=10.0.0'}
|
|
1957
|
+
peerDependencies:
|
|
1958
|
+
bufferutil: ^4.0.1
|
|
1959
|
+
utf-8-validate: '>=5.0.2'
|
|
1960
|
+
peerDependenciesMeta:
|
|
1961
|
+
bufferutil:
|
|
1962
|
+
optional: true
|
|
1963
|
+
utf-8-validate:
|
|
1964
|
+
optional: true
|
|
1965
|
+
|
|
1966
|
+
xml-name-validator@5.0.0:
|
|
1967
|
+
resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
|
|
1968
|
+
engines: {node: '>=18'}
|
|
1969
|
+
|
|
1970
|
+
xmlchars@2.2.0:
|
|
1971
|
+
resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
|
|
1972
|
+
|
|
1973
|
+
y18n@5.0.8:
|
|
1974
|
+
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
|
|
1975
|
+
engines: {node: '>=10'}
|
|
1976
|
+
|
|
1977
|
+
yaml@2.8.2:
|
|
1978
|
+
resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==}
|
|
1979
|
+
engines: {node: '>= 14.6'}
|
|
1980
|
+
hasBin: true
|
|
1981
|
+
|
|
1982
|
+
yargs-parser@21.1.1:
|
|
1983
|
+
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
|
|
1984
|
+
engines: {node: '>=12'}
|
|
1985
|
+
|
|
1986
|
+
yargs@17.7.2:
|
|
1987
|
+
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
|
|
1988
|
+
engines: {node: '>=12'}
|
|
1989
|
+
|
|
1990
|
+
yocto-queue@0.1.0:
|
|
1991
|
+
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
|
|
1992
|
+
engines: {node: '>=10'}
|
|
1993
|
+
|
|
1994
|
+
snapshots:
|
|
1995
|
+
|
|
1996
|
+
'@acemir/cssom@0.9.31':
|
|
1997
|
+
optional: true
|
|
1998
|
+
|
|
1999
|
+
'@asamuzakjp/css-color@4.1.1':
|
|
2000
|
+
dependencies:
|
|
2001
|
+
'@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
|
|
2002
|
+
'@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
|
|
2003
|
+
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
|
|
2004
|
+
'@csstools/css-tokenizer': 3.0.4
|
|
2005
|
+
lru-cache: 11.2.4
|
|
2006
|
+
optional: true
|
|
2007
|
+
|
|
2008
|
+
'@asamuzakjp/dom-selector@6.7.6':
|
|
2009
|
+
dependencies:
|
|
2010
|
+
'@asamuzakjp/nwsapi': 2.3.9
|
|
2011
|
+
bidi-js: 1.0.3
|
|
2012
|
+
css-tree: 3.1.0
|
|
2013
|
+
is-potential-custom-element-name: 1.0.1
|
|
2014
|
+
lru-cache: 11.2.4
|
|
2015
|
+
optional: true
|
|
2016
|
+
|
|
2017
|
+
'@asamuzakjp/nwsapi@2.3.9':
|
|
2018
|
+
optional: true
|
|
2019
|
+
|
|
2020
|
+
'@babel/code-frame@7.29.0':
|
|
2021
|
+
dependencies:
|
|
2022
|
+
'@babel/helper-validator-identifier': 7.28.5
|
|
2023
|
+
js-tokens: 4.0.0
|
|
2024
|
+
picocolors: 1.1.1
|
|
2025
|
+
|
|
2026
|
+
'@babel/helper-string-parser@7.27.1': {}
|
|
2027
|
+
|
|
2028
|
+
'@babel/helper-validator-identifier@7.28.5': {}
|
|
2029
|
+
|
|
2030
|
+
'@babel/parser@7.28.5':
|
|
2031
|
+
dependencies:
|
|
2032
|
+
'@babel/types': 7.28.5
|
|
2033
|
+
|
|
2034
|
+
'@babel/types@7.28.5':
|
|
2035
|
+
dependencies:
|
|
2036
|
+
'@babel/helper-string-parser': 7.27.1
|
|
2037
|
+
'@babel/helper-validator-identifier': 7.28.5
|
|
2038
|
+
|
|
2039
|
+
'@bcoe/v8-coverage@1.0.2': {}
|
|
2040
|
+
|
|
2041
|
+
'@commitlint/cli@20.5.0(@types/node@25.4.0)(conventional-commits-parser@6.3.0)(typescript@5.9.3)':
|
|
2042
|
+
dependencies:
|
|
2043
|
+
'@commitlint/format': 20.5.0
|
|
2044
|
+
'@commitlint/lint': 20.5.0
|
|
2045
|
+
'@commitlint/load': 20.5.0(@types/node@25.4.0)(typescript@5.9.3)
|
|
2046
|
+
'@commitlint/read': 20.5.0(conventional-commits-parser@6.3.0)
|
|
2047
|
+
'@commitlint/types': 20.5.0
|
|
2048
|
+
tinyexec: 1.0.2
|
|
2049
|
+
yargs: 17.7.2
|
|
2050
|
+
transitivePeerDependencies:
|
|
2051
|
+
- '@types/node'
|
|
2052
|
+
- conventional-commits-filter
|
|
2053
|
+
- conventional-commits-parser
|
|
2054
|
+
- typescript
|
|
2055
|
+
|
|
2056
|
+
'@commitlint/config-conventional@20.5.0':
|
|
2057
|
+
dependencies:
|
|
2058
|
+
'@commitlint/types': 20.5.0
|
|
2059
|
+
conventional-changelog-conventionalcommits: 9.3.0
|
|
2060
|
+
|
|
2061
|
+
'@commitlint/config-validator@20.5.0':
|
|
2062
|
+
dependencies:
|
|
2063
|
+
'@commitlint/types': 20.5.0
|
|
2064
|
+
ajv: 8.18.0
|
|
2065
|
+
|
|
2066
|
+
'@commitlint/ensure@20.5.0':
|
|
2067
|
+
dependencies:
|
|
2068
|
+
'@commitlint/types': 20.5.0
|
|
2069
|
+
lodash.camelcase: 4.3.0
|
|
2070
|
+
lodash.kebabcase: 4.1.1
|
|
2071
|
+
lodash.snakecase: 4.1.1
|
|
2072
|
+
lodash.startcase: 4.4.0
|
|
2073
|
+
lodash.upperfirst: 4.3.1
|
|
2074
|
+
|
|
2075
|
+
'@commitlint/execute-rule@20.0.0': {}
|
|
2076
|
+
|
|
2077
|
+
'@commitlint/format@20.5.0':
|
|
2078
|
+
dependencies:
|
|
2079
|
+
'@commitlint/types': 20.5.0
|
|
2080
|
+
picocolors: 1.1.1
|
|
2081
|
+
|
|
2082
|
+
'@commitlint/is-ignored@20.5.0':
|
|
2083
|
+
dependencies:
|
|
2084
|
+
'@commitlint/types': 20.5.0
|
|
2085
|
+
semver: 7.7.3
|
|
2086
|
+
|
|
2087
|
+
'@commitlint/lint@20.5.0':
|
|
2088
|
+
dependencies:
|
|
2089
|
+
'@commitlint/is-ignored': 20.5.0
|
|
2090
|
+
'@commitlint/parse': 20.5.0
|
|
2091
|
+
'@commitlint/rules': 20.5.0
|
|
2092
|
+
'@commitlint/types': 20.5.0
|
|
2093
|
+
|
|
2094
|
+
'@commitlint/load@20.5.0(@types/node@25.4.0)(typescript@5.9.3)':
|
|
2095
|
+
dependencies:
|
|
2096
|
+
'@commitlint/config-validator': 20.5.0
|
|
2097
|
+
'@commitlint/execute-rule': 20.0.0
|
|
2098
|
+
'@commitlint/resolve-extends': 20.5.0
|
|
2099
|
+
'@commitlint/types': 20.5.0
|
|
2100
|
+
cosmiconfig: 9.0.1(typescript@5.9.3)
|
|
2101
|
+
cosmiconfig-typescript-loader: 6.2.0(@types/node@25.4.0)(cosmiconfig@9.0.1(typescript@5.9.3))(typescript@5.9.3)
|
|
2102
|
+
is-plain-obj: 4.1.0
|
|
2103
|
+
lodash.mergewith: 4.6.2
|
|
2104
|
+
picocolors: 1.1.1
|
|
2105
|
+
transitivePeerDependencies:
|
|
2106
|
+
- '@types/node'
|
|
2107
|
+
- typescript
|
|
2108
|
+
|
|
2109
|
+
'@commitlint/message@20.4.3': {}
|
|
2110
|
+
|
|
2111
|
+
'@commitlint/parse@20.5.0':
|
|
2112
|
+
dependencies:
|
|
2113
|
+
'@commitlint/types': 20.5.0
|
|
2114
|
+
conventional-changelog-angular: 8.3.0
|
|
2115
|
+
conventional-commits-parser: 6.3.0
|
|
2116
|
+
|
|
2117
|
+
'@commitlint/read@20.5.0(conventional-commits-parser@6.3.0)':
|
|
2118
|
+
dependencies:
|
|
2119
|
+
'@commitlint/top-level': 20.4.3
|
|
2120
|
+
'@commitlint/types': 20.5.0
|
|
2121
|
+
git-raw-commits: 5.0.1(conventional-commits-parser@6.3.0)
|
|
2122
|
+
minimist: 1.2.8
|
|
2123
|
+
tinyexec: 1.0.2
|
|
2124
|
+
transitivePeerDependencies:
|
|
2125
|
+
- conventional-commits-filter
|
|
2126
|
+
- conventional-commits-parser
|
|
2127
|
+
|
|
2128
|
+
'@commitlint/resolve-extends@20.5.0':
|
|
2129
|
+
dependencies:
|
|
2130
|
+
'@commitlint/config-validator': 20.5.0
|
|
2131
|
+
'@commitlint/types': 20.5.0
|
|
2132
|
+
global-directory: 4.0.1
|
|
2133
|
+
import-meta-resolve: 4.2.0
|
|
2134
|
+
lodash.mergewith: 4.6.2
|
|
2135
|
+
resolve-from: 5.0.0
|
|
2136
|
+
|
|
2137
|
+
'@commitlint/rules@20.5.0':
|
|
2138
|
+
dependencies:
|
|
2139
|
+
'@commitlint/ensure': 20.5.0
|
|
2140
|
+
'@commitlint/message': 20.4.3
|
|
2141
|
+
'@commitlint/to-lines': 20.0.0
|
|
2142
|
+
'@commitlint/types': 20.5.0
|
|
2143
|
+
|
|
2144
|
+
'@commitlint/to-lines@20.0.0': {}
|
|
2145
|
+
|
|
2146
|
+
'@commitlint/top-level@20.4.3':
|
|
2147
|
+
dependencies:
|
|
2148
|
+
escalade: 3.2.0
|
|
2149
|
+
|
|
2150
|
+
'@commitlint/types@20.5.0':
|
|
2151
|
+
dependencies:
|
|
2152
|
+
conventional-commits-parser: 6.3.0
|
|
2153
|
+
picocolors: 1.1.1
|
|
2154
|
+
|
|
2155
|
+
'@conventional-changelog/git-client@2.6.0(conventional-commits-parser@6.3.0)':
|
|
2156
|
+
dependencies:
|
|
2157
|
+
'@simple-libs/child-process-utils': 1.0.2
|
|
2158
|
+
'@simple-libs/stream-utils': 1.2.0
|
|
2159
|
+
semver: 7.7.3
|
|
2160
|
+
optionalDependencies:
|
|
2161
|
+
conventional-commits-parser: 6.3.0
|
|
2162
|
+
|
|
2163
|
+
'@csstools/color-helpers@5.1.0':
|
|
2164
|
+
optional: true
|
|
2165
|
+
|
|
2166
|
+
'@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
|
|
2167
|
+
dependencies:
|
|
2168
|
+
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
|
|
2169
|
+
'@csstools/css-tokenizer': 3.0.4
|
|
2170
|
+
optional: true
|
|
2171
|
+
|
|
2172
|
+
'@csstools/css-color-parser@3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
|
|
2173
|
+
dependencies:
|
|
2174
|
+
'@csstools/color-helpers': 5.1.0
|
|
2175
|
+
'@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
|
|
2176
|
+
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
|
|
2177
|
+
'@csstools/css-tokenizer': 3.0.4
|
|
2178
|
+
optional: true
|
|
2179
|
+
|
|
2180
|
+
'@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4)':
|
|
2181
|
+
dependencies:
|
|
2182
|
+
'@csstools/css-tokenizer': 3.0.4
|
|
2183
|
+
optional: true
|
|
2184
|
+
|
|
2185
|
+
'@csstools/css-syntax-patches-for-csstree@1.0.22':
|
|
2186
|
+
optional: true
|
|
2187
|
+
|
|
2188
|
+
'@csstools/css-tokenizer@3.0.4':
|
|
2189
|
+
optional: true
|
|
2190
|
+
|
|
2191
|
+
'@esbuild/aix-ppc64@0.25.12':
|
|
2192
|
+
optional: true
|
|
2193
|
+
|
|
2194
|
+
'@esbuild/aix-ppc64@0.27.2':
|
|
2195
|
+
optional: true
|
|
2196
|
+
|
|
2197
|
+
'@esbuild/android-arm64@0.25.12':
|
|
2198
|
+
optional: true
|
|
2199
|
+
|
|
2200
|
+
'@esbuild/android-arm64@0.27.2':
|
|
2201
|
+
optional: true
|
|
2202
|
+
|
|
2203
|
+
'@esbuild/android-arm@0.25.12':
|
|
2204
|
+
optional: true
|
|
2205
|
+
|
|
2206
|
+
'@esbuild/android-arm@0.27.2':
|
|
2207
|
+
optional: true
|
|
2208
|
+
|
|
2209
|
+
'@esbuild/android-x64@0.25.12':
|
|
2210
|
+
optional: true
|
|
2211
|
+
|
|
2212
|
+
'@esbuild/android-x64@0.27.2':
|
|
2213
|
+
optional: true
|
|
2214
|
+
|
|
2215
|
+
'@esbuild/darwin-arm64@0.25.12':
|
|
2216
|
+
optional: true
|
|
2217
|
+
|
|
2218
|
+
'@esbuild/darwin-arm64@0.27.2':
|
|
2219
|
+
optional: true
|
|
2220
|
+
|
|
2221
|
+
'@esbuild/darwin-x64@0.25.12':
|
|
2222
|
+
optional: true
|
|
2223
|
+
|
|
2224
|
+
'@esbuild/darwin-x64@0.27.2':
|
|
2225
|
+
optional: true
|
|
2226
|
+
|
|
2227
|
+
'@esbuild/freebsd-arm64@0.25.12':
|
|
2228
|
+
optional: true
|
|
2229
|
+
|
|
2230
|
+
'@esbuild/freebsd-arm64@0.27.2':
|
|
2231
|
+
optional: true
|
|
2232
|
+
|
|
2233
|
+
'@esbuild/freebsd-x64@0.25.12':
|
|
2234
|
+
optional: true
|
|
2235
|
+
|
|
2236
|
+
'@esbuild/freebsd-x64@0.27.2':
|
|
2237
|
+
optional: true
|
|
2238
|
+
|
|
2239
|
+
'@esbuild/linux-arm64@0.25.12':
|
|
2240
|
+
optional: true
|
|
2241
|
+
|
|
2242
|
+
'@esbuild/linux-arm64@0.27.2':
|
|
2243
|
+
optional: true
|
|
2244
|
+
|
|
2245
|
+
'@esbuild/linux-arm@0.25.12':
|
|
2246
|
+
optional: true
|
|
2247
|
+
|
|
2248
|
+
'@esbuild/linux-arm@0.27.2':
|
|
2249
|
+
optional: true
|
|
2250
|
+
|
|
2251
|
+
'@esbuild/linux-ia32@0.25.12':
|
|
2252
|
+
optional: true
|
|
2253
|
+
|
|
2254
|
+
'@esbuild/linux-ia32@0.27.2':
|
|
2255
|
+
optional: true
|
|
2256
|
+
|
|
2257
|
+
'@esbuild/linux-loong64@0.25.12':
|
|
2258
|
+
optional: true
|
|
2259
|
+
|
|
2260
|
+
'@esbuild/linux-loong64@0.27.2':
|
|
2261
|
+
optional: true
|
|
2262
|
+
|
|
2263
|
+
'@esbuild/linux-mips64el@0.25.12':
|
|
2264
|
+
optional: true
|
|
2265
|
+
|
|
2266
|
+
'@esbuild/linux-mips64el@0.27.2':
|
|
2267
|
+
optional: true
|
|
2268
|
+
|
|
2269
|
+
'@esbuild/linux-ppc64@0.25.12':
|
|
2270
|
+
optional: true
|
|
2271
|
+
|
|
2272
|
+
'@esbuild/linux-ppc64@0.27.2':
|
|
2273
|
+
optional: true
|
|
2274
|
+
|
|
2275
|
+
'@esbuild/linux-riscv64@0.25.12':
|
|
2276
|
+
optional: true
|
|
2277
|
+
|
|
2278
|
+
'@esbuild/linux-riscv64@0.27.2':
|
|
2279
|
+
optional: true
|
|
2280
|
+
|
|
2281
|
+
'@esbuild/linux-s390x@0.25.12':
|
|
2282
|
+
optional: true
|
|
2283
|
+
|
|
2284
|
+
'@esbuild/linux-s390x@0.27.2':
|
|
2285
|
+
optional: true
|
|
2286
|
+
|
|
2287
|
+
'@esbuild/linux-x64@0.25.12':
|
|
2288
|
+
optional: true
|
|
2289
|
+
|
|
2290
|
+
'@esbuild/linux-x64@0.27.2':
|
|
2291
|
+
optional: true
|
|
2292
|
+
|
|
2293
|
+
'@esbuild/netbsd-arm64@0.25.12':
|
|
2294
|
+
optional: true
|
|
2295
|
+
|
|
2296
|
+
'@esbuild/netbsd-arm64@0.27.2':
|
|
2297
|
+
optional: true
|
|
2298
|
+
|
|
2299
|
+
'@esbuild/netbsd-x64@0.25.12':
|
|
2300
|
+
optional: true
|
|
2301
|
+
|
|
2302
|
+
'@esbuild/netbsd-x64@0.27.2':
|
|
2303
|
+
optional: true
|
|
2304
|
+
|
|
2305
|
+
'@esbuild/openbsd-arm64@0.25.12':
|
|
2306
|
+
optional: true
|
|
2307
|
+
|
|
2308
|
+
'@esbuild/openbsd-arm64@0.27.2':
|
|
2309
|
+
optional: true
|
|
2310
|
+
|
|
2311
|
+
'@esbuild/openbsd-x64@0.25.12':
|
|
2312
|
+
optional: true
|
|
2313
|
+
|
|
2314
|
+
'@esbuild/openbsd-x64@0.27.2':
|
|
2315
|
+
optional: true
|
|
2316
|
+
|
|
2317
|
+
'@esbuild/openharmony-arm64@0.25.12':
|
|
2318
|
+
optional: true
|
|
2319
|
+
|
|
2320
|
+
'@esbuild/openharmony-arm64@0.27.2':
|
|
2321
|
+
optional: true
|
|
2322
|
+
|
|
2323
|
+
'@esbuild/sunos-x64@0.25.12':
|
|
2324
|
+
optional: true
|
|
2325
|
+
|
|
2326
|
+
'@esbuild/sunos-x64@0.27.2':
|
|
2327
|
+
optional: true
|
|
2328
|
+
|
|
2329
|
+
'@esbuild/win32-arm64@0.25.12':
|
|
2330
|
+
optional: true
|
|
2331
|
+
|
|
2332
|
+
'@esbuild/win32-arm64@0.27.2':
|
|
2333
|
+
optional: true
|
|
2334
|
+
|
|
2335
|
+
'@esbuild/win32-ia32@0.25.12':
|
|
2336
|
+
optional: true
|
|
2337
|
+
|
|
2338
|
+
'@esbuild/win32-ia32@0.27.2':
|
|
2339
|
+
optional: true
|
|
2340
|
+
|
|
2341
|
+
'@esbuild/win32-x64@0.25.12':
|
|
2342
|
+
optional: true
|
|
2343
|
+
|
|
2344
|
+
'@esbuild/win32-x64@0.27.2':
|
|
2345
|
+
optional: true
|
|
2346
|
+
|
|
2347
|
+
'@eslint-community/eslint-utils@4.9.1(eslint@10.0.3(jiti@2.6.1))':
|
|
2348
|
+
dependencies:
|
|
2349
|
+
eslint: 10.0.3(jiti@2.6.1)
|
|
2350
|
+
eslint-visitor-keys: 3.4.3
|
|
2351
|
+
|
|
2352
|
+
'@eslint-community/regexpp@4.12.2': {}
|
|
2353
|
+
|
|
2354
|
+
'@eslint/config-array@0.23.3':
|
|
2355
|
+
dependencies:
|
|
2356
|
+
'@eslint/object-schema': 3.0.3
|
|
2357
|
+
debug: 4.4.3
|
|
2358
|
+
minimatch: 10.2.4
|
|
2359
|
+
transitivePeerDependencies:
|
|
2360
|
+
- supports-color
|
|
2361
|
+
|
|
2362
|
+
'@eslint/config-helpers@0.5.3':
|
|
2363
|
+
dependencies:
|
|
2364
|
+
'@eslint/core': 1.1.1
|
|
2365
|
+
|
|
2366
|
+
'@eslint/core@1.1.1':
|
|
2367
|
+
dependencies:
|
|
2368
|
+
'@types/json-schema': 7.0.15
|
|
2369
|
+
|
|
2370
|
+
'@eslint/js@10.0.1(eslint@10.0.3(jiti@2.6.1))':
|
|
2371
|
+
optionalDependencies:
|
|
2372
|
+
eslint: 10.0.3(jiti@2.6.1)
|
|
2373
|
+
|
|
2374
|
+
'@eslint/object-schema@3.0.3': {}
|
|
2375
|
+
|
|
2376
|
+
'@eslint/plugin-kit@0.6.1':
|
|
2377
|
+
dependencies:
|
|
2378
|
+
'@eslint/core': 1.1.1
|
|
2379
|
+
levn: 0.4.1
|
|
2380
|
+
|
|
2381
|
+
'@exodus/bytes@1.8.0':
|
|
2382
|
+
optional: true
|
|
2383
|
+
|
|
2384
|
+
'@humanfs/core@0.19.1': {}
|
|
2385
|
+
|
|
2386
|
+
'@humanfs/node@0.16.7':
|
|
2387
|
+
dependencies:
|
|
2388
|
+
'@humanfs/core': 0.19.1
|
|
2389
|
+
'@humanwhocodes/retry': 0.4.3
|
|
2390
|
+
|
|
2391
|
+
'@humanwhocodes/module-importer@1.0.1': {}
|
|
2392
|
+
|
|
2393
|
+
'@humanwhocodes/retry@0.4.3': {}
|
|
2394
|
+
|
|
2395
|
+
'@jridgewell/gen-mapping@0.3.13':
|
|
2396
|
+
dependencies:
|
|
2397
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2398
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
2399
|
+
optional: true
|
|
2400
|
+
|
|
2401
|
+
'@jridgewell/resolve-uri@3.1.2': {}
|
|
2402
|
+
|
|
2403
|
+
'@jridgewell/source-map@0.3.11':
|
|
2404
|
+
dependencies:
|
|
2405
|
+
'@jridgewell/gen-mapping': 0.3.13
|
|
2406
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
2407
|
+
optional: true
|
|
2408
|
+
|
|
2409
|
+
'@jridgewell/sourcemap-codec@1.5.5': {}
|
|
2410
|
+
|
|
2411
|
+
'@jridgewell/trace-mapping@0.3.31':
|
|
2412
|
+
dependencies:
|
|
2413
|
+
'@jridgewell/resolve-uri': 3.1.2
|
|
2414
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2415
|
+
|
|
2416
|
+
'@koppajs/koppajs-core@3.0.3': {}
|
|
2417
|
+
|
|
2418
|
+
'@koppajs/koppajs-router@0.1.0': {}
|
|
2419
|
+
|
|
2420
|
+
'@koppajs/koppajs-vite-plugin@1.0.1(typescript@5.9.3)(vite@7.2.6(@types/node@25.4.0)(jiti@2.6.1)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))':
|
|
2421
|
+
dependencies:
|
|
2422
|
+
acorn: 8.16.0
|
|
2423
|
+
autoprefixer: 10.4.23(postcss@8.5.6)
|
|
2424
|
+
postcss: 8.5.6
|
|
2425
|
+
sass: 1.97.1
|
|
2426
|
+
typescript: 5.9.3
|
|
2427
|
+
vite: 7.2.6(@types/node@25.4.0)(jiti@2.6.1)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)
|
|
2428
|
+
|
|
2429
|
+
'@parcel/watcher-android-arm64@2.5.1':
|
|
2430
|
+
optional: true
|
|
2431
|
+
|
|
2432
|
+
'@parcel/watcher-darwin-arm64@2.5.1':
|
|
2433
|
+
optional: true
|
|
2434
|
+
|
|
2435
|
+
'@parcel/watcher-darwin-x64@2.5.1':
|
|
2436
|
+
optional: true
|
|
2437
|
+
|
|
2438
|
+
'@parcel/watcher-freebsd-x64@2.5.1':
|
|
2439
|
+
optional: true
|
|
2440
|
+
|
|
2441
|
+
'@parcel/watcher-linux-arm-glibc@2.5.1':
|
|
2442
|
+
optional: true
|
|
2443
|
+
|
|
2444
|
+
'@parcel/watcher-linux-arm-musl@2.5.1':
|
|
2445
|
+
optional: true
|
|
2446
|
+
|
|
2447
|
+
'@parcel/watcher-linux-arm64-glibc@2.5.1':
|
|
2448
|
+
optional: true
|
|
2449
|
+
|
|
2450
|
+
'@parcel/watcher-linux-arm64-musl@2.5.1':
|
|
2451
|
+
optional: true
|
|
2452
|
+
|
|
2453
|
+
'@parcel/watcher-linux-x64-glibc@2.5.1':
|
|
2454
|
+
optional: true
|
|
2455
|
+
|
|
2456
|
+
'@parcel/watcher-linux-x64-musl@2.5.1':
|
|
2457
|
+
optional: true
|
|
2458
|
+
|
|
2459
|
+
'@parcel/watcher-win32-arm64@2.5.1':
|
|
2460
|
+
optional: true
|
|
2461
|
+
|
|
2462
|
+
'@parcel/watcher-win32-ia32@2.5.1':
|
|
2463
|
+
optional: true
|
|
2464
|
+
|
|
2465
|
+
'@parcel/watcher-win32-x64@2.5.1':
|
|
2466
|
+
optional: true
|
|
2467
|
+
|
|
2468
|
+
'@parcel/watcher@2.5.1':
|
|
2469
|
+
dependencies:
|
|
2470
|
+
detect-libc: 1.0.3
|
|
2471
|
+
is-glob: 4.0.3
|
|
2472
|
+
micromatch: 4.0.8
|
|
2473
|
+
node-addon-api: 7.1.1
|
|
2474
|
+
optionalDependencies:
|
|
2475
|
+
'@parcel/watcher-android-arm64': 2.5.1
|
|
2476
|
+
'@parcel/watcher-darwin-arm64': 2.5.1
|
|
2477
|
+
'@parcel/watcher-darwin-x64': 2.5.1
|
|
2478
|
+
'@parcel/watcher-freebsd-x64': 2.5.1
|
|
2479
|
+
'@parcel/watcher-linux-arm-glibc': 2.5.1
|
|
2480
|
+
'@parcel/watcher-linux-arm-musl': 2.5.1
|
|
2481
|
+
'@parcel/watcher-linux-arm64-glibc': 2.5.1
|
|
2482
|
+
'@parcel/watcher-linux-arm64-musl': 2.5.1
|
|
2483
|
+
'@parcel/watcher-linux-x64-glibc': 2.5.1
|
|
2484
|
+
'@parcel/watcher-linux-x64-musl': 2.5.1
|
|
2485
|
+
'@parcel/watcher-win32-arm64': 2.5.1
|
|
2486
|
+
'@parcel/watcher-win32-ia32': 2.5.1
|
|
2487
|
+
'@parcel/watcher-win32-x64': 2.5.1
|
|
2488
|
+
optional: true
|
|
2489
|
+
|
|
2490
|
+
'@playwright/test@1.58.2':
|
|
2491
|
+
dependencies:
|
|
2492
|
+
playwright: 1.58.2
|
|
2493
|
+
|
|
2494
|
+
'@rollup/rollup-android-arm-eabi@4.54.0':
|
|
2495
|
+
optional: true
|
|
2496
|
+
|
|
2497
|
+
'@rollup/rollup-android-arm64@4.54.0':
|
|
2498
|
+
optional: true
|
|
2499
|
+
|
|
2500
|
+
'@rollup/rollup-darwin-arm64@4.54.0':
|
|
2501
|
+
optional: true
|
|
2502
|
+
|
|
2503
|
+
'@rollup/rollup-darwin-x64@4.54.0':
|
|
2504
|
+
optional: true
|
|
2505
|
+
|
|
2506
|
+
'@rollup/rollup-freebsd-arm64@4.54.0':
|
|
2507
|
+
optional: true
|
|
2508
|
+
|
|
2509
|
+
'@rollup/rollup-freebsd-x64@4.54.0':
|
|
2510
|
+
optional: true
|
|
2511
|
+
|
|
2512
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.54.0':
|
|
2513
|
+
optional: true
|
|
2514
|
+
|
|
2515
|
+
'@rollup/rollup-linux-arm-musleabihf@4.54.0':
|
|
2516
|
+
optional: true
|
|
2517
|
+
|
|
2518
|
+
'@rollup/rollup-linux-arm64-gnu@4.54.0':
|
|
2519
|
+
optional: true
|
|
2520
|
+
|
|
2521
|
+
'@rollup/rollup-linux-arm64-musl@4.54.0':
|
|
2522
|
+
optional: true
|
|
2523
|
+
|
|
2524
|
+
'@rollup/rollup-linux-loong64-gnu@4.54.0':
|
|
2525
|
+
optional: true
|
|
2526
|
+
|
|
2527
|
+
'@rollup/rollup-linux-ppc64-gnu@4.54.0':
|
|
2528
|
+
optional: true
|
|
2529
|
+
|
|
2530
|
+
'@rollup/rollup-linux-riscv64-gnu@4.54.0':
|
|
2531
|
+
optional: true
|
|
2532
|
+
|
|
2533
|
+
'@rollup/rollup-linux-riscv64-musl@4.54.0':
|
|
2534
|
+
optional: true
|
|
2535
|
+
|
|
2536
|
+
'@rollup/rollup-linux-s390x-gnu@4.54.0':
|
|
2537
|
+
optional: true
|
|
2538
|
+
|
|
2539
|
+
'@rollup/rollup-linux-x64-gnu@4.54.0':
|
|
2540
|
+
optional: true
|
|
2541
|
+
|
|
2542
|
+
'@rollup/rollup-linux-x64-musl@4.54.0':
|
|
2543
|
+
optional: true
|
|
2544
|
+
|
|
2545
|
+
'@rollup/rollup-openharmony-arm64@4.54.0':
|
|
2546
|
+
optional: true
|
|
2547
|
+
|
|
2548
|
+
'@rollup/rollup-win32-arm64-msvc@4.54.0':
|
|
2549
|
+
optional: true
|
|
2550
|
+
|
|
2551
|
+
'@rollup/rollup-win32-ia32-msvc@4.54.0':
|
|
2552
|
+
optional: true
|
|
2553
|
+
|
|
2554
|
+
'@rollup/rollup-win32-x64-gnu@4.54.0':
|
|
2555
|
+
optional: true
|
|
2556
|
+
|
|
2557
|
+
'@rollup/rollup-win32-x64-msvc@4.54.0':
|
|
2558
|
+
optional: true
|
|
2559
|
+
|
|
2560
|
+
'@simple-libs/child-process-utils@1.0.2':
|
|
2561
|
+
dependencies:
|
|
2562
|
+
'@simple-libs/stream-utils': 1.2.0
|
|
2563
|
+
|
|
2564
|
+
'@simple-libs/stream-utils@1.2.0': {}
|
|
2565
|
+
|
|
2566
|
+
'@standard-schema/spec@1.1.0': {}
|
|
2567
|
+
|
|
2568
|
+
'@types/chai@5.2.3':
|
|
2569
|
+
dependencies:
|
|
2570
|
+
'@types/deep-eql': 4.0.2
|
|
2571
|
+
assertion-error: 2.0.1
|
|
2572
|
+
|
|
2573
|
+
'@types/deep-eql@4.0.2': {}
|
|
2574
|
+
|
|
2575
|
+
'@types/esrecurse@4.3.1': {}
|
|
2576
|
+
|
|
2577
|
+
'@types/estree@1.0.8': {}
|
|
2578
|
+
|
|
2579
|
+
'@types/json-schema@7.0.15': {}
|
|
2580
|
+
|
|
2581
|
+
'@types/node@25.4.0':
|
|
2582
|
+
dependencies:
|
|
2583
|
+
undici-types: 7.18.2
|
|
2584
|
+
|
|
2585
|
+
'@typescript-eslint/eslint-plugin@8.57.0(@typescript-eslint/parser@8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3))(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)':
|
|
2586
|
+
dependencies:
|
|
2587
|
+
'@eslint-community/regexpp': 4.12.2
|
|
2588
|
+
'@typescript-eslint/parser': 8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)
|
|
2589
|
+
'@typescript-eslint/scope-manager': 8.57.0
|
|
2590
|
+
'@typescript-eslint/type-utils': 8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)
|
|
2591
|
+
'@typescript-eslint/utils': 8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)
|
|
2592
|
+
'@typescript-eslint/visitor-keys': 8.57.0
|
|
2593
|
+
eslint: 10.0.3(jiti@2.6.1)
|
|
2594
|
+
ignore: 7.0.5
|
|
2595
|
+
natural-compare: 1.4.0
|
|
2596
|
+
ts-api-utils: 2.4.0(typescript@5.9.3)
|
|
2597
|
+
typescript: 5.9.3
|
|
2598
|
+
transitivePeerDependencies:
|
|
2599
|
+
- supports-color
|
|
2600
|
+
|
|
2601
|
+
'@typescript-eslint/parser@8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)':
|
|
2602
|
+
dependencies:
|
|
2603
|
+
'@typescript-eslint/scope-manager': 8.57.0
|
|
2604
|
+
'@typescript-eslint/types': 8.57.0
|
|
2605
|
+
'@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3)
|
|
2606
|
+
'@typescript-eslint/visitor-keys': 8.57.0
|
|
2607
|
+
debug: 4.4.3
|
|
2608
|
+
eslint: 10.0.3(jiti@2.6.1)
|
|
2609
|
+
typescript: 5.9.3
|
|
2610
|
+
transitivePeerDependencies:
|
|
2611
|
+
- supports-color
|
|
2612
|
+
|
|
2613
|
+
'@typescript-eslint/project-service@8.57.0(typescript@5.9.3)':
|
|
2614
|
+
dependencies:
|
|
2615
|
+
'@typescript-eslint/tsconfig-utils': 8.57.0(typescript@5.9.3)
|
|
2616
|
+
'@typescript-eslint/types': 8.57.0
|
|
2617
|
+
debug: 4.4.3
|
|
2618
|
+
typescript: 5.9.3
|
|
2619
|
+
transitivePeerDependencies:
|
|
2620
|
+
- supports-color
|
|
2621
|
+
|
|
2622
|
+
'@typescript-eslint/scope-manager@8.57.0':
|
|
2623
|
+
dependencies:
|
|
2624
|
+
'@typescript-eslint/types': 8.57.0
|
|
2625
|
+
'@typescript-eslint/visitor-keys': 8.57.0
|
|
2626
|
+
|
|
2627
|
+
'@typescript-eslint/tsconfig-utils@8.57.0(typescript@5.9.3)':
|
|
2628
|
+
dependencies:
|
|
2629
|
+
typescript: 5.9.3
|
|
2630
|
+
|
|
2631
|
+
'@typescript-eslint/type-utils@8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)':
|
|
2632
|
+
dependencies:
|
|
2633
|
+
'@typescript-eslint/types': 8.57.0
|
|
2634
|
+
'@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3)
|
|
2635
|
+
'@typescript-eslint/utils': 8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)
|
|
2636
|
+
debug: 4.4.3
|
|
2637
|
+
eslint: 10.0.3(jiti@2.6.1)
|
|
2638
|
+
ts-api-utils: 2.4.0(typescript@5.9.3)
|
|
2639
|
+
typescript: 5.9.3
|
|
2640
|
+
transitivePeerDependencies:
|
|
2641
|
+
- supports-color
|
|
2642
|
+
|
|
2643
|
+
'@typescript-eslint/types@8.57.0': {}
|
|
2644
|
+
|
|
2645
|
+
'@typescript-eslint/typescript-estree@8.57.0(typescript@5.9.3)':
|
|
2646
|
+
dependencies:
|
|
2647
|
+
'@typescript-eslint/project-service': 8.57.0(typescript@5.9.3)
|
|
2648
|
+
'@typescript-eslint/tsconfig-utils': 8.57.0(typescript@5.9.3)
|
|
2649
|
+
'@typescript-eslint/types': 8.57.0
|
|
2650
|
+
'@typescript-eslint/visitor-keys': 8.57.0
|
|
2651
|
+
debug: 4.4.3
|
|
2652
|
+
minimatch: 10.2.4
|
|
2653
|
+
semver: 7.7.3
|
|
2654
|
+
tinyglobby: 0.2.15
|
|
2655
|
+
ts-api-utils: 2.4.0(typescript@5.9.3)
|
|
2656
|
+
typescript: 5.9.3
|
|
2657
|
+
transitivePeerDependencies:
|
|
2658
|
+
- supports-color
|
|
2659
|
+
|
|
2660
|
+
'@typescript-eslint/utils@8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)':
|
|
2661
|
+
dependencies:
|
|
2662
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.0.3(jiti@2.6.1))
|
|
2663
|
+
'@typescript-eslint/scope-manager': 8.57.0
|
|
2664
|
+
'@typescript-eslint/types': 8.57.0
|
|
2665
|
+
'@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3)
|
|
2666
|
+
eslint: 10.0.3(jiti@2.6.1)
|
|
2667
|
+
typescript: 5.9.3
|
|
2668
|
+
transitivePeerDependencies:
|
|
2669
|
+
- supports-color
|
|
2670
|
+
|
|
2671
|
+
'@typescript-eslint/visitor-keys@8.57.0':
|
|
2672
|
+
dependencies:
|
|
2673
|
+
'@typescript-eslint/types': 8.57.0
|
|
2674
|
+
eslint-visitor-keys: 5.0.1
|
|
2675
|
+
|
|
2676
|
+
'@vitest/coverage-v8@4.0.18(vitest@4.0.18(@types/node@25.4.0)(jiti@2.6.1)(jsdom@27.4.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))':
|
|
2677
|
+
dependencies:
|
|
2678
|
+
'@bcoe/v8-coverage': 1.0.2
|
|
2679
|
+
'@vitest/utils': 4.0.18
|
|
2680
|
+
ast-v8-to-istanbul: 0.3.10
|
|
2681
|
+
istanbul-lib-coverage: 3.2.2
|
|
2682
|
+
istanbul-lib-report: 3.0.1
|
|
2683
|
+
istanbul-reports: 3.2.0
|
|
2684
|
+
magicast: 0.5.1
|
|
2685
|
+
obug: 2.1.1
|
|
2686
|
+
std-env: 3.10.0
|
|
2687
|
+
tinyrainbow: 3.0.3
|
|
2688
|
+
vitest: 4.0.18(@types/node@25.4.0)(jiti@2.6.1)(jsdom@27.4.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)
|
|
2689
|
+
|
|
2690
|
+
'@vitest/expect@4.0.18':
|
|
2691
|
+
dependencies:
|
|
2692
|
+
'@standard-schema/spec': 1.1.0
|
|
2693
|
+
'@types/chai': 5.2.3
|
|
2694
|
+
'@vitest/spy': 4.0.18
|
|
2695
|
+
'@vitest/utils': 4.0.18
|
|
2696
|
+
chai: 6.2.2
|
|
2697
|
+
tinyrainbow: 3.0.3
|
|
2698
|
+
|
|
2699
|
+
'@vitest/mocker@4.0.18(vite@7.2.6(@types/node@25.4.0)(jiti@2.6.1)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))':
|
|
2700
|
+
dependencies:
|
|
2701
|
+
'@vitest/spy': 4.0.18
|
|
2702
|
+
estree-walker: 3.0.3
|
|
2703
|
+
magic-string: 0.30.21
|
|
2704
|
+
optionalDependencies:
|
|
2705
|
+
vite: 7.2.6(@types/node@25.4.0)(jiti@2.6.1)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)
|
|
2706
|
+
|
|
2707
|
+
'@vitest/pretty-format@4.0.18':
|
|
2708
|
+
dependencies:
|
|
2709
|
+
tinyrainbow: 3.0.3
|
|
2710
|
+
|
|
2711
|
+
'@vitest/runner@4.0.18':
|
|
2712
|
+
dependencies:
|
|
2713
|
+
'@vitest/utils': 4.0.18
|
|
2714
|
+
pathe: 2.0.3
|
|
2715
|
+
|
|
2716
|
+
'@vitest/snapshot@4.0.18':
|
|
2717
|
+
dependencies:
|
|
2718
|
+
'@vitest/pretty-format': 4.0.18
|
|
2719
|
+
magic-string: 0.30.21
|
|
2720
|
+
pathe: 2.0.3
|
|
2721
|
+
|
|
2722
|
+
'@vitest/spy@4.0.18': {}
|
|
2723
|
+
|
|
2724
|
+
'@vitest/utils@4.0.18':
|
|
2725
|
+
dependencies:
|
|
2726
|
+
'@vitest/pretty-format': 4.0.18
|
|
2727
|
+
tinyrainbow: 3.0.3
|
|
2728
|
+
|
|
2729
|
+
acorn-jsx@5.3.2(acorn@8.16.0):
|
|
2730
|
+
dependencies:
|
|
2731
|
+
acorn: 8.16.0
|
|
2732
|
+
|
|
2733
|
+
acorn@8.16.0: {}
|
|
2734
|
+
|
|
2735
|
+
agent-base@7.1.4:
|
|
2736
|
+
optional: true
|
|
2737
|
+
|
|
2738
|
+
ajv@6.14.0:
|
|
2739
|
+
dependencies:
|
|
2740
|
+
fast-deep-equal: 3.1.3
|
|
2741
|
+
fast-json-stable-stringify: 2.1.0
|
|
2742
|
+
json-schema-traverse: 0.4.1
|
|
2743
|
+
uri-js: 4.4.1
|
|
2744
|
+
|
|
2745
|
+
ajv@8.18.0:
|
|
2746
|
+
dependencies:
|
|
2747
|
+
fast-deep-equal: 3.1.3
|
|
2748
|
+
fast-uri: 3.1.0
|
|
2749
|
+
json-schema-traverse: 1.0.0
|
|
2750
|
+
require-from-string: 2.0.2
|
|
2751
|
+
|
|
2752
|
+
ansi-escapes@7.2.0:
|
|
2753
|
+
dependencies:
|
|
2754
|
+
environment: 1.1.0
|
|
2755
|
+
|
|
2756
|
+
ansi-regex@5.0.1: {}
|
|
2757
|
+
|
|
2758
|
+
ansi-regex@6.2.2: {}
|
|
2759
|
+
|
|
2760
|
+
ansi-styles@4.3.0:
|
|
2761
|
+
dependencies:
|
|
2762
|
+
color-convert: 2.0.1
|
|
2763
|
+
|
|
2764
|
+
ansi-styles@6.2.3: {}
|
|
2765
|
+
|
|
2766
|
+
argparse@2.0.1: {}
|
|
2767
|
+
|
|
2768
|
+
array-ify@1.0.0: {}
|
|
2769
|
+
|
|
2770
|
+
assertion-error@2.0.1: {}
|
|
2771
|
+
|
|
2772
|
+
ast-v8-to-istanbul@0.3.10:
|
|
2773
|
+
dependencies:
|
|
2774
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
2775
|
+
estree-walker: 3.0.3
|
|
2776
|
+
js-tokens: 9.0.1
|
|
2777
|
+
|
|
2778
|
+
autoprefixer@10.4.23(postcss@8.5.6):
|
|
2779
|
+
dependencies:
|
|
2780
|
+
browserslist: 4.28.1
|
|
2781
|
+
caniuse-lite: 1.0.30001762
|
|
2782
|
+
fraction.js: 5.3.4
|
|
2783
|
+
picocolors: 1.1.1
|
|
2784
|
+
postcss: 8.5.6
|
|
2785
|
+
postcss-value-parser: 4.2.0
|
|
2786
|
+
|
|
2787
|
+
balanced-match@4.0.4: {}
|
|
2788
|
+
|
|
2789
|
+
baseline-browser-mapping@2.9.11: {}
|
|
2790
|
+
|
|
2791
|
+
bidi-js@1.0.3:
|
|
2792
|
+
dependencies:
|
|
2793
|
+
require-from-string: 2.0.2
|
|
2794
|
+
optional: true
|
|
2795
|
+
|
|
2796
|
+
brace-expansion@5.0.4:
|
|
2797
|
+
dependencies:
|
|
2798
|
+
balanced-match: 4.0.4
|
|
2799
|
+
|
|
2800
|
+
braces@3.0.3:
|
|
2801
|
+
dependencies:
|
|
2802
|
+
fill-range: 7.1.1
|
|
2803
|
+
|
|
2804
|
+
browserslist@4.28.1:
|
|
2805
|
+
dependencies:
|
|
2806
|
+
baseline-browser-mapping: 2.9.11
|
|
2807
|
+
caniuse-lite: 1.0.30001762
|
|
2808
|
+
electron-to-chromium: 1.5.267
|
|
2809
|
+
node-releases: 2.0.27
|
|
2810
|
+
update-browserslist-db: 1.2.3(browserslist@4.28.1)
|
|
2811
|
+
|
|
2812
|
+
buffer-from@1.1.2:
|
|
2813
|
+
optional: true
|
|
2814
|
+
|
|
2815
|
+
callsites@3.1.0: {}
|
|
2816
|
+
|
|
2817
|
+
caniuse-lite@1.0.30001762: {}
|
|
2818
|
+
|
|
2819
|
+
chai@6.2.2: {}
|
|
2820
|
+
|
|
2821
|
+
chokidar@4.0.3:
|
|
2822
|
+
dependencies:
|
|
2823
|
+
readdirp: 4.1.2
|
|
2824
|
+
|
|
2825
|
+
cli-cursor@5.0.0:
|
|
2826
|
+
dependencies:
|
|
2827
|
+
restore-cursor: 5.1.0
|
|
2828
|
+
|
|
2829
|
+
cli-truncate@5.1.1:
|
|
2830
|
+
dependencies:
|
|
2831
|
+
slice-ansi: 7.1.2
|
|
2832
|
+
string-width: 8.1.0
|
|
2833
|
+
|
|
2834
|
+
cliui@8.0.1:
|
|
2835
|
+
dependencies:
|
|
2836
|
+
string-width: 4.2.3
|
|
2837
|
+
strip-ansi: 6.0.1
|
|
2838
|
+
wrap-ansi: 7.0.0
|
|
2839
|
+
|
|
2840
|
+
color-convert@2.0.1:
|
|
2841
|
+
dependencies:
|
|
2842
|
+
color-name: 1.1.4
|
|
2843
|
+
|
|
2844
|
+
color-name@1.1.4: {}
|
|
2845
|
+
|
|
2846
|
+
colorette@2.0.20: {}
|
|
2847
|
+
|
|
2848
|
+
commander@14.0.3: {}
|
|
2849
|
+
|
|
2850
|
+
commander@2.20.3:
|
|
2851
|
+
optional: true
|
|
2852
|
+
|
|
2853
|
+
compare-func@2.0.0:
|
|
2854
|
+
dependencies:
|
|
2855
|
+
array-ify: 1.0.0
|
|
2856
|
+
dot-prop: 5.3.0
|
|
2857
|
+
|
|
2858
|
+
conventional-changelog-angular@8.3.0:
|
|
2859
|
+
dependencies:
|
|
2860
|
+
compare-func: 2.0.0
|
|
2861
|
+
|
|
2862
|
+
conventional-changelog-conventionalcommits@9.3.0:
|
|
2863
|
+
dependencies:
|
|
2864
|
+
compare-func: 2.0.0
|
|
2865
|
+
|
|
2866
|
+
conventional-commits-parser@6.3.0:
|
|
2867
|
+
dependencies:
|
|
2868
|
+
'@simple-libs/stream-utils': 1.2.0
|
|
2869
|
+
meow: 13.2.0
|
|
2870
|
+
|
|
2871
|
+
cosmiconfig-typescript-loader@6.2.0(@types/node@25.4.0)(cosmiconfig@9.0.1(typescript@5.9.3))(typescript@5.9.3):
|
|
2872
|
+
dependencies:
|
|
2873
|
+
'@types/node': 25.4.0
|
|
2874
|
+
cosmiconfig: 9.0.1(typescript@5.9.3)
|
|
2875
|
+
jiti: 2.6.1
|
|
2876
|
+
typescript: 5.9.3
|
|
2877
|
+
|
|
2878
|
+
cosmiconfig@9.0.1(typescript@5.9.3):
|
|
2879
|
+
dependencies:
|
|
2880
|
+
env-paths: 2.2.1
|
|
2881
|
+
import-fresh: 3.3.1
|
|
2882
|
+
js-yaml: 4.1.1
|
|
2883
|
+
parse-json: 5.2.0
|
|
2884
|
+
optionalDependencies:
|
|
2885
|
+
typescript: 5.9.3
|
|
2886
|
+
|
|
2887
|
+
cross-spawn@7.0.6:
|
|
2888
|
+
dependencies:
|
|
2889
|
+
path-key: 3.1.1
|
|
2890
|
+
shebang-command: 2.0.0
|
|
2891
|
+
which: 2.0.2
|
|
2892
|
+
|
|
2893
|
+
css-tree@3.1.0:
|
|
2894
|
+
dependencies:
|
|
2895
|
+
mdn-data: 2.12.2
|
|
2896
|
+
source-map-js: 1.2.1
|
|
2897
|
+
optional: true
|
|
2898
|
+
|
|
2899
|
+
cssstyle@5.3.7:
|
|
2900
|
+
dependencies:
|
|
2901
|
+
'@asamuzakjp/css-color': 4.1.1
|
|
2902
|
+
'@csstools/css-syntax-patches-for-csstree': 1.0.22
|
|
2903
|
+
css-tree: 3.1.0
|
|
2904
|
+
lru-cache: 11.2.4
|
|
2905
|
+
optional: true
|
|
2906
|
+
|
|
2907
|
+
data-urls@6.0.0:
|
|
2908
|
+
dependencies:
|
|
2909
|
+
whatwg-mimetype: 4.0.0
|
|
2910
|
+
whatwg-url: 15.1.0
|
|
2911
|
+
optional: true
|
|
2912
|
+
|
|
2913
|
+
debug@4.4.3:
|
|
2914
|
+
dependencies:
|
|
2915
|
+
ms: 2.1.3
|
|
2916
|
+
|
|
2917
|
+
decimal.js@10.6.0:
|
|
2918
|
+
optional: true
|
|
2919
|
+
|
|
2920
|
+
deep-is@0.1.4: {}
|
|
2921
|
+
|
|
2922
|
+
detect-libc@1.0.3:
|
|
2923
|
+
optional: true
|
|
2924
|
+
|
|
2925
|
+
dot-prop@5.3.0:
|
|
2926
|
+
dependencies:
|
|
2927
|
+
is-obj: 2.0.0
|
|
2928
|
+
|
|
2929
|
+
electron-to-chromium@1.5.267: {}
|
|
2930
|
+
|
|
2931
|
+
emoji-regex@10.6.0: {}
|
|
2932
|
+
|
|
2933
|
+
emoji-regex@8.0.0: {}
|
|
2934
|
+
|
|
2935
|
+
entities@6.0.1:
|
|
2936
|
+
optional: true
|
|
2937
|
+
|
|
2938
|
+
env-paths@2.2.1: {}
|
|
2939
|
+
|
|
2940
|
+
environment@1.1.0: {}
|
|
2941
|
+
|
|
2942
|
+
error-ex@1.3.4:
|
|
2943
|
+
dependencies:
|
|
2944
|
+
is-arrayish: 0.2.1
|
|
2945
|
+
|
|
2946
|
+
es-module-lexer@1.7.0: {}
|
|
2947
|
+
|
|
2948
|
+
esbuild@0.25.12:
|
|
2949
|
+
optionalDependencies:
|
|
2950
|
+
'@esbuild/aix-ppc64': 0.25.12
|
|
2951
|
+
'@esbuild/android-arm': 0.25.12
|
|
2952
|
+
'@esbuild/android-arm64': 0.25.12
|
|
2953
|
+
'@esbuild/android-x64': 0.25.12
|
|
2954
|
+
'@esbuild/darwin-arm64': 0.25.12
|
|
2955
|
+
'@esbuild/darwin-x64': 0.25.12
|
|
2956
|
+
'@esbuild/freebsd-arm64': 0.25.12
|
|
2957
|
+
'@esbuild/freebsd-x64': 0.25.12
|
|
2958
|
+
'@esbuild/linux-arm': 0.25.12
|
|
2959
|
+
'@esbuild/linux-arm64': 0.25.12
|
|
2960
|
+
'@esbuild/linux-ia32': 0.25.12
|
|
2961
|
+
'@esbuild/linux-loong64': 0.25.12
|
|
2962
|
+
'@esbuild/linux-mips64el': 0.25.12
|
|
2963
|
+
'@esbuild/linux-ppc64': 0.25.12
|
|
2964
|
+
'@esbuild/linux-riscv64': 0.25.12
|
|
2965
|
+
'@esbuild/linux-s390x': 0.25.12
|
|
2966
|
+
'@esbuild/linux-x64': 0.25.12
|
|
2967
|
+
'@esbuild/netbsd-arm64': 0.25.12
|
|
2968
|
+
'@esbuild/netbsd-x64': 0.25.12
|
|
2969
|
+
'@esbuild/openbsd-arm64': 0.25.12
|
|
2970
|
+
'@esbuild/openbsd-x64': 0.25.12
|
|
2971
|
+
'@esbuild/openharmony-arm64': 0.25.12
|
|
2972
|
+
'@esbuild/sunos-x64': 0.25.12
|
|
2973
|
+
'@esbuild/win32-arm64': 0.25.12
|
|
2974
|
+
'@esbuild/win32-ia32': 0.25.12
|
|
2975
|
+
'@esbuild/win32-x64': 0.25.12
|
|
2976
|
+
|
|
2977
|
+
esbuild@0.27.2:
|
|
2978
|
+
optionalDependencies:
|
|
2979
|
+
'@esbuild/aix-ppc64': 0.27.2
|
|
2980
|
+
'@esbuild/android-arm': 0.27.2
|
|
2981
|
+
'@esbuild/android-arm64': 0.27.2
|
|
2982
|
+
'@esbuild/android-x64': 0.27.2
|
|
2983
|
+
'@esbuild/darwin-arm64': 0.27.2
|
|
2984
|
+
'@esbuild/darwin-x64': 0.27.2
|
|
2985
|
+
'@esbuild/freebsd-arm64': 0.27.2
|
|
2986
|
+
'@esbuild/freebsd-x64': 0.27.2
|
|
2987
|
+
'@esbuild/linux-arm': 0.27.2
|
|
2988
|
+
'@esbuild/linux-arm64': 0.27.2
|
|
2989
|
+
'@esbuild/linux-ia32': 0.27.2
|
|
2990
|
+
'@esbuild/linux-loong64': 0.27.2
|
|
2991
|
+
'@esbuild/linux-mips64el': 0.27.2
|
|
2992
|
+
'@esbuild/linux-ppc64': 0.27.2
|
|
2993
|
+
'@esbuild/linux-riscv64': 0.27.2
|
|
2994
|
+
'@esbuild/linux-s390x': 0.27.2
|
|
2995
|
+
'@esbuild/linux-x64': 0.27.2
|
|
2996
|
+
'@esbuild/netbsd-arm64': 0.27.2
|
|
2997
|
+
'@esbuild/netbsd-x64': 0.27.2
|
|
2998
|
+
'@esbuild/openbsd-arm64': 0.27.2
|
|
2999
|
+
'@esbuild/openbsd-x64': 0.27.2
|
|
3000
|
+
'@esbuild/openharmony-arm64': 0.27.2
|
|
3001
|
+
'@esbuild/sunos-x64': 0.27.2
|
|
3002
|
+
'@esbuild/win32-arm64': 0.27.2
|
|
3003
|
+
'@esbuild/win32-ia32': 0.27.2
|
|
3004
|
+
'@esbuild/win32-x64': 0.27.2
|
|
3005
|
+
optional: true
|
|
3006
|
+
|
|
3007
|
+
escalade@3.2.0: {}
|
|
3008
|
+
|
|
3009
|
+
escape-string-regexp@4.0.0: {}
|
|
3010
|
+
|
|
3011
|
+
eslint-scope@9.1.2:
|
|
3012
|
+
dependencies:
|
|
3013
|
+
'@types/esrecurse': 4.3.1
|
|
3014
|
+
'@types/estree': 1.0.8
|
|
3015
|
+
esrecurse: 4.3.0
|
|
3016
|
+
estraverse: 5.3.0
|
|
3017
|
+
|
|
3018
|
+
eslint-visitor-keys@3.4.3: {}
|
|
3019
|
+
|
|
3020
|
+
eslint-visitor-keys@5.0.1: {}
|
|
3021
|
+
|
|
3022
|
+
eslint@10.0.3(jiti@2.6.1):
|
|
3023
|
+
dependencies:
|
|
3024
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.0.3(jiti@2.6.1))
|
|
3025
|
+
'@eslint-community/regexpp': 4.12.2
|
|
3026
|
+
'@eslint/config-array': 0.23.3
|
|
3027
|
+
'@eslint/config-helpers': 0.5.3
|
|
3028
|
+
'@eslint/core': 1.1.1
|
|
3029
|
+
'@eslint/plugin-kit': 0.6.1
|
|
3030
|
+
'@humanfs/node': 0.16.7
|
|
3031
|
+
'@humanwhocodes/module-importer': 1.0.1
|
|
3032
|
+
'@humanwhocodes/retry': 0.4.3
|
|
3033
|
+
'@types/estree': 1.0.8
|
|
3034
|
+
ajv: 6.14.0
|
|
3035
|
+
cross-spawn: 7.0.6
|
|
3036
|
+
debug: 4.4.3
|
|
3037
|
+
escape-string-regexp: 4.0.0
|
|
3038
|
+
eslint-scope: 9.1.2
|
|
3039
|
+
eslint-visitor-keys: 5.0.1
|
|
3040
|
+
espree: 11.2.0
|
|
3041
|
+
esquery: 1.7.0
|
|
3042
|
+
esutils: 2.0.3
|
|
3043
|
+
fast-deep-equal: 3.1.3
|
|
3044
|
+
file-entry-cache: 8.0.0
|
|
3045
|
+
find-up: 5.0.0
|
|
3046
|
+
glob-parent: 6.0.2
|
|
3047
|
+
ignore: 5.3.2
|
|
3048
|
+
imurmurhash: 0.1.4
|
|
3049
|
+
is-glob: 4.0.3
|
|
3050
|
+
json-stable-stringify-without-jsonify: 1.0.1
|
|
3051
|
+
minimatch: 10.2.4
|
|
3052
|
+
natural-compare: 1.4.0
|
|
3053
|
+
optionator: 0.9.4
|
|
3054
|
+
optionalDependencies:
|
|
3055
|
+
jiti: 2.6.1
|
|
3056
|
+
transitivePeerDependencies:
|
|
3057
|
+
- supports-color
|
|
3058
|
+
|
|
3059
|
+
espree@11.2.0:
|
|
3060
|
+
dependencies:
|
|
3061
|
+
acorn: 8.16.0
|
|
3062
|
+
acorn-jsx: 5.3.2(acorn@8.16.0)
|
|
3063
|
+
eslint-visitor-keys: 5.0.1
|
|
3064
|
+
|
|
3065
|
+
esquery@1.7.0:
|
|
3066
|
+
dependencies:
|
|
3067
|
+
estraverse: 5.3.0
|
|
3068
|
+
|
|
3069
|
+
esrecurse@4.3.0:
|
|
3070
|
+
dependencies:
|
|
3071
|
+
estraverse: 5.3.0
|
|
3072
|
+
|
|
3073
|
+
estraverse@5.3.0: {}
|
|
3074
|
+
|
|
3075
|
+
estree-walker@3.0.3:
|
|
3076
|
+
dependencies:
|
|
3077
|
+
'@types/estree': 1.0.8
|
|
3078
|
+
|
|
3079
|
+
esutils@2.0.3: {}
|
|
3080
|
+
|
|
3081
|
+
eventemitter3@5.0.1: {}
|
|
3082
|
+
|
|
3083
|
+
expect-type@1.3.0: {}
|
|
3084
|
+
|
|
3085
|
+
fast-deep-equal@3.1.3: {}
|
|
3086
|
+
|
|
3087
|
+
fast-json-stable-stringify@2.1.0: {}
|
|
3088
|
+
|
|
3089
|
+
fast-levenshtein@2.0.6: {}
|
|
3090
|
+
|
|
3091
|
+
fast-uri@3.1.0: {}
|
|
3092
|
+
|
|
3093
|
+
fdir@6.5.0(picomatch@4.0.3):
|
|
3094
|
+
optionalDependencies:
|
|
3095
|
+
picomatch: 4.0.3
|
|
3096
|
+
|
|
3097
|
+
file-entry-cache@8.0.0:
|
|
3098
|
+
dependencies:
|
|
3099
|
+
flat-cache: 4.0.1
|
|
3100
|
+
|
|
3101
|
+
fill-range@7.1.1:
|
|
3102
|
+
dependencies:
|
|
3103
|
+
to-regex-range: 5.0.1
|
|
3104
|
+
|
|
3105
|
+
find-up@5.0.0:
|
|
3106
|
+
dependencies:
|
|
3107
|
+
locate-path: 6.0.0
|
|
3108
|
+
path-exists: 4.0.0
|
|
3109
|
+
|
|
3110
|
+
flat-cache@4.0.1:
|
|
3111
|
+
dependencies:
|
|
3112
|
+
flatted: 3.3.3
|
|
3113
|
+
keyv: 4.5.4
|
|
3114
|
+
|
|
3115
|
+
flatted@3.3.3: {}
|
|
3116
|
+
|
|
3117
|
+
fraction.js@5.3.4: {}
|
|
3118
|
+
|
|
3119
|
+
fsevents@2.3.2:
|
|
3120
|
+
optional: true
|
|
3121
|
+
|
|
3122
|
+
fsevents@2.3.3:
|
|
3123
|
+
optional: true
|
|
3124
|
+
|
|
3125
|
+
get-caller-file@2.0.5: {}
|
|
3126
|
+
|
|
3127
|
+
get-east-asian-width@1.4.0: {}
|
|
3128
|
+
|
|
3129
|
+
get-tsconfig@4.13.0:
|
|
3130
|
+
dependencies:
|
|
3131
|
+
resolve-pkg-maps: 1.0.0
|
|
3132
|
+
optional: true
|
|
3133
|
+
|
|
3134
|
+
git-raw-commits@5.0.1(conventional-commits-parser@6.3.0):
|
|
3135
|
+
dependencies:
|
|
3136
|
+
'@conventional-changelog/git-client': 2.6.0(conventional-commits-parser@6.3.0)
|
|
3137
|
+
meow: 13.2.0
|
|
3138
|
+
transitivePeerDependencies:
|
|
3139
|
+
- conventional-commits-filter
|
|
3140
|
+
- conventional-commits-parser
|
|
3141
|
+
|
|
3142
|
+
glob-parent@6.0.2:
|
|
3143
|
+
dependencies:
|
|
3144
|
+
is-glob: 4.0.3
|
|
3145
|
+
|
|
3146
|
+
global-directory@4.0.1:
|
|
3147
|
+
dependencies:
|
|
3148
|
+
ini: 4.1.1
|
|
3149
|
+
|
|
3150
|
+
globals@17.4.0: {}
|
|
3151
|
+
|
|
3152
|
+
has-flag@4.0.0: {}
|
|
3153
|
+
|
|
3154
|
+
html-encoding-sniffer@6.0.0:
|
|
3155
|
+
dependencies:
|
|
3156
|
+
'@exodus/bytes': 1.8.0
|
|
3157
|
+
transitivePeerDependencies:
|
|
3158
|
+
- '@exodus/crypto'
|
|
3159
|
+
optional: true
|
|
3160
|
+
|
|
3161
|
+
html-escaper@2.0.2: {}
|
|
3162
|
+
|
|
3163
|
+
http-proxy-agent@7.0.2:
|
|
3164
|
+
dependencies:
|
|
3165
|
+
agent-base: 7.1.4
|
|
3166
|
+
debug: 4.4.3
|
|
3167
|
+
transitivePeerDependencies:
|
|
3168
|
+
- supports-color
|
|
3169
|
+
optional: true
|
|
3170
|
+
|
|
3171
|
+
https-proxy-agent@7.0.6:
|
|
3172
|
+
dependencies:
|
|
3173
|
+
agent-base: 7.1.4
|
|
3174
|
+
debug: 4.4.3
|
|
3175
|
+
transitivePeerDependencies:
|
|
3176
|
+
- supports-color
|
|
3177
|
+
optional: true
|
|
3178
|
+
|
|
3179
|
+
husky@9.1.7: {}
|
|
3180
|
+
|
|
3181
|
+
ignore@5.3.2: {}
|
|
3182
|
+
|
|
3183
|
+
ignore@7.0.5: {}
|
|
3184
|
+
|
|
3185
|
+
immutable@5.1.4: {}
|
|
3186
|
+
|
|
3187
|
+
import-fresh@3.3.1:
|
|
3188
|
+
dependencies:
|
|
3189
|
+
parent-module: 1.0.1
|
|
3190
|
+
resolve-from: 4.0.0
|
|
3191
|
+
|
|
3192
|
+
import-meta-resolve@4.2.0: {}
|
|
3193
|
+
|
|
3194
|
+
imurmurhash@0.1.4: {}
|
|
3195
|
+
|
|
3196
|
+
ini@4.1.1: {}
|
|
3197
|
+
|
|
3198
|
+
is-arrayish@0.2.1: {}
|
|
3199
|
+
|
|
3200
|
+
is-extglob@2.1.1: {}
|
|
3201
|
+
|
|
3202
|
+
is-fullwidth-code-point@3.0.0: {}
|
|
3203
|
+
|
|
3204
|
+
is-fullwidth-code-point@5.1.0:
|
|
3205
|
+
dependencies:
|
|
3206
|
+
get-east-asian-width: 1.4.0
|
|
3207
|
+
|
|
3208
|
+
is-glob@4.0.3:
|
|
3209
|
+
dependencies:
|
|
3210
|
+
is-extglob: 2.1.1
|
|
3211
|
+
|
|
3212
|
+
is-number@7.0.0: {}
|
|
3213
|
+
|
|
3214
|
+
is-obj@2.0.0: {}
|
|
3215
|
+
|
|
3216
|
+
is-plain-obj@4.1.0: {}
|
|
3217
|
+
|
|
3218
|
+
is-potential-custom-element-name@1.0.1:
|
|
3219
|
+
optional: true
|
|
3220
|
+
|
|
3221
|
+
isexe@2.0.0: {}
|
|
3222
|
+
|
|
3223
|
+
istanbul-lib-coverage@3.2.2: {}
|
|
3224
|
+
|
|
3225
|
+
istanbul-lib-report@3.0.1:
|
|
3226
|
+
dependencies:
|
|
3227
|
+
istanbul-lib-coverage: 3.2.2
|
|
3228
|
+
make-dir: 4.0.0
|
|
3229
|
+
supports-color: 7.2.0
|
|
3230
|
+
|
|
3231
|
+
istanbul-reports@3.2.0:
|
|
3232
|
+
dependencies:
|
|
3233
|
+
html-escaper: 2.0.2
|
|
3234
|
+
istanbul-lib-report: 3.0.1
|
|
3235
|
+
|
|
3236
|
+
jiti@2.6.1: {}
|
|
3237
|
+
|
|
3238
|
+
js-tokens@4.0.0: {}
|
|
3239
|
+
|
|
3240
|
+
js-tokens@9.0.1: {}
|
|
3241
|
+
|
|
3242
|
+
js-yaml@4.1.1:
|
|
3243
|
+
dependencies:
|
|
3244
|
+
argparse: 2.0.1
|
|
3245
|
+
|
|
3246
|
+
jsdom@27.4.0:
|
|
3247
|
+
dependencies:
|
|
3248
|
+
'@acemir/cssom': 0.9.31
|
|
3249
|
+
'@asamuzakjp/dom-selector': 6.7.6
|
|
3250
|
+
'@exodus/bytes': 1.8.0
|
|
3251
|
+
cssstyle: 5.3.7
|
|
3252
|
+
data-urls: 6.0.0
|
|
3253
|
+
decimal.js: 10.6.0
|
|
3254
|
+
html-encoding-sniffer: 6.0.0
|
|
3255
|
+
http-proxy-agent: 7.0.2
|
|
3256
|
+
https-proxy-agent: 7.0.6
|
|
3257
|
+
is-potential-custom-element-name: 1.0.1
|
|
3258
|
+
parse5: 8.0.0
|
|
3259
|
+
saxes: 6.0.0
|
|
3260
|
+
symbol-tree: 3.2.4
|
|
3261
|
+
tough-cookie: 6.0.0
|
|
3262
|
+
w3c-xmlserializer: 5.0.0
|
|
3263
|
+
webidl-conversions: 8.0.1
|
|
3264
|
+
whatwg-mimetype: 4.0.0
|
|
3265
|
+
whatwg-url: 15.1.0
|
|
3266
|
+
ws: 8.19.0
|
|
3267
|
+
xml-name-validator: 5.0.0
|
|
3268
|
+
transitivePeerDependencies:
|
|
3269
|
+
- '@exodus/crypto'
|
|
3270
|
+
- bufferutil
|
|
3271
|
+
- supports-color
|
|
3272
|
+
- utf-8-validate
|
|
3273
|
+
optional: true
|
|
3274
|
+
|
|
3275
|
+
json-buffer@3.0.1: {}
|
|
3276
|
+
|
|
3277
|
+
json-parse-even-better-errors@2.3.1: {}
|
|
3278
|
+
|
|
3279
|
+
json-schema-traverse@0.4.1: {}
|
|
3280
|
+
|
|
3281
|
+
json-schema-traverse@1.0.0: {}
|
|
3282
|
+
|
|
3283
|
+
json-stable-stringify-without-jsonify@1.0.1: {}
|
|
3284
|
+
|
|
3285
|
+
keyv@4.5.4:
|
|
3286
|
+
dependencies:
|
|
3287
|
+
json-buffer: 3.0.1
|
|
3288
|
+
|
|
3289
|
+
levn@0.4.1:
|
|
3290
|
+
dependencies:
|
|
3291
|
+
prelude-ls: 1.2.1
|
|
3292
|
+
type-check: 0.4.0
|
|
3293
|
+
|
|
3294
|
+
lines-and-columns@1.2.4: {}
|
|
3295
|
+
|
|
3296
|
+
lint-staged@16.3.3:
|
|
3297
|
+
dependencies:
|
|
3298
|
+
commander: 14.0.3
|
|
3299
|
+
listr2: 9.0.5
|
|
3300
|
+
micromatch: 4.0.8
|
|
3301
|
+
string-argv: 0.3.2
|
|
3302
|
+
tinyexec: 1.0.2
|
|
3303
|
+
yaml: 2.8.2
|
|
3304
|
+
|
|
3305
|
+
listr2@9.0.5:
|
|
3306
|
+
dependencies:
|
|
3307
|
+
cli-truncate: 5.1.1
|
|
3308
|
+
colorette: 2.0.20
|
|
3309
|
+
eventemitter3: 5.0.1
|
|
3310
|
+
log-update: 6.1.0
|
|
3311
|
+
rfdc: 1.4.1
|
|
3312
|
+
wrap-ansi: 9.0.2
|
|
3313
|
+
|
|
3314
|
+
locate-path@6.0.0:
|
|
3315
|
+
dependencies:
|
|
3316
|
+
p-locate: 5.0.0
|
|
3317
|
+
|
|
3318
|
+
lodash.camelcase@4.3.0: {}
|
|
3319
|
+
|
|
3320
|
+
lodash.kebabcase@4.1.1: {}
|
|
3321
|
+
|
|
3322
|
+
lodash.mergewith@4.6.2: {}
|
|
3323
|
+
|
|
3324
|
+
lodash.snakecase@4.1.1: {}
|
|
3325
|
+
|
|
3326
|
+
lodash.startcase@4.4.0: {}
|
|
3327
|
+
|
|
3328
|
+
lodash.upperfirst@4.3.1: {}
|
|
3329
|
+
|
|
3330
|
+
log-update@6.1.0:
|
|
3331
|
+
dependencies:
|
|
3332
|
+
ansi-escapes: 7.2.0
|
|
3333
|
+
cli-cursor: 5.0.0
|
|
3334
|
+
slice-ansi: 7.1.2
|
|
3335
|
+
strip-ansi: 7.1.2
|
|
3336
|
+
wrap-ansi: 9.0.2
|
|
3337
|
+
|
|
3338
|
+
lru-cache@11.2.4:
|
|
3339
|
+
optional: true
|
|
3340
|
+
|
|
3341
|
+
magic-string@0.30.21:
|
|
3342
|
+
dependencies:
|
|
3343
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
3344
|
+
|
|
3345
|
+
magicast@0.5.1:
|
|
3346
|
+
dependencies:
|
|
3347
|
+
'@babel/parser': 7.28.5
|
|
3348
|
+
'@babel/types': 7.28.5
|
|
3349
|
+
source-map-js: 1.2.1
|
|
3350
|
+
|
|
3351
|
+
make-dir@4.0.0:
|
|
3352
|
+
dependencies:
|
|
3353
|
+
semver: 7.7.3
|
|
3354
|
+
|
|
3355
|
+
mdn-data@2.12.2:
|
|
3356
|
+
optional: true
|
|
3357
|
+
|
|
3358
|
+
meow@13.2.0: {}
|
|
3359
|
+
|
|
3360
|
+
micromatch@4.0.8:
|
|
3361
|
+
dependencies:
|
|
3362
|
+
braces: 3.0.3
|
|
3363
|
+
picomatch: 2.3.1
|
|
3364
|
+
|
|
3365
|
+
mimic-function@5.0.1: {}
|
|
3366
|
+
|
|
3367
|
+
minimatch@10.2.4:
|
|
3368
|
+
dependencies:
|
|
3369
|
+
brace-expansion: 5.0.4
|
|
3370
|
+
|
|
3371
|
+
minimist@1.2.8: {}
|
|
3372
|
+
|
|
3373
|
+
ms@2.1.3: {}
|
|
3374
|
+
|
|
3375
|
+
nanoid@3.3.11: {}
|
|
3376
|
+
|
|
3377
|
+
natural-compare@1.4.0: {}
|
|
3378
|
+
|
|
3379
|
+
node-addon-api@7.1.1:
|
|
3380
|
+
optional: true
|
|
3381
|
+
|
|
3382
|
+
node-releases@2.0.27: {}
|
|
3383
|
+
|
|
3384
|
+
obug@2.1.1: {}
|
|
3385
|
+
|
|
3386
|
+
onetime@7.0.0:
|
|
3387
|
+
dependencies:
|
|
3388
|
+
mimic-function: 5.0.1
|
|
3389
|
+
|
|
3390
|
+
optionator@0.9.4:
|
|
3391
|
+
dependencies:
|
|
3392
|
+
deep-is: 0.1.4
|
|
3393
|
+
fast-levenshtein: 2.0.6
|
|
3394
|
+
levn: 0.4.1
|
|
3395
|
+
prelude-ls: 1.2.1
|
|
3396
|
+
type-check: 0.4.0
|
|
3397
|
+
word-wrap: 1.2.5
|
|
3398
|
+
|
|
3399
|
+
p-limit@3.1.0:
|
|
3400
|
+
dependencies:
|
|
3401
|
+
yocto-queue: 0.1.0
|
|
3402
|
+
|
|
3403
|
+
p-locate@5.0.0:
|
|
3404
|
+
dependencies:
|
|
3405
|
+
p-limit: 3.1.0
|
|
3406
|
+
|
|
3407
|
+
parent-module@1.0.1:
|
|
3408
|
+
dependencies:
|
|
3409
|
+
callsites: 3.1.0
|
|
3410
|
+
|
|
3411
|
+
parse-json@5.2.0:
|
|
3412
|
+
dependencies:
|
|
3413
|
+
'@babel/code-frame': 7.29.0
|
|
3414
|
+
error-ex: 1.3.4
|
|
3415
|
+
json-parse-even-better-errors: 2.3.1
|
|
3416
|
+
lines-and-columns: 1.2.4
|
|
3417
|
+
|
|
3418
|
+
parse5@8.0.0:
|
|
3419
|
+
dependencies:
|
|
3420
|
+
entities: 6.0.1
|
|
3421
|
+
optional: true
|
|
3422
|
+
|
|
3423
|
+
path-exists@4.0.0: {}
|
|
3424
|
+
|
|
3425
|
+
path-key@3.1.1: {}
|
|
3426
|
+
|
|
3427
|
+
pathe@2.0.3: {}
|
|
3428
|
+
|
|
3429
|
+
picocolors@1.1.1: {}
|
|
3430
|
+
|
|
3431
|
+
picomatch@2.3.1: {}
|
|
3432
|
+
|
|
3433
|
+
picomatch@4.0.3: {}
|
|
3434
|
+
|
|
3435
|
+
playwright-core@1.58.2: {}
|
|
3436
|
+
|
|
3437
|
+
playwright@1.58.2:
|
|
3438
|
+
dependencies:
|
|
3439
|
+
playwright-core: 1.58.2
|
|
3440
|
+
optionalDependencies:
|
|
3441
|
+
fsevents: 2.3.2
|
|
3442
|
+
|
|
3443
|
+
postcss-value-parser@4.2.0: {}
|
|
3444
|
+
|
|
3445
|
+
postcss@8.5.6:
|
|
3446
|
+
dependencies:
|
|
3447
|
+
nanoid: 3.3.11
|
|
3448
|
+
picocolors: 1.1.1
|
|
3449
|
+
source-map-js: 1.2.1
|
|
3450
|
+
|
|
3451
|
+
prelude-ls@1.2.1: {}
|
|
3452
|
+
|
|
3453
|
+
prettier@3.8.1: {}
|
|
3454
|
+
|
|
3455
|
+
punycode@2.3.1: {}
|
|
3456
|
+
|
|
3457
|
+
readdirp@4.1.2: {}
|
|
3458
|
+
|
|
3459
|
+
require-directory@2.1.1: {}
|
|
3460
|
+
|
|
3461
|
+
require-from-string@2.0.2: {}
|
|
3462
|
+
|
|
3463
|
+
resolve-from@4.0.0: {}
|
|
3464
|
+
|
|
3465
|
+
resolve-from@5.0.0: {}
|
|
3466
|
+
|
|
3467
|
+
resolve-pkg-maps@1.0.0:
|
|
3468
|
+
optional: true
|
|
3469
|
+
|
|
3470
|
+
restore-cursor@5.1.0:
|
|
3471
|
+
dependencies:
|
|
3472
|
+
onetime: 7.0.0
|
|
3473
|
+
signal-exit: 4.1.0
|
|
3474
|
+
|
|
3475
|
+
rfdc@1.4.1: {}
|
|
3476
|
+
|
|
3477
|
+
rollup@4.54.0:
|
|
3478
|
+
dependencies:
|
|
3479
|
+
'@types/estree': 1.0.8
|
|
3480
|
+
optionalDependencies:
|
|
3481
|
+
'@rollup/rollup-android-arm-eabi': 4.54.0
|
|
3482
|
+
'@rollup/rollup-android-arm64': 4.54.0
|
|
3483
|
+
'@rollup/rollup-darwin-arm64': 4.54.0
|
|
3484
|
+
'@rollup/rollup-darwin-x64': 4.54.0
|
|
3485
|
+
'@rollup/rollup-freebsd-arm64': 4.54.0
|
|
3486
|
+
'@rollup/rollup-freebsd-x64': 4.54.0
|
|
3487
|
+
'@rollup/rollup-linux-arm-gnueabihf': 4.54.0
|
|
3488
|
+
'@rollup/rollup-linux-arm-musleabihf': 4.54.0
|
|
3489
|
+
'@rollup/rollup-linux-arm64-gnu': 4.54.0
|
|
3490
|
+
'@rollup/rollup-linux-arm64-musl': 4.54.0
|
|
3491
|
+
'@rollup/rollup-linux-loong64-gnu': 4.54.0
|
|
3492
|
+
'@rollup/rollup-linux-ppc64-gnu': 4.54.0
|
|
3493
|
+
'@rollup/rollup-linux-riscv64-gnu': 4.54.0
|
|
3494
|
+
'@rollup/rollup-linux-riscv64-musl': 4.54.0
|
|
3495
|
+
'@rollup/rollup-linux-s390x-gnu': 4.54.0
|
|
3496
|
+
'@rollup/rollup-linux-x64-gnu': 4.54.0
|
|
3497
|
+
'@rollup/rollup-linux-x64-musl': 4.54.0
|
|
3498
|
+
'@rollup/rollup-openharmony-arm64': 4.54.0
|
|
3499
|
+
'@rollup/rollup-win32-arm64-msvc': 4.54.0
|
|
3500
|
+
'@rollup/rollup-win32-ia32-msvc': 4.54.0
|
|
3501
|
+
'@rollup/rollup-win32-x64-gnu': 4.54.0
|
|
3502
|
+
'@rollup/rollup-win32-x64-msvc': 4.54.0
|
|
3503
|
+
fsevents: 2.3.3
|
|
3504
|
+
|
|
3505
|
+
sass@1.97.1:
|
|
3506
|
+
dependencies:
|
|
3507
|
+
chokidar: 4.0.3
|
|
3508
|
+
immutable: 5.1.4
|
|
3509
|
+
source-map-js: 1.2.1
|
|
3510
|
+
optionalDependencies:
|
|
3511
|
+
'@parcel/watcher': 2.5.1
|
|
3512
|
+
|
|
3513
|
+
saxes@6.0.0:
|
|
3514
|
+
dependencies:
|
|
3515
|
+
xmlchars: 2.2.0
|
|
3516
|
+
optional: true
|
|
3517
|
+
|
|
3518
|
+
semver@7.7.3: {}
|
|
3519
|
+
|
|
3520
|
+
shebang-command@2.0.0:
|
|
3521
|
+
dependencies:
|
|
3522
|
+
shebang-regex: 3.0.0
|
|
3523
|
+
|
|
3524
|
+
shebang-regex@3.0.0: {}
|
|
3525
|
+
|
|
3526
|
+
siginfo@2.0.0: {}
|
|
3527
|
+
|
|
3528
|
+
signal-exit@4.1.0: {}
|
|
3529
|
+
|
|
3530
|
+
slice-ansi@7.1.2:
|
|
3531
|
+
dependencies:
|
|
3532
|
+
ansi-styles: 6.2.3
|
|
3533
|
+
is-fullwidth-code-point: 5.1.0
|
|
3534
|
+
|
|
3535
|
+
source-map-js@1.2.1: {}
|
|
3536
|
+
|
|
3537
|
+
source-map-support@0.5.21:
|
|
3538
|
+
dependencies:
|
|
3539
|
+
buffer-from: 1.1.2
|
|
3540
|
+
source-map: 0.6.1
|
|
3541
|
+
optional: true
|
|
3542
|
+
|
|
3543
|
+
source-map@0.6.1:
|
|
3544
|
+
optional: true
|
|
3545
|
+
|
|
3546
|
+
stackback@0.0.2: {}
|
|
3547
|
+
|
|
3548
|
+
std-env@3.10.0: {}
|
|
3549
|
+
|
|
3550
|
+
string-argv@0.3.2: {}
|
|
3551
|
+
|
|
3552
|
+
string-width@4.2.3:
|
|
3553
|
+
dependencies:
|
|
3554
|
+
emoji-regex: 8.0.0
|
|
3555
|
+
is-fullwidth-code-point: 3.0.0
|
|
3556
|
+
strip-ansi: 6.0.1
|
|
3557
|
+
|
|
3558
|
+
string-width@7.2.0:
|
|
3559
|
+
dependencies:
|
|
3560
|
+
emoji-regex: 10.6.0
|
|
3561
|
+
get-east-asian-width: 1.4.0
|
|
3562
|
+
strip-ansi: 7.1.2
|
|
3563
|
+
|
|
3564
|
+
string-width@8.1.0:
|
|
3565
|
+
dependencies:
|
|
3566
|
+
get-east-asian-width: 1.4.0
|
|
3567
|
+
strip-ansi: 7.1.2
|
|
3568
|
+
|
|
3569
|
+
strip-ansi@6.0.1:
|
|
3570
|
+
dependencies:
|
|
3571
|
+
ansi-regex: 5.0.1
|
|
3572
|
+
|
|
3573
|
+
strip-ansi@7.1.2:
|
|
3574
|
+
dependencies:
|
|
3575
|
+
ansi-regex: 6.2.2
|
|
3576
|
+
|
|
3577
|
+
supports-color@7.2.0:
|
|
3578
|
+
dependencies:
|
|
3579
|
+
has-flag: 4.0.0
|
|
3580
|
+
|
|
3581
|
+
symbol-tree@3.2.4:
|
|
3582
|
+
optional: true
|
|
3583
|
+
|
|
3584
|
+
terser@5.44.1:
|
|
3585
|
+
dependencies:
|
|
3586
|
+
'@jridgewell/source-map': 0.3.11
|
|
3587
|
+
acorn: 8.16.0
|
|
3588
|
+
commander: 2.20.3
|
|
3589
|
+
source-map-support: 0.5.21
|
|
3590
|
+
optional: true
|
|
3591
|
+
|
|
3592
|
+
tinybench@2.9.0: {}
|
|
3593
|
+
|
|
3594
|
+
tinyexec@1.0.2: {}
|
|
3595
|
+
|
|
3596
|
+
tinyglobby@0.2.15:
|
|
3597
|
+
dependencies:
|
|
3598
|
+
fdir: 6.5.0(picomatch@4.0.3)
|
|
3599
|
+
picomatch: 4.0.3
|
|
3600
|
+
|
|
3601
|
+
tinyrainbow@3.0.3: {}
|
|
3602
|
+
|
|
3603
|
+
tldts-core@7.0.19:
|
|
3604
|
+
optional: true
|
|
3605
|
+
|
|
3606
|
+
tldts@7.0.19:
|
|
3607
|
+
dependencies:
|
|
3608
|
+
tldts-core: 7.0.19
|
|
3609
|
+
optional: true
|
|
3610
|
+
|
|
3611
|
+
to-regex-range@5.0.1:
|
|
3612
|
+
dependencies:
|
|
3613
|
+
is-number: 7.0.0
|
|
3614
|
+
|
|
3615
|
+
tough-cookie@6.0.0:
|
|
3616
|
+
dependencies:
|
|
3617
|
+
tldts: 7.0.19
|
|
3618
|
+
optional: true
|
|
3619
|
+
|
|
3620
|
+
tr46@6.0.0:
|
|
3621
|
+
dependencies:
|
|
3622
|
+
punycode: 2.3.1
|
|
3623
|
+
optional: true
|
|
3624
|
+
|
|
3625
|
+
ts-api-utils@2.4.0(typescript@5.9.3):
|
|
3626
|
+
dependencies:
|
|
3627
|
+
typescript: 5.9.3
|
|
3628
|
+
|
|
3629
|
+
tsx@4.21.0:
|
|
3630
|
+
dependencies:
|
|
3631
|
+
esbuild: 0.27.2
|
|
3632
|
+
get-tsconfig: 4.13.0
|
|
3633
|
+
optionalDependencies:
|
|
3634
|
+
fsevents: 2.3.3
|
|
3635
|
+
optional: true
|
|
3636
|
+
|
|
3637
|
+
type-check@0.4.0:
|
|
3638
|
+
dependencies:
|
|
3639
|
+
prelude-ls: 1.2.1
|
|
3640
|
+
|
|
3641
|
+
typescript-eslint@8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3):
|
|
3642
|
+
dependencies:
|
|
3643
|
+
'@typescript-eslint/eslint-plugin': 8.57.0(@typescript-eslint/parser@8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3))(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)
|
|
3644
|
+
'@typescript-eslint/parser': 8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)
|
|
3645
|
+
'@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3)
|
|
3646
|
+
'@typescript-eslint/utils': 8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)
|
|
3647
|
+
eslint: 10.0.3(jiti@2.6.1)
|
|
3648
|
+
typescript: 5.9.3
|
|
3649
|
+
transitivePeerDependencies:
|
|
3650
|
+
- supports-color
|
|
3651
|
+
|
|
3652
|
+
typescript@5.9.3: {}
|
|
3653
|
+
|
|
3654
|
+
undici-types@7.18.2: {}
|
|
3655
|
+
|
|
3656
|
+
update-browserslist-db@1.2.3(browserslist@4.28.1):
|
|
3657
|
+
dependencies:
|
|
3658
|
+
browserslist: 4.28.1
|
|
3659
|
+
escalade: 3.2.0
|
|
3660
|
+
picocolors: 1.1.1
|
|
3661
|
+
|
|
3662
|
+
uri-js@4.4.1:
|
|
3663
|
+
dependencies:
|
|
3664
|
+
punycode: 2.3.1
|
|
3665
|
+
|
|
3666
|
+
vite@7.2.6(@types/node@25.4.0)(jiti@2.6.1)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2):
|
|
3667
|
+
dependencies:
|
|
3668
|
+
esbuild: 0.25.12
|
|
3669
|
+
fdir: 6.5.0(picomatch@4.0.3)
|
|
3670
|
+
picomatch: 4.0.3
|
|
3671
|
+
postcss: 8.5.6
|
|
3672
|
+
rollup: 4.54.0
|
|
3673
|
+
tinyglobby: 0.2.15
|
|
3674
|
+
optionalDependencies:
|
|
3675
|
+
'@types/node': 25.4.0
|
|
3676
|
+
fsevents: 2.3.3
|
|
3677
|
+
jiti: 2.6.1
|
|
3678
|
+
sass: 1.97.1
|
|
3679
|
+
terser: 5.44.1
|
|
3680
|
+
tsx: 4.21.0
|
|
3681
|
+
yaml: 2.8.2
|
|
3682
|
+
|
|
3683
|
+
vitest@4.0.18(@types/node@25.4.0)(jiti@2.6.1)(jsdom@27.4.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2):
|
|
3684
|
+
dependencies:
|
|
3685
|
+
'@vitest/expect': 4.0.18
|
|
3686
|
+
'@vitest/mocker': 4.0.18(vite@7.2.6(@types/node@25.4.0)(jiti@2.6.1)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))
|
|
3687
|
+
'@vitest/pretty-format': 4.0.18
|
|
3688
|
+
'@vitest/runner': 4.0.18
|
|
3689
|
+
'@vitest/snapshot': 4.0.18
|
|
3690
|
+
'@vitest/spy': 4.0.18
|
|
3691
|
+
'@vitest/utils': 4.0.18
|
|
3692
|
+
es-module-lexer: 1.7.0
|
|
3693
|
+
expect-type: 1.3.0
|
|
3694
|
+
magic-string: 0.30.21
|
|
3695
|
+
obug: 2.1.1
|
|
3696
|
+
pathe: 2.0.3
|
|
3697
|
+
picomatch: 4.0.3
|
|
3698
|
+
std-env: 3.10.0
|
|
3699
|
+
tinybench: 2.9.0
|
|
3700
|
+
tinyexec: 1.0.2
|
|
3701
|
+
tinyglobby: 0.2.15
|
|
3702
|
+
tinyrainbow: 3.0.3
|
|
3703
|
+
vite: 7.2.6(@types/node@25.4.0)(jiti@2.6.1)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)
|
|
3704
|
+
why-is-node-running: 2.3.0
|
|
3705
|
+
optionalDependencies:
|
|
3706
|
+
'@types/node': 25.4.0
|
|
3707
|
+
jsdom: 27.4.0
|
|
3708
|
+
transitivePeerDependencies:
|
|
3709
|
+
- jiti
|
|
3710
|
+
- less
|
|
3711
|
+
- lightningcss
|
|
3712
|
+
- msw
|
|
3713
|
+
- sass
|
|
3714
|
+
- sass-embedded
|
|
3715
|
+
- stylus
|
|
3716
|
+
- sugarss
|
|
3717
|
+
- terser
|
|
3718
|
+
- tsx
|
|
3719
|
+
- yaml
|
|
3720
|
+
|
|
3721
|
+
w3c-xmlserializer@5.0.0:
|
|
3722
|
+
dependencies:
|
|
3723
|
+
xml-name-validator: 5.0.0
|
|
3724
|
+
optional: true
|
|
3725
|
+
|
|
3726
|
+
webidl-conversions@8.0.1:
|
|
3727
|
+
optional: true
|
|
3728
|
+
|
|
3729
|
+
whatwg-mimetype@4.0.0:
|
|
3730
|
+
optional: true
|
|
3731
|
+
|
|
3732
|
+
whatwg-url@15.1.0:
|
|
3733
|
+
dependencies:
|
|
3734
|
+
tr46: 6.0.0
|
|
3735
|
+
webidl-conversions: 8.0.1
|
|
3736
|
+
optional: true
|
|
3737
|
+
|
|
3738
|
+
which@2.0.2:
|
|
3739
|
+
dependencies:
|
|
3740
|
+
isexe: 2.0.0
|
|
3741
|
+
|
|
3742
|
+
why-is-node-running@2.3.0:
|
|
3743
|
+
dependencies:
|
|
3744
|
+
siginfo: 2.0.0
|
|
3745
|
+
stackback: 0.0.2
|
|
3746
|
+
|
|
3747
|
+
word-wrap@1.2.5: {}
|
|
3748
|
+
|
|
3749
|
+
wrap-ansi@7.0.0:
|
|
3750
|
+
dependencies:
|
|
3751
|
+
ansi-styles: 4.3.0
|
|
3752
|
+
string-width: 4.2.3
|
|
3753
|
+
strip-ansi: 6.0.1
|
|
3754
|
+
|
|
3755
|
+
wrap-ansi@9.0.2:
|
|
3756
|
+
dependencies:
|
|
3757
|
+
ansi-styles: 6.2.3
|
|
3758
|
+
string-width: 7.2.0
|
|
3759
|
+
strip-ansi: 7.1.2
|
|
3760
|
+
|
|
3761
|
+
ws@8.19.0:
|
|
3762
|
+
optional: true
|
|
3763
|
+
|
|
3764
|
+
xml-name-validator@5.0.0:
|
|
3765
|
+
optional: true
|
|
3766
|
+
|
|
3767
|
+
xmlchars@2.2.0:
|
|
3768
|
+
optional: true
|
|
3769
|
+
|
|
3770
|
+
y18n@5.0.8: {}
|
|
3771
|
+
|
|
3772
|
+
yaml@2.8.2: {}
|
|
3773
|
+
|
|
3774
|
+
yargs-parser@21.1.1: {}
|
|
3775
|
+
|
|
3776
|
+
yargs@17.7.2:
|
|
3777
|
+
dependencies:
|
|
3778
|
+
cliui: 8.0.1
|
|
3779
|
+
escalade: 3.2.0
|
|
3780
|
+
get-caller-file: 2.0.5
|
|
3781
|
+
require-directory: 2.1.1
|
|
3782
|
+
string-width: 4.2.3
|
|
3783
|
+
y18n: 5.0.8
|
|
3784
|
+
yargs-parser: 21.1.1
|
|
3785
|
+
|
|
3786
|
+
yocto-queue@0.1.0: {}
|