@xswap-link/sdk 0.15.0 → 0.15.2
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/.eslintrc.json +1 -0
- package/CHANGELOG.md +16 -0
- package/README.md +22 -4
- package/dist/index.d.mts +47 -1
- package/dist/index.d.ts +47 -1
- package/dist/index.global.js +94 -88
- package/dist/index.js +1378 -985
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1256 -863
- package/dist/index.mjs.map +1 -1
- package/example/index.html +12 -0
- package/example/package.json +24 -0
- package/example/pnpm-lock.yaml +1164 -0
- package/example/src/App.tsx +421 -0
- package/example/src/main.tsx +8 -0
- package/example/vite.config.ts +9 -0
- package/package.json +2 -1
- package/postcss.config.js +2 -0
- package/src/assets/icons/ChevronRightThinIcon.tsx +23 -0
- package/src/assets/icons/InfoThinIcon.tsx +33 -0
- package/src/assets/icons/RedirectThinIcon.tsx +15 -0
- package/src/assets/icons/index.ts +3 -0
- package/src/components/Swap/Header/index.tsx +3 -1
- package/src/components/Swap/HistoryView/ActivityCard/index.tsx +2 -2
- package/src/components/Swap/ReorderButton/ReorderButton.tsx +4 -1
- package/src/components/Swap/SettingsView/Delivery/index.tsx +3 -3
- package/src/components/Swap/SettingsView/InfiniteApproval/index.tsx +3 -3
- package/src/components/Swap/SettingsView/Slippage/index.tsx +5 -3
- package/src/components/Swap/SwapView/ConfirmationView/TokenTiles/index.tsx +5 -2
- package/src/components/Swap/SwapView/ConfirmationView/TxOverview/Header/index.tsx +1 -1
- package/src/components/Swap/SwapView/ConfirmationView/TxOverview/index.tsx +12 -7
- package/src/components/Swap/SwapView/ConfirmationView/TxProgress/index.tsx +136 -0
- package/src/components/Swap/SwapView/ConfirmationView/TxResult/index.tsx +108 -26
- package/src/components/Swap/SwapView/ConfirmationView/index.tsx +19 -4
- package/src/components/Swap/SwapView/FeesPanel/Fees/index.tsx +12 -6
- package/src/components/Swap/SwapView/FeesPanel/index.tsx +3 -1
- package/src/components/Swap/SwapView/SwapPanel/AmountPanel/index.tsx +9 -0
- package/src/components/Swap/SwapView/SwapPanel/TokenPanel/ChainPicker/index.tsx +1 -1
- package/src/components/Swap/SwapView/SwapPanel/TokenPanel/TokenPicker/NetworkFilter/index.tsx +52 -42
- package/src/components/Swap/SwapView/SwapPanel/TokenPanel/TokenPicker/TokenItem/index.tsx +1 -1
- package/src/components/Swap/SwapView/SwapPanel/TokenPanel/TokenPicker/index.tsx +5 -5
- package/src/components/Swap/SwapView/SwapPanel/TokenPanel/index.tsx +24 -2
- package/src/components/Swap/SwapView/SwapPanel/WalletPanel/index.tsx +14 -3
- package/src/components/Swap/SwapView/SwapPanel/index.tsx +14 -2
- package/src/components/Swap/SwapView/WalletPicker/index.tsx +1 -1
- package/src/components/ToggleButton/index.tsx +5 -3
- package/src/components/TxModal/index.tsx +2 -6
- package/src/components/global.css +85 -0
- package/src/config/fonts.ts +15 -2
- package/src/context/SwapProvider.tsx +22 -7
- package/src/context/TxUIWrapper.tsx +34 -4
- package/src/hooks/index.ts +1 -0
- package/src/hooks/useCrossChainDelivery.ts +143 -0
- package/src/models/Route.ts +13 -0
- package/src/models/TransactionDelivery.ts +40 -0
- package/src/models/index.ts +1 -0
- package/src/services/api.ts +23 -0
- package/tailwind.config.js +3 -9
|
@@ -0,0 +1,1164 @@
|
|
|
1
|
+
lockfileVersion: '9.0'
|
|
2
|
+
|
|
3
|
+
settings:
|
|
4
|
+
autoInstallPeers: true
|
|
5
|
+
excludeLinksFromLockfile: false
|
|
6
|
+
|
|
7
|
+
importers:
|
|
8
|
+
|
|
9
|
+
.:
|
|
10
|
+
dependencies:
|
|
11
|
+
'@xswap-link/sdk':
|
|
12
|
+
specifier: link:..
|
|
13
|
+
version: link:..
|
|
14
|
+
buffer:
|
|
15
|
+
specifier: ^6.0.3
|
|
16
|
+
version: 6.0.3
|
|
17
|
+
react:
|
|
18
|
+
specifier: ^18.2.0
|
|
19
|
+
version: 18.3.1
|
|
20
|
+
react-dom:
|
|
21
|
+
specifier: ^18.2.0
|
|
22
|
+
version: 18.3.1(react@18.3.1)
|
|
23
|
+
devDependencies:
|
|
24
|
+
'@types/react':
|
|
25
|
+
specifier: ^18.2.0
|
|
26
|
+
version: 18.3.31
|
|
27
|
+
'@types/react-dom':
|
|
28
|
+
specifier: ^18.2.0
|
|
29
|
+
version: 18.3.7(@types/react@18.3.31)
|
|
30
|
+
'@vitejs/plugin-react':
|
|
31
|
+
specifier: ^4.3.4
|
|
32
|
+
version: 4.7.0(vite@6.4.3)
|
|
33
|
+
vite:
|
|
34
|
+
specifier: ^6.0.0
|
|
35
|
+
version: 6.4.3
|
|
36
|
+
|
|
37
|
+
packages:
|
|
38
|
+
|
|
39
|
+
'@babel/code-frame@7.29.7':
|
|
40
|
+
resolution: {integrity: sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==}
|
|
41
|
+
engines: {node: '>=6.9.0'}
|
|
42
|
+
|
|
43
|
+
'@babel/compat-data@7.29.7':
|
|
44
|
+
resolution: {integrity: sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==}
|
|
45
|
+
engines: {node: '>=6.9.0'}
|
|
46
|
+
|
|
47
|
+
'@babel/core@7.29.7':
|
|
48
|
+
resolution: {integrity: sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==}
|
|
49
|
+
engines: {node: '>=6.9.0'}
|
|
50
|
+
|
|
51
|
+
'@babel/generator@7.29.8':
|
|
52
|
+
resolution: {integrity: sha512-gZbepsdh3WDtgZKWL+vTPh71LSBrm/Y4/QDZBVCcYfmeTEEuoOYwlSy+G1StfJg+/Zy550u/3TATbm7qDbbMtg==}
|
|
53
|
+
engines: {node: '>=6.9.0'}
|
|
54
|
+
|
|
55
|
+
'@babel/helper-compilation-targets@7.29.7':
|
|
56
|
+
resolution: {integrity: sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==}
|
|
57
|
+
engines: {node: '>=6.9.0'}
|
|
58
|
+
|
|
59
|
+
'@babel/helper-globals@7.29.7':
|
|
60
|
+
resolution: {integrity: sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==}
|
|
61
|
+
engines: {node: '>=6.9.0'}
|
|
62
|
+
|
|
63
|
+
'@babel/helper-module-imports@7.29.7':
|
|
64
|
+
resolution: {integrity: sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==}
|
|
65
|
+
engines: {node: '>=6.9.0'}
|
|
66
|
+
|
|
67
|
+
'@babel/helper-module-transforms@7.29.7':
|
|
68
|
+
resolution: {integrity: sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==}
|
|
69
|
+
engines: {node: '>=6.9.0'}
|
|
70
|
+
peerDependencies:
|
|
71
|
+
'@babel/core': ^7.0.0
|
|
72
|
+
|
|
73
|
+
'@babel/helper-plugin-utils@7.29.7':
|
|
74
|
+
resolution: {integrity: sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==}
|
|
75
|
+
engines: {node: '>=6.9.0'}
|
|
76
|
+
|
|
77
|
+
'@babel/helper-string-parser@7.29.7':
|
|
78
|
+
resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==}
|
|
79
|
+
engines: {node: '>=6.9.0'}
|
|
80
|
+
|
|
81
|
+
'@babel/helper-validator-identifier@7.29.7':
|
|
82
|
+
resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==}
|
|
83
|
+
engines: {node: '>=6.9.0'}
|
|
84
|
+
|
|
85
|
+
'@babel/helper-validator-option@7.29.7':
|
|
86
|
+
resolution: {integrity: sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==}
|
|
87
|
+
engines: {node: '>=6.9.0'}
|
|
88
|
+
|
|
89
|
+
'@babel/helpers@7.29.7':
|
|
90
|
+
resolution: {integrity: sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==}
|
|
91
|
+
engines: {node: '>=6.9.0'}
|
|
92
|
+
|
|
93
|
+
'@babel/parser@7.29.8':
|
|
94
|
+
resolution: {integrity: sha512-E8lTAYNB1KW+FH+VGJuZM1ioAx2E6oVlvQFRrf5P8ZZmsiJXYAD9vTFV7yyEURNzgh1dFqMZuO6tUwcARbqFCA==}
|
|
95
|
+
engines: {node: '>=6.0.0'}
|
|
96
|
+
hasBin: true
|
|
97
|
+
|
|
98
|
+
'@babel/plugin-transform-react-jsx-self@7.29.7':
|
|
99
|
+
resolution: {integrity: sha512-TL0hMc9xzy86VD31nUiwzd5otRAcyEPcsegCxolO0PvcXuH1v0kECe/UIznYFihpkvU5wg/jk4v0TTEFfm53fw==}
|
|
100
|
+
engines: {node: '>=6.9.0'}
|
|
101
|
+
peerDependencies:
|
|
102
|
+
'@babel/core': ^7.0.0-0
|
|
103
|
+
|
|
104
|
+
'@babel/plugin-transform-react-jsx-source@7.29.7':
|
|
105
|
+
resolution: {integrity: sha512-06IyK09H3wi4cGbhDBwp5gUGo0IKtnYa8tyTiephirPCK6fbobVGiXMMI5zLQ4aKEYP3wZ3ArU44o+8KMrSG/Q==}
|
|
106
|
+
engines: {node: '>=6.9.0'}
|
|
107
|
+
peerDependencies:
|
|
108
|
+
'@babel/core': ^7.0.0-0
|
|
109
|
+
|
|
110
|
+
'@babel/template@7.29.7':
|
|
111
|
+
resolution: {integrity: sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==}
|
|
112
|
+
engines: {node: '>=6.9.0'}
|
|
113
|
+
|
|
114
|
+
'@babel/traverse@7.29.8':
|
|
115
|
+
resolution: {integrity: sha512-I5z7H3bf/41ktsNVLtpN0wAa336HkqIHQ5BuPLEhTkt1jVSyZpeNKIzTgEWmlxjdg81R0IgUCcaE+Ok3NvrfZg==}
|
|
116
|
+
engines: {node: '>=6.9.0'}
|
|
117
|
+
|
|
118
|
+
'@babel/types@7.29.8':
|
|
119
|
+
resolution: {integrity: sha512-Vj1jF3cPfxg7OAfoI7QnVKLoILlm2JF9pnVHrX8qx7AHMiYWT+NDAA7jChlNgRS4WTLc/fD1lXLmPixluj+3Gg==}
|
|
120
|
+
engines: {node: '>=6.9.0'}
|
|
121
|
+
|
|
122
|
+
'@esbuild/aix-ppc64@0.25.12':
|
|
123
|
+
resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==}
|
|
124
|
+
engines: {node: '>=18'}
|
|
125
|
+
cpu: [ppc64]
|
|
126
|
+
os: [aix]
|
|
127
|
+
|
|
128
|
+
'@esbuild/android-arm64@0.25.12':
|
|
129
|
+
resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
|
|
130
|
+
engines: {node: '>=18'}
|
|
131
|
+
cpu: [arm64]
|
|
132
|
+
os: [android]
|
|
133
|
+
|
|
134
|
+
'@esbuild/android-arm@0.25.12':
|
|
135
|
+
resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
|
|
136
|
+
engines: {node: '>=18'}
|
|
137
|
+
cpu: [arm]
|
|
138
|
+
os: [android]
|
|
139
|
+
|
|
140
|
+
'@esbuild/android-x64@0.25.12':
|
|
141
|
+
resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
|
|
142
|
+
engines: {node: '>=18'}
|
|
143
|
+
cpu: [x64]
|
|
144
|
+
os: [android]
|
|
145
|
+
|
|
146
|
+
'@esbuild/darwin-arm64@0.25.12':
|
|
147
|
+
resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
|
|
148
|
+
engines: {node: '>=18'}
|
|
149
|
+
cpu: [arm64]
|
|
150
|
+
os: [darwin]
|
|
151
|
+
|
|
152
|
+
'@esbuild/darwin-x64@0.25.12':
|
|
153
|
+
resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
|
|
154
|
+
engines: {node: '>=18'}
|
|
155
|
+
cpu: [x64]
|
|
156
|
+
os: [darwin]
|
|
157
|
+
|
|
158
|
+
'@esbuild/freebsd-arm64@0.25.12':
|
|
159
|
+
resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
|
|
160
|
+
engines: {node: '>=18'}
|
|
161
|
+
cpu: [arm64]
|
|
162
|
+
os: [freebsd]
|
|
163
|
+
|
|
164
|
+
'@esbuild/freebsd-x64@0.25.12':
|
|
165
|
+
resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
|
|
166
|
+
engines: {node: '>=18'}
|
|
167
|
+
cpu: [x64]
|
|
168
|
+
os: [freebsd]
|
|
169
|
+
|
|
170
|
+
'@esbuild/linux-arm64@0.25.12':
|
|
171
|
+
resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
|
|
172
|
+
engines: {node: '>=18'}
|
|
173
|
+
cpu: [arm64]
|
|
174
|
+
os: [linux]
|
|
175
|
+
|
|
176
|
+
'@esbuild/linux-arm@0.25.12':
|
|
177
|
+
resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
|
|
178
|
+
engines: {node: '>=18'}
|
|
179
|
+
cpu: [arm]
|
|
180
|
+
os: [linux]
|
|
181
|
+
|
|
182
|
+
'@esbuild/linux-ia32@0.25.12':
|
|
183
|
+
resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
|
|
184
|
+
engines: {node: '>=18'}
|
|
185
|
+
cpu: [ia32]
|
|
186
|
+
os: [linux]
|
|
187
|
+
|
|
188
|
+
'@esbuild/linux-loong64@0.25.12':
|
|
189
|
+
resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
|
|
190
|
+
engines: {node: '>=18'}
|
|
191
|
+
cpu: [loong64]
|
|
192
|
+
os: [linux]
|
|
193
|
+
|
|
194
|
+
'@esbuild/linux-mips64el@0.25.12':
|
|
195
|
+
resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
|
|
196
|
+
engines: {node: '>=18'}
|
|
197
|
+
cpu: [mips64el]
|
|
198
|
+
os: [linux]
|
|
199
|
+
|
|
200
|
+
'@esbuild/linux-ppc64@0.25.12':
|
|
201
|
+
resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
|
|
202
|
+
engines: {node: '>=18'}
|
|
203
|
+
cpu: [ppc64]
|
|
204
|
+
os: [linux]
|
|
205
|
+
|
|
206
|
+
'@esbuild/linux-riscv64@0.25.12':
|
|
207
|
+
resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
|
|
208
|
+
engines: {node: '>=18'}
|
|
209
|
+
cpu: [riscv64]
|
|
210
|
+
os: [linux]
|
|
211
|
+
|
|
212
|
+
'@esbuild/linux-s390x@0.25.12':
|
|
213
|
+
resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
|
|
214
|
+
engines: {node: '>=18'}
|
|
215
|
+
cpu: [s390x]
|
|
216
|
+
os: [linux]
|
|
217
|
+
|
|
218
|
+
'@esbuild/linux-x64@0.25.12':
|
|
219
|
+
resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
|
|
220
|
+
engines: {node: '>=18'}
|
|
221
|
+
cpu: [x64]
|
|
222
|
+
os: [linux]
|
|
223
|
+
|
|
224
|
+
'@esbuild/netbsd-arm64@0.25.12':
|
|
225
|
+
resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
|
|
226
|
+
engines: {node: '>=18'}
|
|
227
|
+
cpu: [arm64]
|
|
228
|
+
os: [netbsd]
|
|
229
|
+
|
|
230
|
+
'@esbuild/netbsd-x64@0.25.12':
|
|
231
|
+
resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
|
|
232
|
+
engines: {node: '>=18'}
|
|
233
|
+
cpu: [x64]
|
|
234
|
+
os: [netbsd]
|
|
235
|
+
|
|
236
|
+
'@esbuild/openbsd-arm64@0.25.12':
|
|
237
|
+
resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
|
|
238
|
+
engines: {node: '>=18'}
|
|
239
|
+
cpu: [arm64]
|
|
240
|
+
os: [openbsd]
|
|
241
|
+
|
|
242
|
+
'@esbuild/openbsd-x64@0.25.12':
|
|
243
|
+
resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
|
|
244
|
+
engines: {node: '>=18'}
|
|
245
|
+
cpu: [x64]
|
|
246
|
+
os: [openbsd]
|
|
247
|
+
|
|
248
|
+
'@esbuild/openharmony-arm64@0.25.12':
|
|
249
|
+
resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
|
|
250
|
+
engines: {node: '>=18'}
|
|
251
|
+
cpu: [arm64]
|
|
252
|
+
os: [openharmony]
|
|
253
|
+
|
|
254
|
+
'@esbuild/sunos-x64@0.25.12':
|
|
255
|
+
resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
|
|
256
|
+
engines: {node: '>=18'}
|
|
257
|
+
cpu: [x64]
|
|
258
|
+
os: [sunos]
|
|
259
|
+
|
|
260
|
+
'@esbuild/win32-arm64@0.25.12':
|
|
261
|
+
resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
|
|
262
|
+
engines: {node: '>=18'}
|
|
263
|
+
cpu: [arm64]
|
|
264
|
+
os: [win32]
|
|
265
|
+
|
|
266
|
+
'@esbuild/win32-ia32@0.25.12':
|
|
267
|
+
resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
|
|
268
|
+
engines: {node: '>=18'}
|
|
269
|
+
cpu: [ia32]
|
|
270
|
+
os: [win32]
|
|
271
|
+
|
|
272
|
+
'@esbuild/win32-x64@0.25.12':
|
|
273
|
+
resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
|
|
274
|
+
engines: {node: '>=18'}
|
|
275
|
+
cpu: [x64]
|
|
276
|
+
os: [win32]
|
|
277
|
+
|
|
278
|
+
'@jridgewell/gen-mapping@0.3.13':
|
|
279
|
+
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
|
|
280
|
+
|
|
281
|
+
'@jridgewell/remapping@2.3.5':
|
|
282
|
+
resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
|
|
283
|
+
|
|
284
|
+
'@jridgewell/resolve-uri@3.1.2':
|
|
285
|
+
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
|
|
286
|
+
engines: {node: '>=6.0.0'}
|
|
287
|
+
|
|
288
|
+
'@jridgewell/sourcemap-codec@1.5.5':
|
|
289
|
+
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
|
|
290
|
+
|
|
291
|
+
'@jridgewell/trace-mapping@0.3.31':
|
|
292
|
+
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
|
|
293
|
+
|
|
294
|
+
'@napi-rs/lzma-linux-x64-gnu@1.5.1':
|
|
295
|
+
resolution: {integrity: sha512-oTXEIha4SsuXdTA4Iyskj0kpdx2yVXdhd75c2v3xGrHFfVMsbhTPZU/nMPL4sWKo4pBHm3aucLaqGlF696dTyQ==}
|
|
296
|
+
engines: {node: ^22.20 || ^24.12 || >=25}
|
|
297
|
+
cpu: [x64]
|
|
298
|
+
os: [linux]
|
|
299
|
+
|
|
300
|
+
'@rolldown/pluginutils@1.0.0-beta.27':
|
|
301
|
+
resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==}
|
|
302
|
+
|
|
303
|
+
'@rollup/rollup-android-arm-eabi@4.62.4':
|
|
304
|
+
resolution: {integrity: sha512-RrPokAb7dmbxFoeO3TloqHyOjgye8RkBhSqmp4aJMIex4c9r46ZstPnleDQOq1t46VOVjwIuwNogIqbodV1Vvg==}
|
|
305
|
+
cpu: [arm]
|
|
306
|
+
os: [android]
|
|
307
|
+
|
|
308
|
+
'@rollup/rollup-android-arm64@4.62.4':
|
|
309
|
+
resolution: {integrity: sha512-JKuJc+pnpks2pjy7L/N3v/cAkZxYlnmuZoD840ldbMI5KDbC4iO9NKwPKYdjYFCMAIIlBzYSFHxIJVYzRo2/8A==}
|
|
310
|
+
cpu: [arm64]
|
|
311
|
+
os: [android]
|
|
312
|
+
|
|
313
|
+
'@rollup/rollup-darwin-arm64@4.62.4':
|
|
314
|
+
resolution: {integrity: sha512-krw5uS2STmvJ02x0uTXHbqQNuz+9eZ1iw+qXk9dmW2gvV4jV7O2hEoOnuhFrpOPiel1mBFtqbxYZZtC46hXLOw==}
|
|
315
|
+
cpu: [arm64]
|
|
316
|
+
os: [darwin]
|
|
317
|
+
|
|
318
|
+
'@rollup/rollup-darwin-x64@4.62.4':
|
|
319
|
+
resolution: {integrity: sha512-wsTxtgApb4PrOsNJIm0FZ1h3WvCC+k9uxLJ4ad75hgoS4NiRes2SoJFlDAyMwiUY8IssDqGcHbXuN0sx1tfF1A==}
|
|
320
|
+
cpu: [x64]
|
|
321
|
+
os: [darwin]
|
|
322
|
+
|
|
323
|
+
'@rollup/rollup-freebsd-arm64@4.62.4':
|
|
324
|
+
resolution: {integrity: sha512-GUOnQlyZe3yAXhWOtOMsn5Qkrv5E5mZXa0thbARWi5Ei2szlVXJFQhddZ4HbAzh8q92w5twp+CQvs/eFanz9YQ==}
|
|
325
|
+
cpu: [arm64]
|
|
326
|
+
os: [freebsd]
|
|
327
|
+
|
|
328
|
+
'@rollup/rollup-freebsd-x64@4.62.4':
|
|
329
|
+
resolution: {integrity: sha512-/Y7f3QuxjzPKsjA/rfEDa3+0vXqyjmJ50Ln8dPpCmWkKTrUoWHG1cWhTqaAMLob2m2nESWuC7yGrREz019Ztqg==}
|
|
330
|
+
cpu: [x64]
|
|
331
|
+
os: [freebsd]
|
|
332
|
+
|
|
333
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.62.4':
|
|
334
|
+
resolution: {integrity: sha512-81wiiX3v7aqy+T+bT61TJ78yJjRquqFFTTbAPt08imfQQzkPIW8t6aJbkTagtCCrXMNc9D66+geqlK7ydLPNqA==}
|
|
335
|
+
cpu: [arm]
|
|
336
|
+
os: [linux]
|
|
337
|
+
|
|
338
|
+
'@rollup/rollup-linux-arm-musleabihf@4.62.4':
|
|
339
|
+
resolution: {integrity: sha512-9kmDIvNZqdoHOBZgNtpTBeLWYO/LVipM3H/j62P8848/l/VPEQL6N3uxU9pvP1oZAsXyC2MEnFP3ovRjo7WYNQ==}
|
|
340
|
+
cpu: [arm]
|
|
341
|
+
os: [linux]
|
|
342
|
+
|
|
343
|
+
'@rollup/rollup-linux-arm64-gnu@4.62.4':
|
|
344
|
+
resolution: {integrity: sha512-CcnXHWnXg69g+DX5VWL3FHts3qMRN2uVEHX+BZvGLdd07/gXkn3ePjYtO1LDJvxkGKVHMclKBRa1QUTH+6toYQ==}
|
|
345
|
+
cpu: [arm64]
|
|
346
|
+
os: [linux]
|
|
347
|
+
|
|
348
|
+
'@rollup/rollup-linux-arm64-musl@4.62.4':
|
|
349
|
+
resolution: {integrity: sha512-iFOibiHnTRuhrWLlRsOQFdZJJIa7S8OwkneJr4ocALP16u5yk6lWLINFwhHaEqBFMsKDUZofLkGos7+CPzGB3g==}
|
|
350
|
+
cpu: [arm64]
|
|
351
|
+
os: [linux]
|
|
352
|
+
|
|
353
|
+
'@rollup/rollup-linux-loong64-gnu@4.62.4':
|
|
354
|
+
resolution: {integrity: sha512-XnWYMI7euHlb5a871xPja+Gm7DRCFU+FGRrtS2sMq9N8FvqtpagUy6gD4YOemC5MRk9xbh8+jYMEJbigFQwsgA==}
|
|
355
|
+
cpu: [loong64]
|
|
356
|
+
os: [linux]
|
|
357
|
+
|
|
358
|
+
'@rollup/rollup-linux-loong64-musl@4.62.4':
|
|
359
|
+
resolution: {integrity: sha512-qGDAlO0U8xedCcsdRm9oaoQY8DAx/QT7uIxJWhCdx0ceIWX783UC9QSYkdpzAe29wNiVfp24+bZdQmn49o45SQ==}
|
|
360
|
+
cpu: [loong64]
|
|
361
|
+
os: [linux]
|
|
362
|
+
|
|
363
|
+
'@rollup/rollup-linux-ppc64-gnu@4.62.4':
|
|
364
|
+
resolution: {integrity: sha512-ru4H6ezD7ysA5EiEK6qkkaEb4modH8CTej6kUy/gQi20u3kB3G7Zn8snXXkeJSCOFKG/rbPPtM/+9Wgas1961w==}
|
|
365
|
+
cpu: [ppc64]
|
|
366
|
+
os: [linux]
|
|
367
|
+
|
|
368
|
+
'@rollup/rollup-linux-ppc64-musl@4.62.4':
|
|
369
|
+
resolution: {integrity: sha512-2W4MO5WQVJnbJaZdvDb9rhBDuFU1nKIepPFpJUBsTh2k1YY2g+ODViaWuyOAjQ5cOP7NvrvLzt3wvHOoiAvc7w==}
|
|
370
|
+
cpu: [ppc64]
|
|
371
|
+
os: [linux]
|
|
372
|
+
|
|
373
|
+
'@rollup/rollup-linux-riscv64-gnu@4.62.4':
|
|
374
|
+
resolution: {integrity: sha512-+fxjfuoAmVMCYV5QyjoIpu0cp5DOiOTeqYFk1AVaxGr+/ravWLX89XfQmptsoWcaVy/TGf2hexzbUOrCQIL1CQ==}
|
|
375
|
+
cpu: [riscv64]
|
|
376
|
+
os: [linux]
|
|
377
|
+
|
|
378
|
+
'@rollup/rollup-linux-riscv64-musl@4.62.4':
|
|
379
|
+
resolution: {integrity: sha512-jTn8JfHGL4djjFxPuM06LmNUJDsst2jeVlsd9OmIH6zc5sC9K6rIuO4YajXatLUpBmBKl6b35ro1QZocLi+tcA==}
|
|
380
|
+
cpu: [riscv64]
|
|
381
|
+
os: [linux]
|
|
382
|
+
|
|
383
|
+
'@rollup/rollup-linux-s390x-gnu@4.62.4':
|
|
384
|
+
resolution: {integrity: sha512-oCJCJL4pXsoDcP2QZ+JVlPTIRc6266zsIaeJJsWImmF7HO0W8nb6HuSgZlMWxJwaPf8ehbSw8yo0EUw925hKsA==}
|
|
385
|
+
cpu: [s390x]
|
|
386
|
+
os: [linux]
|
|
387
|
+
|
|
388
|
+
'@rollup/rollup-linux-x64-gnu@4.62.4':
|
|
389
|
+
resolution: {integrity: sha512-W69hukhZ3KKNRCaMIEzKvcFye42hh0FE1+YoYaf5+Ikacuftoco6yO/xouz0hc5d5W/s3yBro5jRiuEE/Q5vUw==}
|
|
390
|
+
cpu: [x64]
|
|
391
|
+
os: [linux]
|
|
392
|
+
|
|
393
|
+
'@rollup/rollup-linux-x64-musl@4.62.4':
|
|
394
|
+
resolution: {integrity: sha512-qiXbGG2jkjXhzXpsFZSR2Xpb8DN/UaxYsbb/STbuR/6fpaDgRmmaq1B/LmtF2wQFOFOSsK2jdE0RZ3a0zHn4QA==}
|
|
395
|
+
cpu: [x64]
|
|
396
|
+
os: [linux]
|
|
397
|
+
|
|
398
|
+
'@rollup/rollup-openbsd-x64@4.62.4':
|
|
399
|
+
resolution: {integrity: sha512-nWeM//hxv8mIo6jD7Hu4o48DVmV9pbV6gsKaWU+4NFyqHoPKwrkRiZGLKUhOBk8qNmDmpwFtPKg80Bo/Tn4xiQ==}
|
|
400
|
+
cpu: [x64]
|
|
401
|
+
os: [openbsd]
|
|
402
|
+
|
|
403
|
+
'@rollup/rollup-openharmony-arm64@4.62.4':
|
|
404
|
+
resolution: {integrity: sha512-s62SQ/vgsRSvMwDkOEfTqfgASF0f26ZNaQuTA6Aok5lrikf89yI2W0gFHvZb2Jpgc6N8JnOKZgCK2iciO3CsxQ==}
|
|
405
|
+
cpu: [arm64]
|
|
406
|
+
os: [openharmony]
|
|
407
|
+
|
|
408
|
+
'@rollup/rollup-win32-arm64-msvc@4.62.4':
|
|
409
|
+
resolution: {integrity: sha512-J6wGf8TVGbXJq+HH+ttTvrcfNKPbuZecV6KT1B8I18BC5IURUh5kl4Yl5OEP5eFIUoI5BWxCsyYMhFsDx8kekw==}
|
|
410
|
+
cpu: [arm64]
|
|
411
|
+
os: [win32]
|
|
412
|
+
|
|
413
|
+
'@rollup/rollup-win32-ia32-msvc@4.62.4':
|
|
414
|
+
resolution: {integrity: sha512-zmfrQd/0wu6oJs8Vq8KwY/YtsKSsLtKe/HwAP4Wqy8LhWjeT55fHRAkOhYQ12wI3ayS4Tt12d5CDRD7N96SAYQ==}
|
|
415
|
+
cpu: [ia32]
|
|
416
|
+
os: [win32]
|
|
417
|
+
|
|
418
|
+
'@rollup/rollup-win32-x64-gnu@4.62.4':
|
|
419
|
+
resolution: {integrity: sha512-qPzHqdj9rfUD+w79dtE07zi/kFwKyCJqplp5K5ygeLTp7jLpAoc16OAH39HSmRC9UpozaecsleI8uAdEj6v2yw==}
|
|
420
|
+
cpu: [x64]
|
|
421
|
+
os: [win32]
|
|
422
|
+
|
|
423
|
+
'@rollup/rollup-win32-x64-msvc@4.62.4':
|
|
424
|
+
resolution: {integrity: sha512-zD6NdeWEByGE9QF9vCrlJ5YQB4oq9q91kPZS37Jwj5hOkvR1lTBSpsKhKDw4IJtbQ35LsTS1HD9DZYGKIshU1Q==}
|
|
425
|
+
cpu: [x64]
|
|
426
|
+
os: [win32]
|
|
427
|
+
|
|
428
|
+
'@types/babel__core@7.20.5':
|
|
429
|
+
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
|
|
430
|
+
|
|
431
|
+
'@types/babel__generator@7.27.0':
|
|
432
|
+
resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==}
|
|
433
|
+
|
|
434
|
+
'@types/babel__template@7.4.4':
|
|
435
|
+
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
|
|
436
|
+
|
|
437
|
+
'@types/babel__traverse@7.28.0':
|
|
438
|
+
resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
|
|
439
|
+
|
|
440
|
+
'@types/estree@1.0.9':
|
|
441
|
+
resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==}
|
|
442
|
+
|
|
443
|
+
'@types/prop-types@15.7.15':
|
|
444
|
+
resolution: {integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==}
|
|
445
|
+
|
|
446
|
+
'@types/react-dom@18.3.7':
|
|
447
|
+
resolution: {integrity: sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==}
|
|
448
|
+
peerDependencies:
|
|
449
|
+
'@types/react': ^18.0.0
|
|
450
|
+
|
|
451
|
+
'@types/react@18.3.31':
|
|
452
|
+
resolution: {integrity: sha512-vfEqpXTvwT91yhmwdfouStN2hSKwTvyRs8qpLfADyrq/kxDw0hZM7Wk9Ug1FELj8hIby+S/+kQCSRFF32nv2Qw==}
|
|
453
|
+
|
|
454
|
+
'@vitejs/plugin-react@4.7.0':
|
|
455
|
+
resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==}
|
|
456
|
+
engines: {node: ^14.18.0 || >=16.0.0}
|
|
457
|
+
peerDependencies:
|
|
458
|
+
vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
|
|
459
|
+
|
|
460
|
+
base64-js@1.5.1:
|
|
461
|
+
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
|
|
462
|
+
|
|
463
|
+
baseline-browser-mapping@2.11.15:
|
|
464
|
+
resolution: {integrity: sha512-FwMjJJ7HnyZpWe+oWxegG0fezZyBZUagI5LZEoO3GCbtbKNwRfMH9Ue5d5v01PNePBy1QSfPSDTTeVL0Hb9EzA==}
|
|
465
|
+
engines: {node: '>=6.0.0'}
|
|
466
|
+
hasBin: true
|
|
467
|
+
|
|
468
|
+
browserslist@4.28.8:
|
|
469
|
+
resolution: {integrity: sha512-V2NpofLblG64mfOtSgDhOJESZEGogzDMBv/q+W6oc4LXWP/q75eOXoOaaOu1EOadB9U4Bwx/e0yzbvwKH8zalA==}
|
|
470
|
+
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
471
|
+
hasBin: true
|
|
472
|
+
|
|
473
|
+
buffer@6.0.3:
|
|
474
|
+
resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
|
|
475
|
+
|
|
476
|
+
caniuse-lite@1.0.30001809:
|
|
477
|
+
resolution: {integrity: sha512-xxWVywk6a6Arlk+hymeycyn/VgqEfLDxupvhH/xiY5SJ/18kmi9o6MiO320DCUzypORHLtvh0I4i04tUhCNHNQ==}
|
|
478
|
+
|
|
479
|
+
convert-source-map@2.0.0:
|
|
480
|
+
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
|
|
481
|
+
|
|
482
|
+
csstype@3.2.3:
|
|
483
|
+
resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
|
|
484
|
+
|
|
485
|
+
debug@4.4.3:
|
|
486
|
+
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
|
|
487
|
+
engines: {node: '>=6.0'}
|
|
488
|
+
peerDependencies:
|
|
489
|
+
supports-color: '*'
|
|
490
|
+
peerDependenciesMeta:
|
|
491
|
+
supports-color:
|
|
492
|
+
optional: true
|
|
493
|
+
|
|
494
|
+
electron-to-chromium@1.5.408:
|
|
495
|
+
resolution: {integrity: sha512-SLoprcYpJ/OH2v2ps0+N5biv9H4/KBT3+YmmDew64TwK5y9j2wv7pMOFY7IorVkyMtEyLSCRlXKLsNlakeAlPw==}
|
|
496
|
+
|
|
497
|
+
esbuild@0.25.12:
|
|
498
|
+
resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
|
|
499
|
+
engines: {node: '>=18'}
|
|
500
|
+
hasBin: true
|
|
501
|
+
|
|
502
|
+
escalade@3.2.0:
|
|
503
|
+
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
|
|
504
|
+
engines: {node: '>=6'}
|
|
505
|
+
|
|
506
|
+
fdir@6.5.0:
|
|
507
|
+
resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
|
|
508
|
+
engines: {node: '>=12.0.0'}
|
|
509
|
+
peerDependencies:
|
|
510
|
+
picomatch: ^3 || ^4
|
|
511
|
+
peerDependenciesMeta:
|
|
512
|
+
picomatch:
|
|
513
|
+
optional: true
|
|
514
|
+
|
|
515
|
+
fsevents@2.3.3:
|
|
516
|
+
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
517
|
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
518
|
+
os: [darwin]
|
|
519
|
+
|
|
520
|
+
gensync@1.0.0-beta.2:
|
|
521
|
+
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
|
|
522
|
+
engines: {node: '>=6.9.0'}
|
|
523
|
+
|
|
524
|
+
ieee754@1.2.1:
|
|
525
|
+
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
|
|
526
|
+
|
|
527
|
+
js-tokens@4.0.0:
|
|
528
|
+
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
|
529
|
+
|
|
530
|
+
jsesc@3.1.0:
|
|
531
|
+
resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
|
|
532
|
+
engines: {node: '>=6'}
|
|
533
|
+
hasBin: true
|
|
534
|
+
|
|
535
|
+
json5@2.2.3:
|
|
536
|
+
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
|
|
537
|
+
engines: {node: '>=6'}
|
|
538
|
+
hasBin: true
|
|
539
|
+
|
|
540
|
+
loose-envify@1.4.0:
|
|
541
|
+
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
|
|
542
|
+
hasBin: true
|
|
543
|
+
|
|
544
|
+
lru-cache@5.1.1:
|
|
545
|
+
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
|
546
|
+
|
|
547
|
+
ms@2.1.3:
|
|
548
|
+
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
549
|
+
|
|
550
|
+
nanoid@3.3.18:
|
|
551
|
+
resolution: {integrity: sha512-DTg4MJbGMWkfi6VZFdNt2/caMbQy4Ou+Op/hJQvGEWcnVfoA1QA+xzRKAzw9jD6+GVOOeYr/mIcuDSdug6F6+w==}
|
|
552
|
+
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
553
|
+
hasBin: true
|
|
554
|
+
|
|
555
|
+
node-releases@2.0.53:
|
|
556
|
+
resolution: {integrity: sha512-D9UOmYG3UH1V+ENW56t5QXBwJw1YEY18ruVeus89Rw+SyIgjPkCO84bRzO3uNIYosJbNwiabWVn48o3uJLjxFQ==}
|
|
557
|
+
engines: {node: '>=18'}
|
|
558
|
+
|
|
559
|
+
picocolors@1.1.1:
|
|
560
|
+
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
561
|
+
|
|
562
|
+
picomatch@4.0.5:
|
|
563
|
+
resolution: {integrity: sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==}
|
|
564
|
+
engines: {node: '>=12'}
|
|
565
|
+
|
|
566
|
+
postcss@8.5.26:
|
|
567
|
+
resolution: {integrity: sha512-u82N74LFzG8ca+dD8puPnplTXoGH4fTPpVGuIbt36G3qvNlkvfD0lEAZSxaly3KX8TS/L1A1gsCEmvKmBcVbkQ==}
|
|
568
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
569
|
+
|
|
570
|
+
react-dom@18.3.1:
|
|
571
|
+
resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
|
|
572
|
+
peerDependencies:
|
|
573
|
+
react: ^18.3.1
|
|
574
|
+
|
|
575
|
+
react-refresh@0.17.0:
|
|
576
|
+
resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==}
|
|
577
|
+
engines: {node: '>=0.10.0'}
|
|
578
|
+
|
|
579
|
+
react@18.3.1:
|
|
580
|
+
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
|
|
581
|
+
engines: {node: '>=0.10.0'}
|
|
582
|
+
|
|
583
|
+
rollup@4.62.4:
|
|
584
|
+
resolution: {integrity: sha512-RXOqwaPsBGjMNMa4sQjDjHieHEZDFoj/Rdr46l2MU5DfEs16wHJPC2RPTPHWhNl+M3aI472LLqFkFKut4SblOg==}
|
|
585
|
+
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
|
586
|
+
hasBin: true
|
|
587
|
+
|
|
588
|
+
scheduler@0.23.2:
|
|
589
|
+
resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
|
|
590
|
+
|
|
591
|
+
semver@6.3.1:
|
|
592
|
+
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
|
|
593
|
+
hasBin: true
|
|
594
|
+
|
|
595
|
+
source-map-js@1.2.1:
|
|
596
|
+
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
597
|
+
engines: {node: '>=0.10.0'}
|
|
598
|
+
|
|
599
|
+
tinyglobby@0.2.17:
|
|
600
|
+
resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==}
|
|
601
|
+
engines: {node: '>=12.0.0'}
|
|
602
|
+
|
|
603
|
+
update-browserslist-db@1.3.1:
|
|
604
|
+
resolution: {integrity: sha512-ZZ61DsRsOnakl74HAmp3oSN4aXUmEWXf+i/yv0h7tIBfICc3VdrFErQKUUKPgu3AMsTUMbcongALEN4l6GSUrQ==}
|
|
605
|
+
hasBin: true
|
|
606
|
+
peerDependencies:
|
|
607
|
+
browserslist: '>= 4.21.0'
|
|
608
|
+
|
|
609
|
+
vite@6.4.3:
|
|
610
|
+
resolution: {integrity: sha512-NTKlcQjlAK7MlQoyb6LgaqHc8sso/pVyUJYWMws3jg21uTJw/LddqIFPcPqP6PzpgbIcZyKI85sFE4HBrQDA8A==}
|
|
611
|
+
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
|
|
612
|
+
hasBin: true
|
|
613
|
+
peerDependencies:
|
|
614
|
+
'@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
|
|
615
|
+
jiti: '>=1.21.0'
|
|
616
|
+
less: '*'
|
|
617
|
+
lightningcss: ^1.21.0
|
|
618
|
+
sass: '*'
|
|
619
|
+
sass-embedded: '*'
|
|
620
|
+
stylus: '*'
|
|
621
|
+
sugarss: '*'
|
|
622
|
+
terser: ^5.16.0
|
|
623
|
+
tsx: ^4.8.1
|
|
624
|
+
yaml: ^2.4.2
|
|
625
|
+
peerDependenciesMeta:
|
|
626
|
+
'@types/node':
|
|
627
|
+
optional: true
|
|
628
|
+
jiti:
|
|
629
|
+
optional: true
|
|
630
|
+
less:
|
|
631
|
+
optional: true
|
|
632
|
+
lightningcss:
|
|
633
|
+
optional: true
|
|
634
|
+
sass:
|
|
635
|
+
optional: true
|
|
636
|
+
sass-embedded:
|
|
637
|
+
optional: true
|
|
638
|
+
stylus:
|
|
639
|
+
optional: true
|
|
640
|
+
sugarss:
|
|
641
|
+
optional: true
|
|
642
|
+
terser:
|
|
643
|
+
optional: true
|
|
644
|
+
tsx:
|
|
645
|
+
optional: true
|
|
646
|
+
yaml:
|
|
647
|
+
optional: true
|
|
648
|
+
|
|
649
|
+
yallist@3.1.1:
|
|
650
|
+
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
|
|
651
|
+
|
|
652
|
+
snapshots:
|
|
653
|
+
|
|
654
|
+
'@babel/code-frame@7.29.7':
|
|
655
|
+
dependencies:
|
|
656
|
+
'@babel/helper-validator-identifier': 7.29.7
|
|
657
|
+
js-tokens: 4.0.0
|
|
658
|
+
picocolors: 1.1.1
|
|
659
|
+
|
|
660
|
+
'@babel/compat-data@7.29.7': {}
|
|
661
|
+
|
|
662
|
+
'@babel/core@7.29.7':
|
|
663
|
+
dependencies:
|
|
664
|
+
'@babel/code-frame': 7.29.7
|
|
665
|
+
'@babel/generator': 7.29.8
|
|
666
|
+
'@babel/helper-compilation-targets': 7.29.7
|
|
667
|
+
'@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7)
|
|
668
|
+
'@babel/helpers': 7.29.7
|
|
669
|
+
'@babel/parser': 7.29.8
|
|
670
|
+
'@babel/template': 7.29.7
|
|
671
|
+
'@babel/traverse': 7.29.8
|
|
672
|
+
'@babel/types': 7.29.8
|
|
673
|
+
'@jridgewell/remapping': 2.3.5
|
|
674
|
+
convert-source-map: 2.0.0
|
|
675
|
+
debug: 4.4.3
|
|
676
|
+
gensync: 1.0.0-beta.2
|
|
677
|
+
json5: 2.2.3
|
|
678
|
+
semver: 6.3.1
|
|
679
|
+
transitivePeerDependencies:
|
|
680
|
+
- supports-color
|
|
681
|
+
|
|
682
|
+
'@babel/generator@7.29.8':
|
|
683
|
+
dependencies:
|
|
684
|
+
'@babel/parser': 7.29.8
|
|
685
|
+
'@babel/types': 7.29.8
|
|
686
|
+
'@jridgewell/gen-mapping': 0.3.13
|
|
687
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
688
|
+
jsesc: 3.1.0
|
|
689
|
+
|
|
690
|
+
'@babel/helper-compilation-targets@7.29.7':
|
|
691
|
+
dependencies:
|
|
692
|
+
'@babel/compat-data': 7.29.7
|
|
693
|
+
'@babel/helper-validator-option': 7.29.7
|
|
694
|
+
browserslist: 4.28.8
|
|
695
|
+
lru-cache: 5.1.1
|
|
696
|
+
semver: 6.3.1
|
|
697
|
+
|
|
698
|
+
'@babel/helper-globals@7.29.7': {}
|
|
699
|
+
|
|
700
|
+
'@babel/helper-module-imports@7.29.7':
|
|
701
|
+
dependencies:
|
|
702
|
+
'@babel/traverse': 7.29.8
|
|
703
|
+
'@babel/types': 7.29.8
|
|
704
|
+
transitivePeerDependencies:
|
|
705
|
+
- supports-color
|
|
706
|
+
|
|
707
|
+
'@babel/helper-module-transforms@7.29.7(@babel/core@7.29.7)':
|
|
708
|
+
dependencies:
|
|
709
|
+
'@babel/core': 7.29.7
|
|
710
|
+
'@babel/helper-module-imports': 7.29.7
|
|
711
|
+
'@babel/helper-validator-identifier': 7.29.7
|
|
712
|
+
'@babel/traverse': 7.29.8
|
|
713
|
+
transitivePeerDependencies:
|
|
714
|
+
- supports-color
|
|
715
|
+
|
|
716
|
+
'@babel/helper-plugin-utils@7.29.7': {}
|
|
717
|
+
|
|
718
|
+
'@babel/helper-string-parser@7.29.7': {}
|
|
719
|
+
|
|
720
|
+
'@babel/helper-validator-identifier@7.29.7': {}
|
|
721
|
+
|
|
722
|
+
'@babel/helper-validator-option@7.29.7': {}
|
|
723
|
+
|
|
724
|
+
'@babel/helpers@7.29.7':
|
|
725
|
+
dependencies:
|
|
726
|
+
'@babel/template': 7.29.7
|
|
727
|
+
'@babel/types': 7.29.8
|
|
728
|
+
|
|
729
|
+
'@babel/parser@7.29.8':
|
|
730
|
+
dependencies:
|
|
731
|
+
'@babel/types': 7.29.8
|
|
732
|
+
|
|
733
|
+
'@babel/plugin-transform-react-jsx-self@7.29.7(@babel/core@7.29.7)':
|
|
734
|
+
dependencies:
|
|
735
|
+
'@babel/core': 7.29.7
|
|
736
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
737
|
+
|
|
738
|
+
'@babel/plugin-transform-react-jsx-source@7.29.7(@babel/core@7.29.7)':
|
|
739
|
+
dependencies:
|
|
740
|
+
'@babel/core': 7.29.7
|
|
741
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
742
|
+
|
|
743
|
+
'@babel/template@7.29.7':
|
|
744
|
+
dependencies:
|
|
745
|
+
'@babel/code-frame': 7.29.7
|
|
746
|
+
'@babel/parser': 7.29.8
|
|
747
|
+
'@babel/types': 7.29.8
|
|
748
|
+
|
|
749
|
+
'@babel/traverse@7.29.8':
|
|
750
|
+
dependencies:
|
|
751
|
+
'@babel/code-frame': 7.29.7
|
|
752
|
+
'@babel/generator': 7.29.8
|
|
753
|
+
'@babel/helper-globals': 7.29.7
|
|
754
|
+
'@babel/parser': 7.29.8
|
|
755
|
+
'@babel/template': 7.29.7
|
|
756
|
+
'@babel/types': 7.29.8
|
|
757
|
+
debug: 4.4.3
|
|
758
|
+
transitivePeerDependencies:
|
|
759
|
+
- supports-color
|
|
760
|
+
|
|
761
|
+
'@babel/types@7.29.8':
|
|
762
|
+
dependencies:
|
|
763
|
+
'@babel/helper-string-parser': 7.29.7
|
|
764
|
+
'@babel/helper-validator-identifier': 7.29.7
|
|
765
|
+
|
|
766
|
+
'@esbuild/aix-ppc64@0.25.12':
|
|
767
|
+
optional: true
|
|
768
|
+
|
|
769
|
+
'@esbuild/android-arm64@0.25.12':
|
|
770
|
+
optional: true
|
|
771
|
+
|
|
772
|
+
'@esbuild/android-arm@0.25.12':
|
|
773
|
+
optional: true
|
|
774
|
+
|
|
775
|
+
'@esbuild/android-x64@0.25.12':
|
|
776
|
+
optional: true
|
|
777
|
+
|
|
778
|
+
'@esbuild/darwin-arm64@0.25.12':
|
|
779
|
+
optional: true
|
|
780
|
+
|
|
781
|
+
'@esbuild/darwin-x64@0.25.12':
|
|
782
|
+
optional: true
|
|
783
|
+
|
|
784
|
+
'@esbuild/freebsd-arm64@0.25.12':
|
|
785
|
+
optional: true
|
|
786
|
+
|
|
787
|
+
'@esbuild/freebsd-x64@0.25.12':
|
|
788
|
+
optional: true
|
|
789
|
+
|
|
790
|
+
'@esbuild/linux-arm64@0.25.12':
|
|
791
|
+
optional: true
|
|
792
|
+
|
|
793
|
+
'@esbuild/linux-arm@0.25.12':
|
|
794
|
+
optional: true
|
|
795
|
+
|
|
796
|
+
'@esbuild/linux-ia32@0.25.12':
|
|
797
|
+
optional: true
|
|
798
|
+
|
|
799
|
+
'@esbuild/linux-loong64@0.25.12':
|
|
800
|
+
optional: true
|
|
801
|
+
|
|
802
|
+
'@esbuild/linux-mips64el@0.25.12':
|
|
803
|
+
optional: true
|
|
804
|
+
|
|
805
|
+
'@esbuild/linux-ppc64@0.25.12':
|
|
806
|
+
optional: true
|
|
807
|
+
|
|
808
|
+
'@esbuild/linux-riscv64@0.25.12':
|
|
809
|
+
optional: true
|
|
810
|
+
|
|
811
|
+
'@esbuild/linux-s390x@0.25.12':
|
|
812
|
+
optional: true
|
|
813
|
+
|
|
814
|
+
'@esbuild/linux-x64@0.25.12':
|
|
815
|
+
optional: true
|
|
816
|
+
|
|
817
|
+
'@esbuild/netbsd-arm64@0.25.12':
|
|
818
|
+
optional: true
|
|
819
|
+
|
|
820
|
+
'@esbuild/netbsd-x64@0.25.12':
|
|
821
|
+
optional: true
|
|
822
|
+
|
|
823
|
+
'@esbuild/openbsd-arm64@0.25.12':
|
|
824
|
+
optional: true
|
|
825
|
+
|
|
826
|
+
'@esbuild/openbsd-x64@0.25.12':
|
|
827
|
+
optional: true
|
|
828
|
+
|
|
829
|
+
'@esbuild/openharmony-arm64@0.25.12':
|
|
830
|
+
optional: true
|
|
831
|
+
|
|
832
|
+
'@esbuild/sunos-x64@0.25.12':
|
|
833
|
+
optional: true
|
|
834
|
+
|
|
835
|
+
'@esbuild/win32-arm64@0.25.12':
|
|
836
|
+
optional: true
|
|
837
|
+
|
|
838
|
+
'@esbuild/win32-ia32@0.25.12':
|
|
839
|
+
optional: true
|
|
840
|
+
|
|
841
|
+
'@esbuild/win32-x64@0.25.12':
|
|
842
|
+
optional: true
|
|
843
|
+
|
|
844
|
+
'@jridgewell/gen-mapping@0.3.13':
|
|
845
|
+
dependencies:
|
|
846
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
847
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
848
|
+
|
|
849
|
+
'@jridgewell/remapping@2.3.5':
|
|
850
|
+
dependencies:
|
|
851
|
+
'@jridgewell/gen-mapping': 0.3.13
|
|
852
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
853
|
+
|
|
854
|
+
'@jridgewell/resolve-uri@3.1.2': {}
|
|
855
|
+
|
|
856
|
+
'@jridgewell/sourcemap-codec@1.5.5': {}
|
|
857
|
+
|
|
858
|
+
'@jridgewell/trace-mapping@0.3.31':
|
|
859
|
+
dependencies:
|
|
860
|
+
'@jridgewell/resolve-uri': 3.1.2
|
|
861
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
862
|
+
|
|
863
|
+
'@napi-rs/lzma-linux-x64-gnu@1.5.1':
|
|
864
|
+
optional: true
|
|
865
|
+
|
|
866
|
+
'@rolldown/pluginutils@1.0.0-beta.27': {}
|
|
867
|
+
|
|
868
|
+
'@rollup/rollup-android-arm-eabi@4.62.4':
|
|
869
|
+
optional: true
|
|
870
|
+
|
|
871
|
+
'@rollup/rollup-android-arm64@4.62.4':
|
|
872
|
+
optional: true
|
|
873
|
+
|
|
874
|
+
'@rollup/rollup-darwin-arm64@4.62.4':
|
|
875
|
+
optional: true
|
|
876
|
+
|
|
877
|
+
'@rollup/rollup-darwin-x64@4.62.4':
|
|
878
|
+
optional: true
|
|
879
|
+
|
|
880
|
+
'@rollup/rollup-freebsd-arm64@4.62.4':
|
|
881
|
+
optional: true
|
|
882
|
+
|
|
883
|
+
'@rollup/rollup-freebsd-x64@4.62.4':
|
|
884
|
+
optional: true
|
|
885
|
+
|
|
886
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.62.4':
|
|
887
|
+
optional: true
|
|
888
|
+
|
|
889
|
+
'@rollup/rollup-linux-arm-musleabihf@4.62.4':
|
|
890
|
+
optional: true
|
|
891
|
+
|
|
892
|
+
'@rollup/rollup-linux-arm64-gnu@4.62.4':
|
|
893
|
+
optional: true
|
|
894
|
+
|
|
895
|
+
'@rollup/rollup-linux-arm64-musl@4.62.4':
|
|
896
|
+
optional: true
|
|
897
|
+
|
|
898
|
+
'@rollup/rollup-linux-loong64-gnu@4.62.4':
|
|
899
|
+
optional: true
|
|
900
|
+
|
|
901
|
+
'@rollup/rollup-linux-loong64-musl@4.62.4':
|
|
902
|
+
optional: true
|
|
903
|
+
|
|
904
|
+
'@rollup/rollup-linux-ppc64-gnu@4.62.4':
|
|
905
|
+
optional: true
|
|
906
|
+
|
|
907
|
+
'@rollup/rollup-linux-ppc64-musl@4.62.4':
|
|
908
|
+
optional: true
|
|
909
|
+
|
|
910
|
+
'@rollup/rollup-linux-riscv64-gnu@4.62.4':
|
|
911
|
+
optional: true
|
|
912
|
+
|
|
913
|
+
'@rollup/rollup-linux-riscv64-musl@4.62.4':
|
|
914
|
+
optional: true
|
|
915
|
+
|
|
916
|
+
'@rollup/rollup-linux-s390x-gnu@4.62.4':
|
|
917
|
+
optional: true
|
|
918
|
+
|
|
919
|
+
'@rollup/rollup-linux-x64-gnu@4.62.4':
|
|
920
|
+
optional: true
|
|
921
|
+
|
|
922
|
+
'@rollup/rollup-linux-x64-musl@4.62.4':
|
|
923
|
+
optional: true
|
|
924
|
+
|
|
925
|
+
'@rollup/rollup-openbsd-x64@4.62.4':
|
|
926
|
+
optional: true
|
|
927
|
+
|
|
928
|
+
'@rollup/rollup-openharmony-arm64@4.62.4':
|
|
929
|
+
optional: true
|
|
930
|
+
|
|
931
|
+
'@rollup/rollup-win32-arm64-msvc@4.62.4':
|
|
932
|
+
optional: true
|
|
933
|
+
|
|
934
|
+
'@rollup/rollup-win32-ia32-msvc@4.62.4':
|
|
935
|
+
optional: true
|
|
936
|
+
|
|
937
|
+
'@rollup/rollup-win32-x64-gnu@4.62.4':
|
|
938
|
+
optional: true
|
|
939
|
+
|
|
940
|
+
'@rollup/rollup-win32-x64-msvc@4.62.4':
|
|
941
|
+
optional: true
|
|
942
|
+
|
|
943
|
+
'@types/babel__core@7.20.5':
|
|
944
|
+
dependencies:
|
|
945
|
+
'@babel/parser': 7.29.8
|
|
946
|
+
'@babel/types': 7.29.8
|
|
947
|
+
'@types/babel__generator': 7.27.0
|
|
948
|
+
'@types/babel__template': 7.4.4
|
|
949
|
+
'@types/babel__traverse': 7.28.0
|
|
950
|
+
|
|
951
|
+
'@types/babel__generator@7.27.0':
|
|
952
|
+
dependencies:
|
|
953
|
+
'@babel/types': 7.29.8
|
|
954
|
+
|
|
955
|
+
'@types/babel__template@7.4.4':
|
|
956
|
+
dependencies:
|
|
957
|
+
'@babel/parser': 7.29.8
|
|
958
|
+
'@babel/types': 7.29.8
|
|
959
|
+
|
|
960
|
+
'@types/babel__traverse@7.28.0':
|
|
961
|
+
dependencies:
|
|
962
|
+
'@babel/types': 7.29.8
|
|
963
|
+
|
|
964
|
+
'@types/estree@1.0.9': {}
|
|
965
|
+
|
|
966
|
+
'@types/prop-types@15.7.15': {}
|
|
967
|
+
|
|
968
|
+
'@types/react-dom@18.3.7(@types/react@18.3.31)':
|
|
969
|
+
dependencies:
|
|
970
|
+
'@types/react': 18.3.31
|
|
971
|
+
|
|
972
|
+
'@types/react@18.3.31':
|
|
973
|
+
dependencies:
|
|
974
|
+
'@types/prop-types': 15.7.15
|
|
975
|
+
csstype: 3.2.3
|
|
976
|
+
|
|
977
|
+
'@vitejs/plugin-react@4.7.0(vite@6.4.3)':
|
|
978
|
+
dependencies:
|
|
979
|
+
'@babel/core': 7.29.7
|
|
980
|
+
'@babel/plugin-transform-react-jsx-self': 7.29.7(@babel/core@7.29.7)
|
|
981
|
+
'@babel/plugin-transform-react-jsx-source': 7.29.7(@babel/core@7.29.7)
|
|
982
|
+
'@rolldown/pluginutils': 1.0.0-beta.27
|
|
983
|
+
'@types/babel__core': 7.20.5
|
|
984
|
+
react-refresh: 0.17.0
|
|
985
|
+
vite: 6.4.3
|
|
986
|
+
transitivePeerDependencies:
|
|
987
|
+
- supports-color
|
|
988
|
+
|
|
989
|
+
base64-js@1.5.1: {}
|
|
990
|
+
|
|
991
|
+
baseline-browser-mapping@2.11.15: {}
|
|
992
|
+
|
|
993
|
+
browserslist@4.28.8:
|
|
994
|
+
dependencies:
|
|
995
|
+
baseline-browser-mapping: 2.11.15
|
|
996
|
+
caniuse-lite: 1.0.30001809
|
|
997
|
+
electron-to-chromium: 1.5.408
|
|
998
|
+
node-releases: 2.0.53
|
|
999
|
+
update-browserslist-db: 1.3.1(browserslist@4.28.8)
|
|
1000
|
+
|
|
1001
|
+
buffer@6.0.3:
|
|
1002
|
+
dependencies:
|
|
1003
|
+
base64-js: 1.5.1
|
|
1004
|
+
ieee754: 1.2.1
|
|
1005
|
+
|
|
1006
|
+
caniuse-lite@1.0.30001809: {}
|
|
1007
|
+
|
|
1008
|
+
convert-source-map@2.0.0: {}
|
|
1009
|
+
|
|
1010
|
+
csstype@3.2.3: {}
|
|
1011
|
+
|
|
1012
|
+
debug@4.4.3:
|
|
1013
|
+
dependencies:
|
|
1014
|
+
ms: 2.1.3
|
|
1015
|
+
|
|
1016
|
+
electron-to-chromium@1.5.408: {}
|
|
1017
|
+
|
|
1018
|
+
esbuild@0.25.12:
|
|
1019
|
+
optionalDependencies:
|
|
1020
|
+
'@esbuild/aix-ppc64': 0.25.12
|
|
1021
|
+
'@esbuild/android-arm': 0.25.12
|
|
1022
|
+
'@esbuild/android-arm64': 0.25.12
|
|
1023
|
+
'@esbuild/android-x64': 0.25.12
|
|
1024
|
+
'@esbuild/darwin-arm64': 0.25.12
|
|
1025
|
+
'@esbuild/darwin-x64': 0.25.12
|
|
1026
|
+
'@esbuild/freebsd-arm64': 0.25.12
|
|
1027
|
+
'@esbuild/freebsd-x64': 0.25.12
|
|
1028
|
+
'@esbuild/linux-arm': 0.25.12
|
|
1029
|
+
'@esbuild/linux-arm64': 0.25.12
|
|
1030
|
+
'@esbuild/linux-ia32': 0.25.12
|
|
1031
|
+
'@esbuild/linux-loong64': 0.25.12
|
|
1032
|
+
'@esbuild/linux-mips64el': 0.25.12
|
|
1033
|
+
'@esbuild/linux-ppc64': 0.25.12
|
|
1034
|
+
'@esbuild/linux-riscv64': 0.25.12
|
|
1035
|
+
'@esbuild/linux-s390x': 0.25.12
|
|
1036
|
+
'@esbuild/linux-x64': 0.25.12
|
|
1037
|
+
'@esbuild/netbsd-arm64': 0.25.12
|
|
1038
|
+
'@esbuild/netbsd-x64': 0.25.12
|
|
1039
|
+
'@esbuild/openbsd-arm64': 0.25.12
|
|
1040
|
+
'@esbuild/openbsd-x64': 0.25.12
|
|
1041
|
+
'@esbuild/openharmony-arm64': 0.25.12
|
|
1042
|
+
'@esbuild/sunos-x64': 0.25.12
|
|
1043
|
+
'@esbuild/win32-arm64': 0.25.12
|
|
1044
|
+
'@esbuild/win32-ia32': 0.25.12
|
|
1045
|
+
'@esbuild/win32-x64': 0.25.12
|
|
1046
|
+
|
|
1047
|
+
escalade@3.2.0: {}
|
|
1048
|
+
|
|
1049
|
+
fdir@6.5.0(picomatch@4.0.5):
|
|
1050
|
+
optionalDependencies:
|
|
1051
|
+
picomatch: 4.0.5
|
|
1052
|
+
|
|
1053
|
+
fsevents@2.3.3:
|
|
1054
|
+
optional: true
|
|
1055
|
+
|
|
1056
|
+
gensync@1.0.0-beta.2: {}
|
|
1057
|
+
|
|
1058
|
+
ieee754@1.2.1: {}
|
|
1059
|
+
|
|
1060
|
+
js-tokens@4.0.0: {}
|
|
1061
|
+
|
|
1062
|
+
jsesc@3.1.0: {}
|
|
1063
|
+
|
|
1064
|
+
json5@2.2.3: {}
|
|
1065
|
+
|
|
1066
|
+
loose-envify@1.4.0:
|
|
1067
|
+
dependencies:
|
|
1068
|
+
js-tokens: 4.0.0
|
|
1069
|
+
|
|
1070
|
+
lru-cache@5.1.1:
|
|
1071
|
+
dependencies:
|
|
1072
|
+
yallist: 3.1.1
|
|
1073
|
+
|
|
1074
|
+
ms@2.1.3: {}
|
|
1075
|
+
|
|
1076
|
+
nanoid@3.3.18: {}
|
|
1077
|
+
|
|
1078
|
+
node-releases@2.0.53: {}
|
|
1079
|
+
|
|
1080
|
+
picocolors@1.1.1: {}
|
|
1081
|
+
|
|
1082
|
+
picomatch@4.0.5: {}
|
|
1083
|
+
|
|
1084
|
+
postcss@8.5.26:
|
|
1085
|
+
dependencies:
|
|
1086
|
+
nanoid: 3.3.18
|
|
1087
|
+
picocolors: 1.1.1
|
|
1088
|
+
source-map-js: 1.2.1
|
|
1089
|
+
|
|
1090
|
+
react-dom@18.3.1(react@18.3.1):
|
|
1091
|
+
dependencies:
|
|
1092
|
+
loose-envify: 1.4.0
|
|
1093
|
+
react: 18.3.1
|
|
1094
|
+
scheduler: 0.23.2
|
|
1095
|
+
|
|
1096
|
+
react-refresh@0.17.0: {}
|
|
1097
|
+
|
|
1098
|
+
react@18.3.1:
|
|
1099
|
+
dependencies:
|
|
1100
|
+
loose-envify: 1.4.0
|
|
1101
|
+
|
|
1102
|
+
rollup@4.62.4:
|
|
1103
|
+
dependencies:
|
|
1104
|
+
'@types/estree': 1.0.9
|
|
1105
|
+
optionalDependencies:
|
|
1106
|
+
'@napi-rs/lzma-linux-x64-gnu': 1.5.1
|
|
1107
|
+
'@rollup/rollup-android-arm-eabi': 4.62.4
|
|
1108
|
+
'@rollup/rollup-android-arm64': 4.62.4
|
|
1109
|
+
'@rollup/rollup-darwin-arm64': 4.62.4
|
|
1110
|
+
'@rollup/rollup-darwin-x64': 4.62.4
|
|
1111
|
+
'@rollup/rollup-freebsd-arm64': 4.62.4
|
|
1112
|
+
'@rollup/rollup-freebsd-x64': 4.62.4
|
|
1113
|
+
'@rollup/rollup-linux-arm-gnueabihf': 4.62.4
|
|
1114
|
+
'@rollup/rollup-linux-arm-musleabihf': 4.62.4
|
|
1115
|
+
'@rollup/rollup-linux-arm64-gnu': 4.62.4
|
|
1116
|
+
'@rollup/rollup-linux-arm64-musl': 4.62.4
|
|
1117
|
+
'@rollup/rollup-linux-loong64-gnu': 4.62.4
|
|
1118
|
+
'@rollup/rollup-linux-loong64-musl': 4.62.4
|
|
1119
|
+
'@rollup/rollup-linux-ppc64-gnu': 4.62.4
|
|
1120
|
+
'@rollup/rollup-linux-ppc64-musl': 4.62.4
|
|
1121
|
+
'@rollup/rollup-linux-riscv64-gnu': 4.62.4
|
|
1122
|
+
'@rollup/rollup-linux-riscv64-musl': 4.62.4
|
|
1123
|
+
'@rollup/rollup-linux-s390x-gnu': 4.62.4
|
|
1124
|
+
'@rollup/rollup-linux-x64-gnu': 4.62.4
|
|
1125
|
+
'@rollup/rollup-linux-x64-musl': 4.62.4
|
|
1126
|
+
'@rollup/rollup-openbsd-x64': 4.62.4
|
|
1127
|
+
'@rollup/rollup-openharmony-arm64': 4.62.4
|
|
1128
|
+
'@rollup/rollup-win32-arm64-msvc': 4.62.4
|
|
1129
|
+
'@rollup/rollup-win32-ia32-msvc': 4.62.4
|
|
1130
|
+
'@rollup/rollup-win32-x64-gnu': 4.62.4
|
|
1131
|
+
'@rollup/rollup-win32-x64-msvc': 4.62.4
|
|
1132
|
+
fsevents: 2.3.3
|
|
1133
|
+
|
|
1134
|
+
scheduler@0.23.2:
|
|
1135
|
+
dependencies:
|
|
1136
|
+
loose-envify: 1.4.0
|
|
1137
|
+
|
|
1138
|
+
semver@6.3.1: {}
|
|
1139
|
+
|
|
1140
|
+
source-map-js@1.2.1: {}
|
|
1141
|
+
|
|
1142
|
+
tinyglobby@0.2.17:
|
|
1143
|
+
dependencies:
|
|
1144
|
+
fdir: 6.5.0(picomatch@4.0.5)
|
|
1145
|
+
picomatch: 4.0.5
|
|
1146
|
+
|
|
1147
|
+
update-browserslist-db@1.3.1(browserslist@4.28.8):
|
|
1148
|
+
dependencies:
|
|
1149
|
+
browserslist: 4.28.8
|
|
1150
|
+
escalade: 3.2.0
|
|
1151
|
+
picocolors: 1.1.1
|
|
1152
|
+
|
|
1153
|
+
vite@6.4.3:
|
|
1154
|
+
dependencies:
|
|
1155
|
+
esbuild: 0.25.12
|
|
1156
|
+
fdir: 6.5.0(picomatch@4.0.5)
|
|
1157
|
+
picomatch: 4.0.5
|
|
1158
|
+
postcss: 8.5.26
|
|
1159
|
+
rollup: 4.62.4
|
|
1160
|
+
tinyglobby: 0.2.17
|
|
1161
|
+
optionalDependencies:
|
|
1162
|
+
fsevents: 2.3.3
|
|
1163
|
+
|
|
1164
|
+
yallist@3.1.1: {}
|