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,1661 @@
1
+ {
2
+ "name": "lowercode",
3
+ "version": "1.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "lowercode",
9
+ "version": "1.0.0",
10
+ "license": "MIT",
11
+ "dependencies": {
12
+ "@tailwindcss/vite": "^4.2.2",
13
+ "pinia": "^3.0.4",
14
+ "tailwindcss": "^4.2.2",
15
+ "vue": "^3.5.31"
16
+ },
17
+ "devDependencies": {
18
+ "@vitejs/plugin-vue": "^6.0.5",
19
+ "globals": "^17.4.0",
20
+ "jiti": "^2.6.1",
21
+ "typescript": "^6.0.2",
22
+ "vite": "^8.0.3",
23
+ "vue-tsc": "^3.2.6"
24
+ }
25
+ },
26
+ "node_modules/@babel/helper-string-parser": {
27
+ "version": "7.27.1",
28
+ "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
29
+ "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
30
+ "license": "MIT",
31
+ "engines": {
32
+ "node": ">=6.9.0"
33
+ }
34
+ },
35
+ "node_modules/@babel/helper-validator-identifier": {
36
+ "version": "7.28.5",
37
+ "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
38
+ "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
39
+ "license": "MIT",
40
+ "engines": {
41
+ "node": ">=6.9.0"
42
+ }
43
+ },
44
+ "node_modules/@babel/parser": {
45
+ "version": "7.29.2",
46
+ "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.29.2.tgz",
47
+ "integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==",
48
+ "license": "MIT",
49
+ "dependencies": {
50
+ "@babel/types": "^7.29.0"
51
+ },
52
+ "bin": {
53
+ "parser": "bin/babel-parser.js"
54
+ },
55
+ "engines": {
56
+ "node": ">=6.0.0"
57
+ }
58
+ },
59
+ "node_modules/@babel/types": {
60
+ "version": "7.29.0",
61
+ "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.29.0.tgz",
62
+ "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
63
+ "license": "MIT",
64
+ "dependencies": {
65
+ "@babel/helper-string-parser": "^7.27.1",
66
+ "@babel/helper-validator-identifier": "^7.28.5"
67
+ },
68
+ "engines": {
69
+ "node": ">=6.9.0"
70
+ }
71
+ },
72
+ "node_modules/@emnapi/core": {
73
+ "version": "1.9.1",
74
+ "resolved": "https://registry.npmmirror.com/@emnapi/core/-/core-1.9.1.tgz",
75
+ "integrity": "sha512-mukuNALVsoix/w1BJwFzwXBN/dHeejQtuVzcDsfOEsdpCumXb/E9j8w11h5S54tT1xhifGfbbSm/ICrObRb3KA==",
76
+ "license": "MIT",
77
+ "optional": true,
78
+ "dependencies": {
79
+ "@emnapi/wasi-threads": "1.2.0",
80
+ "tslib": "^2.4.0"
81
+ }
82
+ },
83
+ "node_modules/@emnapi/runtime": {
84
+ "version": "1.9.1",
85
+ "resolved": "https://registry.npmmirror.com/@emnapi/runtime/-/runtime-1.9.1.tgz",
86
+ "integrity": "sha512-VYi5+ZVLhpgK4hQ0TAjiQiZ6ol0oe4mBx7mVv7IflsiEp0OWoVsp/+f9Vc1hOhE0TtkORVrI1GvzyreqpgWtkA==",
87
+ "license": "MIT",
88
+ "optional": true,
89
+ "dependencies": {
90
+ "tslib": "^2.4.0"
91
+ }
92
+ },
93
+ "node_modules/@emnapi/wasi-threads": {
94
+ "version": "1.2.0",
95
+ "resolved": "https://registry.npmmirror.com/@emnapi/wasi-threads/-/wasi-threads-1.2.0.tgz",
96
+ "integrity": "sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==",
97
+ "license": "MIT",
98
+ "optional": true,
99
+ "dependencies": {
100
+ "tslib": "^2.4.0"
101
+ }
102
+ },
103
+ "node_modules/@jridgewell/gen-mapping": {
104
+ "version": "0.3.13",
105
+ "resolved": "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
106
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
107
+ "license": "MIT",
108
+ "dependencies": {
109
+ "@jridgewell/sourcemap-codec": "^1.5.0",
110
+ "@jridgewell/trace-mapping": "^0.3.24"
111
+ }
112
+ },
113
+ "node_modules/@jridgewell/remapping": {
114
+ "version": "2.3.5",
115
+ "resolved": "https://registry.npmmirror.com/@jridgewell/remapping/-/remapping-2.3.5.tgz",
116
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
117
+ "license": "MIT",
118
+ "dependencies": {
119
+ "@jridgewell/gen-mapping": "^0.3.5",
120
+ "@jridgewell/trace-mapping": "^0.3.24"
121
+ }
122
+ },
123
+ "node_modules/@jridgewell/resolve-uri": {
124
+ "version": "3.1.2",
125
+ "resolved": "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
126
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
127
+ "license": "MIT",
128
+ "engines": {
129
+ "node": ">=6.0.0"
130
+ }
131
+ },
132
+ "node_modules/@jridgewell/sourcemap-codec": {
133
+ "version": "1.5.5",
134
+ "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
135
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
136
+ "license": "MIT"
137
+ },
138
+ "node_modules/@jridgewell/trace-mapping": {
139
+ "version": "0.3.31",
140
+ "resolved": "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
141
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
142
+ "license": "MIT",
143
+ "dependencies": {
144
+ "@jridgewell/resolve-uri": "^3.1.0",
145
+ "@jridgewell/sourcemap-codec": "^1.4.14"
146
+ }
147
+ },
148
+ "node_modules/@napi-rs/wasm-runtime": {
149
+ "version": "1.1.2",
150
+ "resolved": "https://registry.npmmirror.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.2.tgz",
151
+ "integrity": "sha512-sNXv5oLJ7ob93xkZ1XnxisYhGYXfaG9f65/ZgYuAu3qt7b3NadcOEhLvx28hv31PgX8SZJRYrAIPQilQmFpLVw==",
152
+ "license": "MIT",
153
+ "optional": true,
154
+ "dependencies": {
155
+ "@tybys/wasm-util": "^0.10.1"
156
+ },
157
+ "funding": {
158
+ "type": "github",
159
+ "url": "https://github.com/sponsors/Brooooooklyn"
160
+ },
161
+ "peerDependencies": {
162
+ "@emnapi/core": "^1.7.1",
163
+ "@emnapi/runtime": "^1.7.1"
164
+ }
165
+ },
166
+ "node_modules/@oxc-project/types": {
167
+ "version": "0.122.0",
168
+ "resolved": "https://registry.npmmirror.com/@oxc-project/types/-/types-0.122.0.tgz",
169
+ "integrity": "sha512-oLAl5kBpV4w69UtFZ9xqcmTi+GENWOcPF7FCrczTiBbmC0ibXxCwyvZGbO39rCVEuLGAZM84DH0pUIyyv/YJzA==",
170
+ "license": "MIT",
171
+ "funding": {
172
+ "url": "https://github.com/sponsors/Boshen"
173
+ }
174
+ },
175
+ "node_modules/@rolldown/binding-android-arm64": {
176
+ "version": "1.0.0-rc.12",
177
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-rc.12.tgz",
178
+ "integrity": "sha512-pv1y2Fv0JybcykuiiD3qBOBdz6RteYojRFY1d+b95WVuzx211CRh+ytI/+9iVyWQ6koTh5dawe4S/yRfOFjgaA==",
179
+ "cpu": [
180
+ "arm64"
181
+ ],
182
+ "license": "MIT",
183
+ "optional": true,
184
+ "os": [
185
+ "android"
186
+ ],
187
+ "engines": {
188
+ "node": "^20.19.0 || >=22.12.0"
189
+ }
190
+ },
191
+ "node_modules/@rolldown/binding-darwin-arm64": {
192
+ "version": "1.0.0-rc.12",
193
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-rc.12.tgz",
194
+ "integrity": "sha512-cFYr6zTG/3PXXF3pUO+umXxt1wkRK/0AYT8lDwuqvRC+LuKYWSAQAQZjCWDQpAH172ZV6ieYrNnFzVVcnSflAg==",
195
+ "cpu": [
196
+ "arm64"
197
+ ],
198
+ "license": "MIT",
199
+ "optional": true,
200
+ "os": [
201
+ "darwin"
202
+ ],
203
+ "engines": {
204
+ "node": "^20.19.0 || >=22.12.0"
205
+ }
206
+ },
207
+ "node_modules/@rolldown/binding-darwin-x64": {
208
+ "version": "1.0.0-rc.12",
209
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0-rc.12.tgz",
210
+ "integrity": "sha512-ZCsYknnHzeXYps0lGBz8JrF37GpE9bFVefrlmDrAQhOEi4IOIlcoU1+FwHEtyXGx2VkYAvhu7dyBf75EJQffBw==",
211
+ "cpu": [
212
+ "x64"
213
+ ],
214
+ "license": "MIT",
215
+ "optional": true,
216
+ "os": [
217
+ "darwin"
218
+ ],
219
+ "engines": {
220
+ "node": "^20.19.0 || >=22.12.0"
221
+ }
222
+ },
223
+ "node_modules/@rolldown/binding-freebsd-x64": {
224
+ "version": "1.0.0-rc.12",
225
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0-rc.12.tgz",
226
+ "integrity": "sha512-dMLeprcVsyJsKolRXyoTH3NL6qtsT0Y2xeuEA8WQJquWFXkEC4bcu1rLZZSnZRMtAqwtrF/Ib9Ddtpa/Gkge9Q==",
227
+ "cpu": [
228
+ "x64"
229
+ ],
230
+ "license": "MIT",
231
+ "optional": true,
232
+ "os": [
233
+ "freebsd"
234
+ ],
235
+ "engines": {
236
+ "node": "^20.19.0 || >=22.12.0"
237
+ }
238
+ },
239
+ "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
240
+ "version": "1.0.0-rc.12",
241
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0-rc.12.tgz",
242
+ "integrity": "sha512-YqWjAgGC/9M1lz3GR1r1rP79nMgo3mQiiA+Hfo+pvKFK1fAJ1bCi0ZQVh8noOqNacuY1qIcfyVfP6HoyBRZ85Q==",
243
+ "cpu": [
244
+ "arm"
245
+ ],
246
+ "license": "MIT",
247
+ "optional": true,
248
+ "os": [
249
+ "linux"
250
+ ],
251
+ "engines": {
252
+ "node": "^20.19.0 || >=22.12.0"
253
+ }
254
+ },
255
+ "node_modules/@rolldown/binding-linux-arm64-gnu": {
256
+ "version": "1.0.0-rc.12",
257
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0-rc.12.tgz",
258
+ "integrity": "sha512-/I5AS4cIroLpslsmzXfwbe5OmWvSsrFuEw3mwvbQ1kDxJ822hFHIx+vsN/TAzNVyepI/j/GSzrtCIwQPeKCLIg==",
259
+ "cpu": [
260
+ "arm64"
261
+ ],
262
+ "license": "MIT",
263
+ "optional": true,
264
+ "os": [
265
+ "linux"
266
+ ],
267
+ "engines": {
268
+ "node": "^20.19.0 || >=22.12.0"
269
+ }
270
+ },
271
+ "node_modules/@rolldown/binding-linux-arm64-musl": {
272
+ "version": "1.0.0-rc.12",
273
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0-rc.12.tgz",
274
+ "integrity": "sha512-V6/wZztnBqlx5hJQqNWwFdxIKN0m38p8Jas+VoSfgH54HSj9tKTt1dZvG6JRHcjh6D7TvrJPWFGaY9UBVOaWPw==",
275
+ "cpu": [
276
+ "arm64"
277
+ ],
278
+ "license": "MIT",
279
+ "optional": true,
280
+ "os": [
281
+ "linux"
282
+ ],
283
+ "engines": {
284
+ "node": "^20.19.0 || >=22.12.0"
285
+ }
286
+ },
287
+ "node_modules/@rolldown/binding-linux-ppc64-gnu": {
288
+ "version": "1.0.0-rc.12",
289
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.0-rc.12.tgz",
290
+ "integrity": "sha512-AP3E9BpcUYliZCxa3w5Kwj9OtEVDYK6sVoUzy4vTOJsjPOgdaJZKFmN4oOlX0Wp0RPV2ETfmIra9x1xuayFB7g==",
291
+ "cpu": [
292
+ "ppc64"
293
+ ],
294
+ "license": "MIT",
295
+ "optional": true,
296
+ "os": [
297
+ "linux"
298
+ ],
299
+ "engines": {
300
+ "node": "^20.19.0 || >=22.12.0"
301
+ }
302
+ },
303
+ "node_modules/@rolldown/binding-linux-s390x-gnu": {
304
+ "version": "1.0.0-rc.12",
305
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.0-rc.12.tgz",
306
+ "integrity": "sha512-nWwpvUSPkoFmZo0kQazZYOrT7J5DGOJ/+QHHzjvNlooDZED8oH82Yg67HvehPPLAg5fUff7TfWFHQS8IV1n3og==",
307
+ "cpu": [
308
+ "s390x"
309
+ ],
310
+ "license": "MIT",
311
+ "optional": true,
312
+ "os": [
313
+ "linux"
314
+ ],
315
+ "engines": {
316
+ "node": "^20.19.0 || >=22.12.0"
317
+ }
318
+ },
319
+ "node_modules/@rolldown/binding-linux-x64-gnu": {
320
+ "version": "1.0.0-rc.12",
321
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0-rc.12.tgz",
322
+ "integrity": "sha512-RNrafz5bcwRy+O9e6P8Z/OCAJW/A+qtBczIqVYwTs14pf4iV1/+eKEjdOUta93q2TsT/FI0XYDP3TCky38LMAg==",
323
+ "cpu": [
324
+ "x64"
325
+ ],
326
+ "license": "MIT",
327
+ "optional": true,
328
+ "os": [
329
+ "linux"
330
+ ],
331
+ "engines": {
332
+ "node": "^20.19.0 || >=22.12.0"
333
+ }
334
+ },
335
+ "node_modules/@rolldown/binding-linux-x64-musl": {
336
+ "version": "1.0.0-rc.12",
337
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0-rc.12.tgz",
338
+ "integrity": "sha512-Jpw/0iwoKWx3LJ2rc1yjFrj+T7iHZn2JDg1Yny1ma0luviFS4mhAIcd1LFNxK3EYu3DHWCps0ydXQ5i/rrJ2ig==",
339
+ "cpu": [
340
+ "x64"
341
+ ],
342
+ "license": "MIT",
343
+ "optional": true,
344
+ "os": [
345
+ "linux"
346
+ ],
347
+ "engines": {
348
+ "node": "^20.19.0 || >=22.12.0"
349
+ }
350
+ },
351
+ "node_modules/@rolldown/binding-openharmony-arm64": {
352
+ "version": "1.0.0-rc.12",
353
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0-rc.12.tgz",
354
+ "integrity": "sha512-vRugONE4yMfVn0+7lUKdKvN4D5YusEiPilaoO2sgUWpCvrncvWgPMzK00ZFFJuiPgLwgFNP5eSiUlv2tfc+lpA==",
355
+ "cpu": [
356
+ "arm64"
357
+ ],
358
+ "license": "MIT",
359
+ "optional": true,
360
+ "os": [
361
+ "openharmony"
362
+ ],
363
+ "engines": {
364
+ "node": "^20.19.0 || >=22.12.0"
365
+ }
366
+ },
367
+ "node_modules/@rolldown/binding-wasm32-wasi": {
368
+ "version": "1.0.0-rc.12",
369
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0-rc.12.tgz",
370
+ "integrity": "sha512-ykGiLr/6kkiHc0XnBfmFJuCjr5ZYKKofkx+chJWDjitX+KsJuAmrzWhwyOMSHzPhzOHOy7u9HlFoa5MoAOJ/Zg==",
371
+ "cpu": [
372
+ "wasm32"
373
+ ],
374
+ "license": "MIT",
375
+ "optional": true,
376
+ "dependencies": {
377
+ "@napi-rs/wasm-runtime": "^1.1.1"
378
+ },
379
+ "engines": {
380
+ "node": ">=14.0.0"
381
+ }
382
+ },
383
+ "node_modules/@rolldown/binding-win32-arm64-msvc": {
384
+ "version": "1.0.0-rc.12",
385
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0-rc.12.tgz",
386
+ "integrity": "sha512-5eOND4duWkwx1AzCxadcOrNeighiLwMInEADT0YM7xeEOOFcovWZCq8dadXgcRHSf3Ulh1kFo/qvzoFiCLOL1Q==",
387
+ "cpu": [
388
+ "arm64"
389
+ ],
390
+ "license": "MIT",
391
+ "optional": true,
392
+ "os": [
393
+ "win32"
394
+ ],
395
+ "engines": {
396
+ "node": "^20.19.0 || >=22.12.0"
397
+ }
398
+ },
399
+ "node_modules/@rolldown/binding-win32-x64-msvc": {
400
+ "version": "1.0.0-rc.12",
401
+ "resolved": "https://registry.npmmirror.com/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-rc.12.tgz",
402
+ "integrity": "sha512-PyqoipaswDLAZtot351MLhrlrh6lcZPo2LSYE+VDxbVk24LVKAGOuE4hb8xZQmrPAuEtTZW8E6D2zc5EUZX4Lw==",
403
+ "cpu": [
404
+ "x64"
405
+ ],
406
+ "license": "MIT",
407
+ "optional": true,
408
+ "os": [
409
+ "win32"
410
+ ],
411
+ "engines": {
412
+ "node": "^20.19.0 || >=22.12.0"
413
+ }
414
+ },
415
+ "node_modules/@rolldown/pluginutils": {
416
+ "version": "1.0.0-rc.2",
417
+ "resolved": "https://registry.npmmirror.com/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.2.tgz",
418
+ "integrity": "sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==",
419
+ "dev": true,
420
+ "license": "MIT"
421
+ },
422
+ "node_modules/@tailwindcss/node": {
423
+ "version": "4.2.2",
424
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/node/-/node-4.2.2.tgz",
425
+ "integrity": "sha512-pXS+wJ2gZpVXqFaUEjojq7jzMpTGf8rU6ipJz5ovJV6PUGmlJ+jvIwGrzdHdQ80Sg+wmQxUFuoW1UAAwHNEdFA==",
426
+ "license": "MIT",
427
+ "dependencies": {
428
+ "@jridgewell/remapping": "^2.3.5",
429
+ "enhanced-resolve": "^5.19.0",
430
+ "jiti": "^2.6.1",
431
+ "lightningcss": "1.32.0",
432
+ "magic-string": "^0.30.21",
433
+ "source-map-js": "^1.2.1",
434
+ "tailwindcss": "4.2.2"
435
+ }
436
+ },
437
+ "node_modules/@tailwindcss/oxide": {
438
+ "version": "4.2.2",
439
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide/-/oxide-4.2.2.tgz",
440
+ "integrity": "sha512-qEUA07+E5kehxYp9BVMpq9E8vnJuBHfJEC0vPC5e7iL/hw7HR61aDKoVoKzrG+QKp56vhNZe4qwkRmMC0zDLvg==",
441
+ "license": "MIT",
442
+ "engines": {
443
+ "node": ">= 20"
444
+ },
445
+ "optionalDependencies": {
446
+ "@tailwindcss/oxide-android-arm64": "4.2.2",
447
+ "@tailwindcss/oxide-darwin-arm64": "4.2.2",
448
+ "@tailwindcss/oxide-darwin-x64": "4.2.2",
449
+ "@tailwindcss/oxide-freebsd-x64": "4.2.2",
450
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.2",
451
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.2.2",
452
+ "@tailwindcss/oxide-linux-arm64-musl": "4.2.2",
453
+ "@tailwindcss/oxide-linux-x64-gnu": "4.2.2",
454
+ "@tailwindcss/oxide-linux-x64-musl": "4.2.2",
455
+ "@tailwindcss/oxide-wasm32-wasi": "4.2.2",
456
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.2.2",
457
+ "@tailwindcss/oxide-win32-x64-msvc": "4.2.2"
458
+ }
459
+ },
460
+ "node_modules/@tailwindcss/oxide-android-arm64": {
461
+ "version": "4.2.2",
462
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.2.tgz",
463
+ "integrity": "sha512-dXGR1n+P3B6748jZO/SvHZq7qBOqqzQ+yFrXpoOWWALWndF9MoSKAT3Q0fYgAzYzGhxNYOoysRvYlpixRBBoDg==",
464
+ "cpu": [
465
+ "arm64"
466
+ ],
467
+ "license": "MIT",
468
+ "optional": true,
469
+ "os": [
470
+ "android"
471
+ ],
472
+ "engines": {
473
+ "node": ">= 20"
474
+ }
475
+ },
476
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
477
+ "version": "4.2.2",
478
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.2.tgz",
479
+ "integrity": "sha512-iq9Qjr6knfMpZHj55/37ouZeykwbDqF21gPFtfnhCCKGDcPI/21FKC9XdMO/XyBM7qKORx6UIhGgg6jLl7BZlg==",
480
+ "cpu": [
481
+ "arm64"
482
+ ],
483
+ "license": "MIT",
484
+ "optional": true,
485
+ "os": [
486
+ "darwin"
487
+ ],
488
+ "engines": {
489
+ "node": ">= 20"
490
+ }
491
+ },
492
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
493
+ "version": "4.2.2",
494
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.2.tgz",
495
+ "integrity": "sha512-BlR+2c3nzc8f2G639LpL89YY4bdcIdUmiOOkv2GQv4/4M0vJlpXEa0JXNHhCHU7VWOKWT/CjqHdTP8aUuDJkuw==",
496
+ "cpu": [
497
+ "x64"
498
+ ],
499
+ "license": "MIT",
500
+ "optional": true,
501
+ "os": [
502
+ "darwin"
503
+ ],
504
+ "engines": {
505
+ "node": ">= 20"
506
+ }
507
+ },
508
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
509
+ "version": "4.2.2",
510
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.2.tgz",
511
+ "integrity": "sha512-YUqUgrGMSu2CDO82hzlQ5qSb5xmx3RUrke/QgnoEx7KvmRJHQuZHZmZTLSuuHwFf0DJPybFMXMYf+WJdxHy/nQ==",
512
+ "cpu": [
513
+ "x64"
514
+ ],
515
+ "license": "MIT",
516
+ "optional": true,
517
+ "os": [
518
+ "freebsd"
519
+ ],
520
+ "engines": {
521
+ "node": ">= 20"
522
+ }
523
+ },
524
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
525
+ "version": "4.2.2",
526
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.2.tgz",
527
+ "integrity": "sha512-FPdhvsW6g06T9BWT0qTwiVZYE2WIFo2dY5aCSpjG/S/u1tby+wXoslXS0kl3/KXnULlLr1E3NPRRw0g7t2kgaQ==",
528
+ "cpu": [
529
+ "arm"
530
+ ],
531
+ "license": "MIT",
532
+ "optional": true,
533
+ "os": [
534
+ "linux"
535
+ ],
536
+ "engines": {
537
+ "node": ">= 20"
538
+ }
539
+ },
540
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
541
+ "version": "4.2.2",
542
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.2.tgz",
543
+ "integrity": "sha512-4og1V+ftEPXGttOO7eCmW7VICmzzJWgMx+QXAJRAhjrSjumCwWqMfkDrNu1LXEQzNAwz28NCUpucgQPrR4S2yw==",
544
+ "cpu": [
545
+ "arm64"
546
+ ],
547
+ "license": "MIT",
548
+ "optional": true,
549
+ "os": [
550
+ "linux"
551
+ ],
552
+ "engines": {
553
+ "node": ">= 20"
554
+ }
555
+ },
556
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
557
+ "version": "4.2.2",
558
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.2.tgz",
559
+ "integrity": "sha512-oCfG/mS+/+XRlwNjnsNLVwnMWYH7tn/kYPsNPh+JSOMlnt93mYNCKHYzylRhI51X+TbR+ufNhhKKzm6QkqX8ag==",
560
+ "cpu": [
561
+ "arm64"
562
+ ],
563
+ "license": "MIT",
564
+ "optional": true,
565
+ "os": [
566
+ "linux"
567
+ ],
568
+ "engines": {
569
+ "node": ">= 20"
570
+ }
571
+ },
572
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
573
+ "version": "4.2.2",
574
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.2.tgz",
575
+ "integrity": "sha512-rTAGAkDgqbXHNp/xW0iugLVmX62wOp2PoE39BTCGKjv3Iocf6AFbRP/wZT/kuCxC9QBh9Pu8XPkv/zCZB2mcMg==",
576
+ "cpu": [
577
+ "x64"
578
+ ],
579
+ "license": "MIT",
580
+ "optional": true,
581
+ "os": [
582
+ "linux"
583
+ ],
584
+ "engines": {
585
+ "node": ">= 20"
586
+ }
587
+ },
588
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
589
+ "version": "4.2.2",
590
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.2.tgz",
591
+ "integrity": "sha512-XW3t3qwbIwiSyRCggeO2zxe3KWaEbM0/kW9e8+0XpBgyKU4ATYzcVSMKteZJ1iukJ3HgHBjbg9P5YPRCVUxlnQ==",
592
+ "cpu": [
593
+ "x64"
594
+ ],
595
+ "license": "MIT",
596
+ "optional": true,
597
+ "os": [
598
+ "linux"
599
+ ],
600
+ "engines": {
601
+ "node": ">= 20"
602
+ }
603
+ },
604
+ "node_modules/@tailwindcss/oxide-wasm32-wasi": {
605
+ "version": "4.2.2",
606
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.2.tgz",
607
+ "integrity": "sha512-eKSztKsmEsn1O5lJ4ZAfyn41NfG7vzCg496YiGtMDV86jz1q/irhms5O0VrY6ZwTUkFy/EKG3RfWgxSI3VbZ8Q==",
608
+ "bundleDependencies": [
609
+ "@napi-rs/wasm-runtime",
610
+ "@emnapi/core",
611
+ "@emnapi/runtime",
612
+ "@tybys/wasm-util",
613
+ "@emnapi/wasi-threads",
614
+ "tslib"
615
+ ],
616
+ "cpu": [
617
+ "wasm32"
618
+ ],
619
+ "license": "MIT",
620
+ "optional": true,
621
+ "dependencies": {
622
+ "@emnapi/core": "^1.8.1",
623
+ "@emnapi/runtime": "^1.8.1",
624
+ "@emnapi/wasi-threads": "^1.1.0",
625
+ "@napi-rs/wasm-runtime": "^1.1.1",
626
+ "@tybys/wasm-util": "^0.10.1",
627
+ "tslib": "^2.8.1"
628
+ },
629
+ "engines": {
630
+ "node": ">=14.0.0"
631
+ }
632
+ },
633
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
634
+ "version": "4.2.2",
635
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.2.tgz",
636
+ "integrity": "sha512-qPmaQM4iKu5mxpsrWZMOZRgZv1tOZpUm+zdhhQP0VhJfyGGO3aUKdbh3gDZc/dPLQwW4eSqWGrrcWNBZWUWaXQ==",
637
+ "cpu": [
638
+ "arm64"
639
+ ],
640
+ "license": "MIT",
641
+ "optional": true,
642
+ "os": [
643
+ "win32"
644
+ ],
645
+ "engines": {
646
+ "node": ">= 20"
647
+ }
648
+ },
649
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
650
+ "version": "4.2.2",
651
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.2.tgz",
652
+ "integrity": "sha512-1T/37VvI7WyH66b+vqHj/cLwnCxt7Qt3WFu5Q8hk65aOvlwAhs7rAp1VkulBJw/N4tMirXjVnylTR72uI0HGcA==",
653
+ "cpu": [
654
+ "x64"
655
+ ],
656
+ "license": "MIT",
657
+ "optional": true,
658
+ "os": [
659
+ "win32"
660
+ ],
661
+ "engines": {
662
+ "node": ">= 20"
663
+ }
664
+ },
665
+ "node_modules/@tailwindcss/vite": {
666
+ "version": "4.2.2",
667
+ "resolved": "https://registry.npmmirror.com/@tailwindcss/vite/-/vite-4.2.2.tgz",
668
+ "integrity": "sha512-mEiF5HO1QqCLXoNEfXVA1Tzo+cYsrqV7w9Juj2wdUFyW07JRenqMG225MvPwr3ZD9N1bFQj46X7r33iHxLUW0w==",
669
+ "license": "MIT",
670
+ "dependencies": {
671
+ "@tailwindcss/node": "4.2.2",
672
+ "@tailwindcss/oxide": "4.2.2",
673
+ "tailwindcss": "4.2.2"
674
+ },
675
+ "peerDependencies": {
676
+ "vite": "^5.2.0 || ^6 || ^7 || ^8"
677
+ }
678
+ },
679
+ "node_modules/@tybys/wasm-util": {
680
+ "version": "0.10.1",
681
+ "resolved": "https://registry.npmmirror.com/@tybys/wasm-util/-/wasm-util-0.10.1.tgz",
682
+ "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==",
683
+ "license": "MIT",
684
+ "optional": true,
685
+ "dependencies": {
686
+ "tslib": "^2.4.0"
687
+ }
688
+ },
689
+ "node_modules/@vitejs/plugin-vue": {
690
+ "version": "6.0.5",
691
+ "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-6.0.5.tgz",
692
+ "integrity": "sha512-bL3AxKuQySfk1iGcBsQnoRVexTPJq0Z/ixFVM8OhVJAP6ZXXXLtM7NFKWhLl30Kg7uTBqIaPXbh+nuQCuBDedg==",
693
+ "dev": true,
694
+ "license": "MIT",
695
+ "dependencies": {
696
+ "@rolldown/pluginutils": "1.0.0-rc.2"
697
+ },
698
+ "engines": {
699
+ "node": "^20.19.0 || >=22.12.0"
700
+ },
701
+ "peerDependencies": {
702
+ "vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
703
+ "vue": "^3.2.25"
704
+ }
705
+ },
706
+ "node_modules/@volar/language-core": {
707
+ "version": "2.4.28",
708
+ "resolved": "https://registry.npmmirror.com/@volar/language-core/-/language-core-2.4.28.tgz",
709
+ "integrity": "sha512-w4qhIJ8ZSitgLAkVay6AbcnC7gP3glYM3fYwKV3srj8m494E3xtrCv6E+bWviiK/8hs6e6t1ij1s2Endql7vzQ==",
710
+ "dev": true,
711
+ "license": "MIT",
712
+ "dependencies": {
713
+ "@volar/source-map": "2.4.28"
714
+ }
715
+ },
716
+ "node_modules/@volar/source-map": {
717
+ "version": "2.4.28",
718
+ "resolved": "https://registry.npmmirror.com/@volar/source-map/-/source-map-2.4.28.tgz",
719
+ "integrity": "sha512-yX2BDBqJkRXfKw8my8VarTyjv48QwxdJtvRgUpNE5erCsgEUdI2DsLbpa+rOQVAJYshY99szEcRDmyHbF10ggQ==",
720
+ "dev": true,
721
+ "license": "MIT"
722
+ },
723
+ "node_modules/@volar/typescript": {
724
+ "version": "2.4.28",
725
+ "resolved": "https://registry.npmmirror.com/@volar/typescript/-/typescript-2.4.28.tgz",
726
+ "integrity": "sha512-Ja6yvWrbis2QtN4ClAKreeUZPVYMARDYZl9LMEv1iQ1QdepB6wn0jTRxA9MftYmYa4DQ4k/DaSZpFPUfxl8giw==",
727
+ "dev": true,
728
+ "license": "MIT",
729
+ "dependencies": {
730
+ "@volar/language-core": "2.4.28",
731
+ "path-browserify": "^1.0.1",
732
+ "vscode-uri": "^3.0.8"
733
+ }
734
+ },
735
+ "node_modules/@vue/compiler-core": {
736
+ "version": "3.5.31",
737
+ "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.5.31.tgz",
738
+ "integrity": "sha512-k/ueL14aNIEy5Onf0OVzR8kiqF/WThgLdFhxwa4e/KF/0qe38IwIdofoSWBTvvxQOesaz6riAFAUaYjoF9fLLQ==",
739
+ "license": "MIT",
740
+ "dependencies": {
741
+ "@babel/parser": "^7.29.2",
742
+ "@vue/shared": "3.5.31",
743
+ "entities": "^7.0.1",
744
+ "estree-walker": "^2.0.2",
745
+ "source-map-js": "^1.2.1"
746
+ }
747
+ },
748
+ "node_modules/@vue/compiler-dom": {
749
+ "version": "3.5.31",
750
+ "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.5.31.tgz",
751
+ "integrity": "sha512-BMY/ozS/xxjYqRFL+tKdRpATJYDTTgWSo0+AJvJNg4ig+Hgb0dOsHPXvloHQ5hmlivUqw1Yt2pPIqp4e0v1GUw==",
752
+ "license": "MIT",
753
+ "dependencies": {
754
+ "@vue/compiler-core": "3.5.31",
755
+ "@vue/shared": "3.5.31"
756
+ }
757
+ },
758
+ "node_modules/@vue/compiler-sfc": {
759
+ "version": "3.5.31",
760
+ "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.5.31.tgz",
761
+ "integrity": "sha512-M8wpPgR9UJ8MiRGjppvx9uWJfLV7A/T+/rL8s/y3QG3u0c2/YZgff3d6SuimKRIhcYnWg5fTfDMlz2E6seUW8Q==",
762
+ "license": "MIT",
763
+ "dependencies": {
764
+ "@babel/parser": "^7.29.2",
765
+ "@vue/compiler-core": "3.5.31",
766
+ "@vue/compiler-dom": "3.5.31",
767
+ "@vue/compiler-ssr": "3.5.31",
768
+ "@vue/shared": "3.5.31",
769
+ "estree-walker": "^2.0.2",
770
+ "magic-string": "^0.30.21",
771
+ "postcss": "^8.5.8",
772
+ "source-map-js": "^1.2.1"
773
+ }
774
+ },
775
+ "node_modules/@vue/compiler-ssr": {
776
+ "version": "3.5.31",
777
+ "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.5.31.tgz",
778
+ "integrity": "sha512-h0xIMxrt/LHOvJKMri+vdYT92BrK3HFLtDqq9Pr/lVVfE4IyKZKvWf0vJFW10Yr6nX02OR4MkJwI0c1HDa1hog==",
779
+ "license": "MIT",
780
+ "dependencies": {
781
+ "@vue/compiler-dom": "3.5.31",
782
+ "@vue/shared": "3.5.31"
783
+ }
784
+ },
785
+ "node_modules/@vue/devtools-api": {
786
+ "version": "7.7.9",
787
+ "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-7.7.9.tgz",
788
+ "integrity": "sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==",
789
+ "license": "MIT",
790
+ "dependencies": {
791
+ "@vue/devtools-kit": "^7.7.9"
792
+ }
793
+ },
794
+ "node_modules/@vue/devtools-kit": {
795
+ "version": "7.7.9",
796
+ "resolved": "https://registry.npmmirror.com/@vue/devtools-kit/-/devtools-kit-7.7.9.tgz",
797
+ "integrity": "sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==",
798
+ "license": "MIT",
799
+ "dependencies": {
800
+ "@vue/devtools-shared": "^7.7.9",
801
+ "birpc": "^2.3.0",
802
+ "hookable": "^5.5.3",
803
+ "mitt": "^3.0.1",
804
+ "perfect-debounce": "^1.0.0",
805
+ "speakingurl": "^14.0.1",
806
+ "superjson": "^2.2.2"
807
+ }
808
+ },
809
+ "node_modules/@vue/devtools-shared": {
810
+ "version": "7.7.9",
811
+ "resolved": "https://registry.npmmirror.com/@vue/devtools-shared/-/devtools-shared-7.7.9.tgz",
812
+ "integrity": "sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==",
813
+ "license": "MIT",
814
+ "dependencies": {
815
+ "rfdc": "^1.4.1"
816
+ }
817
+ },
818
+ "node_modules/@vue/language-core": {
819
+ "version": "3.2.6",
820
+ "resolved": "https://registry.npmmirror.com/@vue/language-core/-/language-core-3.2.6.tgz",
821
+ "integrity": "sha512-xYYYX3/aVup576tP/23sEUpgiEnujrENaoNRbaozC1/MA9I6EGFQRJb4xrt/MmUCAGlxTKL2RmT8JLTPqagCkg==",
822
+ "dev": true,
823
+ "license": "MIT",
824
+ "dependencies": {
825
+ "@volar/language-core": "2.4.28",
826
+ "@vue/compiler-dom": "^3.5.0",
827
+ "@vue/shared": "^3.5.0",
828
+ "alien-signals": "^3.0.0",
829
+ "muggle-string": "^0.4.1",
830
+ "path-browserify": "^1.0.1",
831
+ "picomatch": "^4.0.2"
832
+ }
833
+ },
834
+ "node_modules/@vue/reactivity": {
835
+ "version": "3.5.31",
836
+ "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.5.31.tgz",
837
+ "integrity": "sha512-DtKXxk9E/KuVvt8VxWu+6Luc9I9ETNcqR1T1oW1gf02nXaZ1kuAx58oVu7uX9XxJR0iJCro6fqBLw9oSBELo5g==",
838
+ "license": "MIT",
839
+ "dependencies": {
840
+ "@vue/shared": "3.5.31"
841
+ }
842
+ },
843
+ "node_modules/@vue/runtime-core": {
844
+ "version": "3.5.31",
845
+ "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.5.31.tgz",
846
+ "integrity": "sha512-AZPmIHXEAyhpkmN7aWlqjSfYynmkWlluDNPHMCZKFHH+lLtxP/30UJmoVhXmbDoP1Ng0jG0fyY2zCj1PnSSA6Q==",
847
+ "license": "MIT",
848
+ "dependencies": {
849
+ "@vue/reactivity": "3.5.31",
850
+ "@vue/shared": "3.5.31"
851
+ }
852
+ },
853
+ "node_modules/@vue/runtime-dom": {
854
+ "version": "3.5.31",
855
+ "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.5.31.tgz",
856
+ "integrity": "sha512-xQJsNRmGPeDCJq/u813tyonNgWBFjzfVkBwDREdEWndBnGdHLHgkwNBQxLtg4zDrzKTEcnikUy1UUNecb3lJ6g==",
857
+ "license": "MIT",
858
+ "dependencies": {
859
+ "@vue/reactivity": "3.5.31",
860
+ "@vue/runtime-core": "3.5.31",
861
+ "@vue/shared": "3.5.31",
862
+ "csstype": "^3.2.3"
863
+ }
864
+ },
865
+ "node_modules/@vue/server-renderer": {
866
+ "version": "3.5.31",
867
+ "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.5.31.tgz",
868
+ "integrity": "sha512-GJuwRvMcdZX/CriUnyIIOGkx3rMV3H6sOu0JhdKbduaeCji6zb60iOGMY7tFoN24NfsUYoFBhshZtGxGpxO4iA==",
869
+ "license": "MIT",
870
+ "dependencies": {
871
+ "@vue/compiler-ssr": "3.5.31",
872
+ "@vue/shared": "3.5.31"
873
+ },
874
+ "peerDependencies": {
875
+ "vue": "3.5.31"
876
+ }
877
+ },
878
+ "node_modules/@vue/shared": {
879
+ "version": "3.5.31",
880
+ "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.5.31.tgz",
881
+ "integrity": "sha512-nBxuiuS9Lj5bPkPbWogPUnjxxWpkRniX7e5UBQDWl6Fsf4roq9wwV+cR7ezQ4zXswNvPIlsdj1slcLB7XCsRAw==",
882
+ "license": "MIT"
883
+ },
884
+ "node_modules/alien-signals": {
885
+ "version": "3.1.2",
886
+ "resolved": "https://registry.npmmirror.com/alien-signals/-/alien-signals-3.1.2.tgz",
887
+ "integrity": "sha512-d9dYqZTS90WLiU0I5c6DHj/HcKkF8ZyGN3G5x8wSbslulz70KOxaqCT0hQCo9KOyhVqzqGojvNdJXoTumZOtcw==",
888
+ "dev": true,
889
+ "license": "MIT"
890
+ },
891
+ "node_modules/birpc": {
892
+ "version": "2.9.0",
893
+ "resolved": "https://registry.npmmirror.com/birpc/-/birpc-2.9.0.tgz",
894
+ "integrity": "sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==",
895
+ "license": "MIT",
896
+ "funding": {
897
+ "url": "https://github.com/sponsors/antfu"
898
+ }
899
+ },
900
+ "node_modules/copy-anything": {
901
+ "version": "4.0.5",
902
+ "resolved": "https://registry.npmmirror.com/copy-anything/-/copy-anything-4.0.5.tgz",
903
+ "integrity": "sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==",
904
+ "license": "MIT",
905
+ "dependencies": {
906
+ "is-what": "^5.2.0"
907
+ },
908
+ "engines": {
909
+ "node": ">=18"
910
+ },
911
+ "funding": {
912
+ "url": "https://github.com/sponsors/mesqueeb"
913
+ }
914
+ },
915
+ "node_modules/csstype": {
916
+ "version": "3.2.3",
917
+ "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.2.3.tgz",
918
+ "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
919
+ "license": "MIT"
920
+ },
921
+ "node_modules/detect-libc": {
922
+ "version": "2.1.2",
923
+ "resolved": "https://registry.npmmirror.com/detect-libc/-/detect-libc-2.1.2.tgz",
924
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
925
+ "license": "Apache-2.0",
926
+ "engines": {
927
+ "node": ">=8"
928
+ }
929
+ },
930
+ "node_modules/enhanced-resolve": {
931
+ "version": "5.20.1",
932
+ "resolved": "https://registry.npmmirror.com/enhanced-resolve/-/enhanced-resolve-5.20.1.tgz",
933
+ "integrity": "sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==",
934
+ "license": "MIT",
935
+ "dependencies": {
936
+ "graceful-fs": "^4.2.4",
937
+ "tapable": "^2.3.0"
938
+ },
939
+ "engines": {
940
+ "node": ">=10.13.0"
941
+ }
942
+ },
943
+ "node_modules/entities": {
944
+ "version": "7.0.1",
945
+ "resolved": "https://registry.npmmirror.com/entities/-/entities-7.0.1.tgz",
946
+ "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==",
947
+ "license": "BSD-2-Clause",
948
+ "engines": {
949
+ "node": ">=0.12"
950
+ },
951
+ "funding": {
952
+ "url": "https://github.com/fb55/entities?sponsor=1"
953
+ }
954
+ },
955
+ "node_modules/estree-walker": {
956
+ "version": "2.0.2",
957
+ "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz",
958
+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
959
+ "license": "MIT"
960
+ },
961
+ "node_modules/fdir": {
962
+ "version": "6.5.0",
963
+ "resolved": "https://registry.npmmirror.com/fdir/-/fdir-6.5.0.tgz",
964
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
965
+ "license": "MIT",
966
+ "engines": {
967
+ "node": ">=12.0.0"
968
+ },
969
+ "peerDependencies": {
970
+ "picomatch": "^3 || ^4"
971
+ },
972
+ "peerDependenciesMeta": {
973
+ "picomatch": {
974
+ "optional": true
975
+ }
976
+ }
977
+ },
978
+ "node_modules/fsevents": {
979
+ "version": "2.3.3",
980
+ "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz",
981
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
982
+ "hasInstallScript": true,
983
+ "license": "MIT",
984
+ "optional": true,
985
+ "os": [
986
+ "darwin"
987
+ ],
988
+ "engines": {
989
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
990
+ }
991
+ },
992
+ "node_modules/globals": {
993
+ "version": "17.4.0",
994
+ "resolved": "https://registry.npmmirror.com/globals/-/globals-17.4.0.tgz",
995
+ "integrity": "sha512-hjrNztw/VajQwOLsMNT1cbJiH2muO3OROCHnbehc8eY5JyD2gqz4AcMHPqgaOR59DjgUjYAYLeH699g/eWi2jw==",
996
+ "dev": true,
997
+ "license": "MIT",
998
+ "engines": {
999
+ "node": ">=18"
1000
+ },
1001
+ "funding": {
1002
+ "url": "https://github.com/sponsors/sindresorhus"
1003
+ }
1004
+ },
1005
+ "node_modules/graceful-fs": {
1006
+ "version": "4.2.11",
1007
+ "resolved": "https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz",
1008
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
1009
+ "license": "ISC"
1010
+ },
1011
+ "node_modules/hookable": {
1012
+ "version": "5.5.3",
1013
+ "resolved": "https://registry.npmmirror.com/hookable/-/hookable-5.5.3.tgz",
1014
+ "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==",
1015
+ "license": "MIT"
1016
+ },
1017
+ "node_modules/is-what": {
1018
+ "version": "5.5.0",
1019
+ "resolved": "https://registry.npmmirror.com/is-what/-/is-what-5.5.0.tgz",
1020
+ "integrity": "sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==",
1021
+ "license": "MIT",
1022
+ "engines": {
1023
+ "node": ">=18"
1024
+ },
1025
+ "funding": {
1026
+ "url": "https://github.com/sponsors/mesqueeb"
1027
+ }
1028
+ },
1029
+ "node_modules/jiti": {
1030
+ "version": "2.6.1",
1031
+ "resolved": "https://registry.npmmirror.com/jiti/-/jiti-2.6.1.tgz",
1032
+ "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
1033
+ "license": "MIT",
1034
+ "bin": {
1035
+ "jiti": "lib/jiti-cli.mjs"
1036
+ }
1037
+ },
1038
+ "node_modules/lightningcss": {
1039
+ "version": "1.32.0",
1040
+ "resolved": "https://registry.npmmirror.com/lightningcss/-/lightningcss-1.32.0.tgz",
1041
+ "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
1042
+ "license": "MPL-2.0",
1043
+ "dependencies": {
1044
+ "detect-libc": "^2.0.3"
1045
+ },
1046
+ "engines": {
1047
+ "node": ">= 12.0.0"
1048
+ },
1049
+ "funding": {
1050
+ "type": "opencollective",
1051
+ "url": "https://opencollective.com/parcel"
1052
+ },
1053
+ "optionalDependencies": {
1054
+ "lightningcss-android-arm64": "1.32.0",
1055
+ "lightningcss-darwin-arm64": "1.32.0",
1056
+ "lightningcss-darwin-x64": "1.32.0",
1057
+ "lightningcss-freebsd-x64": "1.32.0",
1058
+ "lightningcss-linux-arm-gnueabihf": "1.32.0",
1059
+ "lightningcss-linux-arm64-gnu": "1.32.0",
1060
+ "lightningcss-linux-arm64-musl": "1.32.0",
1061
+ "lightningcss-linux-x64-gnu": "1.32.0",
1062
+ "lightningcss-linux-x64-musl": "1.32.0",
1063
+ "lightningcss-win32-arm64-msvc": "1.32.0",
1064
+ "lightningcss-win32-x64-msvc": "1.32.0"
1065
+ }
1066
+ },
1067
+ "node_modules/lightningcss-android-arm64": {
1068
+ "version": "1.32.0",
1069
+ "resolved": "https://registry.npmmirror.com/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
1070
+ "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
1071
+ "cpu": [
1072
+ "arm64"
1073
+ ],
1074
+ "license": "MPL-2.0",
1075
+ "optional": true,
1076
+ "os": [
1077
+ "android"
1078
+ ],
1079
+ "engines": {
1080
+ "node": ">= 12.0.0"
1081
+ },
1082
+ "funding": {
1083
+ "type": "opencollective",
1084
+ "url": "https://opencollective.com/parcel"
1085
+ }
1086
+ },
1087
+ "node_modules/lightningcss-darwin-arm64": {
1088
+ "version": "1.32.0",
1089
+ "resolved": "https://registry.npmmirror.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
1090
+ "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
1091
+ "cpu": [
1092
+ "arm64"
1093
+ ],
1094
+ "license": "MPL-2.0",
1095
+ "optional": true,
1096
+ "os": [
1097
+ "darwin"
1098
+ ],
1099
+ "engines": {
1100
+ "node": ">= 12.0.0"
1101
+ },
1102
+ "funding": {
1103
+ "type": "opencollective",
1104
+ "url": "https://opencollective.com/parcel"
1105
+ }
1106
+ },
1107
+ "node_modules/lightningcss-darwin-x64": {
1108
+ "version": "1.32.0",
1109
+ "resolved": "https://registry.npmmirror.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
1110
+ "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
1111
+ "cpu": [
1112
+ "x64"
1113
+ ],
1114
+ "license": "MPL-2.0",
1115
+ "optional": true,
1116
+ "os": [
1117
+ "darwin"
1118
+ ],
1119
+ "engines": {
1120
+ "node": ">= 12.0.0"
1121
+ },
1122
+ "funding": {
1123
+ "type": "opencollective",
1124
+ "url": "https://opencollective.com/parcel"
1125
+ }
1126
+ },
1127
+ "node_modules/lightningcss-freebsd-x64": {
1128
+ "version": "1.32.0",
1129
+ "resolved": "https://registry.npmmirror.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
1130
+ "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
1131
+ "cpu": [
1132
+ "x64"
1133
+ ],
1134
+ "license": "MPL-2.0",
1135
+ "optional": true,
1136
+ "os": [
1137
+ "freebsd"
1138
+ ],
1139
+ "engines": {
1140
+ "node": ">= 12.0.0"
1141
+ },
1142
+ "funding": {
1143
+ "type": "opencollective",
1144
+ "url": "https://opencollective.com/parcel"
1145
+ }
1146
+ },
1147
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
1148
+ "version": "1.32.0",
1149
+ "resolved": "https://registry.npmmirror.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
1150
+ "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
1151
+ "cpu": [
1152
+ "arm"
1153
+ ],
1154
+ "license": "MPL-2.0",
1155
+ "optional": true,
1156
+ "os": [
1157
+ "linux"
1158
+ ],
1159
+ "engines": {
1160
+ "node": ">= 12.0.0"
1161
+ },
1162
+ "funding": {
1163
+ "type": "opencollective",
1164
+ "url": "https://opencollective.com/parcel"
1165
+ }
1166
+ },
1167
+ "node_modules/lightningcss-linux-arm64-gnu": {
1168
+ "version": "1.32.0",
1169
+ "resolved": "https://registry.npmmirror.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
1170
+ "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
1171
+ "cpu": [
1172
+ "arm64"
1173
+ ],
1174
+ "license": "MPL-2.0",
1175
+ "optional": true,
1176
+ "os": [
1177
+ "linux"
1178
+ ],
1179
+ "engines": {
1180
+ "node": ">= 12.0.0"
1181
+ },
1182
+ "funding": {
1183
+ "type": "opencollective",
1184
+ "url": "https://opencollective.com/parcel"
1185
+ }
1186
+ },
1187
+ "node_modules/lightningcss-linux-arm64-musl": {
1188
+ "version": "1.32.0",
1189
+ "resolved": "https://registry.npmmirror.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
1190
+ "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
1191
+ "cpu": [
1192
+ "arm64"
1193
+ ],
1194
+ "license": "MPL-2.0",
1195
+ "optional": true,
1196
+ "os": [
1197
+ "linux"
1198
+ ],
1199
+ "engines": {
1200
+ "node": ">= 12.0.0"
1201
+ },
1202
+ "funding": {
1203
+ "type": "opencollective",
1204
+ "url": "https://opencollective.com/parcel"
1205
+ }
1206
+ },
1207
+ "node_modules/lightningcss-linux-x64-gnu": {
1208
+ "version": "1.32.0",
1209
+ "resolved": "https://registry.npmmirror.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
1210
+ "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
1211
+ "cpu": [
1212
+ "x64"
1213
+ ],
1214
+ "license": "MPL-2.0",
1215
+ "optional": true,
1216
+ "os": [
1217
+ "linux"
1218
+ ],
1219
+ "engines": {
1220
+ "node": ">= 12.0.0"
1221
+ },
1222
+ "funding": {
1223
+ "type": "opencollective",
1224
+ "url": "https://opencollective.com/parcel"
1225
+ }
1226
+ },
1227
+ "node_modules/lightningcss-linux-x64-musl": {
1228
+ "version": "1.32.0",
1229
+ "resolved": "https://registry.npmmirror.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
1230
+ "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
1231
+ "cpu": [
1232
+ "x64"
1233
+ ],
1234
+ "license": "MPL-2.0",
1235
+ "optional": true,
1236
+ "os": [
1237
+ "linux"
1238
+ ],
1239
+ "engines": {
1240
+ "node": ">= 12.0.0"
1241
+ },
1242
+ "funding": {
1243
+ "type": "opencollective",
1244
+ "url": "https://opencollective.com/parcel"
1245
+ }
1246
+ },
1247
+ "node_modules/lightningcss-win32-arm64-msvc": {
1248
+ "version": "1.32.0",
1249
+ "resolved": "https://registry.npmmirror.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
1250
+ "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
1251
+ "cpu": [
1252
+ "arm64"
1253
+ ],
1254
+ "license": "MPL-2.0",
1255
+ "optional": true,
1256
+ "os": [
1257
+ "win32"
1258
+ ],
1259
+ "engines": {
1260
+ "node": ">= 12.0.0"
1261
+ },
1262
+ "funding": {
1263
+ "type": "opencollective",
1264
+ "url": "https://opencollective.com/parcel"
1265
+ }
1266
+ },
1267
+ "node_modules/lightningcss-win32-x64-msvc": {
1268
+ "version": "1.32.0",
1269
+ "resolved": "https://registry.npmmirror.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
1270
+ "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
1271
+ "cpu": [
1272
+ "x64"
1273
+ ],
1274
+ "license": "MPL-2.0",
1275
+ "optional": true,
1276
+ "os": [
1277
+ "win32"
1278
+ ],
1279
+ "engines": {
1280
+ "node": ">= 12.0.0"
1281
+ },
1282
+ "funding": {
1283
+ "type": "opencollective",
1284
+ "url": "https://opencollective.com/parcel"
1285
+ }
1286
+ },
1287
+ "node_modules/magic-string": {
1288
+ "version": "0.30.21",
1289
+ "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.21.tgz",
1290
+ "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
1291
+ "license": "MIT",
1292
+ "dependencies": {
1293
+ "@jridgewell/sourcemap-codec": "^1.5.5"
1294
+ }
1295
+ },
1296
+ "node_modules/mitt": {
1297
+ "version": "3.0.1",
1298
+ "resolved": "https://registry.npmmirror.com/mitt/-/mitt-3.0.1.tgz",
1299
+ "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==",
1300
+ "license": "MIT"
1301
+ },
1302
+ "node_modules/muggle-string": {
1303
+ "version": "0.4.1",
1304
+ "resolved": "https://registry.npmmirror.com/muggle-string/-/muggle-string-0.4.1.tgz",
1305
+ "integrity": "sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==",
1306
+ "dev": true,
1307
+ "license": "MIT"
1308
+ },
1309
+ "node_modules/nanoid": {
1310
+ "version": "3.3.11",
1311
+ "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.11.tgz",
1312
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
1313
+ "funding": [
1314
+ {
1315
+ "type": "github",
1316
+ "url": "https://github.com/sponsors/ai"
1317
+ }
1318
+ ],
1319
+ "license": "MIT",
1320
+ "bin": {
1321
+ "nanoid": "bin/nanoid.cjs"
1322
+ },
1323
+ "engines": {
1324
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
1325
+ }
1326
+ },
1327
+ "node_modules/path-browserify": {
1328
+ "version": "1.0.1",
1329
+ "resolved": "https://registry.npmmirror.com/path-browserify/-/path-browserify-1.0.1.tgz",
1330
+ "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==",
1331
+ "dev": true,
1332
+ "license": "MIT"
1333
+ },
1334
+ "node_modules/perfect-debounce": {
1335
+ "version": "1.0.0",
1336
+ "resolved": "https://registry.npmmirror.com/perfect-debounce/-/perfect-debounce-1.0.0.tgz",
1337
+ "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==",
1338
+ "license": "MIT"
1339
+ },
1340
+ "node_modules/picocolors": {
1341
+ "version": "1.1.1",
1342
+ "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.1.tgz",
1343
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
1344
+ "license": "ISC"
1345
+ },
1346
+ "node_modules/picomatch": {
1347
+ "version": "4.0.4",
1348
+ "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.4.tgz",
1349
+ "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
1350
+ "license": "MIT",
1351
+ "engines": {
1352
+ "node": ">=12"
1353
+ },
1354
+ "funding": {
1355
+ "url": "https://github.com/sponsors/jonschlinkert"
1356
+ }
1357
+ },
1358
+ "node_modules/pinia": {
1359
+ "version": "3.0.4",
1360
+ "resolved": "https://registry.npmmirror.com/pinia/-/pinia-3.0.4.tgz",
1361
+ "integrity": "sha512-l7pqLUFTI/+ESXn6k3nu30ZIzW5E2WZF/LaHJEpoq6ElcLD+wduZoB2kBN19du6K/4FDpPMazY2wJr+IndBtQw==",
1362
+ "license": "MIT",
1363
+ "dependencies": {
1364
+ "@vue/devtools-api": "^7.7.7"
1365
+ },
1366
+ "funding": {
1367
+ "url": "https://github.com/sponsors/posva"
1368
+ },
1369
+ "peerDependencies": {
1370
+ "typescript": ">=4.5.0",
1371
+ "vue": "^3.5.11"
1372
+ },
1373
+ "peerDependenciesMeta": {
1374
+ "typescript": {
1375
+ "optional": true
1376
+ }
1377
+ }
1378
+ },
1379
+ "node_modules/postcss": {
1380
+ "version": "8.5.8",
1381
+ "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.5.8.tgz",
1382
+ "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==",
1383
+ "funding": [
1384
+ {
1385
+ "type": "opencollective",
1386
+ "url": "https://opencollective.com/postcss/"
1387
+ },
1388
+ {
1389
+ "type": "tidelift",
1390
+ "url": "https://tidelift.com/funding/github/npm/postcss"
1391
+ },
1392
+ {
1393
+ "type": "github",
1394
+ "url": "https://github.com/sponsors/ai"
1395
+ }
1396
+ ],
1397
+ "license": "MIT",
1398
+ "dependencies": {
1399
+ "nanoid": "^3.3.11",
1400
+ "picocolors": "^1.1.1",
1401
+ "source-map-js": "^1.2.1"
1402
+ },
1403
+ "engines": {
1404
+ "node": "^10 || ^12 || >=14"
1405
+ }
1406
+ },
1407
+ "node_modules/rfdc": {
1408
+ "version": "1.4.1",
1409
+ "resolved": "https://registry.npmmirror.com/rfdc/-/rfdc-1.4.1.tgz",
1410
+ "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==",
1411
+ "license": "MIT"
1412
+ },
1413
+ "node_modules/rolldown": {
1414
+ "version": "1.0.0-rc.12",
1415
+ "resolved": "https://registry.npmmirror.com/rolldown/-/rolldown-1.0.0-rc.12.tgz",
1416
+ "integrity": "sha512-yP4USLIMYrwpPHEFB5JGH1uxhcslv6/hL0OyvTuY+3qlOSJvZ7ntYnoWpehBxufkgN0cvXxppuTu5hHa/zPh+A==",
1417
+ "license": "MIT",
1418
+ "dependencies": {
1419
+ "@oxc-project/types": "=0.122.0",
1420
+ "@rolldown/pluginutils": "1.0.0-rc.12"
1421
+ },
1422
+ "bin": {
1423
+ "rolldown": "bin/cli.mjs"
1424
+ },
1425
+ "engines": {
1426
+ "node": "^20.19.0 || >=22.12.0"
1427
+ },
1428
+ "optionalDependencies": {
1429
+ "@rolldown/binding-android-arm64": "1.0.0-rc.12",
1430
+ "@rolldown/binding-darwin-arm64": "1.0.0-rc.12",
1431
+ "@rolldown/binding-darwin-x64": "1.0.0-rc.12",
1432
+ "@rolldown/binding-freebsd-x64": "1.0.0-rc.12",
1433
+ "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.12",
1434
+ "@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.12",
1435
+ "@rolldown/binding-linux-arm64-musl": "1.0.0-rc.12",
1436
+ "@rolldown/binding-linux-ppc64-gnu": "1.0.0-rc.12",
1437
+ "@rolldown/binding-linux-s390x-gnu": "1.0.0-rc.12",
1438
+ "@rolldown/binding-linux-x64-gnu": "1.0.0-rc.12",
1439
+ "@rolldown/binding-linux-x64-musl": "1.0.0-rc.12",
1440
+ "@rolldown/binding-openharmony-arm64": "1.0.0-rc.12",
1441
+ "@rolldown/binding-wasm32-wasi": "1.0.0-rc.12",
1442
+ "@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.12",
1443
+ "@rolldown/binding-win32-x64-msvc": "1.0.0-rc.12"
1444
+ }
1445
+ },
1446
+ "node_modules/rolldown/node_modules/@rolldown/pluginutils": {
1447
+ "version": "1.0.0-rc.12",
1448
+ "resolved": "https://registry.npmmirror.com/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.12.tgz",
1449
+ "integrity": "sha512-HHMwmarRKvoFsJorqYlFeFRzXZqCt2ETQlEDOb9aqssrnVBB1/+xgTGtuTrIk5vzLNX1MjMtTf7W9z3tsSbrxw==",
1450
+ "license": "MIT"
1451
+ },
1452
+ "node_modules/source-map-js": {
1453
+ "version": "1.2.1",
1454
+ "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz",
1455
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
1456
+ "license": "BSD-3-Clause",
1457
+ "engines": {
1458
+ "node": ">=0.10.0"
1459
+ }
1460
+ },
1461
+ "node_modules/speakingurl": {
1462
+ "version": "14.0.1",
1463
+ "resolved": "https://registry.npmmirror.com/speakingurl/-/speakingurl-14.0.1.tgz",
1464
+ "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==",
1465
+ "license": "BSD-3-Clause",
1466
+ "engines": {
1467
+ "node": ">=0.10.0"
1468
+ }
1469
+ },
1470
+ "node_modules/superjson": {
1471
+ "version": "2.2.6",
1472
+ "resolved": "https://registry.npmmirror.com/superjson/-/superjson-2.2.6.tgz",
1473
+ "integrity": "sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==",
1474
+ "license": "MIT",
1475
+ "dependencies": {
1476
+ "copy-anything": "^4"
1477
+ },
1478
+ "engines": {
1479
+ "node": ">=16"
1480
+ }
1481
+ },
1482
+ "node_modules/tailwindcss": {
1483
+ "version": "4.2.2",
1484
+ "resolved": "https://registry.npmmirror.com/tailwindcss/-/tailwindcss-4.2.2.tgz",
1485
+ "integrity": "sha512-KWBIxs1Xb6NoLdMVqhbhgwZf2PGBpPEiwOqgI4pFIYbNTfBXiKYyWoTsXgBQ9WFg/OlhnvHaY+AEpW7wSmFo2Q==",
1486
+ "license": "MIT"
1487
+ },
1488
+ "node_modules/tapable": {
1489
+ "version": "2.3.2",
1490
+ "resolved": "https://registry.npmmirror.com/tapable/-/tapable-2.3.2.tgz",
1491
+ "integrity": "sha512-1MOpMXuhGzGL5TTCZFItxCc0AARf1EZFQkGqMm7ERKj8+Hgr5oLvJOVFcC+lRmR8hCe2S3jC4T5D7Vg/d7/fhA==",
1492
+ "license": "MIT",
1493
+ "engines": {
1494
+ "node": ">=6"
1495
+ },
1496
+ "funding": {
1497
+ "type": "opencollective",
1498
+ "url": "https://opencollective.com/webpack"
1499
+ }
1500
+ },
1501
+ "node_modules/tinyglobby": {
1502
+ "version": "0.2.15",
1503
+ "resolved": "https://registry.npmmirror.com/tinyglobby/-/tinyglobby-0.2.15.tgz",
1504
+ "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
1505
+ "license": "MIT",
1506
+ "dependencies": {
1507
+ "fdir": "^6.5.0",
1508
+ "picomatch": "^4.0.3"
1509
+ },
1510
+ "engines": {
1511
+ "node": ">=12.0.0"
1512
+ },
1513
+ "funding": {
1514
+ "url": "https://github.com/sponsors/SuperchupuDev"
1515
+ }
1516
+ },
1517
+ "node_modules/tslib": {
1518
+ "version": "2.8.1",
1519
+ "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.8.1.tgz",
1520
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
1521
+ "license": "0BSD",
1522
+ "optional": true
1523
+ },
1524
+ "node_modules/typescript": {
1525
+ "version": "6.0.2",
1526
+ "resolved": "https://registry.npmmirror.com/typescript/-/typescript-6.0.2.tgz",
1527
+ "integrity": "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==",
1528
+ "devOptional": true,
1529
+ "license": "Apache-2.0",
1530
+ "bin": {
1531
+ "tsc": "bin/tsc",
1532
+ "tsserver": "bin/tsserver"
1533
+ },
1534
+ "engines": {
1535
+ "node": ">=14.17"
1536
+ }
1537
+ },
1538
+ "node_modules/vite": {
1539
+ "version": "8.0.3",
1540
+ "resolved": "https://registry.npmmirror.com/vite/-/vite-8.0.3.tgz",
1541
+ "integrity": "sha512-B9ifbFudT1TFhfltfaIPgjo9Z3mDynBTJSUYxTjOQruf/zHH+ezCQKcoqO+h7a9Pw9Nm/OtlXAiGT1axBgwqrQ==",
1542
+ "license": "MIT",
1543
+ "dependencies": {
1544
+ "lightningcss": "^1.32.0",
1545
+ "picomatch": "^4.0.4",
1546
+ "postcss": "^8.5.8",
1547
+ "rolldown": "1.0.0-rc.12",
1548
+ "tinyglobby": "^0.2.15"
1549
+ },
1550
+ "bin": {
1551
+ "vite": "bin/vite.js"
1552
+ },
1553
+ "engines": {
1554
+ "node": "^20.19.0 || >=22.12.0"
1555
+ },
1556
+ "funding": {
1557
+ "url": "https://github.com/vitejs/vite?sponsor=1"
1558
+ },
1559
+ "optionalDependencies": {
1560
+ "fsevents": "~2.3.3"
1561
+ },
1562
+ "peerDependencies": {
1563
+ "@types/node": "^20.19.0 || >=22.12.0",
1564
+ "@vitejs/devtools": "^0.1.0",
1565
+ "esbuild": "^0.27.0",
1566
+ "jiti": ">=1.21.0",
1567
+ "less": "^4.0.0",
1568
+ "sass": "^1.70.0",
1569
+ "sass-embedded": "^1.70.0",
1570
+ "stylus": ">=0.54.8",
1571
+ "sugarss": "^5.0.0",
1572
+ "terser": "^5.16.0",
1573
+ "tsx": "^4.8.1",
1574
+ "yaml": "^2.4.2"
1575
+ },
1576
+ "peerDependenciesMeta": {
1577
+ "@types/node": {
1578
+ "optional": true
1579
+ },
1580
+ "@vitejs/devtools": {
1581
+ "optional": true
1582
+ },
1583
+ "esbuild": {
1584
+ "optional": true
1585
+ },
1586
+ "jiti": {
1587
+ "optional": true
1588
+ },
1589
+ "less": {
1590
+ "optional": true
1591
+ },
1592
+ "sass": {
1593
+ "optional": true
1594
+ },
1595
+ "sass-embedded": {
1596
+ "optional": true
1597
+ },
1598
+ "stylus": {
1599
+ "optional": true
1600
+ },
1601
+ "sugarss": {
1602
+ "optional": true
1603
+ },
1604
+ "terser": {
1605
+ "optional": true
1606
+ },
1607
+ "tsx": {
1608
+ "optional": true
1609
+ },
1610
+ "yaml": {
1611
+ "optional": true
1612
+ }
1613
+ }
1614
+ },
1615
+ "node_modules/vscode-uri": {
1616
+ "version": "3.1.0",
1617
+ "resolved": "https://registry.npmmirror.com/vscode-uri/-/vscode-uri-3.1.0.tgz",
1618
+ "integrity": "sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==",
1619
+ "dev": true,
1620
+ "license": "MIT"
1621
+ },
1622
+ "node_modules/vue": {
1623
+ "version": "3.5.31",
1624
+ "resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.31.tgz",
1625
+ "integrity": "sha512-iV/sU9SzOlmA/0tygSmjkEN6Jbs3nPoIPFhCMLD2STrjgOU8DX7ZtzMhg4ahVwf5Rp9KoFzcXeB1ZrVbLBp5/Q==",
1626
+ "license": "MIT",
1627
+ "dependencies": {
1628
+ "@vue/compiler-dom": "3.5.31",
1629
+ "@vue/compiler-sfc": "3.5.31",
1630
+ "@vue/runtime-dom": "3.5.31",
1631
+ "@vue/server-renderer": "3.5.31",
1632
+ "@vue/shared": "3.5.31"
1633
+ },
1634
+ "peerDependencies": {
1635
+ "typescript": "*"
1636
+ },
1637
+ "peerDependenciesMeta": {
1638
+ "typescript": {
1639
+ "optional": true
1640
+ }
1641
+ }
1642
+ },
1643
+ "node_modules/vue-tsc": {
1644
+ "version": "3.2.6",
1645
+ "resolved": "https://registry.npmmirror.com/vue-tsc/-/vue-tsc-3.2.6.tgz",
1646
+ "integrity": "sha512-gYW/kWI0XrwGzd0PKc7tVB/qpdeAkIZLNZb10/InizkQjHjnT8weZ/vBarZoj4kHKbUTZT/bAVgoOr8x4NsQ/Q==",
1647
+ "dev": true,
1648
+ "license": "MIT",
1649
+ "dependencies": {
1650
+ "@volar/typescript": "2.4.28",
1651
+ "@vue/language-core": "3.2.6"
1652
+ },
1653
+ "bin": {
1654
+ "vue-tsc": "bin/vue-tsc.js"
1655
+ },
1656
+ "peerDependencies": {
1657
+ "typescript": ">=5.0.0"
1658
+ }
1659
+ }
1660
+ }
1661
+ }