solid_cache_dashboard 0.0.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.
- checksums.yaml +7 -0
- data/README.md +121 -0
- data/Rakefile +10 -0
- data/app/assets/javascripts/solid_cache_dashboard/alpine.js +5 -0
- data/app/assets/javascripts/solid_cache_dashboard/application.js +60 -0
- data/app/assets/stylesheets/solid_cache_dashboard/application.css +1468 -0
- data/app/assets/stylesheets/solid_cache_dashboard/tailwind.css +625 -0
- data/app/controllers/solid_cache_dashboard/appearance_controller.rb +9 -0
- data/app/controllers/solid_cache_dashboard/application_controller.rb +12 -0
- data/app/controllers/solid_cache_dashboard/cache_entries_controller.rb +37 -0
- data/app/controllers/solid_cache_dashboard/cache_events_controller.rb +9 -0
- data/app/controllers/solid_cache_dashboard/dashboard_controller.rb +69 -0
- data/app/controllers/solid_cache_dashboard/stats_controller.rb +19 -0
- data/app/helpers/solid_cache_dashboard/application_helper.rb +20 -0
- data/app/views/layouts/solid_cache_dashboard/application.html.erb +28 -0
- data/app/views/solid_cache_dashboard/application/_flash_messages.html.erb +10 -0
- data/app/views/solid_cache_dashboard/application/_footer.html.erb +12 -0
- data/app/views/solid_cache_dashboard/application/_navbar.html.erb +32 -0
- data/app/views/solid_cache_dashboard/cache_entries/index.html.erb +136 -0
- data/app/views/solid_cache_dashboard/cache_entries/show.html.erb +118 -0
- data/app/views/solid_cache_dashboard/cache_events/index.html.erb +152 -0
- data/app/views/solid_cache_dashboard/dashboard/index.html.erb +163 -0
- data/app/views/solid_cache_dashboard/stats/index.html.erb +302 -0
- data/config/routes.rb +17 -0
- data/lib/generators/solid_cache_dashboard/install/install_generator.rb +17 -0
- data/lib/generators/solid_cache_dashboard/install/templates/create_solid_cache_dashboard_events.rb +16 -0
- data/lib/solid_cache_dashboard/cache_entry.rb +18 -0
- data/lib/solid_cache_dashboard/cache_event.rb +22 -0
- data/lib/solid_cache_dashboard/configuration.rb +17 -0
- data/lib/solid_cache_dashboard/decorators/cache_entries_decorator.rb +27 -0
- data/lib/solid_cache_dashboard/decorators/cache_entry_decorator.rb +59 -0
- data/lib/solid_cache_dashboard/decorators/cache_event_decorator.rb +72 -0
- data/lib/solid_cache_dashboard/decorators/cache_events_decorator.rb +44 -0
- data/lib/solid_cache_dashboard/engine.rb +19 -0
- data/lib/solid_cache_dashboard/instrumentation.rb +58 -0
- data/lib/solid_cache_dashboard/models/cache_event.rb +51 -0
- data/lib/solid_cache_dashboard/version.rb +5 -0
- data/lib/solid_cache_dashboard.rb +39 -0
- data/package-lock.json +1040 -0
- data/package.json +16 -0
- metadata +125 -0
data/package-lock.json
ADDED
@@ -0,0 +1,1040 @@
|
|
1
|
+
{
|
2
|
+
"name": "solid_cache_dashboard",
|
3
|
+
"lockfileVersion": 3,
|
4
|
+
"requires": true,
|
5
|
+
"packages": {
|
6
|
+
"": {
|
7
|
+
"dependencies": {
|
8
|
+
"@tailwindcss/cli": "^4.0.9"
|
9
|
+
},
|
10
|
+
"devDependencies": {
|
11
|
+
"@tailwindcss/forms": "^0.5.9",
|
12
|
+
"@tailwindcss/typography": "^0.5.15",
|
13
|
+
"tailwindcss": "^4.0.9",
|
14
|
+
"tailwindcss-animate": "^1.0.7"
|
15
|
+
}
|
16
|
+
},
|
17
|
+
"node_modules/@parcel/watcher": {
|
18
|
+
"version": "2.5.1",
|
19
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz",
|
20
|
+
"integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==",
|
21
|
+
"hasInstallScript": true,
|
22
|
+
"license": "MIT",
|
23
|
+
"dependencies": {
|
24
|
+
"detect-libc": "^1.0.3",
|
25
|
+
"is-glob": "^4.0.3",
|
26
|
+
"micromatch": "^4.0.5",
|
27
|
+
"node-addon-api": "^7.0.0"
|
28
|
+
},
|
29
|
+
"engines": {
|
30
|
+
"node": ">= 10.0.0"
|
31
|
+
},
|
32
|
+
"funding": {
|
33
|
+
"type": "opencollective",
|
34
|
+
"url": "https://opencollective.com/parcel"
|
35
|
+
},
|
36
|
+
"optionalDependencies": {
|
37
|
+
"@parcel/watcher-android-arm64": "2.5.1",
|
38
|
+
"@parcel/watcher-darwin-arm64": "2.5.1",
|
39
|
+
"@parcel/watcher-darwin-x64": "2.5.1",
|
40
|
+
"@parcel/watcher-freebsd-x64": "2.5.1",
|
41
|
+
"@parcel/watcher-linux-arm-glibc": "2.5.1",
|
42
|
+
"@parcel/watcher-linux-arm-musl": "2.5.1",
|
43
|
+
"@parcel/watcher-linux-arm64-glibc": "2.5.1",
|
44
|
+
"@parcel/watcher-linux-arm64-musl": "2.5.1",
|
45
|
+
"@parcel/watcher-linux-x64-glibc": "2.5.1",
|
46
|
+
"@parcel/watcher-linux-x64-musl": "2.5.1",
|
47
|
+
"@parcel/watcher-win32-arm64": "2.5.1",
|
48
|
+
"@parcel/watcher-win32-ia32": "2.5.1",
|
49
|
+
"@parcel/watcher-win32-x64": "2.5.1"
|
50
|
+
}
|
51
|
+
},
|
52
|
+
"node_modules/@parcel/watcher-android-arm64": {
|
53
|
+
"version": "2.5.1",
|
54
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz",
|
55
|
+
"integrity": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==",
|
56
|
+
"cpu": [
|
57
|
+
"arm64"
|
58
|
+
],
|
59
|
+
"license": "MIT",
|
60
|
+
"optional": true,
|
61
|
+
"os": [
|
62
|
+
"android"
|
63
|
+
],
|
64
|
+
"engines": {
|
65
|
+
"node": ">= 10.0.0"
|
66
|
+
},
|
67
|
+
"funding": {
|
68
|
+
"type": "opencollective",
|
69
|
+
"url": "https://opencollective.com/parcel"
|
70
|
+
}
|
71
|
+
},
|
72
|
+
"node_modules/@parcel/watcher-darwin-arm64": {
|
73
|
+
"version": "2.5.1",
|
74
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz",
|
75
|
+
"integrity": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==",
|
76
|
+
"cpu": [
|
77
|
+
"arm64"
|
78
|
+
],
|
79
|
+
"license": "MIT",
|
80
|
+
"optional": true,
|
81
|
+
"os": [
|
82
|
+
"darwin"
|
83
|
+
],
|
84
|
+
"engines": {
|
85
|
+
"node": ">= 10.0.0"
|
86
|
+
},
|
87
|
+
"funding": {
|
88
|
+
"type": "opencollective",
|
89
|
+
"url": "https://opencollective.com/parcel"
|
90
|
+
}
|
91
|
+
},
|
92
|
+
"node_modules/@parcel/watcher-darwin-x64": {
|
93
|
+
"version": "2.5.1",
|
94
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz",
|
95
|
+
"integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==",
|
96
|
+
"cpu": [
|
97
|
+
"x64"
|
98
|
+
],
|
99
|
+
"license": "MIT",
|
100
|
+
"optional": true,
|
101
|
+
"os": [
|
102
|
+
"darwin"
|
103
|
+
],
|
104
|
+
"engines": {
|
105
|
+
"node": ">= 10.0.0"
|
106
|
+
},
|
107
|
+
"funding": {
|
108
|
+
"type": "opencollective",
|
109
|
+
"url": "https://opencollective.com/parcel"
|
110
|
+
}
|
111
|
+
},
|
112
|
+
"node_modules/@parcel/watcher-freebsd-x64": {
|
113
|
+
"version": "2.5.1",
|
114
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz",
|
115
|
+
"integrity": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==",
|
116
|
+
"cpu": [
|
117
|
+
"x64"
|
118
|
+
],
|
119
|
+
"license": "MIT",
|
120
|
+
"optional": true,
|
121
|
+
"os": [
|
122
|
+
"freebsd"
|
123
|
+
],
|
124
|
+
"engines": {
|
125
|
+
"node": ">= 10.0.0"
|
126
|
+
},
|
127
|
+
"funding": {
|
128
|
+
"type": "opencollective",
|
129
|
+
"url": "https://opencollective.com/parcel"
|
130
|
+
}
|
131
|
+
},
|
132
|
+
"node_modules/@parcel/watcher-linux-arm-glibc": {
|
133
|
+
"version": "2.5.1",
|
134
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz",
|
135
|
+
"integrity": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==",
|
136
|
+
"cpu": [
|
137
|
+
"arm"
|
138
|
+
],
|
139
|
+
"license": "MIT",
|
140
|
+
"optional": true,
|
141
|
+
"os": [
|
142
|
+
"linux"
|
143
|
+
],
|
144
|
+
"engines": {
|
145
|
+
"node": ">= 10.0.0"
|
146
|
+
},
|
147
|
+
"funding": {
|
148
|
+
"type": "opencollective",
|
149
|
+
"url": "https://opencollective.com/parcel"
|
150
|
+
}
|
151
|
+
},
|
152
|
+
"node_modules/@parcel/watcher-linux-arm-musl": {
|
153
|
+
"version": "2.5.1",
|
154
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz",
|
155
|
+
"integrity": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==",
|
156
|
+
"cpu": [
|
157
|
+
"arm"
|
158
|
+
],
|
159
|
+
"license": "MIT",
|
160
|
+
"optional": true,
|
161
|
+
"os": [
|
162
|
+
"linux"
|
163
|
+
],
|
164
|
+
"engines": {
|
165
|
+
"node": ">= 10.0.0"
|
166
|
+
},
|
167
|
+
"funding": {
|
168
|
+
"type": "opencollective",
|
169
|
+
"url": "https://opencollective.com/parcel"
|
170
|
+
}
|
171
|
+
},
|
172
|
+
"node_modules/@parcel/watcher-linux-arm64-glibc": {
|
173
|
+
"version": "2.5.1",
|
174
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz",
|
175
|
+
"integrity": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==",
|
176
|
+
"cpu": [
|
177
|
+
"arm64"
|
178
|
+
],
|
179
|
+
"license": "MIT",
|
180
|
+
"optional": true,
|
181
|
+
"os": [
|
182
|
+
"linux"
|
183
|
+
],
|
184
|
+
"engines": {
|
185
|
+
"node": ">= 10.0.0"
|
186
|
+
},
|
187
|
+
"funding": {
|
188
|
+
"type": "opencollective",
|
189
|
+
"url": "https://opencollective.com/parcel"
|
190
|
+
}
|
191
|
+
},
|
192
|
+
"node_modules/@parcel/watcher-linux-arm64-musl": {
|
193
|
+
"version": "2.5.1",
|
194
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz",
|
195
|
+
"integrity": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==",
|
196
|
+
"cpu": [
|
197
|
+
"arm64"
|
198
|
+
],
|
199
|
+
"license": "MIT",
|
200
|
+
"optional": true,
|
201
|
+
"os": [
|
202
|
+
"linux"
|
203
|
+
],
|
204
|
+
"engines": {
|
205
|
+
"node": ">= 10.0.0"
|
206
|
+
},
|
207
|
+
"funding": {
|
208
|
+
"type": "opencollective",
|
209
|
+
"url": "https://opencollective.com/parcel"
|
210
|
+
}
|
211
|
+
},
|
212
|
+
"node_modules/@parcel/watcher-linux-x64-glibc": {
|
213
|
+
"version": "2.5.1",
|
214
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz",
|
215
|
+
"integrity": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==",
|
216
|
+
"cpu": [
|
217
|
+
"x64"
|
218
|
+
],
|
219
|
+
"license": "MIT",
|
220
|
+
"optional": true,
|
221
|
+
"os": [
|
222
|
+
"linux"
|
223
|
+
],
|
224
|
+
"engines": {
|
225
|
+
"node": ">= 10.0.0"
|
226
|
+
},
|
227
|
+
"funding": {
|
228
|
+
"type": "opencollective",
|
229
|
+
"url": "https://opencollective.com/parcel"
|
230
|
+
}
|
231
|
+
},
|
232
|
+
"node_modules/@parcel/watcher-linux-x64-musl": {
|
233
|
+
"version": "2.5.1",
|
234
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz",
|
235
|
+
"integrity": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==",
|
236
|
+
"cpu": [
|
237
|
+
"x64"
|
238
|
+
],
|
239
|
+
"license": "MIT",
|
240
|
+
"optional": true,
|
241
|
+
"os": [
|
242
|
+
"linux"
|
243
|
+
],
|
244
|
+
"engines": {
|
245
|
+
"node": ">= 10.0.0"
|
246
|
+
},
|
247
|
+
"funding": {
|
248
|
+
"type": "opencollective",
|
249
|
+
"url": "https://opencollective.com/parcel"
|
250
|
+
}
|
251
|
+
},
|
252
|
+
"node_modules/@parcel/watcher-win32-arm64": {
|
253
|
+
"version": "2.5.1",
|
254
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz",
|
255
|
+
"integrity": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==",
|
256
|
+
"cpu": [
|
257
|
+
"arm64"
|
258
|
+
],
|
259
|
+
"license": "MIT",
|
260
|
+
"optional": true,
|
261
|
+
"os": [
|
262
|
+
"win32"
|
263
|
+
],
|
264
|
+
"engines": {
|
265
|
+
"node": ">= 10.0.0"
|
266
|
+
},
|
267
|
+
"funding": {
|
268
|
+
"type": "opencollective",
|
269
|
+
"url": "https://opencollective.com/parcel"
|
270
|
+
}
|
271
|
+
},
|
272
|
+
"node_modules/@parcel/watcher-win32-ia32": {
|
273
|
+
"version": "2.5.1",
|
274
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz",
|
275
|
+
"integrity": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==",
|
276
|
+
"cpu": [
|
277
|
+
"ia32"
|
278
|
+
],
|
279
|
+
"license": "MIT",
|
280
|
+
"optional": true,
|
281
|
+
"os": [
|
282
|
+
"win32"
|
283
|
+
],
|
284
|
+
"engines": {
|
285
|
+
"node": ">= 10.0.0"
|
286
|
+
},
|
287
|
+
"funding": {
|
288
|
+
"type": "opencollective",
|
289
|
+
"url": "https://opencollective.com/parcel"
|
290
|
+
}
|
291
|
+
},
|
292
|
+
"node_modules/@parcel/watcher-win32-x64": {
|
293
|
+
"version": "2.5.1",
|
294
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz",
|
295
|
+
"integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==",
|
296
|
+
"cpu": [
|
297
|
+
"x64"
|
298
|
+
],
|
299
|
+
"license": "MIT",
|
300
|
+
"optional": true,
|
301
|
+
"os": [
|
302
|
+
"win32"
|
303
|
+
],
|
304
|
+
"engines": {
|
305
|
+
"node": ">= 10.0.0"
|
306
|
+
},
|
307
|
+
"funding": {
|
308
|
+
"type": "opencollective",
|
309
|
+
"url": "https://opencollective.com/parcel"
|
310
|
+
}
|
311
|
+
},
|
312
|
+
"node_modules/@tailwindcss/cli": {
|
313
|
+
"version": "4.0.9",
|
314
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/cli/-/cli-4.0.9.tgz",
|
315
|
+
"integrity": "sha512-obJvIxu4SCA3PLQYDB7tz9Biv3LFB6+YM/DXNNqwjEMRBNr7Y7LLBk3Cl6xwM+/TxJlA2rEV/t+XwkbldcxeXA==",
|
316
|
+
"license": "MIT",
|
317
|
+
"dependencies": {
|
318
|
+
"@parcel/watcher": "^2.5.1",
|
319
|
+
"@tailwindcss/node": "4.0.9",
|
320
|
+
"@tailwindcss/oxide": "4.0.9",
|
321
|
+
"enhanced-resolve": "^5.18.1",
|
322
|
+
"lightningcss": "^1.29.1",
|
323
|
+
"mri": "^1.2.0",
|
324
|
+
"picocolors": "^1.1.1",
|
325
|
+
"tailwindcss": "4.0.9"
|
326
|
+
},
|
327
|
+
"bin": {
|
328
|
+
"tailwindcss": "dist/index.mjs"
|
329
|
+
}
|
330
|
+
},
|
331
|
+
"node_modules/@tailwindcss/forms": {
|
332
|
+
"version": "0.5.10",
|
333
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.10.tgz",
|
334
|
+
"integrity": "sha512-utI1ONF6uf/pPNO68kmN1b8rEwNXv3czukalo8VtJH8ksIkZXr3Q3VYudZLkCsDd4Wku120uF02hYK25XGPorw==",
|
335
|
+
"dev": true,
|
336
|
+
"license": "MIT",
|
337
|
+
"dependencies": {
|
338
|
+
"mini-svg-data-uri": "^1.2.3"
|
339
|
+
},
|
340
|
+
"peerDependencies": {
|
341
|
+
"tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1 || >= 4.0.0-alpha.20 || >= 4.0.0-beta.1"
|
342
|
+
}
|
343
|
+
},
|
344
|
+
"node_modules/@tailwindcss/node": {
|
345
|
+
"version": "4.0.9",
|
346
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.0.9.tgz",
|
347
|
+
"integrity": "sha512-tOJvdI7XfJbARYhxX+0RArAhmuDcczTC46DGCEziqxzzbIaPnfYaIyRT31n4u8lROrsO7Q6u/K9bmQHL2uL1bQ==",
|
348
|
+
"license": "MIT",
|
349
|
+
"dependencies": {
|
350
|
+
"enhanced-resolve": "^5.18.1",
|
351
|
+
"jiti": "^2.4.2",
|
352
|
+
"tailwindcss": "4.0.9"
|
353
|
+
}
|
354
|
+
},
|
355
|
+
"node_modules/@tailwindcss/node/node_modules/jiti": {
|
356
|
+
"version": "2.4.2",
|
357
|
+
"resolved": "https://registry.npmjs.org/jiti/-/jiti-2.4.2.tgz",
|
358
|
+
"integrity": "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==",
|
359
|
+
"license": "MIT",
|
360
|
+
"bin": {
|
361
|
+
"jiti": "lib/jiti-cli.mjs"
|
362
|
+
}
|
363
|
+
},
|
364
|
+
"node_modules/@tailwindcss/oxide": {
|
365
|
+
"version": "4.0.9",
|
366
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.0.9.tgz",
|
367
|
+
"integrity": "sha512-eLizHmXFqHswJONwfqi/WZjtmWZpIalpvMlNhTM99/bkHtUs6IqgI1XQ0/W5eO2HiRQcIlXUogI2ycvKhVLNcA==",
|
368
|
+
"license": "MIT",
|
369
|
+
"engines": {
|
370
|
+
"node": ">= 10"
|
371
|
+
},
|
372
|
+
"optionalDependencies": {
|
373
|
+
"@tailwindcss/oxide-android-arm64": "4.0.9",
|
374
|
+
"@tailwindcss/oxide-darwin-arm64": "4.0.9",
|
375
|
+
"@tailwindcss/oxide-darwin-x64": "4.0.9",
|
376
|
+
"@tailwindcss/oxide-freebsd-x64": "4.0.9",
|
377
|
+
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.0.9",
|
378
|
+
"@tailwindcss/oxide-linux-arm64-gnu": "4.0.9",
|
379
|
+
"@tailwindcss/oxide-linux-arm64-musl": "4.0.9",
|
380
|
+
"@tailwindcss/oxide-linux-x64-gnu": "4.0.9",
|
381
|
+
"@tailwindcss/oxide-linux-x64-musl": "4.0.9",
|
382
|
+
"@tailwindcss/oxide-win32-arm64-msvc": "4.0.9",
|
383
|
+
"@tailwindcss/oxide-win32-x64-msvc": "4.0.9"
|
384
|
+
}
|
385
|
+
},
|
386
|
+
"node_modules/@tailwindcss/oxide-android-arm64": {
|
387
|
+
"version": "4.0.9",
|
388
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.0.9.tgz",
|
389
|
+
"integrity": "sha512-YBgy6+2flE/8dbtrdotVInhMVIxnHJPbAwa7U1gX4l2ThUIaPUp18LjB9wEH8wAGMBZUb//SzLtdXXNBHPUl6Q==",
|
390
|
+
"cpu": [
|
391
|
+
"arm64"
|
392
|
+
],
|
393
|
+
"license": "MIT",
|
394
|
+
"optional": true,
|
395
|
+
"os": [
|
396
|
+
"android"
|
397
|
+
],
|
398
|
+
"engines": {
|
399
|
+
"node": ">= 10"
|
400
|
+
}
|
401
|
+
},
|
402
|
+
"node_modules/@tailwindcss/oxide-darwin-arm64": {
|
403
|
+
"version": "4.0.9",
|
404
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.0.9.tgz",
|
405
|
+
"integrity": "sha512-pWdl4J2dIHXALgy2jVkwKBmtEb73kqIfMpYmcgESr7oPQ+lbcQ4+tlPeVXaSAmang+vglAfFpXQCOvs/aGSqlw==",
|
406
|
+
"cpu": [
|
407
|
+
"arm64"
|
408
|
+
],
|
409
|
+
"license": "MIT",
|
410
|
+
"optional": true,
|
411
|
+
"os": [
|
412
|
+
"darwin"
|
413
|
+
],
|
414
|
+
"engines": {
|
415
|
+
"node": ">= 10"
|
416
|
+
}
|
417
|
+
},
|
418
|
+
"node_modules/@tailwindcss/oxide-darwin-x64": {
|
419
|
+
"version": "4.0.9",
|
420
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.0.9.tgz",
|
421
|
+
"integrity": "sha512-4Dq3lKp0/C7vrRSkNPtBGVebEyWt9QPPlQctxJ0H3MDyiQYvzVYf8jKow7h5QkWNe8hbatEqljMj/Y0M+ERYJg==",
|
422
|
+
"cpu": [
|
423
|
+
"x64"
|
424
|
+
],
|
425
|
+
"license": "MIT",
|
426
|
+
"optional": true,
|
427
|
+
"os": [
|
428
|
+
"darwin"
|
429
|
+
],
|
430
|
+
"engines": {
|
431
|
+
"node": ">= 10"
|
432
|
+
}
|
433
|
+
},
|
434
|
+
"node_modules/@tailwindcss/oxide-freebsd-x64": {
|
435
|
+
"version": "4.0.9",
|
436
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.0.9.tgz",
|
437
|
+
"integrity": "sha512-k7U1RwRODta8x0uealtVt3RoWAWqA+D5FAOsvVGpYoI6ObgmnzqWW6pnVwz70tL8UZ/QXjeMyiICXyjzB6OGtQ==",
|
438
|
+
"cpu": [
|
439
|
+
"x64"
|
440
|
+
],
|
441
|
+
"license": "MIT",
|
442
|
+
"optional": true,
|
443
|
+
"os": [
|
444
|
+
"freebsd"
|
445
|
+
],
|
446
|
+
"engines": {
|
447
|
+
"node": ">= 10"
|
448
|
+
}
|
449
|
+
},
|
450
|
+
"node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
|
451
|
+
"version": "4.0.9",
|
452
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.0.9.tgz",
|
453
|
+
"integrity": "sha512-NDDjVweHz2zo4j+oS8y3KwKL5wGCZoXGA9ruJM982uVJLdsF8/1AeKvUwKRlMBpxHt1EdWJSAh8a0Mfhl28GlQ==",
|
454
|
+
"cpu": [
|
455
|
+
"arm"
|
456
|
+
],
|
457
|
+
"license": "MIT",
|
458
|
+
"optional": true,
|
459
|
+
"os": [
|
460
|
+
"linux"
|
461
|
+
],
|
462
|
+
"engines": {
|
463
|
+
"node": ">= 10"
|
464
|
+
}
|
465
|
+
},
|
466
|
+
"node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
|
467
|
+
"version": "4.0.9",
|
468
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.0.9.tgz",
|
469
|
+
"integrity": "sha512-jk90UZ0jzJl3Dy1BhuFfRZ2KP9wVKMXPjmCtY4U6fF2LvrjP5gWFJj5VHzfzHonJexjrGe1lMzgtjriuZkxagg==",
|
470
|
+
"cpu": [
|
471
|
+
"arm64"
|
472
|
+
],
|
473
|
+
"license": "MIT",
|
474
|
+
"optional": true,
|
475
|
+
"os": [
|
476
|
+
"linux"
|
477
|
+
],
|
478
|
+
"engines": {
|
479
|
+
"node": ">= 10"
|
480
|
+
}
|
481
|
+
},
|
482
|
+
"node_modules/@tailwindcss/oxide-linux-arm64-musl": {
|
483
|
+
"version": "4.0.9",
|
484
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.0.9.tgz",
|
485
|
+
"integrity": "sha512-3eMjyTC6HBxh9nRgOHzrc96PYh1/jWOwHZ3Kk0JN0Kl25BJ80Lj9HEvvwVDNTgPg154LdICwuFLuhfgH9DULmg==",
|
486
|
+
"cpu": [
|
487
|
+
"arm64"
|
488
|
+
],
|
489
|
+
"license": "MIT",
|
490
|
+
"optional": true,
|
491
|
+
"os": [
|
492
|
+
"linux"
|
493
|
+
],
|
494
|
+
"engines": {
|
495
|
+
"node": ">= 10"
|
496
|
+
}
|
497
|
+
},
|
498
|
+
"node_modules/@tailwindcss/oxide-linux-x64-gnu": {
|
499
|
+
"version": "4.0.9",
|
500
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.0.9.tgz",
|
501
|
+
"integrity": "sha512-v0D8WqI/c3WpWH1kq/HP0J899ATLdGZmENa2/emmNjubT0sWtEke9W9+wXeEoACuGAhF9i3PO5MeyditpDCiWQ==",
|
502
|
+
"cpu": [
|
503
|
+
"x64"
|
504
|
+
],
|
505
|
+
"license": "MIT",
|
506
|
+
"optional": true,
|
507
|
+
"os": [
|
508
|
+
"linux"
|
509
|
+
],
|
510
|
+
"engines": {
|
511
|
+
"node": ">= 10"
|
512
|
+
}
|
513
|
+
},
|
514
|
+
"node_modules/@tailwindcss/oxide-linux-x64-musl": {
|
515
|
+
"version": "4.0.9",
|
516
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.0.9.tgz",
|
517
|
+
"integrity": "sha512-Kvp0TCkfeXyeehqLJr7otsc4hd/BUPfcIGrQiwsTVCfaMfjQZCG7DjI+9/QqPZha8YapLA9UoIcUILRYO7NE1Q==",
|
518
|
+
"cpu": [
|
519
|
+
"x64"
|
520
|
+
],
|
521
|
+
"license": "MIT",
|
522
|
+
"optional": true,
|
523
|
+
"os": [
|
524
|
+
"linux"
|
525
|
+
],
|
526
|
+
"engines": {
|
527
|
+
"node": ">= 10"
|
528
|
+
}
|
529
|
+
},
|
530
|
+
"node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
|
531
|
+
"version": "4.0.9",
|
532
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.0.9.tgz",
|
533
|
+
"integrity": "sha512-m3+60T/7YvWekajNq/eexjhV8z10rswcz4BC9bioJ7YaN+7K8W2AmLmG0B79H14m6UHE571qB0XsPus4n0QVgQ==",
|
534
|
+
"cpu": [
|
535
|
+
"arm64"
|
536
|
+
],
|
537
|
+
"license": "MIT",
|
538
|
+
"optional": true,
|
539
|
+
"os": [
|
540
|
+
"win32"
|
541
|
+
],
|
542
|
+
"engines": {
|
543
|
+
"node": ">= 10"
|
544
|
+
}
|
545
|
+
},
|
546
|
+
"node_modules/@tailwindcss/oxide-win32-x64-msvc": {
|
547
|
+
"version": "4.0.9",
|
548
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.0.9.tgz",
|
549
|
+
"integrity": "sha512-dpc05mSlqkwVNOUjGu/ZXd5U1XNch1kHFJ4/cHkZFvaW1RzbHmRt24gvM8/HC6IirMxNarzVw4IXVtvrOoZtxA==",
|
550
|
+
"cpu": [
|
551
|
+
"x64"
|
552
|
+
],
|
553
|
+
"license": "MIT",
|
554
|
+
"optional": true,
|
555
|
+
"os": [
|
556
|
+
"win32"
|
557
|
+
],
|
558
|
+
"engines": {
|
559
|
+
"node": ">= 10"
|
560
|
+
}
|
561
|
+
},
|
562
|
+
"node_modules/@tailwindcss/typography": {
|
563
|
+
"version": "0.5.16",
|
564
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.16.tgz",
|
565
|
+
"integrity": "sha512-0wDLwCVF5V3x3b1SGXPCDcdsbDHMBe+lkFzBRaHeLvNi+nrrnZ1lA18u+OTWO8iSWU2GxUOCvlXtDuqftc1oiA==",
|
566
|
+
"dev": true,
|
567
|
+
"license": "MIT",
|
568
|
+
"dependencies": {
|
569
|
+
"lodash.castarray": "^4.4.0",
|
570
|
+
"lodash.isplainobject": "^4.0.6",
|
571
|
+
"lodash.merge": "^4.6.2",
|
572
|
+
"postcss-selector-parser": "6.0.10"
|
573
|
+
},
|
574
|
+
"peerDependencies": {
|
575
|
+
"tailwindcss": ">=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1"
|
576
|
+
}
|
577
|
+
},
|
578
|
+
"node_modules/braces": {
|
579
|
+
"version": "3.0.3",
|
580
|
+
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
|
581
|
+
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
|
582
|
+
"license": "MIT",
|
583
|
+
"dependencies": {
|
584
|
+
"fill-range": "^7.1.1"
|
585
|
+
},
|
586
|
+
"engines": {
|
587
|
+
"node": ">=8"
|
588
|
+
}
|
589
|
+
},
|
590
|
+
"node_modules/cssesc": {
|
591
|
+
"version": "3.0.0",
|
592
|
+
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
|
593
|
+
"integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
|
594
|
+
"dev": true,
|
595
|
+
"license": "MIT",
|
596
|
+
"bin": {
|
597
|
+
"cssesc": "bin/cssesc"
|
598
|
+
},
|
599
|
+
"engines": {
|
600
|
+
"node": ">=4"
|
601
|
+
}
|
602
|
+
},
|
603
|
+
"node_modules/detect-libc": {
|
604
|
+
"version": "1.0.3",
|
605
|
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz",
|
606
|
+
"integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==",
|
607
|
+
"license": "Apache-2.0",
|
608
|
+
"bin": {
|
609
|
+
"detect-libc": "bin/detect-libc.js"
|
610
|
+
},
|
611
|
+
"engines": {
|
612
|
+
"node": ">=0.10"
|
613
|
+
}
|
614
|
+
},
|
615
|
+
"node_modules/enhanced-resolve": {
|
616
|
+
"version": "5.18.1",
|
617
|
+
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz",
|
618
|
+
"integrity": "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==",
|
619
|
+
"license": "MIT",
|
620
|
+
"dependencies": {
|
621
|
+
"graceful-fs": "^4.2.4",
|
622
|
+
"tapable": "^2.2.0"
|
623
|
+
},
|
624
|
+
"engines": {
|
625
|
+
"node": ">=10.13.0"
|
626
|
+
}
|
627
|
+
},
|
628
|
+
"node_modules/fill-range": {
|
629
|
+
"version": "7.1.1",
|
630
|
+
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
|
631
|
+
"integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
|
632
|
+
"license": "MIT",
|
633
|
+
"dependencies": {
|
634
|
+
"to-regex-range": "^5.0.1"
|
635
|
+
},
|
636
|
+
"engines": {
|
637
|
+
"node": ">=8"
|
638
|
+
}
|
639
|
+
},
|
640
|
+
"node_modules/graceful-fs": {
|
641
|
+
"version": "4.2.11",
|
642
|
+
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
|
643
|
+
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
644
|
+
"license": "ISC"
|
645
|
+
},
|
646
|
+
"node_modules/is-extglob": {
|
647
|
+
"version": "2.1.1",
|
648
|
+
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
649
|
+
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
|
650
|
+
"license": "MIT",
|
651
|
+
"engines": {
|
652
|
+
"node": ">=0.10.0"
|
653
|
+
}
|
654
|
+
},
|
655
|
+
"node_modules/is-glob": {
|
656
|
+
"version": "4.0.3",
|
657
|
+
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
|
658
|
+
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
|
659
|
+
"license": "MIT",
|
660
|
+
"dependencies": {
|
661
|
+
"is-extglob": "^2.1.1"
|
662
|
+
},
|
663
|
+
"engines": {
|
664
|
+
"node": ">=0.10.0"
|
665
|
+
}
|
666
|
+
},
|
667
|
+
"node_modules/is-number": {
|
668
|
+
"version": "7.0.0",
|
669
|
+
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
670
|
+
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
671
|
+
"license": "MIT",
|
672
|
+
"engines": {
|
673
|
+
"node": ">=0.12.0"
|
674
|
+
}
|
675
|
+
},
|
676
|
+
"node_modules/lightningcss": {
|
677
|
+
"version": "1.29.1",
|
678
|
+
"resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.29.1.tgz",
|
679
|
+
"integrity": "sha512-FmGoeD4S05ewj+AkhTY+D+myDvXI6eL27FjHIjoyUkO/uw7WZD1fBVs0QxeYWa7E17CUHJaYX/RUGISCtcrG4Q==",
|
680
|
+
"license": "MPL-2.0",
|
681
|
+
"dependencies": {
|
682
|
+
"detect-libc": "^1.0.3"
|
683
|
+
},
|
684
|
+
"engines": {
|
685
|
+
"node": ">= 12.0.0"
|
686
|
+
},
|
687
|
+
"funding": {
|
688
|
+
"type": "opencollective",
|
689
|
+
"url": "https://opencollective.com/parcel"
|
690
|
+
},
|
691
|
+
"optionalDependencies": {
|
692
|
+
"lightningcss-darwin-arm64": "1.29.1",
|
693
|
+
"lightningcss-darwin-x64": "1.29.1",
|
694
|
+
"lightningcss-freebsd-x64": "1.29.1",
|
695
|
+
"lightningcss-linux-arm-gnueabihf": "1.29.1",
|
696
|
+
"lightningcss-linux-arm64-gnu": "1.29.1",
|
697
|
+
"lightningcss-linux-arm64-musl": "1.29.1",
|
698
|
+
"lightningcss-linux-x64-gnu": "1.29.1",
|
699
|
+
"lightningcss-linux-x64-musl": "1.29.1",
|
700
|
+
"lightningcss-win32-arm64-msvc": "1.29.1",
|
701
|
+
"lightningcss-win32-x64-msvc": "1.29.1"
|
702
|
+
}
|
703
|
+
},
|
704
|
+
"node_modules/lightningcss-darwin-arm64": {
|
705
|
+
"version": "1.29.1",
|
706
|
+
"resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.29.1.tgz",
|
707
|
+
"integrity": "sha512-HtR5XJ5A0lvCqYAoSv2QdZZyoHNttBpa5EP9aNuzBQeKGfbyH5+UipLWvVzpP4Uml5ej4BYs5I9Lco9u1fECqw==",
|
708
|
+
"cpu": [
|
709
|
+
"arm64"
|
710
|
+
],
|
711
|
+
"license": "MPL-2.0",
|
712
|
+
"optional": true,
|
713
|
+
"os": [
|
714
|
+
"darwin"
|
715
|
+
],
|
716
|
+
"engines": {
|
717
|
+
"node": ">= 12.0.0"
|
718
|
+
},
|
719
|
+
"funding": {
|
720
|
+
"type": "opencollective",
|
721
|
+
"url": "https://opencollective.com/parcel"
|
722
|
+
}
|
723
|
+
},
|
724
|
+
"node_modules/lightningcss-darwin-x64": {
|
725
|
+
"version": "1.29.1",
|
726
|
+
"resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.29.1.tgz",
|
727
|
+
"integrity": "sha512-k33G9IzKUpHy/J/3+9MCO4e+PzaFblsgBjSGlpAaFikeBFm8B/CkO3cKU9oI4g+fjS2KlkLM/Bza9K/aw8wsNA==",
|
728
|
+
"cpu": [
|
729
|
+
"x64"
|
730
|
+
],
|
731
|
+
"license": "MPL-2.0",
|
732
|
+
"optional": true,
|
733
|
+
"os": [
|
734
|
+
"darwin"
|
735
|
+
],
|
736
|
+
"engines": {
|
737
|
+
"node": ">= 12.0.0"
|
738
|
+
},
|
739
|
+
"funding": {
|
740
|
+
"type": "opencollective",
|
741
|
+
"url": "https://opencollective.com/parcel"
|
742
|
+
}
|
743
|
+
},
|
744
|
+
"node_modules/lightningcss-freebsd-x64": {
|
745
|
+
"version": "1.29.1",
|
746
|
+
"resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.29.1.tgz",
|
747
|
+
"integrity": "sha512-0SUW22fv/8kln2LnIdOCmSuXnxgxVC276W5KLTwoehiO0hxkacBxjHOL5EtHD8BAXg2BvuhsJPmVMasvby3LiQ==",
|
748
|
+
"cpu": [
|
749
|
+
"x64"
|
750
|
+
],
|
751
|
+
"license": "MPL-2.0",
|
752
|
+
"optional": true,
|
753
|
+
"os": [
|
754
|
+
"freebsd"
|
755
|
+
],
|
756
|
+
"engines": {
|
757
|
+
"node": ">= 12.0.0"
|
758
|
+
},
|
759
|
+
"funding": {
|
760
|
+
"type": "opencollective",
|
761
|
+
"url": "https://opencollective.com/parcel"
|
762
|
+
}
|
763
|
+
},
|
764
|
+
"node_modules/lightningcss-linux-arm-gnueabihf": {
|
765
|
+
"version": "1.29.1",
|
766
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.29.1.tgz",
|
767
|
+
"integrity": "sha512-sD32pFvlR0kDlqsOZmYqH/68SqUMPNj+0pucGxToXZi4XZgZmqeX/NkxNKCPsswAXU3UeYgDSpGhu05eAufjDg==",
|
768
|
+
"cpu": [
|
769
|
+
"arm"
|
770
|
+
],
|
771
|
+
"license": "MPL-2.0",
|
772
|
+
"optional": true,
|
773
|
+
"os": [
|
774
|
+
"linux"
|
775
|
+
],
|
776
|
+
"engines": {
|
777
|
+
"node": ">= 12.0.0"
|
778
|
+
},
|
779
|
+
"funding": {
|
780
|
+
"type": "opencollective",
|
781
|
+
"url": "https://opencollective.com/parcel"
|
782
|
+
}
|
783
|
+
},
|
784
|
+
"node_modules/lightningcss-linux-arm64-gnu": {
|
785
|
+
"version": "1.29.1",
|
786
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.29.1.tgz",
|
787
|
+
"integrity": "sha512-0+vClRIZ6mmJl/dxGuRsE197o1HDEeeRk6nzycSy2GofC2JsY4ifCRnvUWf/CUBQmlrvMzt6SMQNMSEu22csWQ==",
|
788
|
+
"cpu": [
|
789
|
+
"arm64"
|
790
|
+
],
|
791
|
+
"license": "MPL-2.0",
|
792
|
+
"optional": true,
|
793
|
+
"os": [
|
794
|
+
"linux"
|
795
|
+
],
|
796
|
+
"engines": {
|
797
|
+
"node": ">= 12.0.0"
|
798
|
+
},
|
799
|
+
"funding": {
|
800
|
+
"type": "opencollective",
|
801
|
+
"url": "https://opencollective.com/parcel"
|
802
|
+
}
|
803
|
+
},
|
804
|
+
"node_modules/lightningcss-linux-arm64-musl": {
|
805
|
+
"version": "1.29.1",
|
806
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.29.1.tgz",
|
807
|
+
"integrity": "sha512-UKMFrG4rL/uHNgelBsDwJcBqVpzNJbzsKkbI3Ja5fg00sgQnHw/VrzUTEc4jhZ+AN2BvQYz/tkHu4vt1kLuJyw==",
|
808
|
+
"cpu": [
|
809
|
+
"arm64"
|
810
|
+
],
|
811
|
+
"license": "MPL-2.0",
|
812
|
+
"optional": true,
|
813
|
+
"os": [
|
814
|
+
"linux"
|
815
|
+
],
|
816
|
+
"engines": {
|
817
|
+
"node": ">= 12.0.0"
|
818
|
+
},
|
819
|
+
"funding": {
|
820
|
+
"type": "opencollective",
|
821
|
+
"url": "https://opencollective.com/parcel"
|
822
|
+
}
|
823
|
+
},
|
824
|
+
"node_modules/lightningcss-linux-x64-gnu": {
|
825
|
+
"version": "1.29.1",
|
826
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.29.1.tgz",
|
827
|
+
"integrity": "sha512-u1S+xdODy/eEtjADqirA774y3jLcm8RPtYztwReEXoZKdzgsHYPl0s5V52Tst+GKzqjebkULT86XMSxejzfISw==",
|
828
|
+
"cpu": [
|
829
|
+
"x64"
|
830
|
+
],
|
831
|
+
"license": "MPL-2.0",
|
832
|
+
"optional": true,
|
833
|
+
"os": [
|
834
|
+
"linux"
|
835
|
+
],
|
836
|
+
"engines": {
|
837
|
+
"node": ">= 12.0.0"
|
838
|
+
},
|
839
|
+
"funding": {
|
840
|
+
"type": "opencollective",
|
841
|
+
"url": "https://opencollective.com/parcel"
|
842
|
+
}
|
843
|
+
},
|
844
|
+
"node_modules/lightningcss-linux-x64-musl": {
|
845
|
+
"version": "1.29.1",
|
846
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.29.1.tgz",
|
847
|
+
"integrity": "sha512-L0Tx0DtaNUTzXv0lbGCLB/c/qEADanHbu4QdcNOXLIe1i8i22rZRpbT3gpWYsCh9aSL9zFujY/WmEXIatWvXbw==",
|
848
|
+
"cpu": [
|
849
|
+
"x64"
|
850
|
+
],
|
851
|
+
"license": "MPL-2.0",
|
852
|
+
"optional": true,
|
853
|
+
"os": [
|
854
|
+
"linux"
|
855
|
+
],
|
856
|
+
"engines": {
|
857
|
+
"node": ">= 12.0.0"
|
858
|
+
},
|
859
|
+
"funding": {
|
860
|
+
"type": "opencollective",
|
861
|
+
"url": "https://opencollective.com/parcel"
|
862
|
+
}
|
863
|
+
},
|
864
|
+
"node_modules/lightningcss-win32-arm64-msvc": {
|
865
|
+
"version": "1.29.1",
|
866
|
+
"resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.29.1.tgz",
|
867
|
+
"integrity": "sha512-QoOVnkIEFfbW4xPi+dpdft/zAKmgLgsRHfJalEPYuJDOWf7cLQzYg0DEh8/sn737FaeMJxHZRc1oBreiwZCjog==",
|
868
|
+
"cpu": [
|
869
|
+
"arm64"
|
870
|
+
],
|
871
|
+
"license": "MPL-2.0",
|
872
|
+
"optional": true,
|
873
|
+
"os": [
|
874
|
+
"win32"
|
875
|
+
],
|
876
|
+
"engines": {
|
877
|
+
"node": ">= 12.0.0"
|
878
|
+
},
|
879
|
+
"funding": {
|
880
|
+
"type": "opencollective",
|
881
|
+
"url": "https://opencollective.com/parcel"
|
882
|
+
}
|
883
|
+
},
|
884
|
+
"node_modules/lightningcss-win32-x64-msvc": {
|
885
|
+
"version": "1.29.1",
|
886
|
+
"resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.29.1.tgz",
|
887
|
+
"integrity": "sha512-NygcbThNBe4JElP+olyTI/doBNGJvLs3bFCRPdvuCcxZCcCZ71B858IHpdm7L1btZex0FvCmM17FK98Y9MRy1Q==",
|
888
|
+
"cpu": [
|
889
|
+
"x64"
|
890
|
+
],
|
891
|
+
"license": "MPL-2.0",
|
892
|
+
"optional": true,
|
893
|
+
"os": [
|
894
|
+
"win32"
|
895
|
+
],
|
896
|
+
"engines": {
|
897
|
+
"node": ">= 12.0.0"
|
898
|
+
},
|
899
|
+
"funding": {
|
900
|
+
"type": "opencollective",
|
901
|
+
"url": "https://opencollective.com/parcel"
|
902
|
+
}
|
903
|
+
},
|
904
|
+
"node_modules/lodash.castarray": {
|
905
|
+
"version": "4.4.0",
|
906
|
+
"resolved": "https://registry.npmjs.org/lodash.castarray/-/lodash.castarray-4.4.0.tgz",
|
907
|
+
"integrity": "sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==",
|
908
|
+
"dev": true,
|
909
|
+
"license": "MIT"
|
910
|
+
},
|
911
|
+
"node_modules/lodash.isplainobject": {
|
912
|
+
"version": "4.0.6",
|
913
|
+
"resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz",
|
914
|
+
"integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==",
|
915
|
+
"dev": true,
|
916
|
+
"license": "MIT"
|
917
|
+
},
|
918
|
+
"node_modules/lodash.merge": {
|
919
|
+
"version": "4.6.2",
|
920
|
+
"resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
|
921
|
+
"integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
|
922
|
+
"dev": true,
|
923
|
+
"license": "MIT"
|
924
|
+
},
|
925
|
+
"node_modules/micromatch": {
|
926
|
+
"version": "4.0.8",
|
927
|
+
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
|
928
|
+
"integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
|
929
|
+
"license": "MIT",
|
930
|
+
"dependencies": {
|
931
|
+
"braces": "^3.0.3",
|
932
|
+
"picomatch": "^2.3.1"
|
933
|
+
},
|
934
|
+
"engines": {
|
935
|
+
"node": ">=8.6"
|
936
|
+
}
|
937
|
+
},
|
938
|
+
"node_modules/mini-svg-data-uri": {
|
939
|
+
"version": "1.4.4",
|
940
|
+
"resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz",
|
941
|
+
"integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==",
|
942
|
+
"dev": true,
|
943
|
+
"license": "MIT",
|
944
|
+
"bin": {
|
945
|
+
"mini-svg-data-uri": "cli.js"
|
946
|
+
}
|
947
|
+
},
|
948
|
+
"node_modules/mri": {
|
949
|
+
"version": "1.2.0",
|
950
|
+
"resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz",
|
951
|
+
"integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==",
|
952
|
+
"license": "MIT",
|
953
|
+
"engines": {
|
954
|
+
"node": ">=4"
|
955
|
+
}
|
956
|
+
},
|
957
|
+
"node_modules/node-addon-api": {
|
958
|
+
"version": "7.1.1",
|
959
|
+
"resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz",
|
960
|
+
"integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
|
961
|
+
"license": "MIT"
|
962
|
+
},
|
963
|
+
"node_modules/picocolors": {
|
964
|
+
"version": "1.1.1",
|
965
|
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
966
|
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
967
|
+
"license": "ISC"
|
968
|
+
},
|
969
|
+
"node_modules/picomatch": {
|
970
|
+
"version": "2.3.1",
|
971
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
972
|
+
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
973
|
+
"license": "MIT",
|
974
|
+
"engines": {
|
975
|
+
"node": ">=8.6"
|
976
|
+
},
|
977
|
+
"funding": {
|
978
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
979
|
+
}
|
980
|
+
},
|
981
|
+
"node_modules/postcss-selector-parser": {
|
982
|
+
"version": "6.0.10",
|
983
|
+
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz",
|
984
|
+
"integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==",
|
985
|
+
"dev": true,
|
986
|
+
"license": "MIT",
|
987
|
+
"dependencies": {
|
988
|
+
"cssesc": "^3.0.0",
|
989
|
+
"util-deprecate": "^1.0.2"
|
990
|
+
},
|
991
|
+
"engines": {
|
992
|
+
"node": ">=4"
|
993
|
+
}
|
994
|
+
},
|
995
|
+
"node_modules/tailwindcss": {
|
996
|
+
"version": "4.0.9",
|
997
|
+
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.0.9.tgz",
|
998
|
+
"integrity": "sha512-12laZu+fv1ONDRoNR9ipTOpUD7RN9essRVkX36sjxuRUInpN7hIiHN4lBd/SIFjbISvnXzp8h/hXzmU8SQQYhw==",
|
999
|
+
"license": "MIT"
|
1000
|
+
},
|
1001
|
+
"node_modules/tailwindcss-animate": {
|
1002
|
+
"version": "1.0.7",
|
1003
|
+
"resolved": "https://registry.npmjs.org/tailwindcss-animate/-/tailwindcss-animate-1.0.7.tgz",
|
1004
|
+
"integrity": "sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==",
|
1005
|
+
"dev": true,
|
1006
|
+
"license": "MIT",
|
1007
|
+
"peerDependencies": {
|
1008
|
+
"tailwindcss": ">=3.0.0 || insiders"
|
1009
|
+
}
|
1010
|
+
},
|
1011
|
+
"node_modules/tapable": {
|
1012
|
+
"version": "2.2.1",
|
1013
|
+
"resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
|
1014
|
+
"integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
|
1015
|
+
"license": "MIT",
|
1016
|
+
"engines": {
|
1017
|
+
"node": ">=6"
|
1018
|
+
}
|
1019
|
+
},
|
1020
|
+
"node_modules/to-regex-range": {
|
1021
|
+
"version": "5.0.1",
|
1022
|
+
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
1023
|
+
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
1024
|
+
"license": "MIT",
|
1025
|
+
"dependencies": {
|
1026
|
+
"is-number": "^7.0.0"
|
1027
|
+
},
|
1028
|
+
"engines": {
|
1029
|
+
"node": ">=8.0"
|
1030
|
+
}
|
1031
|
+
},
|
1032
|
+
"node_modules/util-deprecate": {
|
1033
|
+
"version": "1.0.2",
|
1034
|
+
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
1035
|
+
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
|
1036
|
+
"dev": true,
|
1037
|
+
"license": "MIT"
|
1038
|
+
}
|
1039
|
+
}
|
1040
|
+
}
|