create-lzcli 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/index.html +12 -0
  2. package/index.js +104 -0
  3. package/package.json +30 -0
  4. package/readme.md +1 -0
  5. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/.env +2 -0
  6. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/.prettierrc +10 -0
  7. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/eslint.config.ts +80 -0
  8. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/index.html +26 -0
  9. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/package-lock.json +2936 -0
  10. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/package.json +44 -0
  11. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/src/App.vue +19 -0
  12. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/src/main.ts +13 -0
  13. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/src/store/index.ts +11 -0
  14. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/src/styles/index.css +1 -0
  15. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/src/vite-env.d.ts +10 -0
  16. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/tsconfig.json +43 -0
  17. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/tsconfig.node.json +18 -0
  18. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/vite.config.ts +27 -0
  19. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/.env +2 -0
  20. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/.prettierrc +10 -0
  21. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/eslint.config.ts +80 -0
  22. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/index.html +26 -0
  23. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/package-lock.json +3309 -0
  24. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/package.json +45 -0
  25. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/src/App.vue +26 -0
  26. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/src/main.ts +14 -0
  27. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/src/router/index.ts +19 -0
  28. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/src/store/index.ts +11 -0
  29. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/src/styles/index.css +1 -0
  30. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/src/view/HomeView.vue +7 -0
  31. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/src/vite-env.d.ts +10 -0
  32. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/tsconfig.json +43 -0
  33. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/tsconfig.node.json +18 -0
  34. package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/vite.config.ts +27 -0
  35. package/template/vue_ts_prettieric_pinia/.env +2 -0
  36. package/template/vue_ts_prettieric_pinia/.prettierrc +11 -0
  37. package/template/vue_ts_prettieric_pinia/index.html +26 -0
  38. package/template/vue_ts_prettieric_pinia/package-lock.json +1371 -0
  39. package/template/vue_ts_prettieric_pinia/package.json +36 -0
  40. package/template/vue_ts_prettieric_pinia/pnpm-lock.yaml +883 -0
  41. package/template/vue_ts_prettieric_pinia/src/App.vue +56 -0
  42. package/template/vue_ts_prettieric_pinia/src/main.ts +11 -0
  43. package/template/vue_ts_prettieric_pinia/src/store/counter.ts +12 -0
  44. package/template/vue_ts_prettieric_pinia/src/styles/index.css +1 -0
  45. package/template/vue_ts_prettieric_pinia/src/vite-env.d.ts +10 -0
  46. package/template/vue_ts_prettieric_pinia/tsconfig.json +42 -0
  47. package/template/vue_ts_prettieric_pinia/tsconfig.node.json +13 -0
  48. package/template/vue_ts_prettieric_pinia/vite.config.ts +25 -0
  49. package/template/vue_ts_prettieric_tailwindcss_pinia/.env +2 -0
  50. package/template/vue_ts_prettieric_tailwindcss_pinia/.prettierrc +11 -0
  51. package/template/vue_ts_prettieric_tailwindcss_pinia/index.html +26 -0
  52. package/template/vue_ts_prettieric_tailwindcss_pinia/package-lock.json +1661 -0
  53. package/template/vue_ts_prettieric_tailwindcss_pinia/package.json +39 -0
  54. package/template/vue_ts_prettieric_tailwindcss_pinia/src/App.vue +16 -0
  55. package/template/vue_ts_prettieric_tailwindcss_pinia/src/main.ts +10 -0
  56. package/template/vue_ts_prettieric_tailwindcss_pinia/src/store/counter.ts +14 -0
  57. package/template/vue_ts_prettieric_tailwindcss_pinia/src/styles/index.css +1 -0
  58. package/template/vue_ts_prettieric_tailwindcss_pinia/src/vite-env.d.ts +10 -0
  59. package/template/vue_ts_prettieric_tailwindcss_pinia/tsconfig.json +43 -0
  60. package/template/vue_ts_prettieric_tailwindcss_pinia/tsconfig.node.json +13 -0
  61. package/template/vue_ts_prettieric_tailwindcss_pinia/vite.config.ts +27 -0
@@ -0,0 +1,2936 @@
1
+ {
2
+ "name": "lowercode",
3
+ "version": "1.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "lowercode",
9
+ "version": "1.0.0",
10
+ "license": "MIT",
11
+ "dependencies": {
12
+ "@tailwindcss/vite": "^4.2.2",
13
+ "pinia": "^3.0.4",
14
+ "tailwindcss": "^4.2.2",
15
+ "vue": "^3.5.31"
16
+ },
17
+ "devDependencies": {
18
+ "@eslint/js": "^10.0.1",
19
+ "@vitejs/plugin-vue": "^6.0.5",
20
+ "eslint": "^10.1.0",
21
+ "eslint-plugin-vue": "^10.8.0",
22
+ "globals": "^17.4.0",
23
+ "jiti": "^2.6.1",
24
+ "typescript": "^6.0.2",
25
+ "typescript-eslint": "^8.58.0",
26
+ "vite": "^8.0.3",
27
+ "vue-tsc": "^3.2.6"
28
+ }
29
+ },
30
+ "node_modules/@babel/helper-string-parser": {
31
+ "version": "7.27.1",
32
+ "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
33
+ "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
34
+ "license": "MIT",
35
+ "engines": {
36
+ "node": ">=6.9.0"
37
+ }
38
+ },
39
+ "node_modules/@babel/helper-validator-identifier": {
40
+ "version": "7.28.5",
41
+ "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
42
+ "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
43
+ "license": "MIT",
44
+ "engines": {
45
+ "node": ">=6.9.0"
46
+ }
47
+ },
48
+ "node_modules/@babel/parser": {
49
+ "version": "7.29.2",
50
+ "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.29.2.tgz",
51
+ "integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==",
52
+ "license": "MIT",
53
+ "dependencies": {
54
+ "@babel/types": "^7.29.0"
55
+ },
56
+ "bin": {
57
+ "parser": "bin/babel-parser.js"
58
+ },
59
+ "engines": {
60
+ "node": ">=6.0.0"
61
+ }
62
+ },
63
+ "node_modules/@babel/types": {
64
+ "version": "7.29.0",
65
+ "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.29.0.tgz",
66
+ "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
67
+ "license": "MIT",
68
+ "dependencies": {
69
+ "@babel/helper-string-parser": "^7.27.1",
70
+ "@babel/helper-validator-identifier": "^7.28.5"
71
+ },
72
+ "engines": {
73
+ "node": ">=6.9.0"
74
+ }
75
+ },
76
+ "node_modules/@emnapi/core": {
77
+ "version": "1.9.1",
78
+ "resolved": "https://registry.npmmirror.com/@emnapi/core/-/core-1.9.1.tgz",
79
+ "integrity": "sha512-mukuNALVsoix/w1BJwFzwXBN/dHeejQtuVzcDsfOEsdpCumXb/E9j8w11h5S54tT1xhifGfbbSm/ICrObRb3KA==",
80
+ "license": "MIT",
81
+ "optional": true,
82
+ "dependencies": {
83
+ "@emnapi/wasi-threads": "1.2.0",
84
+ "tslib": "^2.4.0"
85
+ }
86
+ },
87
+ "node_modules/@emnapi/runtime": {
88
+ "version": "1.9.1",
89
+ "resolved": "https://registry.npmmirror.com/@emnapi/runtime/-/runtime-1.9.1.tgz",
90
+ "integrity": "sha512-VYi5+ZVLhpgK4hQ0TAjiQiZ6ol0oe4mBx7mVv7IflsiEp0OWoVsp/+f9Vc1hOhE0TtkORVrI1GvzyreqpgWtkA==",
91
+ "license": "MIT",
92
+ "optional": true,
93
+ "dependencies": {
94
+ "tslib": "^2.4.0"
95
+ }
96
+ },
97
+ "node_modules/@emnapi/wasi-threads": {
98
+ "version": "1.2.0",
99
+ "resolved": "https://registry.npmmirror.com/@emnapi/wasi-threads/-/wasi-threads-1.2.0.tgz",
100
+ "integrity": "sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==",
101
+ "license": "MIT",
102
+ "optional": true,
103
+ "dependencies": {
104
+ "tslib": "^2.4.0"
105
+ }
106
+ },
107
+ "node_modules/@eslint-community/eslint-utils": {
108
+ "version": "4.9.1",
109
+ "resolved": "https://registry.npmmirror.com/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz",
110
+ "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==",
111
+ "dev": true,
112
+ "license": "MIT",
113
+ "dependencies": {
114
+ "eslint-visitor-keys": "^3.4.3"
115
+ },
116
+ "engines": {
117
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
118
+ },
119
+ "funding": {
120
+ "url": "https://opencollective.com/eslint"
121
+ },
122
+ "peerDependencies": {
123
+ "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
124
+ }
125
+ },
126
+ "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
127
+ "version": "3.4.3",
128
+ "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
129
+ "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
130
+ "dev": true,
131
+ "license": "Apache-2.0",
132
+ "engines": {
133
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
134
+ },
135
+ "funding": {
136
+ "url": "https://opencollective.com/eslint"
137
+ }
138
+ },
139
+ "node_modules/@eslint-community/regexpp": {
140
+ "version": "4.12.2",
141
+ "resolved": "https://registry.npmmirror.com/@eslint-community/regexpp/-/regexpp-4.12.2.tgz",
142
+ "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==",
143
+ "dev": true,
144
+ "license": "MIT",
145
+ "engines": {
146
+ "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
147
+ }
148
+ },
149
+ "node_modules/@eslint/config-array": {
150
+ "version": "0.23.3",
151
+ "resolved": "https://registry.npmmirror.com/@eslint/config-array/-/config-array-0.23.3.tgz",
152
+ "integrity": "sha512-j+eEWmB6YYLwcNOdlwQ6L2OsptI/LO6lNBuLIqe5R7RetD658HLoF+Mn7LzYmAWWNNzdC6cqP+L6r8ujeYXWLw==",
153
+ "dev": true,
154
+ "license": "Apache-2.0",
155
+ "dependencies": {
156
+ "@eslint/object-schema": "^3.0.3",
157
+ "debug": "^4.3.1",
158
+ "minimatch": "^10.2.4"
159
+ },
160
+ "engines": {
161
+ "node": "^20.19.0 || ^22.13.0 || >=24"
162
+ }
163
+ },
164
+ "node_modules/@eslint/config-helpers": {
165
+ "version": "0.5.3",
166
+ "resolved": "https://registry.npmmirror.com/@eslint/config-helpers/-/config-helpers-0.5.3.tgz",
167
+ "integrity": "sha512-lzGN0onllOZCGroKJmRwY6QcEHxbjBw1gwB8SgRSqK8YbbtEXMvKynsXc3553ckIEBxsbMBU7oOZXKIPGZNeZw==",
168
+ "dev": true,
169
+ "license": "Apache-2.0",
170
+ "dependencies": {
171
+ "@eslint/core": "^1.1.1"
172
+ },
173
+ "engines": {
174
+ "node": "^20.19.0 || ^22.13.0 || >=24"
175
+ }
176
+ },
177
+ "node_modules/@eslint/core": {
178
+ "version": "1.1.1",
179
+ "resolved": "https://registry.npmmirror.com/@eslint/core/-/core-1.1.1.tgz",
180
+ "integrity": "sha512-QUPblTtE51/7/Zhfv8BDwO0qkkzQL7P/aWWbqcf4xWLEYn1oKjdO0gglQBB4GAsu7u6wjijbCmzsUTy6mnk6oQ==",
181
+ "dev": true,
182
+ "license": "Apache-2.0",
183
+ "dependencies": {
184
+ "@types/json-schema": "^7.0.15"
185
+ },
186
+ "engines": {
187
+ "node": "^20.19.0 || ^22.13.0 || >=24"
188
+ }
189
+ },
190
+ "node_modules/@eslint/js": {
191
+ "version": "10.0.1",
192
+ "resolved": "https://registry.npmmirror.com/@eslint/js/-/js-10.0.1.tgz",
193
+ "integrity": "sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA==",
194
+ "dev": true,
195
+ "license": "MIT",
196
+ "engines": {
197
+ "node": "^20.19.0 || ^22.13.0 || >=24"
198
+ },
199
+ "funding": {
200
+ "url": "https://eslint.org/donate"
201
+ },
202
+ "peerDependencies": {
203
+ "eslint": "^10.0.0"
204
+ },
205
+ "peerDependenciesMeta": {
206
+ "eslint": {
207
+ "optional": true
208
+ }
209
+ }
210
+ },
211
+ "node_modules/@eslint/object-schema": {
212
+ "version": "3.0.3",
213
+ "resolved": "https://registry.npmmirror.com/@eslint/object-schema/-/object-schema-3.0.3.tgz",
214
+ "integrity": "sha512-iM869Pugn9Nsxbh/YHRqYiqd23AmIbxJOcpUMOuWCVNdoQJ5ZtwL6h3t0bcZzJUlC3Dq9jCFCESBZnX0GTv7iQ==",
215
+ "dev": true,
216
+ "license": "Apache-2.0",
217
+ "engines": {
218
+ "node": "^20.19.0 || ^22.13.0 || >=24"
219
+ }
220
+ },
221
+ "node_modules/@eslint/plugin-kit": {
222
+ "version": "0.6.1",
223
+ "resolved": "https://registry.npmmirror.com/@eslint/plugin-kit/-/plugin-kit-0.6.1.tgz",
224
+ "integrity": "sha512-iH1B076HoAshH1mLpHMgwdGeTs0CYwL0SPMkGuSebZrwBp16v415e9NZXg2jtrqPVQjf6IANe2Vtlr5KswtcZQ==",
225
+ "dev": true,
226
+ "license": "Apache-2.0",
227
+ "dependencies": {
228
+ "@eslint/core": "^1.1.1",
229
+ "levn": "^0.4.1"
230
+ },
231
+ "engines": {
232
+ "node": "^20.19.0 || ^22.13.0 || >=24"
233
+ }
234
+ },
235
+ "node_modules/@humanfs/core": {
236
+ "version": "0.19.1",
237
+ "resolved": "https://registry.npmmirror.com/@humanfs/core/-/core-0.19.1.tgz",
238
+ "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==",
239
+ "dev": true,
240
+ "license": "Apache-2.0",
241
+ "engines": {
242
+ "node": ">=18.18.0"
243
+ }
244
+ },
245
+ "node_modules/@humanfs/node": {
246
+ "version": "0.16.7",
247
+ "resolved": "https://registry.npmmirror.com/@humanfs/node/-/node-0.16.7.tgz",
248
+ "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==",
249
+ "dev": true,
250
+ "license": "Apache-2.0",
251
+ "dependencies": {
252
+ "@humanfs/core": "^0.19.1",
253
+ "@humanwhocodes/retry": "^0.4.0"
254
+ },
255
+ "engines": {
256
+ "node": ">=18.18.0"
257
+ }
258
+ },
259
+ "node_modules/@humanwhocodes/module-importer": {
260
+ "version": "1.0.1",
261
+ "resolved": "https://registry.npmmirror.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
262
+ "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
263
+ "dev": true,
264
+ "license": "Apache-2.0",
265
+ "engines": {
266
+ "node": ">=12.22"
267
+ },
268
+ "funding": {
269
+ "type": "github",
270
+ "url": "https://github.com/sponsors/nzakas"
271
+ }
272
+ },
273
+ "node_modules/@humanwhocodes/retry": {
274
+ "version": "0.4.3",
275
+ "resolved": "https://registry.npmmirror.com/@humanwhocodes/retry/-/retry-0.4.3.tgz",
276
+ "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==",
277
+ "dev": true,
278
+ "license": "Apache-2.0",
279
+ "engines": {
280
+ "node": ">=18.18"
281
+ },
282
+ "funding": {
283
+ "type": "github",
284
+ "url": "https://github.com/sponsors/nzakas"
285
+ }
286
+ },
287
+ "node_modules/@jridgewell/gen-mapping": {
288
+ "version": "0.3.13",
289
+ "resolved": "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
290
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
291
+ "license": "MIT",
292
+ "dependencies": {
293
+ "@jridgewell/sourcemap-codec": "^1.5.0",
294
+ "@jridgewell/trace-mapping": "^0.3.24"
295
+ }
296
+ },
297
+ "node_modules/@jridgewell/remapping": {
298
+ "version": "2.3.5",
299
+ "resolved": "https://registry.npmmirror.com/@jridgewell/remapping/-/remapping-2.3.5.tgz",
300
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
301
+ "license": "MIT",
302
+ "dependencies": {
303
+ "@jridgewell/gen-mapping": "^0.3.5",
304
+ "@jridgewell/trace-mapping": "^0.3.24"
305
+ }
306
+ },
307
+ "node_modules/@jridgewell/resolve-uri": {
308
+ "version": "3.1.2",
309
+ "resolved": "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
310
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
311
+ "license": "MIT",
312
+ "engines": {
313
+ "node": ">=6.0.0"
314
+ }
315
+ },
316
+ "node_modules/@jridgewell/sourcemap-codec": {
317
+ "version": "1.5.5",
318
+ "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
319
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
320
+ "license": "MIT"
321
+ },
322
+ "node_modules/@jridgewell/trace-mapping": {
323
+ "version": "0.3.31",
324
+ "resolved": "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
325
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
326
+ "license": "MIT",
327
+ "dependencies": {
328
+ "@jridgewell/resolve-uri": "^3.1.0",
329
+ "@jridgewell/sourcemap-codec": "^1.4.14"
330
+ }
331
+ },
332
+ "node_modules/@napi-rs/wasm-runtime": {
333
+ "version": "1.1.2",
334
+ "resolved": "https://registry.npmmirror.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.2.tgz",
335
+ "integrity": "sha512-sNXv5oLJ7ob93xkZ1XnxisYhGYXfaG9f65/ZgYuAu3qt7b3NadcOEhLvx28hv31PgX8SZJRYrAIPQilQmFpLVw==",
336
+ "license": "MIT",
337
+ "optional": true,
338
+ "dependencies": {
339
+ "@tybys/wasm-util": "^0.10.1"
340
+ },
341
+ "funding": {
342
+ "type": "github",
343
+ "url": "https://github.com/sponsors/Brooooooklyn"
344
+ },
345
+ "peerDependencies": {
346
+ "@emnapi/core": "^1.7.1",
347
+ "@emnapi/runtime": "^1.7.1"
348
+ }
349
+ },
350
+ "node_modules/@oxc-project/types": {
351
+ "version": "0.122.0",
352
+ "resolved": "https://registry.npmmirror.com/@oxc-project/types/-/types-0.122.0.tgz",
353
+ "integrity": "sha512-oLAl5kBpV4w69UtFZ9xqcmTi+GENWOcPF7FCrczTiBbmC0ibXxCwyvZGbO39rCVEuLGAZM84DH0pUIyyv/YJzA==",
354
+ "license": "MIT",
355
+ "funding": {
356
+ "url": "https://github.com/sponsors/Boshen"
357
+ }
358
+ },
359
+ "node_modules/@rolldown/binding-android-arm64": {
360
+ "version": "1.0.0-rc.12",
361
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-rc.12.tgz",
362
+ "integrity": "sha512-pv1y2Fv0JybcykuiiD3qBOBdz6RteYojRFY1d+b95WVuzx211CRh+ytI/+9iVyWQ6koTh5dawe4S/yRfOFjgaA==",
363
+ "cpu": [
364
+ "arm64"
365
+ ],
366
+ "license": "MIT",
367
+ "optional": true,
368
+ "os": [
369
+ "android"
370
+ ],
371
+ "engines": {
372
+ "node": "^20.19.0 || >=22.12.0"
373
+ }
374
+ },
375
+ "node_modules/@rolldown/binding-darwin-arm64": {
376
+ "version": "1.0.0-rc.12",
377
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-rc.12.tgz",
378
+ "integrity": "sha512-cFYr6zTG/3PXXF3pUO+umXxt1wkRK/0AYT8lDwuqvRC+LuKYWSAQAQZjCWDQpAH172ZV6ieYrNnFzVVcnSflAg==",
379
+ "cpu": [
380
+ "arm64"
381
+ ],
382
+ "license": "MIT",
383
+ "optional": true,
384
+ "os": [
385
+ "darwin"
386
+ ],
387
+ "engines": {
388
+ "node": "^20.19.0 || >=22.12.0"
389
+ }
390
+ },
391
+ "node_modules/@rolldown/binding-darwin-x64": {
392
+ "version": "1.0.0-rc.12",
393
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0-rc.12.tgz",
394
+ "integrity": "sha512-ZCsYknnHzeXYps0lGBz8JrF37GpE9bFVefrlmDrAQhOEi4IOIlcoU1+FwHEtyXGx2VkYAvhu7dyBf75EJQffBw==",
395
+ "cpu": [
396
+ "x64"
397
+ ],
398
+ "license": "MIT",
399
+ "optional": true,
400
+ "os": [
401
+ "darwin"
402
+ ],
403
+ "engines": {
404
+ "node": "^20.19.0 || >=22.12.0"
405
+ }
406
+ },
407
+ "node_modules/@rolldown/binding-freebsd-x64": {
408
+ "version": "1.0.0-rc.12",
409
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0-rc.12.tgz",
410
+ "integrity": "sha512-dMLeprcVsyJsKolRXyoTH3NL6qtsT0Y2xeuEA8WQJquWFXkEC4bcu1rLZZSnZRMtAqwtrF/Ib9Ddtpa/Gkge9Q==",
411
+ "cpu": [
412
+ "x64"
413
+ ],
414
+ "license": "MIT",
415
+ "optional": true,
416
+ "os": [
417
+ "freebsd"
418
+ ],
419
+ "engines": {
420
+ "node": "^20.19.0 || >=22.12.0"
421
+ }
422
+ },
423
+ "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
424
+ "version": "1.0.0-rc.12",
425
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0-rc.12.tgz",
426
+ "integrity": "sha512-YqWjAgGC/9M1lz3GR1r1rP79nMgo3mQiiA+Hfo+pvKFK1fAJ1bCi0ZQVh8noOqNacuY1qIcfyVfP6HoyBRZ85Q==",
427
+ "cpu": [
428
+ "arm"
429
+ ],
430
+ "license": "MIT",
431
+ "optional": true,
432
+ "os": [
433
+ "linux"
434
+ ],
435
+ "engines": {
436
+ "node": "^20.19.0 || >=22.12.0"
437
+ }
438
+ },
439
+ "node_modules/@rolldown/binding-linux-arm64-gnu": {
440
+ "version": "1.0.0-rc.12",
441
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0-rc.12.tgz",
442
+ "integrity": "sha512-/I5AS4cIroLpslsmzXfwbe5OmWvSsrFuEw3mwvbQ1kDxJ822hFHIx+vsN/TAzNVyepI/j/GSzrtCIwQPeKCLIg==",
443
+ "cpu": [
444
+ "arm64"
445
+ ],
446
+ "license": "MIT",
447
+ "optional": true,
448
+ "os": [
449
+ "linux"
450
+ ],
451
+ "engines": {
452
+ "node": "^20.19.0 || >=22.12.0"
453
+ }
454
+ },
455
+ "node_modules/@rolldown/binding-linux-arm64-musl": {
456
+ "version": "1.0.0-rc.12",
457
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0-rc.12.tgz",
458
+ "integrity": "sha512-V6/wZztnBqlx5hJQqNWwFdxIKN0m38p8Jas+VoSfgH54HSj9tKTt1dZvG6JRHcjh6D7TvrJPWFGaY9UBVOaWPw==",
459
+ "cpu": [
460
+ "arm64"
461
+ ],
462
+ "license": "MIT",
463
+ "optional": true,
464
+ "os": [
465
+ "linux"
466
+ ],
467
+ "engines": {
468
+ "node": "^20.19.0 || >=22.12.0"
469
+ }
470
+ },
471
+ "node_modules/@rolldown/binding-linux-ppc64-gnu": {
472
+ "version": "1.0.0-rc.12",
473
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.0-rc.12.tgz",
474
+ "integrity": "sha512-AP3E9BpcUYliZCxa3w5Kwj9OtEVDYK6sVoUzy4vTOJsjPOgdaJZKFmN4oOlX0Wp0RPV2ETfmIra9x1xuayFB7g==",
475
+ "cpu": [
476
+ "ppc64"
477
+ ],
478
+ "license": "MIT",
479
+ "optional": true,
480
+ "os": [
481
+ "linux"
482
+ ],
483
+ "engines": {
484
+ "node": "^20.19.0 || >=22.12.0"
485
+ }
486
+ },
487
+ "node_modules/@rolldown/binding-linux-s390x-gnu": {
488
+ "version": "1.0.0-rc.12",
489
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.0-rc.12.tgz",
490
+ "integrity": "sha512-nWwpvUSPkoFmZo0kQazZYOrT7J5DGOJ/+QHHzjvNlooDZED8oH82Yg67HvehPPLAg5fUff7TfWFHQS8IV1n3og==",
491
+ "cpu": [
492
+ "s390x"
493
+ ],
494
+ "license": "MIT",
495
+ "optional": true,
496
+ "os": [
497
+ "linux"
498
+ ],
499
+ "engines": {
500
+ "node": "^20.19.0 || >=22.12.0"
501
+ }
502
+ },
503
+ "node_modules/@rolldown/binding-linux-x64-gnu": {
504
+ "version": "1.0.0-rc.12",
505
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0-rc.12.tgz",
506
+ "integrity": "sha512-RNrafz5bcwRy+O9e6P8Z/OCAJW/A+qtBczIqVYwTs14pf4iV1/+eKEjdOUta93q2TsT/FI0XYDP3TCky38LMAg==",
507
+ "cpu": [
508
+ "x64"
509
+ ],
510
+ "license": "MIT",
511
+ "optional": true,
512
+ "os": [
513
+ "linux"
514
+ ],
515
+ "engines": {
516
+ "node": "^20.19.0 || >=22.12.0"
517
+ }
518
+ },
519
+ "node_modules/@rolldown/binding-linux-x64-musl": {
520
+ "version": "1.0.0-rc.12",
521
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0-rc.12.tgz",
522
+ "integrity": "sha512-Jpw/0iwoKWx3LJ2rc1yjFrj+T7iHZn2JDg1Yny1ma0luviFS4mhAIcd1LFNxK3EYu3DHWCps0ydXQ5i/rrJ2ig==",
523
+ "cpu": [
524
+ "x64"
525
+ ],
526
+ "license": "MIT",
527
+ "optional": true,
528
+ "os": [
529
+ "linux"
530
+ ],
531
+ "engines": {
532
+ "node": "^20.19.0 || >=22.12.0"
533
+ }
534
+ },
535
+ "node_modules/@rolldown/binding-openharmony-arm64": {
536
+ "version": "1.0.0-rc.12",
537
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0-rc.12.tgz",
538
+ "integrity": "sha512-vRugONE4yMfVn0+7lUKdKvN4D5YusEiPilaoO2sgUWpCvrncvWgPMzK00ZFFJuiPgLwgFNP5eSiUlv2tfc+lpA==",
539
+ "cpu": [
540
+ "arm64"
541
+ ],
542
+ "license": "MIT",
543
+ "optional": true,
544
+ "os": [
545
+ "openharmony"
546
+ ],
547
+ "engines": {
548
+ "node": "^20.19.0 || >=22.12.0"
549
+ }
550
+ },
551
+ "node_modules/@rolldown/binding-wasm32-wasi": {
552
+ "version": "1.0.0-rc.12",
553
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0-rc.12.tgz",
554
+ "integrity": "sha512-ykGiLr/6kkiHc0XnBfmFJuCjr5ZYKKofkx+chJWDjitX+KsJuAmrzWhwyOMSHzPhzOHOy7u9HlFoa5MoAOJ/Zg==",
555
+ "cpu": [
556
+ "wasm32"
557
+ ],
558
+ "license": "MIT",
559
+ "optional": true,
560
+ "dependencies": {
561
+ "@napi-rs/wasm-runtime": "^1.1.1"
562
+ },
563
+ "engines": {
564
+ "node": ">=14.0.0"
565
+ }
566
+ },
567
+ "node_modules/@rolldown/binding-win32-arm64-msvc": {
568
+ "version": "1.0.0-rc.12",
569
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0-rc.12.tgz",
570
+ "integrity": "sha512-5eOND4duWkwx1AzCxadcOrNeighiLwMInEADT0YM7xeEOOFcovWZCq8dadXgcRHSf3Ulh1kFo/qvzoFiCLOL1Q==",
571
+ "cpu": [
572
+ "arm64"
573
+ ],
574
+ "license": "MIT",
575
+ "optional": true,
576
+ "os": [
577
+ "win32"
578
+ ],
579
+ "engines": {
580
+ "node": "^20.19.0 || >=22.12.0"
581
+ }
582
+ },
583
+ "node_modules/@rolldown/binding-win32-x64-msvc": {
584
+ "version": "1.0.0-rc.12",
585
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-rc.12.tgz",
586
+ "integrity": "sha512-PyqoipaswDLAZtot351MLhrlrh6lcZPo2LSYE+VDxbVk24LVKAGOuE4hb8xZQmrPAuEtTZW8E6D2zc5EUZX4Lw==",
587
+ "cpu": [
588
+ "x64"
589
+ ],
590
+ "license": "MIT",
591
+ "optional": true,
592
+ "os": [
593
+ "win32"
594
+ ],
595
+ "engines": {
596
+ "node": "^20.19.0 || >=22.12.0"
597
+ }
598
+ },
599
+ "node_modules/@rolldown/pluginutils": {
600
+ "version": "1.0.0-rc.2",
601
+ "resolved": "https://registry.npmmirror.com/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.2.tgz",
602
+ "integrity": "sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==",
603
+ "dev": true,
604
+ "license": "MIT"
605
+ },
606
+ "node_modules/@tailwindcss/node": {
607
+ "version": "4.2.2",
608
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/node/-/node-4.2.2.tgz",
609
+ "integrity": "sha512-pXS+wJ2gZpVXqFaUEjojq7jzMpTGf8rU6ipJz5ovJV6PUGmlJ+jvIwGrzdHdQ80Sg+wmQxUFuoW1UAAwHNEdFA==",
610
+ "license": "MIT",
611
+ "dependencies": {
612
+ "@jridgewell/remapping": "^2.3.5",
613
+ "enhanced-resolve": "^5.19.0",
614
+ "jiti": "^2.6.1",
615
+ "lightningcss": "1.32.0",
616
+ "magic-string": "^0.30.21",
617
+ "source-map-js": "^1.2.1",
618
+ "tailwindcss": "4.2.2"
619
+ }
620
+ },
621
+ "node_modules/@tailwindcss/oxide": {
622
+ "version": "4.2.2",
623
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide/-/oxide-4.2.2.tgz",
624
+ "integrity": "sha512-qEUA07+E5kehxYp9BVMpq9E8vnJuBHfJEC0vPC5e7iL/hw7HR61aDKoVoKzrG+QKp56vhNZe4qwkRmMC0zDLvg==",
625
+ "license": "MIT",
626
+ "engines": {
627
+ "node": ">= 20"
628
+ },
629
+ "optionalDependencies": {
630
+ "@tailwindcss/oxide-android-arm64": "4.2.2",
631
+ "@tailwindcss/oxide-darwin-arm64": "4.2.2",
632
+ "@tailwindcss/oxide-darwin-x64": "4.2.2",
633
+ "@tailwindcss/oxide-freebsd-x64": "4.2.2",
634
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.2",
635
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.2.2",
636
+ "@tailwindcss/oxide-linux-arm64-musl": "4.2.2",
637
+ "@tailwindcss/oxide-linux-x64-gnu": "4.2.2",
638
+ "@tailwindcss/oxide-linux-x64-musl": "4.2.2",
639
+ "@tailwindcss/oxide-wasm32-wasi": "4.2.2",
640
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.2.2",
641
+ "@tailwindcss/oxide-win32-x64-msvc": "4.2.2"
642
+ }
643
+ },
644
+ "node_modules/@tailwindcss/oxide-android-arm64": {
645
+ "version": "4.2.2",
646
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.2.tgz",
647
+ "integrity": "sha512-dXGR1n+P3B6748jZO/SvHZq7qBOqqzQ+yFrXpoOWWALWndF9MoSKAT3Q0fYgAzYzGhxNYOoysRvYlpixRBBoDg==",
648
+ "cpu": [
649
+ "arm64"
650
+ ],
651
+ "license": "MIT",
652
+ "optional": true,
653
+ "os": [
654
+ "android"
655
+ ],
656
+ "engines": {
657
+ "node": ">= 20"
658
+ }
659
+ },
660
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
661
+ "version": "4.2.2",
662
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.2.tgz",
663
+ "integrity": "sha512-iq9Qjr6knfMpZHj55/37ouZeykwbDqF21gPFtfnhCCKGDcPI/21FKC9XdMO/XyBM7qKORx6UIhGgg6jLl7BZlg==",
664
+ "cpu": [
665
+ "arm64"
666
+ ],
667
+ "license": "MIT",
668
+ "optional": true,
669
+ "os": [
670
+ "darwin"
671
+ ],
672
+ "engines": {
673
+ "node": ">= 20"
674
+ }
675
+ },
676
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
677
+ "version": "4.2.2",
678
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.2.tgz",
679
+ "integrity": "sha512-BlR+2c3nzc8f2G639LpL89YY4bdcIdUmiOOkv2GQv4/4M0vJlpXEa0JXNHhCHU7VWOKWT/CjqHdTP8aUuDJkuw==",
680
+ "cpu": [
681
+ "x64"
682
+ ],
683
+ "license": "MIT",
684
+ "optional": true,
685
+ "os": [
686
+ "darwin"
687
+ ],
688
+ "engines": {
689
+ "node": ">= 20"
690
+ }
691
+ },
692
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
693
+ "version": "4.2.2",
694
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.2.tgz",
695
+ "integrity": "sha512-YUqUgrGMSu2CDO82hzlQ5qSb5xmx3RUrke/QgnoEx7KvmRJHQuZHZmZTLSuuHwFf0DJPybFMXMYf+WJdxHy/nQ==",
696
+ "cpu": [
697
+ "x64"
698
+ ],
699
+ "license": "MIT",
700
+ "optional": true,
701
+ "os": [
702
+ "freebsd"
703
+ ],
704
+ "engines": {
705
+ "node": ">= 20"
706
+ }
707
+ },
708
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
709
+ "version": "4.2.2",
710
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.2.tgz",
711
+ "integrity": "sha512-FPdhvsW6g06T9BWT0qTwiVZYE2WIFo2dY5aCSpjG/S/u1tby+wXoslXS0kl3/KXnULlLr1E3NPRRw0g7t2kgaQ==",
712
+ "cpu": [
713
+ "arm"
714
+ ],
715
+ "license": "MIT",
716
+ "optional": true,
717
+ "os": [
718
+ "linux"
719
+ ],
720
+ "engines": {
721
+ "node": ">= 20"
722
+ }
723
+ },
724
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
725
+ "version": "4.2.2",
726
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.2.tgz",
727
+ "integrity": "sha512-4og1V+ftEPXGttOO7eCmW7VICmzzJWgMx+QXAJRAhjrSjumCwWqMfkDrNu1LXEQzNAwz28NCUpucgQPrR4S2yw==",
728
+ "cpu": [
729
+ "arm64"
730
+ ],
731
+ "license": "MIT",
732
+ "optional": true,
733
+ "os": [
734
+ "linux"
735
+ ],
736
+ "engines": {
737
+ "node": ">= 20"
738
+ }
739
+ },
740
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
741
+ "version": "4.2.2",
742
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.2.tgz",
743
+ "integrity": "sha512-oCfG/mS+/+XRlwNjnsNLVwnMWYH7tn/kYPsNPh+JSOMlnt93mYNCKHYzylRhI51X+TbR+ufNhhKKzm6QkqX8ag==",
744
+ "cpu": [
745
+ "arm64"
746
+ ],
747
+ "license": "MIT",
748
+ "optional": true,
749
+ "os": [
750
+ "linux"
751
+ ],
752
+ "engines": {
753
+ "node": ">= 20"
754
+ }
755
+ },
756
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
757
+ "version": "4.2.2",
758
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.2.tgz",
759
+ "integrity": "sha512-rTAGAkDgqbXHNp/xW0iugLVmX62wOp2PoE39BTCGKjv3Iocf6AFbRP/wZT/kuCxC9QBh9Pu8XPkv/zCZB2mcMg==",
760
+ "cpu": [
761
+ "x64"
762
+ ],
763
+ "license": "MIT",
764
+ "optional": true,
765
+ "os": [
766
+ "linux"
767
+ ],
768
+ "engines": {
769
+ "node": ">= 20"
770
+ }
771
+ },
772
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
773
+ "version": "4.2.2",
774
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.2.tgz",
775
+ "integrity": "sha512-XW3t3qwbIwiSyRCggeO2zxe3KWaEbM0/kW9e8+0XpBgyKU4ATYzcVSMKteZJ1iukJ3HgHBjbg9P5YPRCVUxlnQ==",
776
+ "cpu": [
777
+ "x64"
778
+ ],
779
+ "license": "MIT",
780
+ "optional": true,
781
+ "os": [
782
+ "linux"
783
+ ],
784
+ "engines": {
785
+ "node": ">= 20"
786
+ }
787
+ },
788
+ "node_modules/@tailwindcss/oxide-wasm32-wasi": {
789
+ "version": "4.2.2",
790
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.2.tgz",
791
+ "integrity": "sha512-eKSztKsmEsn1O5lJ4ZAfyn41NfG7vzCg496YiGtMDV86jz1q/irhms5O0VrY6ZwTUkFy/EKG3RfWgxSI3VbZ8Q==",
792
+ "bundleDependencies": [
793
+ "@napi-rs/wasm-runtime",
794
+ "@emnapi/core",
795
+ "@emnapi/runtime",
796
+ "@tybys/wasm-util",
797
+ "@emnapi/wasi-threads",
798
+ "tslib"
799
+ ],
800
+ "cpu": [
801
+ "wasm32"
802
+ ],
803
+ "license": "MIT",
804
+ "optional": true,
805
+ "dependencies": {
806
+ "@emnapi/core": "^1.8.1",
807
+ "@emnapi/runtime": "^1.8.1",
808
+ "@emnapi/wasi-threads": "^1.1.0",
809
+ "@napi-rs/wasm-runtime": "^1.1.1",
810
+ "@tybys/wasm-util": "^0.10.1",
811
+ "tslib": "^2.8.1"
812
+ },
813
+ "engines": {
814
+ "node": ">=14.0.0"
815
+ }
816
+ },
817
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
818
+ "version": "4.2.2",
819
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.2.tgz",
820
+ "integrity": "sha512-qPmaQM4iKu5mxpsrWZMOZRgZv1tOZpUm+zdhhQP0VhJfyGGO3aUKdbh3gDZc/dPLQwW4eSqWGrrcWNBZWUWaXQ==",
821
+ "cpu": [
822
+ "arm64"
823
+ ],
824
+ "license": "MIT",
825
+ "optional": true,
826
+ "os": [
827
+ "win32"
828
+ ],
829
+ "engines": {
830
+ "node": ">= 20"
831
+ }
832
+ },
833
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
834
+ "version": "4.2.2",
835
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.2.tgz",
836
+ "integrity": "sha512-1T/37VvI7WyH66b+vqHj/cLwnCxt7Qt3WFu5Q8hk65aOvlwAhs7rAp1VkulBJw/N4tMirXjVnylTR72uI0HGcA==",
837
+ "cpu": [
838
+ "x64"
839
+ ],
840
+ "license": "MIT",
841
+ "optional": true,
842
+ "os": [
843
+ "win32"
844
+ ],
845
+ "engines": {
846
+ "node": ">= 20"
847
+ }
848
+ },
849
+ "node_modules/@tailwindcss/vite": {
850
+ "version": "4.2.2",
851
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/vite/-/vite-4.2.2.tgz",
852
+ "integrity": "sha512-mEiF5HO1QqCLXoNEfXVA1Tzo+cYsrqV7w9Juj2wdUFyW07JRenqMG225MvPwr3ZD9N1bFQj46X7r33iHxLUW0w==",
853
+ "license": "MIT",
854
+ "dependencies": {
855
+ "@tailwindcss/node": "4.2.2",
856
+ "@tailwindcss/oxide": "4.2.2",
857
+ "tailwindcss": "4.2.2"
858
+ },
859
+ "peerDependencies": {
860
+ "vite": "^5.2.0 || ^6 || ^7 || ^8"
861
+ }
862
+ },
863
+ "node_modules/@tybys/wasm-util": {
864
+ "version": "0.10.1",
865
+ "resolved": "https://registry.npmmirror.com/@tybys/wasm-util/-/wasm-util-0.10.1.tgz",
866
+ "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==",
867
+ "license": "MIT",
868
+ "optional": true,
869
+ "dependencies": {
870
+ "tslib": "^2.4.0"
871
+ }
872
+ },
873
+ "node_modules/@types/esrecurse": {
874
+ "version": "4.3.1",
875
+ "resolved": "https://registry.npmmirror.com/@types/esrecurse/-/esrecurse-4.3.1.tgz",
876
+ "integrity": "sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==",
877
+ "dev": true,
878
+ "license": "MIT"
879
+ },
880
+ "node_modules/@types/estree": {
881
+ "version": "1.0.8",
882
+ "resolved": "https://registry.npmmirror.com/@types/estree/-/estree-1.0.8.tgz",
883
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
884
+ "dev": true,
885
+ "license": "MIT"
886
+ },
887
+ "node_modules/@types/json-schema": {
888
+ "version": "7.0.15",
889
+ "resolved": "https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.15.tgz",
890
+ "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
891
+ "dev": true,
892
+ "license": "MIT"
893
+ },
894
+ "node_modules/@typescript-eslint/eslint-plugin": {
895
+ "version": "8.58.0",
896
+ "resolved": "https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.58.0.tgz",
897
+ "integrity": "sha512-RLkVSiNuUP1C2ROIWfqX+YcUfLaSnxGE/8M+Y57lopVwg9VTYYfhuz15Yf1IzCKgZj6/rIbYTmJCUSqr76r0Wg==",
898
+ "dev": true,
899
+ "license": "MIT",
900
+ "dependencies": {
901
+ "@eslint-community/regexpp": "^4.12.2",
902
+ "@typescript-eslint/scope-manager": "8.58.0",
903
+ "@typescript-eslint/type-utils": "8.58.0",
904
+ "@typescript-eslint/utils": "8.58.0",
905
+ "@typescript-eslint/visitor-keys": "8.58.0",
906
+ "ignore": "^7.0.5",
907
+ "natural-compare": "^1.4.0",
908
+ "ts-api-utils": "^2.5.0"
909
+ },
910
+ "engines": {
911
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
912
+ },
913
+ "funding": {
914
+ "type": "opencollective",
915
+ "url": "https://opencollective.com/typescript-eslint"
916
+ },
917
+ "peerDependencies": {
918
+ "@typescript-eslint/parser": "^8.58.0",
919
+ "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
920
+ "typescript": ">=4.8.4 <6.1.0"
921
+ }
922
+ },
923
+ "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
924
+ "version": "7.0.5",
925
+ "resolved": "https://registry.npmmirror.com/ignore/-/ignore-7.0.5.tgz",
926
+ "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
927
+ "dev": true,
928
+ "license": "MIT",
929
+ "engines": {
930
+ "node": ">= 4"
931
+ }
932
+ },
933
+ "node_modules/@typescript-eslint/parser": {
934
+ "version": "8.58.0",
935
+ "resolved": "https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-8.58.0.tgz",
936
+ "integrity": "sha512-rLoGZIf9afaRBYsPUMtvkDWykwXwUPL60HebR4JgTI8mxfFe2cQTu3AGitANp4b9B2QlVru6WzjgB2IzJKiCSA==",
937
+ "dev": true,
938
+ "license": "MIT",
939
+ "dependencies": {
940
+ "@typescript-eslint/scope-manager": "8.58.0",
941
+ "@typescript-eslint/types": "8.58.0",
942
+ "@typescript-eslint/typescript-estree": "8.58.0",
943
+ "@typescript-eslint/visitor-keys": "8.58.0",
944
+ "debug": "^4.4.3"
945
+ },
946
+ "engines": {
947
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
948
+ },
949
+ "funding": {
950
+ "type": "opencollective",
951
+ "url": "https://opencollective.com/typescript-eslint"
952
+ },
953
+ "peerDependencies": {
954
+ "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
955
+ "typescript": ">=4.8.4 <6.1.0"
956
+ }
957
+ },
958
+ "node_modules/@typescript-eslint/project-service": {
959
+ "version": "8.58.0",
960
+ "resolved": "https://registry.npmmirror.com/@typescript-eslint/project-service/-/project-service-8.58.0.tgz",
961
+ "integrity": "sha512-8Q/wBPWLQP1j16NxoPNIKpDZFMaxl7yWIoqXWYeWO+Bbd2mjgvoF0dxP2jKZg5+x49rgKdf7Ck473M8PC3V9lg==",
962
+ "dev": true,
963
+ "license": "MIT",
964
+ "dependencies": {
965
+ "@typescript-eslint/tsconfig-utils": "^8.58.0",
966
+ "@typescript-eslint/types": "^8.58.0",
967
+ "debug": "^4.4.3"
968
+ },
969
+ "engines": {
970
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
971
+ },
972
+ "funding": {
973
+ "type": "opencollective",
974
+ "url": "https://opencollective.com/typescript-eslint"
975
+ },
976
+ "peerDependencies": {
977
+ "typescript": ">=4.8.4 <6.1.0"
978
+ }
979
+ },
980
+ "node_modules/@typescript-eslint/scope-manager": {
981
+ "version": "8.58.0",
982
+ "resolved": "https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-8.58.0.tgz",
983
+ "integrity": "sha512-W1Lur1oF50FxSnNdGp3Vs6P+yBRSmZiw4IIjEeYxd8UQJwhUF0gDgDD/W/Tgmh73mxgEU3qX0Bzdl/NGuSPEpQ==",
984
+ "dev": true,
985
+ "license": "MIT",
986
+ "dependencies": {
987
+ "@typescript-eslint/types": "8.58.0",
988
+ "@typescript-eslint/visitor-keys": "8.58.0"
989
+ },
990
+ "engines": {
991
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
992
+ },
993
+ "funding": {
994
+ "type": "opencollective",
995
+ "url": "https://opencollective.com/typescript-eslint"
996
+ }
997
+ },
998
+ "node_modules/@typescript-eslint/tsconfig-utils": {
999
+ "version": "8.58.0",
1000
+ "resolved": "https://registry.npmmirror.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.58.0.tgz",
1001
+ "integrity": "sha512-doNSZEVJsWEu4htiVC+PR6NpM+pa+a4ClH9INRWOWCUzMst/VA9c4gXq92F8GUD1rwhNvRLkgjfYtFXegXQF7A==",
1002
+ "dev": true,
1003
+ "license": "MIT",
1004
+ "engines": {
1005
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1006
+ },
1007
+ "funding": {
1008
+ "type": "opencollective",
1009
+ "url": "https://opencollective.com/typescript-eslint"
1010
+ },
1011
+ "peerDependencies": {
1012
+ "typescript": ">=4.8.4 <6.1.0"
1013
+ }
1014
+ },
1015
+ "node_modules/@typescript-eslint/type-utils": {
1016
+ "version": "8.58.0",
1017
+ "resolved": "https://registry.npmmirror.com/@typescript-eslint/type-utils/-/type-utils-8.58.0.tgz",
1018
+ "integrity": "sha512-aGsCQImkDIqMyx1u4PrVlbi/krmDsQUs4zAcCV6M7yPcPev+RqVlndsJy9kJ8TLihW9TZ0kbDAzctpLn5o+lOg==",
1019
+ "dev": true,
1020
+ "license": "MIT",
1021
+ "dependencies": {
1022
+ "@typescript-eslint/types": "8.58.0",
1023
+ "@typescript-eslint/typescript-estree": "8.58.0",
1024
+ "@typescript-eslint/utils": "8.58.0",
1025
+ "debug": "^4.4.3",
1026
+ "ts-api-utils": "^2.5.0"
1027
+ },
1028
+ "engines": {
1029
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1030
+ },
1031
+ "funding": {
1032
+ "type": "opencollective",
1033
+ "url": "https://opencollective.com/typescript-eslint"
1034
+ },
1035
+ "peerDependencies": {
1036
+ "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
1037
+ "typescript": ">=4.8.4 <6.1.0"
1038
+ }
1039
+ },
1040
+ "node_modules/@typescript-eslint/types": {
1041
+ "version": "8.58.0",
1042
+ "resolved": "https://registry.npmmirror.com/@typescript-eslint/types/-/types-8.58.0.tgz",
1043
+ "integrity": "sha512-O9CjxypDT89fbHxRfETNoAnHj/i6IpRK0CvbVN3qibxlLdo5p5hcLmUuCCrHMpxiWSwKyI8mCP7qRNYuOJ0Uww==",
1044
+ "dev": true,
1045
+ "license": "MIT",
1046
+ "engines": {
1047
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1048
+ },
1049
+ "funding": {
1050
+ "type": "opencollective",
1051
+ "url": "https://opencollective.com/typescript-eslint"
1052
+ }
1053
+ },
1054
+ "node_modules/@typescript-eslint/typescript-estree": {
1055
+ "version": "8.58.0",
1056
+ "resolved": "https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.58.0.tgz",
1057
+ "integrity": "sha512-7vv5UWbHqew/dvs+D3e1RvLv1v2eeZ9txRHPnEEBUgSNLx5ghdzjHa0sgLWYVKssH+lYmV0JaWdoubo0ncGYLA==",
1058
+ "dev": true,
1059
+ "license": "MIT",
1060
+ "dependencies": {
1061
+ "@typescript-eslint/project-service": "8.58.0",
1062
+ "@typescript-eslint/tsconfig-utils": "8.58.0",
1063
+ "@typescript-eslint/types": "8.58.0",
1064
+ "@typescript-eslint/visitor-keys": "8.58.0",
1065
+ "debug": "^4.4.3",
1066
+ "minimatch": "^10.2.2",
1067
+ "semver": "^7.7.3",
1068
+ "tinyglobby": "^0.2.15",
1069
+ "ts-api-utils": "^2.5.0"
1070
+ },
1071
+ "engines": {
1072
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1073
+ },
1074
+ "funding": {
1075
+ "type": "opencollective",
1076
+ "url": "https://opencollective.com/typescript-eslint"
1077
+ },
1078
+ "peerDependencies": {
1079
+ "typescript": ">=4.8.4 <6.1.0"
1080
+ }
1081
+ },
1082
+ "node_modules/@typescript-eslint/utils": {
1083
+ "version": "8.58.0",
1084
+ "resolved": "https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-8.58.0.tgz",
1085
+ "integrity": "sha512-RfeSqcFeHMHlAWzt4TBjWOAtoW9lnsAGiP3GbaX9uVgTYYrMbVnGONEfUCiSss+xMHFl+eHZiipmA8WkQ7FuNA==",
1086
+ "dev": true,
1087
+ "license": "MIT",
1088
+ "dependencies": {
1089
+ "@eslint-community/eslint-utils": "^4.9.1",
1090
+ "@typescript-eslint/scope-manager": "8.58.0",
1091
+ "@typescript-eslint/types": "8.58.0",
1092
+ "@typescript-eslint/typescript-estree": "8.58.0"
1093
+ },
1094
+ "engines": {
1095
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1096
+ },
1097
+ "funding": {
1098
+ "type": "opencollective",
1099
+ "url": "https://opencollective.com/typescript-eslint"
1100
+ },
1101
+ "peerDependencies": {
1102
+ "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
1103
+ "typescript": ">=4.8.4 <6.1.0"
1104
+ }
1105
+ },
1106
+ "node_modules/@typescript-eslint/visitor-keys": {
1107
+ "version": "8.58.0",
1108
+ "resolved": "https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.58.0.tgz",
1109
+ "integrity": "sha512-XJ9UD9+bbDo4a4epraTwG3TsNPeiB9aShrUneAVXy8q4LuwowN+qu89/6ByLMINqvIMeI9H9hOHQtg/ijrYXzQ==",
1110
+ "dev": true,
1111
+ "license": "MIT",
1112
+ "dependencies": {
1113
+ "@typescript-eslint/types": "8.58.0",
1114
+ "eslint-visitor-keys": "^5.0.0"
1115
+ },
1116
+ "engines": {
1117
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1118
+ },
1119
+ "funding": {
1120
+ "type": "opencollective",
1121
+ "url": "https://opencollective.com/typescript-eslint"
1122
+ }
1123
+ },
1124
+ "node_modules/@vitejs/plugin-vue": {
1125
+ "version": "6.0.5",
1126
+ "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-6.0.5.tgz",
1127
+ "integrity": "sha512-bL3AxKuQySfk1iGcBsQnoRVexTPJq0Z/ixFVM8OhVJAP6ZXXXLtM7NFKWhLl30Kg7uTBqIaPXbh+nuQCuBDedg==",
1128
+ "dev": true,
1129
+ "license": "MIT",
1130
+ "dependencies": {
1131
+ "@rolldown/pluginutils": "1.0.0-rc.2"
1132
+ },
1133
+ "engines": {
1134
+ "node": "^20.19.0 || >=22.12.0"
1135
+ },
1136
+ "peerDependencies": {
1137
+ "vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
1138
+ "vue": "^3.2.25"
1139
+ }
1140
+ },
1141
+ "node_modules/@volar/language-core": {
1142
+ "version": "2.4.28",
1143
+ "resolved": "https://registry.npmmirror.com/@volar/language-core/-/language-core-2.4.28.tgz",
1144
+ "integrity": "sha512-w4qhIJ8ZSitgLAkVay6AbcnC7gP3glYM3fYwKV3srj8m494E3xtrCv6E+bWviiK/8hs6e6t1ij1s2Endql7vzQ==",
1145
+ "dev": true,
1146
+ "license": "MIT",
1147
+ "dependencies": {
1148
+ "@volar/source-map": "2.4.28"
1149
+ }
1150
+ },
1151
+ "node_modules/@volar/source-map": {
1152
+ "version": "2.4.28",
1153
+ "resolved": "https://registry.npmmirror.com/@volar/source-map/-/source-map-2.4.28.tgz",
1154
+ "integrity": "sha512-yX2BDBqJkRXfKw8my8VarTyjv48QwxdJtvRgUpNE5erCsgEUdI2DsLbpa+rOQVAJYshY99szEcRDmyHbF10ggQ==",
1155
+ "dev": true,
1156
+ "license": "MIT"
1157
+ },
1158
+ "node_modules/@volar/typescript": {
1159
+ "version": "2.4.28",
1160
+ "resolved": "https://registry.npmmirror.com/@volar/typescript/-/typescript-2.4.28.tgz",
1161
+ "integrity": "sha512-Ja6yvWrbis2QtN4ClAKreeUZPVYMARDYZl9LMEv1iQ1QdepB6wn0jTRxA9MftYmYa4DQ4k/DaSZpFPUfxl8giw==",
1162
+ "dev": true,
1163
+ "license": "MIT",
1164
+ "dependencies": {
1165
+ "@volar/language-core": "2.4.28",
1166
+ "path-browserify": "^1.0.1",
1167
+ "vscode-uri": "^3.0.8"
1168
+ }
1169
+ },
1170
+ "node_modules/@vue/compiler-core": {
1171
+ "version": "3.5.31",
1172
+ "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.5.31.tgz",
1173
+ "integrity": "sha512-k/ueL14aNIEy5Onf0OVzR8kiqF/WThgLdFhxwa4e/KF/0qe38IwIdofoSWBTvvxQOesaz6riAFAUaYjoF9fLLQ==",
1174
+ "license": "MIT",
1175
+ "dependencies": {
1176
+ "@babel/parser": "^7.29.2",
1177
+ "@vue/shared": "3.5.31",
1178
+ "entities": "^7.0.1",
1179
+ "estree-walker": "^2.0.2",
1180
+ "source-map-js": "^1.2.1"
1181
+ }
1182
+ },
1183
+ "node_modules/@vue/compiler-dom": {
1184
+ "version": "3.5.31",
1185
+ "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.5.31.tgz",
1186
+ "integrity": "sha512-BMY/ozS/xxjYqRFL+tKdRpATJYDTTgWSo0+AJvJNg4ig+Hgb0dOsHPXvloHQ5hmlivUqw1Yt2pPIqp4e0v1GUw==",
1187
+ "license": "MIT",
1188
+ "dependencies": {
1189
+ "@vue/compiler-core": "3.5.31",
1190
+ "@vue/shared": "3.5.31"
1191
+ }
1192
+ },
1193
+ "node_modules/@vue/compiler-sfc": {
1194
+ "version": "3.5.31",
1195
+ "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.5.31.tgz",
1196
+ "integrity": "sha512-M8wpPgR9UJ8MiRGjppvx9uWJfLV7A/T+/rL8s/y3QG3u0c2/YZgff3d6SuimKRIhcYnWg5fTfDMlz2E6seUW8Q==",
1197
+ "license": "MIT",
1198
+ "dependencies": {
1199
+ "@babel/parser": "^7.29.2",
1200
+ "@vue/compiler-core": "3.5.31",
1201
+ "@vue/compiler-dom": "3.5.31",
1202
+ "@vue/compiler-ssr": "3.5.31",
1203
+ "@vue/shared": "3.5.31",
1204
+ "estree-walker": "^2.0.2",
1205
+ "magic-string": "^0.30.21",
1206
+ "postcss": "^8.5.8",
1207
+ "source-map-js": "^1.2.1"
1208
+ }
1209
+ },
1210
+ "node_modules/@vue/compiler-ssr": {
1211
+ "version": "3.5.31",
1212
+ "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.5.31.tgz",
1213
+ "integrity": "sha512-h0xIMxrt/LHOvJKMri+vdYT92BrK3HFLtDqq9Pr/lVVfE4IyKZKvWf0vJFW10Yr6nX02OR4MkJwI0c1HDa1hog==",
1214
+ "license": "MIT",
1215
+ "dependencies": {
1216
+ "@vue/compiler-dom": "3.5.31",
1217
+ "@vue/shared": "3.5.31"
1218
+ }
1219
+ },
1220
+ "node_modules/@vue/devtools-api": {
1221
+ "version": "7.7.9",
1222
+ "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-7.7.9.tgz",
1223
+ "integrity": "sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==",
1224
+ "license": "MIT",
1225
+ "dependencies": {
1226
+ "@vue/devtools-kit": "^7.7.9"
1227
+ }
1228
+ },
1229
+ "node_modules/@vue/devtools-kit": {
1230
+ "version": "7.7.9",
1231
+ "resolved": "https://registry.npmmirror.com/@vue/devtools-kit/-/devtools-kit-7.7.9.tgz",
1232
+ "integrity": "sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==",
1233
+ "license": "MIT",
1234
+ "dependencies": {
1235
+ "@vue/devtools-shared": "^7.7.9",
1236
+ "birpc": "^2.3.0",
1237
+ "hookable": "^5.5.3",
1238
+ "mitt": "^3.0.1",
1239
+ "perfect-debounce": "^1.0.0",
1240
+ "speakingurl": "^14.0.1",
1241
+ "superjson": "^2.2.2"
1242
+ }
1243
+ },
1244
+ "node_modules/@vue/devtools-shared": {
1245
+ "version": "7.7.9",
1246
+ "resolved": "https://registry.npmmirror.com/@vue/devtools-shared/-/devtools-shared-7.7.9.tgz",
1247
+ "integrity": "sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==",
1248
+ "license": "MIT",
1249
+ "dependencies": {
1250
+ "rfdc": "^1.4.1"
1251
+ }
1252
+ },
1253
+ "node_modules/@vue/language-core": {
1254
+ "version": "3.2.6",
1255
+ "resolved": "https://registry.npmmirror.com/@vue/language-core/-/language-core-3.2.6.tgz",
1256
+ "integrity": "sha512-xYYYX3/aVup576tP/23sEUpgiEnujrENaoNRbaozC1/MA9I6EGFQRJb4xrt/MmUCAGlxTKL2RmT8JLTPqagCkg==",
1257
+ "dev": true,
1258
+ "license": "MIT",
1259
+ "dependencies": {
1260
+ "@volar/language-core": "2.4.28",
1261
+ "@vue/compiler-dom": "^3.5.0",
1262
+ "@vue/shared": "^3.5.0",
1263
+ "alien-signals": "^3.0.0",
1264
+ "muggle-string": "^0.4.1",
1265
+ "path-browserify": "^1.0.1",
1266
+ "picomatch": "^4.0.2"
1267
+ }
1268
+ },
1269
+ "node_modules/@vue/reactivity": {
1270
+ "version": "3.5.31",
1271
+ "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.5.31.tgz",
1272
+ "integrity": "sha512-DtKXxk9E/KuVvt8VxWu+6Luc9I9ETNcqR1T1oW1gf02nXaZ1kuAx58oVu7uX9XxJR0iJCro6fqBLw9oSBELo5g==",
1273
+ "license": "MIT",
1274
+ "dependencies": {
1275
+ "@vue/shared": "3.5.31"
1276
+ }
1277
+ },
1278
+ "node_modules/@vue/runtime-core": {
1279
+ "version": "3.5.31",
1280
+ "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.5.31.tgz",
1281
+ "integrity": "sha512-AZPmIHXEAyhpkmN7aWlqjSfYynmkWlluDNPHMCZKFHH+lLtxP/30UJmoVhXmbDoP1Ng0jG0fyY2zCj1PnSSA6Q==",
1282
+ "license": "MIT",
1283
+ "dependencies": {
1284
+ "@vue/reactivity": "3.5.31",
1285
+ "@vue/shared": "3.5.31"
1286
+ }
1287
+ },
1288
+ "node_modules/@vue/runtime-dom": {
1289
+ "version": "3.5.31",
1290
+ "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.5.31.tgz",
1291
+ "integrity": "sha512-xQJsNRmGPeDCJq/u813tyonNgWBFjzfVkBwDREdEWndBnGdHLHgkwNBQxLtg4zDrzKTEcnikUy1UUNecb3lJ6g==",
1292
+ "license": "MIT",
1293
+ "dependencies": {
1294
+ "@vue/reactivity": "3.5.31",
1295
+ "@vue/runtime-core": "3.5.31",
1296
+ "@vue/shared": "3.5.31",
1297
+ "csstype": "^3.2.3"
1298
+ }
1299
+ },
1300
+ "node_modules/@vue/server-renderer": {
1301
+ "version": "3.5.31",
1302
+ "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.5.31.tgz",
1303
+ "integrity": "sha512-GJuwRvMcdZX/CriUnyIIOGkx3rMV3H6sOu0JhdKbduaeCji6zb60iOGMY7tFoN24NfsUYoFBhshZtGxGpxO4iA==",
1304
+ "license": "MIT",
1305
+ "dependencies": {
1306
+ "@vue/compiler-ssr": "3.5.31",
1307
+ "@vue/shared": "3.5.31"
1308
+ },
1309
+ "peerDependencies": {
1310
+ "vue": "3.5.31"
1311
+ }
1312
+ },
1313
+ "node_modules/@vue/shared": {
1314
+ "version": "3.5.31",
1315
+ "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.5.31.tgz",
1316
+ "integrity": "sha512-nBxuiuS9Lj5bPkPbWogPUnjxxWpkRniX7e5UBQDWl6Fsf4roq9wwV+cR7ezQ4zXswNvPIlsdj1slcLB7XCsRAw==",
1317
+ "license": "MIT"
1318
+ },
1319
+ "node_modules/acorn": {
1320
+ "version": "8.16.0",
1321
+ "resolved": "https://registry.npmmirror.com/acorn/-/acorn-8.16.0.tgz",
1322
+ "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==",
1323
+ "dev": true,
1324
+ "license": "MIT",
1325
+ "bin": {
1326
+ "acorn": "bin/acorn"
1327
+ },
1328
+ "engines": {
1329
+ "node": ">=0.4.0"
1330
+ }
1331
+ },
1332
+ "node_modules/acorn-jsx": {
1333
+ "version": "5.3.2",
1334
+ "resolved": "https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
1335
+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
1336
+ "dev": true,
1337
+ "license": "MIT",
1338
+ "peerDependencies": {
1339
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
1340
+ }
1341
+ },
1342
+ "node_modules/ajv": {
1343
+ "version": "6.14.0",
1344
+ "resolved": "https://registry.npmmirror.com/ajv/-/ajv-6.14.0.tgz",
1345
+ "integrity": "sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==",
1346
+ "dev": true,
1347
+ "license": "MIT",
1348
+ "dependencies": {
1349
+ "fast-deep-equal": "^3.1.1",
1350
+ "fast-json-stable-stringify": "^2.0.0",
1351
+ "json-schema-traverse": "^0.4.1",
1352
+ "uri-js": "^4.2.2"
1353
+ },
1354
+ "funding": {
1355
+ "type": "github",
1356
+ "url": "https://github.com/sponsors/epoberezkin"
1357
+ }
1358
+ },
1359
+ "node_modules/alien-signals": {
1360
+ "version": "3.1.2",
1361
+ "resolved": "https://registry.npmmirror.com/alien-signals/-/alien-signals-3.1.2.tgz",
1362
+ "integrity": "sha512-d9dYqZTS90WLiU0I5c6DHj/HcKkF8ZyGN3G5x8wSbslulz70KOxaqCT0hQCo9KOyhVqzqGojvNdJXoTumZOtcw==",
1363
+ "dev": true,
1364
+ "license": "MIT"
1365
+ },
1366
+ "node_modules/balanced-match": {
1367
+ "version": "4.0.4",
1368
+ "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-4.0.4.tgz",
1369
+ "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
1370
+ "dev": true,
1371
+ "license": "MIT",
1372
+ "engines": {
1373
+ "node": "18 || 20 || >=22"
1374
+ }
1375
+ },
1376
+ "node_modules/birpc": {
1377
+ "version": "2.9.0",
1378
+ "resolved": "https://registry.npmmirror.com/birpc/-/birpc-2.9.0.tgz",
1379
+ "integrity": "sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==",
1380
+ "license": "MIT",
1381
+ "funding": {
1382
+ "url": "https://github.com/sponsors/antfu"
1383
+ }
1384
+ },
1385
+ "node_modules/boolbase": {
1386
+ "version": "1.0.0",
1387
+ "resolved": "https://registry.npmmirror.com/boolbase/-/boolbase-1.0.0.tgz",
1388
+ "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==",
1389
+ "dev": true,
1390
+ "license": "ISC"
1391
+ },
1392
+ "node_modules/brace-expansion": {
1393
+ "version": "5.0.5",
1394
+ "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-5.0.5.tgz",
1395
+ "integrity": "sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==",
1396
+ "dev": true,
1397
+ "license": "MIT",
1398
+ "dependencies": {
1399
+ "balanced-match": "^4.0.2"
1400
+ },
1401
+ "engines": {
1402
+ "node": "18 || 20 || >=22"
1403
+ }
1404
+ },
1405
+ "node_modules/copy-anything": {
1406
+ "version": "4.0.5",
1407
+ "resolved": "https://registry.npmmirror.com/copy-anything/-/copy-anything-4.0.5.tgz",
1408
+ "integrity": "sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==",
1409
+ "license": "MIT",
1410
+ "dependencies": {
1411
+ "is-what": "^5.2.0"
1412
+ },
1413
+ "engines": {
1414
+ "node": ">=18"
1415
+ },
1416
+ "funding": {
1417
+ "url": "https://github.com/sponsors/mesqueeb"
1418
+ }
1419
+ },
1420
+ "node_modules/cross-spawn": {
1421
+ "version": "7.0.6",
1422
+ "resolved": "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.6.tgz",
1423
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
1424
+ "dev": true,
1425
+ "license": "MIT",
1426
+ "dependencies": {
1427
+ "path-key": "^3.1.0",
1428
+ "shebang-command": "^2.0.0",
1429
+ "which": "^2.0.1"
1430
+ },
1431
+ "engines": {
1432
+ "node": ">= 8"
1433
+ }
1434
+ },
1435
+ "node_modules/cssesc": {
1436
+ "version": "3.0.0",
1437
+ "resolved": "https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz",
1438
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
1439
+ "dev": true,
1440
+ "license": "MIT",
1441
+ "bin": {
1442
+ "cssesc": "bin/cssesc"
1443
+ },
1444
+ "engines": {
1445
+ "node": ">=4"
1446
+ }
1447
+ },
1448
+ "node_modules/csstype": {
1449
+ "version": "3.2.3",
1450
+ "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.2.3.tgz",
1451
+ "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
1452
+ "license": "MIT"
1453
+ },
1454
+ "node_modules/debug": {
1455
+ "version": "4.4.3",
1456
+ "resolved": "https://registry.npmmirror.com/debug/-/debug-4.4.3.tgz",
1457
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
1458
+ "dev": true,
1459
+ "license": "MIT",
1460
+ "dependencies": {
1461
+ "ms": "^2.1.3"
1462
+ },
1463
+ "engines": {
1464
+ "node": ">=6.0"
1465
+ },
1466
+ "peerDependenciesMeta": {
1467
+ "supports-color": {
1468
+ "optional": true
1469
+ }
1470
+ }
1471
+ },
1472
+ "node_modules/deep-is": {
1473
+ "version": "0.1.4",
1474
+ "resolved": "https://registry.npmmirror.com/deep-is/-/deep-is-0.1.4.tgz",
1475
+ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
1476
+ "dev": true,
1477
+ "license": "MIT"
1478
+ },
1479
+ "node_modules/detect-libc": {
1480
+ "version": "2.1.2",
1481
+ "resolved": "https://registry.npmmirror.com/detect-libc/-/detect-libc-2.1.2.tgz",
1482
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
1483
+ "license": "Apache-2.0",
1484
+ "engines": {
1485
+ "node": ">=8"
1486
+ }
1487
+ },
1488
+ "node_modules/enhanced-resolve": {
1489
+ "version": "5.20.1",
1490
+ "resolved": "https://registry.npmmirror.com/enhanced-resolve/-/enhanced-resolve-5.20.1.tgz",
1491
+ "integrity": "sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==",
1492
+ "license": "MIT",
1493
+ "dependencies": {
1494
+ "graceful-fs": "^4.2.4",
1495
+ "tapable": "^2.3.0"
1496
+ },
1497
+ "engines": {
1498
+ "node": ">=10.13.0"
1499
+ }
1500
+ },
1501
+ "node_modules/entities": {
1502
+ "version": "7.0.1",
1503
+ "resolved": "https://registry.npmmirror.com/entities/-/entities-7.0.1.tgz",
1504
+ "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==",
1505
+ "license": "BSD-2-Clause",
1506
+ "engines": {
1507
+ "node": ">=0.12"
1508
+ },
1509
+ "funding": {
1510
+ "url": "https://github.com/fb55/entities?sponsor=1"
1511
+ }
1512
+ },
1513
+ "node_modules/escape-string-regexp": {
1514
+ "version": "4.0.0",
1515
+ "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
1516
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
1517
+ "dev": true,
1518
+ "license": "MIT",
1519
+ "engines": {
1520
+ "node": ">=10"
1521
+ },
1522
+ "funding": {
1523
+ "url": "https://github.com/sponsors/sindresorhus"
1524
+ }
1525
+ },
1526
+ "node_modules/eslint": {
1527
+ "version": "10.1.0",
1528
+ "resolved": "https://registry.npmmirror.com/eslint/-/eslint-10.1.0.tgz",
1529
+ "integrity": "sha512-S9jlY/ELKEUwwQnqWDO+f+m6sercqOPSqXM5Go94l7DOmxHVDgmSFGWEzeE/gwgTAr0W103BWt0QLe/7mabIvA==",
1530
+ "dev": true,
1531
+ "license": "MIT",
1532
+ "dependencies": {
1533
+ "@eslint-community/eslint-utils": "^4.8.0",
1534
+ "@eslint-community/regexpp": "^4.12.2",
1535
+ "@eslint/config-array": "^0.23.3",
1536
+ "@eslint/config-helpers": "^0.5.3",
1537
+ "@eslint/core": "^1.1.1",
1538
+ "@eslint/plugin-kit": "^0.6.1",
1539
+ "@humanfs/node": "^0.16.6",
1540
+ "@humanwhocodes/module-importer": "^1.0.1",
1541
+ "@humanwhocodes/retry": "^0.4.2",
1542
+ "@types/estree": "^1.0.6",
1543
+ "ajv": "^6.14.0",
1544
+ "cross-spawn": "^7.0.6",
1545
+ "debug": "^4.3.2",
1546
+ "escape-string-regexp": "^4.0.0",
1547
+ "eslint-scope": "^9.1.2",
1548
+ "eslint-visitor-keys": "^5.0.1",
1549
+ "espree": "^11.2.0",
1550
+ "esquery": "^1.7.0",
1551
+ "esutils": "^2.0.2",
1552
+ "fast-deep-equal": "^3.1.3",
1553
+ "file-entry-cache": "^8.0.0",
1554
+ "find-up": "^5.0.0",
1555
+ "glob-parent": "^6.0.2",
1556
+ "ignore": "^5.2.0",
1557
+ "imurmurhash": "^0.1.4",
1558
+ "is-glob": "^4.0.0",
1559
+ "json-stable-stringify-without-jsonify": "^1.0.1",
1560
+ "minimatch": "^10.2.4",
1561
+ "natural-compare": "^1.4.0",
1562
+ "optionator": "^0.9.3"
1563
+ },
1564
+ "bin": {
1565
+ "eslint": "bin/eslint.js"
1566
+ },
1567
+ "engines": {
1568
+ "node": "^20.19.0 || ^22.13.0 || >=24"
1569
+ },
1570
+ "funding": {
1571
+ "url": "https://eslint.org/donate"
1572
+ },
1573
+ "peerDependencies": {
1574
+ "jiti": "*"
1575
+ },
1576
+ "peerDependenciesMeta": {
1577
+ "jiti": {
1578
+ "optional": true
1579
+ }
1580
+ }
1581
+ },
1582
+ "node_modules/eslint-plugin-vue": {
1583
+ "version": "10.8.0",
1584
+ "resolved": "https://registry.npmmirror.com/eslint-plugin-vue/-/eslint-plugin-vue-10.8.0.tgz",
1585
+ "integrity": "sha512-f1J/tcbnrpgC8suPN5AtdJ5MQjuXbSU9pGRSSYAuF3SHoiYCOdEX6O22pLaRyLHXvDcOe+O5ENgc1owQ587agA==",
1586
+ "dev": true,
1587
+ "license": "MIT",
1588
+ "dependencies": {
1589
+ "@eslint-community/eslint-utils": "^4.4.0",
1590
+ "natural-compare": "^1.4.0",
1591
+ "nth-check": "^2.1.1",
1592
+ "postcss-selector-parser": "^7.1.0",
1593
+ "semver": "^7.6.3",
1594
+ "xml-name-validator": "^4.0.0"
1595
+ },
1596
+ "engines": {
1597
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1598
+ },
1599
+ "peerDependencies": {
1600
+ "@stylistic/eslint-plugin": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0",
1601
+ "@typescript-eslint/parser": "^7.0.0 || ^8.0.0",
1602
+ "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
1603
+ "vue-eslint-parser": "^10.0.0"
1604
+ },
1605
+ "peerDependenciesMeta": {
1606
+ "@stylistic/eslint-plugin": {
1607
+ "optional": true
1608
+ },
1609
+ "@typescript-eslint/parser": {
1610
+ "optional": true
1611
+ }
1612
+ }
1613
+ },
1614
+ "node_modules/eslint-scope": {
1615
+ "version": "9.1.2",
1616
+ "resolved": "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-9.1.2.tgz",
1617
+ "integrity": "sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==",
1618
+ "dev": true,
1619
+ "license": "BSD-2-Clause",
1620
+ "dependencies": {
1621
+ "@types/esrecurse": "^4.3.1",
1622
+ "@types/estree": "^1.0.8",
1623
+ "esrecurse": "^4.3.0",
1624
+ "estraverse": "^5.2.0"
1625
+ },
1626
+ "engines": {
1627
+ "node": "^20.19.0 || ^22.13.0 || >=24"
1628
+ },
1629
+ "funding": {
1630
+ "url": "https://opencollective.com/eslint"
1631
+ }
1632
+ },
1633
+ "node_modules/eslint-visitor-keys": {
1634
+ "version": "5.0.1",
1635
+ "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz",
1636
+ "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==",
1637
+ "dev": true,
1638
+ "license": "Apache-2.0",
1639
+ "engines": {
1640
+ "node": "^20.19.0 || ^22.13.0 || >=24"
1641
+ },
1642
+ "funding": {
1643
+ "url": "https://opencollective.com/eslint"
1644
+ }
1645
+ },
1646
+ "node_modules/espree": {
1647
+ "version": "11.2.0",
1648
+ "resolved": "https://registry.npmmirror.com/espree/-/espree-11.2.0.tgz",
1649
+ "integrity": "sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==",
1650
+ "dev": true,
1651
+ "license": "BSD-2-Clause",
1652
+ "dependencies": {
1653
+ "acorn": "^8.16.0",
1654
+ "acorn-jsx": "^5.3.2",
1655
+ "eslint-visitor-keys": "^5.0.1"
1656
+ },
1657
+ "engines": {
1658
+ "node": "^20.19.0 || ^22.13.0 || >=24"
1659
+ },
1660
+ "funding": {
1661
+ "url": "https://opencollective.com/eslint"
1662
+ }
1663
+ },
1664
+ "node_modules/esquery": {
1665
+ "version": "1.7.0",
1666
+ "resolved": "https://registry.npmmirror.com/esquery/-/esquery-1.7.0.tgz",
1667
+ "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==",
1668
+ "dev": true,
1669
+ "license": "BSD-3-Clause",
1670
+ "dependencies": {
1671
+ "estraverse": "^5.1.0"
1672
+ },
1673
+ "engines": {
1674
+ "node": ">=0.10"
1675
+ }
1676
+ },
1677
+ "node_modules/esrecurse": {
1678
+ "version": "4.3.0",
1679
+ "resolved": "https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz",
1680
+ "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
1681
+ "dev": true,
1682
+ "license": "BSD-2-Clause",
1683
+ "dependencies": {
1684
+ "estraverse": "^5.2.0"
1685
+ },
1686
+ "engines": {
1687
+ "node": ">=4.0"
1688
+ }
1689
+ },
1690
+ "node_modules/estraverse": {
1691
+ "version": "5.3.0",
1692
+ "resolved": "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz",
1693
+ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
1694
+ "dev": true,
1695
+ "license": "BSD-2-Clause",
1696
+ "engines": {
1697
+ "node": ">=4.0"
1698
+ }
1699
+ },
1700
+ "node_modules/estree-walker": {
1701
+ "version": "2.0.2",
1702
+ "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz",
1703
+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
1704
+ "license": "MIT"
1705
+ },
1706
+ "node_modules/esutils": {
1707
+ "version": "2.0.3",
1708
+ "resolved": "https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz",
1709
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
1710
+ "dev": true,
1711
+ "license": "BSD-2-Clause",
1712
+ "engines": {
1713
+ "node": ">=0.10.0"
1714
+ }
1715
+ },
1716
+ "node_modules/fast-deep-equal": {
1717
+ "version": "3.1.3",
1718
+ "resolved": "https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
1719
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
1720
+ "dev": true,
1721
+ "license": "MIT"
1722
+ },
1723
+ "node_modules/fast-json-stable-stringify": {
1724
+ "version": "2.1.0",
1725
+ "resolved": "https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
1726
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
1727
+ "dev": true,
1728
+ "license": "MIT"
1729
+ },
1730
+ "node_modules/fast-levenshtein": {
1731
+ "version": "2.0.6",
1732
+ "resolved": "https://registry.npmmirror.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
1733
+ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
1734
+ "dev": true,
1735
+ "license": "MIT"
1736
+ },
1737
+ "node_modules/fdir": {
1738
+ "version": "6.5.0",
1739
+ "resolved": "https://registry.npmmirror.com/fdir/-/fdir-6.5.0.tgz",
1740
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
1741
+ "license": "MIT",
1742
+ "engines": {
1743
+ "node": ">=12.0.0"
1744
+ },
1745
+ "peerDependencies": {
1746
+ "picomatch": "^3 || ^4"
1747
+ },
1748
+ "peerDependenciesMeta": {
1749
+ "picomatch": {
1750
+ "optional": true
1751
+ }
1752
+ }
1753
+ },
1754
+ "node_modules/file-entry-cache": {
1755
+ "version": "8.0.0",
1756
+ "resolved": "https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
1757
+ "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
1758
+ "dev": true,
1759
+ "license": "MIT",
1760
+ "dependencies": {
1761
+ "flat-cache": "^4.0.0"
1762
+ },
1763
+ "engines": {
1764
+ "node": ">=16.0.0"
1765
+ }
1766
+ },
1767
+ "node_modules/find-up": {
1768
+ "version": "5.0.0",
1769
+ "resolved": "https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz",
1770
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
1771
+ "dev": true,
1772
+ "license": "MIT",
1773
+ "dependencies": {
1774
+ "locate-path": "^6.0.0",
1775
+ "path-exists": "^4.0.0"
1776
+ },
1777
+ "engines": {
1778
+ "node": ">=10"
1779
+ },
1780
+ "funding": {
1781
+ "url": "https://github.com/sponsors/sindresorhus"
1782
+ }
1783
+ },
1784
+ "node_modules/flat-cache": {
1785
+ "version": "4.0.1",
1786
+ "resolved": "https://registry.npmmirror.com/flat-cache/-/flat-cache-4.0.1.tgz",
1787
+ "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
1788
+ "dev": true,
1789
+ "license": "MIT",
1790
+ "dependencies": {
1791
+ "flatted": "^3.2.9",
1792
+ "keyv": "^4.5.4"
1793
+ },
1794
+ "engines": {
1795
+ "node": ">=16"
1796
+ }
1797
+ },
1798
+ "node_modules/flatted": {
1799
+ "version": "3.4.2",
1800
+ "resolved": "https://registry.npmmirror.com/flatted/-/flatted-3.4.2.tgz",
1801
+ "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==",
1802
+ "dev": true,
1803
+ "license": "ISC"
1804
+ },
1805
+ "node_modules/fsevents": {
1806
+ "version": "2.3.3",
1807
+ "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz",
1808
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
1809
+ "hasInstallScript": true,
1810
+ "license": "MIT",
1811
+ "optional": true,
1812
+ "os": [
1813
+ "darwin"
1814
+ ],
1815
+ "engines": {
1816
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1817
+ }
1818
+ },
1819
+ "node_modules/glob-parent": {
1820
+ "version": "6.0.2",
1821
+ "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-6.0.2.tgz",
1822
+ "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
1823
+ "dev": true,
1824
+ "license": "ISC",
1825
+ "dependencies": {
1826
+ "is-glob": "^4.0.3"
1827
+ },
1828
+ "engines": {
1829
+ "node": ">=10.13.0"
1830
+ }
1831
+ },
1832
+ "node_modules/globals": {
1833
+ "version": "17.4.0",
1834
+ "resolved": "https://registry.npmmirror.com/globals/-/globals-17.4.0.tgz",
1835
+ "integrity": "sha512-hjrNztw/VajQwOLsMNT1cbJiH2muO3OROCHnbehc8eY5JyD2gqz4AcMHPqgaOR59DjgUjYAYLeH699g/eWi2jw==",
1836
+ "dev": true,
1837
+ "license": "MIT",
1838
+ "engines": {
1839
+ "node": ">=18"
1840
+ },
1841
+ "funding": {
1842
+ "url": "https://github.com/sponsors/sindresorhus"
1843
+ }
1844
+ },
1845
+ "node_modules/graceful-fs": {
1846
+ "version": "4.2.11",
1847
+ "resolved": "https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz",
1848
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
1849
+ "license": "ISC"
1850
+ },
1851
+ "node_modules/hookable": {
1852
+ "version": "5.5.3",
1853
+ "resolved": "https://registry.npmmirror.com/hookable/-/hookable-5.5.3.tgz",
1854
+ "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==",
1855
+ "license": "MIT"
1856
+ },
1857
+ "node_modules/ignore": {
1858
+ "version": "5.3.2",
1859
+ "resolved": "https://registry.npmmirror.com/ignore/-/ignore-5.3.2.tgz",
1860
+ "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
1861
+ "dev": true,
1862
+ "license": "MIT",
1863
+ "engines": {
1864
+ "node": ">= 4"
1865
+ }
1866
+ },
1867
+ "node_modules/imurmurhash": {
1868
+ "version": "0.1.4",
1869
+ "resolved": "https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz",
1870
+ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
1871
+ "dev": true,
1872
+ "license": "MIT",
1873
+ "engines": {
1874
+ "node": ">=0.8.19"
1875
+ }
1876
+ },
1877
+ "node_modules/is-extglob": {
1878
+ "version": "2.1.1",
1879
+ "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz",
1880
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
1881
+ "dev": true,
1882
+ "license": "MIT",
1883
+ "engines": {
1884
+ "node": ">=0.10.0"
1885
+ }
1886
+ },
1887
+ "node_modules/is-glob": {
1888
+ "version": "4.0.3",
1889
+ "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz",
1890
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
1891
+ "dev": true,
1892
+ "license": "MIT",
1893
+ "dependencies": {
1894
+ "is-extglob": "^2.1.1"
1895
+ },
1896
+ "engines": {
1897
+ "node": ">=0.10.0"
1898
+ }
1899
+ },
1900
+ "node_modules/is-what": {
1901
+ "version": "5.5.0",
1902
+ "resolved": "https://registry.npmmirror.com/is-what/-/is-what-5.5.0.tgz",
1903
+ "integrity": "sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==",
1904
+ "license": "MIT",
1905
+ "engines": {
1906
+ "node": ">=18"
1907
+ },
1908
+ "funding": {
1909
+ "url": "https://github.com/sponsors/mesqueeb"
1910
+ }
1911
+ },
1912
+ "node_modules/isexe": {
1913
+ "version": "2.0.0",
1914
+ "resolved": "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz",
1915
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
1916
+ "dev": true,
1917
+ "license": "ISC"
1918
+ },
1919
+ "node_modules/jiti": {
1920
+ "version": "2.6.1",
1921
+ "resolved": "https://registry.npmmirror.com/jiti/-/jiti-2.6.1.tgz",
1922
+ "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
1923
+ "license": "MIT",
1924
+ "bin": {
1925
+ "jiti": "lib/jiti-cli.mjs"
1926
+ }
1927
+ },
1928
+ "node_modules/json-buffer": {
1929
+ "version": "3.0.1",
1930
+ "resolved": "https://registry.npmmirror.com/json-buffer/-/json-buffer-3.0.1.tgz",
1931
+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
1932
+ "dev": true,
1933
+ "license": "MIT"
1934
+ },
1935
+ "node_modules/json-schema-traverse": {
1936
+ "version": "0.4.1",
1937
+ "resolved": "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
1938
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
1939
+ "dev": true,
1940
+ "license": "MIT"
1941
+ },
1942
+ "node_modules/json-stable-stringify-without-jsonify": {
1943
+ "version": "1.0.1",
1944
+ "resolved": "https://registry.npmmirror.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
1945
+ "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
1946
+ "dev": true,
1947
+ "license": "MIT"
1948
+ },
1949
+ "node_modules/keyv": {
1950
+ "version": "4.5.4",
1951
+ "resolved": "https://registry.npmmirror.com/keyv/-/keyv-4.5.4.tgz",
1952
+ "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
1953
+ "dev": true,
1954
+ "license": "MIT",
1955
+ "dependencies": {
1956
+ "json-buffer": "3.0.1"
1957
+ }
1958
+ },
1959
+ "node_modules/levn": {
1960
+ "version": "0.4.1",
1961
+ "resolved": "https://registry.npmmirror.com/levn/-/levn-0.4.1.tgz",
1962
+ "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
1963
+ "dev": true,
1964
+ "license": "MIT",
1965
+ "dependencies": {
1966
+ "prelude-ls": "^1.2.1",
1967
+ "type-check": "~0.4.0"
1968
+ },
1969
+ "engines": {
1970
+ "node": ">= 0.8.0"
1971
+ }
1972
+ },
1973
+ "node_modules/lightningcss": {
1974
+ "version": "1.32.0",
1975
+ "resolved": "https://registry.npmmirror.com/lightningcss/-/lightningcss-1.32.0.tgz",
1976
+ "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
1977
+ "license": "MPL-2.0",
1978
+ "dependencies": {
1979
+ "detect-libc": "^2.0.3"
1980
+ },
1981
+ "engines": {
1982
+ "node": ">= 12.0.0"
1983
+ },
1984
+ "funding": {
1985
+ "type": "opencollective",
1986
+ "url": "https://opencollective.com/parcel"
1987
+ },
1988
+ "optionalDependencies": {
1989
+ "lightningcss-android-arm64": "1.32.0",
1990
+ "lightningcss-darwin-arm64": "1.32.0",
1991
+ "lightningcss-darwin-x64": "1.32.0",
1992
+ "lightningcss-freebsd-x64": "1.32.0",
1993
+ "lightningcss-linux-arm-gnueabihf": "1.32.0",
1994
+ "lightningcss-linux-arm64-gnu": "1.32.0",
1995
+ "lightningcss-linux-arm64-musl": "1.32.0",
1996
+ "lightningcss-linux-x64-gnu": "1.32.0",
1997
+ "lightningcss-linux-x64-musl": "1.32.0",
1998
+ "lightningcss-win32-arm64-msvc": "1.32.0",
1999
+ "lightningcss-win32-x64-msvc": "1.32.0"
2000
+ }
2001
+ },
2002
+ "node_modules/lightningcss-android-arm64": {
2003
+ "version": "1.32.0",
2004
+ "resolved": "https://registry.npmmirror.com/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
2005
+ "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
2006
+ "cpu": [
2007
+ "arm64"
2008
+ ],
2009
+ "license": "MPL-2.0",
2010
+ "optional": true,
2011
+ "os": [
2012
+ "android"
2013
+ ],
2014
+ "engines": {
2015
+ "node": ">= 12.0.0"
2016
+ },
2017
+ "funding": {
2018
+ "type": "opencollective",
2019
+ "url": "https://opencollective.com/parcel"
2020
+ }
2021
+ },
2022
+ "node_modules/lightningcss-darwin-arm64": {
2023
+ "version": "1.32.0",
2024
+ "resolved": "https://registry.npmmirror.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
2025
+ "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
2026
+ "cpu": [
2027
+ "arm64"
2028
+ ],
2029
+ "license": "MPL-2.0",
2030
+ "optional": true,
2031
+ "os": [
2032
+ "darwin"
2033
+ ],
2034
+ "engines": {
2035
+ "node": ">= 12.0.0"
2036
+ },
2037
+ "funding": {
2038
+ "type": "opencollective",
2039
+ "url": "https://opencollective.com/parcel"
2040
+ }
2041
+ },
2042
+ "node_modules/lightningcss-darwin-x64": {
2043
+ "version": "1.32.0",
2044
+ "resolved": "https://registry.npmmirror.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
2045
+ "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
2046
+ "cpu": [
2047
+ "x64"
2048
+ ],
2049
+ "license": "MPL-2.0",
2050
+ "optional": true,
2051
+ "os": [
2052
+ "darwin"
2053
+ ],
2054
+ "engines": {
2055
+ "node": ">= 12.0.0"
2056
+ },
2057
+ "funding": {
2058
+ "type": "opencollective",
2059
+ "url": "https://opencollective.com/parcel"
2060
+ }
2061
+ },
2062
+ "node_modules/lightningcss-freebsd-x64": {
2063
+ "version": "1.32.0",
2064
+ "resolved": "https://registry.npmmirror.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
2065
+ "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
2066
+ "cpu": [
2067
+ "x64"
2068
+ ],
2069
+ "license": "MPL-2.0",
2070
+ "optional": true,
2071
+ "os": [
2072
+ "freebsd"
2073
+ ],
2074
+ "engines": {
2075
+ "node": ">= 12.0.0"
2076
+ },
2077
+ "funding": {
2078
+ "type": "opencollective",
2079
+ "url": "https://opencollective.com/parcel"
2080
+ }
2081
+ },
2082
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
2083
+ "version": "1.32.0",
2084
+ "resolved": "https://registry.npmmirror.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
2085
+ "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
2086
+ "cpu": [
2087
+ "arm"
2088
+ ],
2089
+ "license": "MPL-2.0",
2090
+ "optional": true,
2091
+ "os": [
2092
+ "linux"
2093
+ ],
2094
+ "engines": {
2095
+ "node": ">= 12.0.0"
2096
+ },
2097
+ "funding": {
2098
+ "type": "opencollective",
2099
+ "url": "https://opencollective.com/parcel"
2100
+ }
2101
+ },
2102
+ "node_modules/lightningcss-linux-arm64-gnu": {
2103
+ "version": "1.32.0",
2104
+ "resolved": "https://registry.npmmirror.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
2105
+ "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
2106
+ "cpu": [
2107
+ "arm64"
2108
+ ],
2109
+ "license": "MPL-2.0",
2110
+ "optional": true,
2111
+ "os": [
2112
+ "linux"
2113
+ ],
2114
+ "engines": {
2115
+ "node": ">= 12.0.0"
2116
+ },
2117
+ "funding": {
2118
+ "type": "opencollective",
2119
+ "url": "https://opencollective.com/parcel"
2120
+ }
2121
+ },
2122
+ "node_modules/lightningcss-linux-arm64-musl": {
2123
+ "version": "1.32.0",
2124
+ "resolved": "https://registry.npmmirror.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
2125
+ "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
2126
+ "cpu": [
2127
+ "arm64"
2128
+ ],
2129
+ "license": "MPL-2.0",
2130
+ "optional": true,
2131
+ "os": [
2132
+ "linux"
2133
+ ],
2134
+ "engines": {
2135
+ "node": ">= 12.0.0"
2136
+ },
2137
+ "funding": {
2138
+ "type": "opencollective",
2139
+ "url": "https://opencollective.com/parcel"
2140
+ }
2141
+ },
2142
+ "node_modules/lightningcss-linux-x64-gnu": {
2143
+ "version": "1.32.0",
2144
+ "resolved": "https://registry.npmmirror.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
2145
+ "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
2146
+ "cpu": [
2147
+ "x64"
2148
+ ],
2149
+ "license": "MPL-2.0",
2150
+ "optional": true,
2151
+ "os": [
2152
+ "linux"
2153
+ ],
2154
+ "engines": {
2155
+ "node": ">= 12.0.0"
2156
+ },
2157
+ "funding": {
2158
+ "type": "opencollective",
2159
+ "url": "https://opencollective.com/parcel"
2160
+ }
2161
+ },
2162
+ "node_modules/lightningcss-linux-x64-musl": {
2163
+ "version": "1.32.0",
2164
+ "resolved": "https://registry.npmmirror.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
2165
+ "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
2166
+ "cpu": [
2167
+ "x64"
2168
+ ],
2169
+ "license": "MPL-2.0",
2170
+ "optional": true,
2171
+ "os": [
2172
+ "linux"
2173
+ ],
2174
+ "engines": {
2175
+ "node": ">= 12.0.0"
2176
+ },
2177
+ "funding": {
2178
+ "type": "opencollective",
2179
+ "url": "https://opencollective.com/parcel"
2180
+ }
2181
+ },
2182
+ "node_modules/lightningcss-win32-arm64-msvc": {
2183
+ "version": "1.32.0",
2184
+ "resolved": "https://registry.npmmirror.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
2185
+ "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
2186
+ "cpu": [
2187
+ "arm64"
2188
+ ],
2189
+ "license": "MPL-2.0",
2190
+ "optional": true,
2191
+ "os": [
2192
+ "win32"
2193
+ ],
2194
+ "engines": {
2195
+ "node": ">= 12.0.0"
2196
+ },
2197
+ "funding": {
2198
+ "type": "opencollective",
2199
+ "url": "https://opencollective.com/parcel"
2200
+ }
2201
+ },
2202
+ "node_modules/lightningcss-win32-x64-msvc": {
2203
+ "version": "1.32.0",
2204
+ "resolved": "https://registry.npmmirror.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
2205
+ "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
2206
+ "cpu": [
2207
+ "x64"
2208
+ ],
2209
+ "license": "MPL-2.0",
2210
+ "optional": true,
2211
+ "os": [
2212
+ "win32"
2213
+ ],
2214
+ "engines": {
2215
+ "node": ">= 12.0.0"
2216
+ },
2217
+ "funding": {
2218
+ "type": "opencollective",
2219
+ "url": "https://opencollective.com/parcel"
2220
+ }
2221
+ },
2222
+ "node_modules/locate-path": {
2223
+ "version": "6.0.0",
2224
+ "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-6.0.0.tgz",
2225
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
2226
+ "dev": true,
2227
+ "license": "MIT",
2228
+ "dependencies": {
2229
+ "p-locate": "^5.0.0"
2230
+ },
2231
+ "engines": {
2232
+ "node": ">=10"
2233
+ },
2234
+ "funding": {
2235
+ "url": "https://github.com/sponsors/sindresorhus"
2236
+ }
2237
+ },
2238
+ "node_modules/magic-string": {
2239
+ "version": "0.30.21",
2240
+ "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.21.tgz",
2241
+ "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
2242
+ "license": "MIT",
2243
+ "dependencies": {
2244
+ "@jridgewell/sourcemap-codec": "^1.5.5"
2245
+ }
2246
+ },
2247
+ "node_modules/minimatch": {
2248
+ "version": "10.2.5",
2249
+ "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-10.2.5.tgz",
2250
+ "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
2251
+ "dev": true,
2252
+ "license": "BlueOak-1.0.0",
2253
+ "dependencies": {
2254
+ "brace-expansion": "^5.0.5"
2255
+ },
2256
+ "engines": {
2257
+ "node": "18 || 20 || >=22"
2258
+ },
2259
+ "funding": {
2260
+ "url": "https://github.com/sponsors/isaacs"
2261
+ }
2262
+ },
2263
+ "node_modules/mitt": {
2264
+ "version": "3.0.1",
2265
+ "resolved": "https://registry.npmmirror.com/mitt/-/mitt-3.0.1.tgz",
2266
+ "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==",
2267
+ "license": "MIT"
2268
+ },
2269
+ "node_modules/ms": {
2270
+ "version": "2.1.3",
2271
+ "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz",
2272
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
2273
+ "dev": true,
2274
+ "license": "MIT"
2275
+ },
2276
+ "node_modules/muggle-string": {
2277
+ "version": "0.4.1",
2278
+ "resolved": "https://registry.npmmirror.com/muggle-string/-/muggle-string-0.4.1.tgz",
2279
+ "integrity": "sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==",
2280
+ "dev": true,
2281
+ "license": "MIT"
2282
+ },
2283
+ "node_modules/nanoid": {
2284
+ "version": "3.3.11",
2285
+ "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.11.tgz",
2286
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
2287
+ "funding": [
2288
+ {
2289
+ "type": "github",
2290
+ "url": "https://github.com/sponsors/ai"
2291
+ }
2292
+ ],
2293
+ "license": "MIT",
2294
+ "bin": {
2295
+ "nanoid": "bin/nanoid.cjs"
2296
+ },
2297
+ "engines": {
2298
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2299
+ }
2300
+ },
2301
+ "node_modules/natural-compare": {
2302
+ "version": "1.4.0",
2303
+ "resolved": "https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz",
2304
+ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
2305
+ "dev": true,
2306
+ "license": "MIT"
2307
+ },
2308
+ "node_modules/nth-check": {
2309
+ "version": "2.1.1",
2310
+ "resolved": "https://registry.npmmirror.com/nth-check/-/nth-check-2.1.1.tgz",
2311
+ "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
2312
+ "dev": true,
2313
+ "license": "BSD-2-Clause",
2314
+ "dependencies": {
2315
+ "boolbase": "^1.0.0"
2316
+ },
2317
+ "funding": {
2318
+ "url": "https://github.com/fb55/nth-check?sponsor=1"
2319
+ }
2320
+ },
2321
+ "node_modules/optionator": {
2322
+ "version": "0.9.4",
2323
+ "resolved": "https://registry.npmmirror.com/optionator/-/optionator-0.9.4.tgz",
2324
+ "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
2325
+ "dev": true,
2326
+ "license": "MIT",
2327
+ "dependencies": {
2328
+ "deep-is": "^0.1.3",
2329
+ "fast-levenshtein": "^2.0.6",
2330
+ "levn": "^0.4.1",
2331
+ "prelude-ls": "^1.2.1",
2332
+ "type-check": "^0.4.0",
2333
+ "word-wrap": "^1.2.5"
2334
+ },
2335
+ "engines": {
2336
+ "node": ">= 0.8.0"
2337
+ }
2338
+ },
2339
+ "node_modules/p-limit": {
2340
+ "version": "3.1.0",
2341
+ "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz",
2342
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
2343
+ "dev": true,
2344
+ "license": "MIT",
2345
+ "dependencies": {
2346
+ "yocto-queue": "^0.1.0"
2347
+ },
2348
+ "engines": {
2349
+ "node": ">=10"
2350
+ },
2351
+ "funding": {
2352
+ "url": "https://github.com/sponsors/sindresorhus"
2353
+ }
2354
+ },
2355
+ "node_modules/p-locate": {
2356
+ "version": "5.0.0",
2357
+ "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz",
2358
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
2359
+ "dev": true,
2360
+ "license": "MIT",
2361
+ "dependencies": {
2362
+ "p-limit": "^3.0.2"
2363
+ },
2364
+ "engines": {
2365
+ "node": ">=10"
2366
+ },
2367
+ "funding": {
2368
+ "url": "https://github.com/sponsors/sindresorhus"
2369
+ }
2370
+ },
2371
+ "node_modules/path-browserify": {
2372
+ "version": "1.0.1",
2373
+ "resolved": "https://registry.npmmirror.com/path-browserify/-/path-browserify-1.0.1.tgz",
2374
+ "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==",
2375
+ "dev": true,
2376
+ "license": "MIT"
2377
+ },
2378
+ "node_modules/path-exists": {
2379
+ "version": "4.0.0",
2380
+ "resolved": "https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz",
2381
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
2382
+ "dev": true,
2383
+ "license": "MIT",
2384
+ "engines": {
2385
+ "node": ">=8"
2386
+ }
2387
+ },
2388
+ "node_modules/path-key": {
2389
+ "version": "3.1.1",
2390
+ "resolved": "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz",
2391
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
2392
+ "dev": true,
2393
+ "license": "MIT",
2394
+ "engines": {
2395
+ "node": ">=8"
2396
+ }
2397
+ },
2398
+ "node_modules/perfect-debounce": {
2399
+ "version": "1.0.0",
2400
+ "resolved": "https://registry.npmmirror.com/perfect-debounce/-/perfect-debounce-1.0.0.tgz",
2401
+ "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==",
2402
+ "license": "MIT"
2403
+ },
2404
+ "node_modules/picocolors": {
2405
+ "version": "1.1.1",
2406
+ "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.1.tgz",
2407
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
2408
+ "license": "ISC"
2409
+ },
2410
+ "node_modules/picomatch": {
2411
+ "version": "4.0.4",
2412
+ "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.4.tgz",
2413
+ "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
2414
+ "license": "MIT",
2415
+ "engines": {
2416
+ "node": ">=12"
2417
+ },
2418
+ "funding": {
2419
+ "url": "https://github.com/sponsors/jonschlinkert"
2420
+ }
2421
+ },
2422
+ "node_modules/pinia": {
2423
+ "version": "3.0.4",
2424
+ "resolved": "https://registry.npmmirror.com/pinia/-/pinia-3.0.4.tgz",
2425
+ "integrity": "sha512-l7pqLUFTI/+ESXn6k3nu30ZIzW5E2WZF/LaHJEpoq6ElcLD+wduZoB2kBN19du6K/4FDpPMazY2wJr+IndBtQw==",
2426
+ "license": "MIT",
2427
+ "dependencies": {
2428
+ "@vue/devtools-api": "^7.7.7"
2429
+ },
2430
+ "funding": {
2431
+ "url": "https://github.com/sponsors/posva"
2432
+ },
2433
+ "peerDependencies": {
2434
+ "typescript": ">=4.5.0",
2435
+ "vue": "^3.5.11"
2436
+ },
2437
+ "peerDependenciesMeta": {
2438
+ "typescript": {
2439
+ "optional": true
2440
+ }
2441
+ }
2442
+ },
2443
+ "node_modules/postcss": {
2444
+ "version": "8.5.8",
2445
+ "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.5.8.tgz",
2446
+ "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==",
2447
+ "funding": [
2448
+ {
2449
+ "type": "opencollective",
2450
+ "url": "https://opencollective.com/postcss/"
2451
+ },
2452
+ {
2453
+ "type": "tidelift",
2454
+ "url": "https://tidelift.com/funding/github/npm/postcss"
2455
+ },
2456
+ {
2457
+ "type": "github",
2458
+ "url": "https://github.com/sponsors/ai"
2459
+ }
2460
+ ],
2461
+ "license": "MIT",
2462
+ "dependencies": {
2463
+ "nanoid": "^3.3.11",
2464
+ "picocolors": "^1.1.1",
2465
+ "source-map-js": "^1.2.1"
2466
+ },
2467
+ "engines": {
2468
+ "node": "^10 || ^12 || >=14"
2469
+ }
2470
+ },
2471
+ "node_modules/postcss-selector-parser": {
2472
+ "version": "7.1.1",
2473
+ "resolved": "https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz",
2474
+ "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==",
2475
+ "dev": true,
2476
+ "license": "MIT",
2477
+ "dependencies": {
2478
+ "cssesc": "^3.0.0",
2479
+ "util-deprecate": "^1.0.2"
2480
+ },
2481
+ "engines": {
2482
+ "node": ">=4"
2483
+ }
2484
+ },
2485
+ "node_modules/prelude-ls": {
2486
+ "version": "1.2.1",
2487
+ "resolved": "https://registry.npmmirror.com/prelude-ls/-/prelude-ls-1.2.1.tgz",
2488
+ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
2489
+ "dev": true,
2490
+ "license": "MIT",
2491
+ "engines": {
2492
+ "node": ">= 0.8.0"
2493
+ }
2494
+ },
2495
+ "node_modules/punycode": {
2496
+ "version": "2.3.1",
2497
+ "resolved": "https://registry.npmmirror.com/punycode/-/punycode-2.3.1.tgz",
2498
+ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
2499
+ "dev": true,
2500
+ "license": "MIT",
2501
+ "engines": {
2502
+ "node": ">=6"
2503
+ }
2504
+ },
2505
+ "node_modules/rfdc": {
2506
+ "version": "1.4.1",
2507
+ "resolved": "https://registry.npmmirror.com/rfdc/-/rfdc-1.4.1.tgz",
2508
+ "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==",
2509
+ "license": "MIT"
2510
+ },
2511
+ "node_modules/rolldown": {
2512
+ "version": "1.0.0-rc.12",
2513
+ "resolved": "https://registry.npmmirror.com/rolldown/-/rolldown-1.0.0-rc.12.tgz",
2514
+ "integrity": "sha512-yP4USLIMYrwpPHEFB5JGH1uxhcslv6/hL0OyvTuY+3qlOSJvZ7ntYnoWpehBxufkgN0cvXxppuTu5hHa/zPh+A==",
2515
+ "license": "MIT",
2516
+ "dependencies": {
2517
+ "@oxc-project/types": "=0.122.0",
2518
+ "@rolldown/pluginutils": "1.0.0-rc.12"
2519
+ },
2520
+ "bin": {
2521
+ "rolldown": "bin/cli.mjs"
2522
+ },
2523
+ "engines": {
2524
+ "node": "^20.19.0 || >=22.12.0"
2525
+ },
2526
+ "optionalDependencies": {
2527
+ "@rolldown/binding-android-arm64": "1.0.0-rc.12",
2528
+ "@rolldown/binding-darwin-arm64": "1.0.0-rc.12",
2529
+ "@rolldown/binding-darwin-x64": "1.0.0-rc.12",
2530
+ "@rolldown/binding-freebsd-x64": "1.0.0-rc.12",
2531
+ "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.12",
2532
+ "@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.12",
2533
+ "@rolldown/binding-linux-arm64-musl": "1.0.0-rc.12",
2534
+ "@rolldown/binding-linux-ppc64-gnu": "1.0.0-rc.12",
2535
+ "@rolldown/binding-linux-s390x-gnu": "1.0.0-rc.12",
2536
+ "@rolldown/binding-linux-x64-gnu": "1.0.0-rc.12",
2537
+ "@rolldown/binding-linux-x64-musl": "1.0.0-rc.12",
2538
+ "@rolldown/binding-openharmony-arm64": "1.0.0-rc.12",
2539
+ "@rolldown/binding-wasm32-wasi": "1.0.0-rc.12",
2540
+ "@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.12",
2541
+ "@rolldown/binding-win32-x64-msvc": "1.0.0-rc.12"
2542
+ }
2543
+ },
2544
+ "node_modules/rolldown/node_modules/@rolldown/pluginutils": {
2545
+ "version": "1.0.0-rc.12",
2546
+ "resolved": "https://registry.npmmirror.com/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.12.tgz",
2547
+ "integrity": "sha512-HHMwmarRKvoFsJorqYlFeFRzXZqCt2ETQlEDOb9aqssrnVBB1/+xgTGtuTrIk5vzLNX1MjMtTf7W9z3tsSbrxw==",
2548
+ "license": "MIT"
2549
+ },
2550
+ "node_modules/semver": {
2551
+ "version": "7.7.4",
2552
+ "resolved": "https://registry.npmmirror.com/semver/-/semver-7.7.4.tgz",
2553
+ "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
2554
+ "dev": true,
2555
+ "license": "ISC",
2556
+ "bin": {
2557
+ "semver": "bin/semver.js"
2558
+ },
2559
+ "engines": {
2560
+ "node": ">=10"
2561
+ }
2562
+ },
2563
+ "node_modules/shebang-command": {
2564
+ "version": "2.0.0",
2565
+ "resolved": "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz",
2566
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
2567
+ "dev": true,
2568
+ "license": "MIT",
2569
+ "dependencies": {
2570
+ "shebang-regex": "^3.0.0"
2571
+ },
2572
+ "engines": {
2573
+ "node": ">=8"
2574
+ }
2575
+ },
2576
+ "node_modules/shebang-regex": {
2577
+ "version": "3.0.0",
2578
+ "resolved": "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz",
2579
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
2580
+ "dev": true,
2581
+ "license": "MIT",
2582
+ "engines": {
2583
+ "node": ">=8"
2584
+ }
2585
+ },
2586
+ "node_modules/source-map-js": {
2587
+ "version": "1.2.1",
2588
+ "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz",
2589
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
2590
+ "license": "BSD-3-Clause",
2591
+ "engines": {
2592
+ "node": ">=0.10.0"
2593
+ }
2594
+ },
2595
+ "node_modules/speakingurl": {
2596
+ "version": "14.0.1",
2597
+ "resolved": "https://registry.npmmirror.com/speakingurl/-/speakingurl-14.0.1.tgz",
2598
+ "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==",
2599
+ "license": "BSD-3-Clause",
2600
+ "engines": {
2601
+ "node": ">=0.10.0"
2602
+ }
2603
+ },
2604
+ "node_modules/superjson": {
2605
+ "version": "2.2.6",
2606
+ "resolved": "https://registry.npmmirror.com/superjson/-/superjson-2.2.6.tgz",
2607
+ "integrity": "sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==",
2608
+ "license": "MIT",
2609
+ "dependencies": {
2610
+ "copy-anything": "^4"
2611
+ },
2612
+ "engines": {
2613
+ "node": ">=16"
2614
+ }
2615
+ },
2616
+ "node_modules/tailwindcss": {
2617
+ "version": "4.2.2",
2618
+ "resolved": "https://registry.npmmirror.com/tailwindcss/-/tailwindcss-4.2.2.tgz",
2619
+ "integrity": "sha512-KWBIxs1Xb6NoLdMVqhbhgwZf2PGBpPEiwOqgI4pFIYbNTfBXiKYyWoTsXgBQ9WFg/OlhnvHaY+AEpW7wSmFo2Q==",
2620
+ "license": "MIT"
2621
+ },
2622
+ "node_modules/tapable": {
2623
+ "version": "2.3.2",
2624
+ "resolved": "https://registry.npmmirror.com/tapable/-/tapable-2.3.2.tgz",
2625
+ "integrity": "sha512-1MOpMXuhGzGL5TTCZFItxCc0AARf1EZFQkGqMm7ERKj8+Hgr5oLvJOVFcC+lRmR8hCe2S3jC4T5D7Vg/d7/fhA==",
2626
+ "license": "MIT",
2627
+ "engines": {
2628
+ "node": ">=6"
2629
+ },
2630
+ "funding": {
2631
+ "type": "opencollective",
2632
+ "url": "https://opencollective.com/webpack"
2633
+ }
2634
+ },
2635
+ "node_modules/tinyglobby": {
2636
+ "version": "0.2.15",
2637
+ "resolved": "https://registry.npmmirror.com/tinyglobby/-/tinyglobby-0.2.15.tgz",
2638
+ "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
2639
+ "license": "MIT",
2640
+ "dependencies": {
2641
+ "fdir": "^6.5.0",
2642
+ "picomatch": "^4.0.3"
2643
+ },
2644
+ "engines": {
2645
+ "node": ">=12.0.0"
2646
+ },
2647
+ "funding": {
2648
+ "url": "https://github.com/sponsors/SuperchupuDev"
2649
+ }
2650
+ },
2651
+ "node_modules/ts-api-utils": {
2652
+ "version": "2.5.0",
2653
+ "resolved": "https://registry.npmmirror.com/ts-api-utils/-/ts-api-utils-2.5.0.tgz",
2654
+ "integrity": "sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==",
2655
+ "dev": true,
2656
+ "license": "MIT",
2657
+ "engines": {
2658
+ "node": ">=18.12"
2659
+ },
2660
+ "peerDependencies": {
2661
+ "typescript": ">=4.8.4"
2662
+ }
2663
+ },
2664
+ "node_modules/tslib": {
2665
+ "version": "2.8.1",
2666
+ "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.8.1.tgz",
2667
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
2668
+ "license": "0BSD",
2669
+ "optional": true
2670
+ },
2671
+ "node_modules/type-check": {
2672
+ "version": "0.4.0",
2673
+ "resolved": "https://registry.npmmirror.com/type-check/-/type-check-0.4.0.tgz",
2674
+ "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
2675
+ "dev": true,
2676
+ "license": "MIT",
2677
+ "dependencies": {
2678
+ "prelude-ls": "^1.2.1"
2679
+ },
2680
+ "engines": {
2681
+ "node": ">= 0.8.0"
2682
+ }
2683
+ },
2684
+ "node_modules/typescript": {
2685
+ "version": "6.0.2",
2686
+ "resolved": "https://registry.npmmirror.com/typescript/-/typescript-6.0.2.tgz",
2687
+ "integrity": "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==",
2688
+ "devOptional": true,
2689
+ "license": "Apache-2.0",
2690
+ "bin": {
2691
+ "tsc": "bin/tsc",
2692
+ "tsserver": "bin/tsserver"
2693
+ },
2694
+ "engines": {
2695
+ "node": ">=14.17"
2696
+ }
2697
+ },
2698
+ "node_modules/typescript-eslint": {
2699
+ "version": "8.58.0",
2700
+ "resolved": "https://registry.npmmirror.com/typescript-eslint/-/typescript-eslint-8.58.0.tgz",
2701
+ "integrity": "sha512-e2TQzKfaI85fO+F3QywtX+tCTsu/D3WW5LVU6nz8hTFKFZ8yBJ6mSYRpXqdR3mFjPWmO0eWsTa5f+UpAOe/FMA==",
2702
+ "dev": true,
2703
+ "license": "MIT",
2704
+ "dependencies": {
2705
+ "@typescript-eslint/eslint-plugin": "8.58.0",
2706
+ "@typescript-eslint/parser": "8.58.0",
2707
+ "@typescript-eslint/typescript-estree": "8.58.0",
2708
+ "@typescript-eslint/utils": "8.58.0"
2709
+ },
2710
+ "engines": {
2711
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2712
+ },
2713
+ "funding": {
2714
+ "type": "opencollective",
2715
+ "url": "https://opencollective.com/typescript-eslint"
2716
+ },
2717
+ "peerDependencies": {
2718
+ "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
2719
+ "typescript": ">=4.8.4 <6.1.0"
2720
+ }
2721
+ },
2722
+ "node_modules/uri-js": {
2723
+ "version": "4.4.1",
2724
+ "resolved": "https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz",
2725
+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
2726
+ "dev": true,
2727
+ "license": "BSD-2-Clause",
2728
+ "dependencies": {
2729
+ "punycode": "^2.1.0"
2730
+ }
2731
+ },
2732
+ "node_modules/util-deprecate": {
2733
+ "version": "1.0.2",
2734
+ "resolved": "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz",
2735
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
2736
+ "dev": true,
2737
+ "license": "MIT"
2738
+ },
2739
+ "node_modules/vite": {
2740
+ "version": "8.0.3",
2741
+ "resolved": "https://registry.npmmirror.com/vite/-/vite-8.0.3.tgz",
2742
+ "integrity": "sha512-B9ifbFudT1TFhfltfaIPgjo9Z3mDynBTJSUYxTjOQruf/zHH+ezCQKcoqO+h7a9Pw9Nm/OtlXAiGT1axBgwqrQ==",
2743
+ "license": "MIT",
2744
+ "dependencies": {
2745
+ "lightningcss": "^1.32.0",
2746
+ "picomatch": "^4.0.4",
2747
+ "postcss": "^8.5.8",
2748
+ "rolldown": "1.0.0-rc.12",
2749
+ "tinyglobby": "^0.2.15"
2750
+ },
2751
+ "bin": {
2752
+ "vite": "bin/vite.js"
2753
+ },
2754
+ "engines": {
2755
+ "node": "^20.19.0 || >=22.12.0"
2756
+ },
2757
+ "funding": {
2758
+ "url": "https://github.com/vitejs/vite?sponsor=1"
2759
+ },
2760
+ "optionalDependencies": {
2761
+ "fsevents": "~2.3.3"
2762
+ },
2763
+ "peerDependencies": {
2764
+ "@types/node": "^20.19.0 || >=22.12.0",
2765
+ "@vitejs/devtools": "^0.1.0",
2766
+ "esbuild": "^0.27.0",
2767
+ "jiti": ">=1.21.0",
2768
+ "less": "^4.0.0",
2769
+ "sass": "^1.70.0",
2770
+ "sass-embedded": "^1.70.0",
2771
+ "stylus": ">=0.54.8",
2772
+ "sugarss": "^5.0.0",
2773
+ "terser": "^5.16.0",
2774
+ "tsx": "^4.8.1",
2775
+ "yaml": "^2.4.2"
2776
+ },
2777
+ "peerDependenciesMeta": {
2778
+ "@types/node": {
2779
+ "optional": true
2780
+ },
2781
+ "@vitejs/devtools": {
2782
+ "optional": true
2783
+ },
2784
+ "esbuild": {
2785
+ "optional": true
2786
+ },
2787
+ "jiti": {
2788
+ "optional": true
2789
+ },
2790
+ "less": {
2791
+ "optional": true
2792
+ },
2793
+ "sass": {
2794
+ "optional": true
2795
+ },
2796
+ "sass-embedded": {
2797
+ "optional": true
2798
+ },
2799
+ "stylus": {
2800
+ "optional": true
2801
+ },
2802
+ "sugarss": {
2803
+ "optional": true
2804
+ },
2805
+ "terser": {
2806
+ "optional": true
2807
+ },
2808
+ "tsx": {
2809
+ "optional": true
2810
+ },
2811
+ "yaml": {
2812
+ "optional": true
2813
+ }
2814
+ }
2815
+ },
2816
+ "node_modules/vscode-uri": {
2817
+ "version": "3.1.0",
2818
+ "resolved": "https://registry.npmmirror.com/vscode-uri/-/vscode-uri-3.1.0.tgz",
2819
+ "integrity": "sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==",
2820
+ "dev": true,
2821
+ "license": "MIT"
2822
+ },
2823
+ "node_modules/vue": {
2824
+ "version": "3.5.31",
2825
+ "resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.31.tgz",
2826
+ "integrity": "sha512-iV/sU9SzOlmA/0tygSmjkEN6Jbs3nPoIPFhCMLD2STrjgOU8DX7ZtzMhg4ahVwf5Rp9KoFzcXeB1ZrVbLBp5/Q==",
2827
+ "license": "MIT",
2828
+ "dependencies": {
2829
+ "@vue/compiler-dom": "3.5.31",
2830
+ "@vue/compiler-sfc": "3.5.31",
2831
+ "@vue/runtime-dom": "3.5.31",
2832
+ "@vue/server-renderer": "3.5.31",
2833
+ "@vue/shared": "3.5.31"
2834
+ },
2835
+ "peerDependencies": {
2836
+ "typescript": "*"
2837
+ },
2838
+ "peerDependenciesMeta": {
2839
+ "typescript": {
2840
+ "optional": true
2841
+ }
2842
+ }
2843
+ },
2844
+ "node_modules/vue-eslint-parser": {
2845
+ "version": "10.4.0",
2846
+ "resolved": "https://registry.npmmirror.com/vue-eslint-parser/-/vue-eslint-parser-10.4.0.tgz",
2847
+ "integrity": "sha512-Vxi9pJdbN3ZnVGLODVtZ7y4Y2kzAAE2Cm0CZ3ZDRvydVYxZ6VrnBhLikBsRS+dpwj4Jv4UCv21PTEwF5rQ9WXg==",
2848
+ "dev": true,
2849
+ "license": "MIT",
2850
+ "peer": true,
2851
+ "dependencies": {
2852
+ "debug": "^4.4.0",
2853
+ "eslint-scope": "^8.2.0 || ^9.0.0",
2854
+ "eslint-visitor-keys": "^4.2.0 || ^5.0.0",
2855
+ "espree": "^10.3.0 || ^11.0.0",
2856
+ "esquery": "^1.6.0",
2857
+ "semver": "^7.6.3"
2858
+ },
2859
+ "engines": {
2860
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2861
+ },
2862
+ "funding": {
2863
+ "url": "https://github.com/sponsors/mysticatea"
2864
+ },
2865
+ "peerDependencies": {
2866
+ "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0"
2867
+ }
2868
+ },
2869
+ "node_modules/vue-tsc": {
2870
+ "version": "3.2.6",
2871
+ "resolved": "https://registry.npmmirror.com/vue-tsc/-/vue-tsc-3.2.6.tgz",
2872
+ "integrity": "sha512-gYW/kWI0XrwGzd0PKc7tVB/qpdeAkIZLNZb10/InizkQjHjnT8weZ/vBarZoj4kHKbUTZT/bAVgoOr8x4NsQ/Q==",
2873
+ "dev": true,
2874
+ "license": "MIT",
2875
+ "dependencies": {
2876
+ "@volar/typescript": "2.4.28",
2877
+ "@vue/language-core": "3.2.6"
2878
+ },
2879
+ "bin": {
2880
+ "vue-tsc": "bin/vue-tsc.js"
2881
+ },
2882
+ "peerDependencies": {
2883
+ "typescript": ">=5.0.0"
2884
+ }
2885
+ },
2886
+ "node_modules/which": {
2887
+ "version": "2.0.2",
2888
+ "resolved": "https://registry.npmmirror.com/which/-/which-2.0.2.tgz",
2889
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
2890
+ "dev": true,
2891
+ "license": "ISC",
2892
+ "dependencies": {
2893
+ "isexe": "^2.0.0"
2894
+ },
2895
+ "bin": {
2896
+ "node-which": "bin/node-which"
2897
+ },
2898
+ "engines": {
2899
+ "node": ">= 8"
2900
+ }
2901
+ },
2902
+ "node_modules/word-wrap": {
2903
+ "version": "1.2.5",
2904
+ "resolved": "https://registry.npmmirror.com/word-wrap/-/word-wrap-1.2.5.tgz",
2905
+ "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
2906
+ "dev": true,
2907
+ "license": "MIT",
2908
+ "engines": {
2909
+ "node": ">=0.10.0"
2910
+ }
2911
+ },
2912
+ "node_modules/xml-name-validator": {
2913
+ "version": "4.0.0",
2914
+ "resolved": "https://registry.npmmirror.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz",
2915
+ "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==",
2916
+ "dev": true,
2917
+ "license": "Apache-2.0",
2918
+ "engines": {
2919
+ "node": ">=12"
2920
+ }
2921
+ },
2922
+ "node_modules/yocto-queue": {
2923
+ "version": "0.1.0",
2924
+ "resolved": "https://registry.npmmirror.com/yocto-queue/-/yocto-queue-0.1.0.tgz",
2925
+ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
2926
+ "dev": true,
2927
+ "license": "MIT",
2928
+ "engines": {
2929
+ "node": ">=10"
2930
+ },
2931
+ "funding": {
2932
+ "url": "https://github.com/sponsors/sindresorhus"
2933
+ }
2934
+ }
2935
+ }
2936
+ }