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