@msn-control/liftoff 0.6.2 → 0.8.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 (111) hide show
  1. package/README.md +15 -1
  2. package/assets/governance/single-maintainer-gitflow/policy.md +705 -0
  3. package/assets/locks/frontend/package-lock.json +1012 -1694
  4. package/assets/locks/frontend/package.json +5 -6
  5. package/assets/locks/go-backend/go.mod +17 -0
  6. package/assets/locks/go-backend/go.sum +159 -0
  7. package/assets/locks/node-backend/package-lock.json +1473 -2320
  8. package/assets/locks/node-backend/package.json +8 -7
  9. package/assets/locks/opentofu-azure/.terraform.lock.hcl +39 -0
  10. package/assets/locks/opentofu-azure/versions.tf +10 -0
  11. package/assets/locks/python-genai/function-requirements.txt +1734 -0
  12. package/assets/locks/python-genai/liftoff_template_python_genai.egg-info/PKG-INFO +25 -0
  13. package/assets/locks/python-genai/liftoff_template_python_genai.egg-info/SOURCES.txt +6 -0
  14. package/assets/locks/python-genai/liftoff_template_python_genai.egg-info/dependency_links.txt +1 -0
  15. package/assets/locks/python-genai/liftoff_template_python_genai.egg-info/requires.txt +23 -0
  16. package/assets/locks/python-genai/liftoff_template_python_genai.egg-info/top_level.txt +1 -0
  17. package/assets/locks/python-genai/pyproject.toml +42 -0
  18. package/assets/locks/python-genai/uv.lock +2536 -0
  19. package/assets/locks/python-standard/pyproject.toml +36 -0
  20. package/assets/locks/python-standard/uv.lock +1780 -0
  21. package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/catalog.json +4 -4
  22. package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/package-lock.json +667 -1108
  23. package/assets/supported-stack.json +711 -0
  24. package/dist/args.js +26 -1
  25. package/dist/args.js.map +1 -1
  26. package/dist/catalogs.d.ts +3 -1
  27. package/dist/catalogs.js +29 -7
  28. package/dist/catalogs.js.map +1 -1
  29. package/dist/cli.js +2 -1
  30. package/dist/cli.js.map +1 -1
  31. package/dist/commands.d.ts +6 -0
  32. package/dist/commands.js +364 -172
  33. package/dist/commands.js.map +1 -1
  34. package/dist/container-validation.d.ts +2 -0
  35. package/dist/container-validation.js +26 -0
  36. package/dist/container-validation.js.map +1 -0
  37. package/dist/file-system.d.ts +1 -0
  38. package/dist/file-system.js +141 -7
  39. package/dist/file-system.js.map +1 -1
  40. package/dist/framework-adapters.js +1 -0
  41. package/dist/framework-adapters.js.map +1 -1
  42. package/dist/go-template-assets.d.ts +2 -0
  43. package/dist/go-template-assets.js +14 -0
  44. package/dist/go-template-assets.js.map +1 -0
  45. package/dist/init-filesystem.js +5 -4
  46. package/dist/init-filesystem.js.map +1 -1
  47. package/dist/interactive.d.ts +0 -5
  48. package/dist/interactive.js +11 -73
  49. package/dist/interactive.js.map +1 -1
  50. package/dist/opentofu-template-assets.d.ts +2 -0
  51. package/dist/opentofu-template-assets.js +10 -0
  52. package/dist/opentofu-template-assets.js.map +1 -0
  53. package/dist/package-identity.d.ts +8 -0
  54. package/dist/package-identity.js +16 -0
  55. package/dist/package-identity.js.map +1 -0
  56. package/dist/planner.js +42 -3
  57. package/dist/planner.js.map +1 -1
  58. package/dist/power-apps-templates.js +6 -0
  59. package/dist/power-apps-templates.js.map +1 -1
  60. package/dist/project-dependencies.d.ts +1 -1
  61. package/dist/project-dependencies.js +15 -34
  62. package/dist/project-dependencies.js.map +1 -1
  63. package/dist/published-verifier.js +11 -1
  64. package/dist/published-verifier.js.map +1 -1
  65. package/dist/python-template-assets.d.ts +4 -0
  66. package/dist/python-template-assets.js +34 -0
  67. package/dist/python-template-assets.js.map +1 -0
  68. package/dist/repository-governance.d.ts +17 -0
  69. package/dist/repository-governance.js +507 -0
  70. package/dist/repository-governance.js.map +1 -0
  71. package/dist/runtime.d.ts +1 -1
  72. package/dist/runtime.js +3 -1
  73. package/dist/runtime.js.map +1 -1
  74. package/dist/self-upgrade.d.ts +77 -0
  75. package/dist/self-upgrade.js +499 -0
  76. package/dist/self-upgrade.js.map +1 -0
  77. package/dist/stable-release.d.ts +18 -0
  78. package/dist/stable-release.js +66 -0
  79. package/dist/stable-release.js.map +1 -0
  80. package/dist/standard-templates.js +28 -97
  81. package/dist/standard-templates.js.map +1 -1
  82. package/dist/supported-stack.d.ts +115 -0
  83. package/dist/supported-stack.js +439 -0
  84. package/dist/supported-stack.js.map +1 -0
  85. package/dist/telemetry/contract.d.ts +1 -1
  86. package/dist/telemetry/contract.js +1 -0
  87. package/dist/telemetry/contract.js.map +1 -1
  88. package/dist/templates.js +216 -125
  89. package/dist/templates.js.map +1 -1
  90. package/dist/types.d.ts +18 -1
  91. package/dist/workstation-catalog.js +15 -12
  92. package/dist/workstation-catalog.js.map +1 -1
  93. package/dist/workstation.js +16 -6
  94. package/dist/workstation.js.map +1 -1
  95. package/docs/cli-reference.md +99 -22
  96. package/docs/configuration-and-manifests.md +14 -7
  97. package/docs/existing-repositories.md +27 -6
  98. package/docs/getting-started.md +23 -7
  99. package/docs/prerequisites.md +30 -4
  100. package/docs/project-structure.md +20 -1
  101. package/docs/repository-governance.md +91 -0
  102. package/docs/safety-and-consent.md +42 -17
  103. package/docs/spec-workflows-and-agents.md +22 -8
  104. package/docs/supported-stack.md +89 -0
  105. package/docs/telemetry.md +6 -0
  106. package/docs/troubleshooting.md +84 -8
  107. package/docs/workloads.md +18 -5
  108. package/package.json +14 -6
  109. package/dist/update-impact.d.ts +0 -23
  110. package/dist/update-impact.js +0 -127
  111. package/dist/update-impact.js.map +0 -1
@@ -8,30 +8,16 @@
8
8
  "name": "liftoff-template-frontend",
9
9
  "version": "0.1.0",
10
10
  "dependencies": {
11
- "@vitejs/plugin-vue": "^5.0.5",
12
- "autoprefixer": "^10.4.19",
13
- "postcss": "^8.4.38",
14
- "tailwindcss": "^3.4.4",
15
- "vite": "^6.4.3",
16
- "vue": "^3.4.29"
17
- }
18
- },
19
- "node_modules/@alloc/quick-lru": {
20
- "version": "5.2.0",
21
- "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
22
- "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
23
- "license": "MIT",
24
- "engines": {
25
- "node": ">=10"
26
- },
27
- "funding": {
28
- "url": "https://github.com/sponsors/sindresorhus"
11
+ "@tailwindcss/vite": "^4.3.3",
12
+ "@vitejs/plugin-vue": "^6.0.8",
13
+ "tailwindcss": "^4.3.3",
14
+ "vite": "^8.2.2",
15
+ "vue": "^3.5.41"
29
16
  }
30
17
  },
31
18
  "node_modules/@babel/helper-string-parser": {
32
19
  "version": "7.29.7",
33
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
34
- "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
20
+ "integrity": "sha1-fwhx2Zgk0jE31g+G/PYTD9WhtR8=",
35
21
  "license": "MIT",
36
22
  "engines": {
37
23
  "node": ">=6.9.0"
@@ -39,20 +25,18 @@
39
25
  },
40
26
  "node_modules/@babel/helper-validator-identifier": {
41
27
  "version": "7.29.7",
42
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
43
- "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
28
+ "integrity": "sha1-vYcITO0MeW7Ea9pJLeboPSnon8I=",
44
29
  "license": "MIT",
45
30
  "engines": {
46
31
  "node": ">=6.9.0"
47
32
  }
48
33
  },
49
34
  "node_modules/@babel/parser": {
50
- "version": "7.29.7",
51
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.7.tgz",
52
- "integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==",
35
+ "version": "7.29.8",
36
+ "integrity": "sha1-llNxai8Qxne5j7xj1L+wAMMCzxc=",
53
37
  "license": "MIT",
54
38
  "dependencies": {
55
- "@babel/types": "^7.29.7"
39
+ "@babel/types": "^7.29.8"
56
40
  },
57
41
  "bin": {
58
42
  "parser": "bin/babel-parser.js"
@@ -62,9 +46,8 @@
62
46
  }
63
47
  },
64
48
  "node_modules/@babel/types": {
65
- "version": "7.29.7",
66
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.7.tgz",
67
- "integrity": "sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==",
49
+ "version": "7.29.8",
50
+ "integrity": "sha1-Einu8x2FFW1w+j9M2Fk3bQ6vaGM=",
68
51
  "license": "MIT",
69
52
  "dependencies": {
70
53
  "@babel/helper-string-parser": "^7.29.7",
@@ -74,44 +57,59 @@
74
57
  "node": ">=6.9.0"
75
58
  }
76
59
  },
77
- "node_modules/@esbuild/aix-ppc64": {
78
- "version": "0.25.12",
79
- "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz",
80
- "integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==",
81
- "cpu": [
82
- "ppc64"
83
- ],
60
+ "node_modules/@jridgewell/gen-mapping": {
61
+ "version": "0.3.13",
62
+ "integrity": "sha1-Y0Khn0Q0dRjJPkOxrGnes8Rlah8=",
84
63
  "license": "MIT",
85
- "optional": true,
86
- "os": [
87
- "aix"
88
- ],
89
- "engines": {
90
- "node": ">=18"
64
+ "dependencies": {
65
+ "@jridgewell/sourcemap-codec": "^1.5.0",
66
+ "@jridgewell/trace-mapping": "^0.3.24"
91
67
  }
92
68
  },
93
- "node_modules/@esbuild/android-arm": {
94
- "version": "0.25.12",
95
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.12.tgz",
96
- "integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==",
97
- "cpu": [
98
- "arm"
99
- ],
69
+ "node_modules/@jridgewell/remapping": {
70
+ "version": "2.3.5",
71
+ "integrity": "sha1-N1xHbRlylHhRuh4Vro8SMEdEWqE=",
72
+ "license": "MIT",
73
+ "dependencies": {
74
+ "@jridgewell/gen-mapping": "^0.3.5",
75
+ "@jridgewell/trace-mapping": "^0.3.24"
76
+ }
77
+ },
78
+ "node_modules/@jridgewell/resolve-uri": {
79
+ "version": "3.1.2",
80
+ "integrity": "sha1-eg7mAfYPmaIMfHxf8MgDiMEYm9Y=",
100
81
  "license": "MIT",
101
- "optional": true,
102
- "os": [
103
- "android"
104
- ],
105
82
  "engines": {
106
- "node": ">=18"
83
+ "node": ">=6.0.0"
84
+ }
85
+ },
86
+ "node_modules/@jridgewell/sourcemap-codec": {
87
+ "version": "1.5.5",
88
+ "integrity": "sha1-aRKwDSxjHA0Vzhp6tXzWV/Ko+Lo=",
89
+ "license": "MIT"
90
+ },
91
+ "node_modules/@jridgewell/trace-mapping": {
92
+ "version": "0.3.31",
93
+ "integrity": "sha1-2xXWeByTHzolGj2sOVAcmKYIL9A=",
94
+ "license": "MIT",
95
+ "dependencies": {
96
+ "@jridgewell/resolve-uri": "^3.1.0",
97
+ "@jridgewell/sourcemap-codec": "^1.4.14"
98
+ }
99
+ },
100
+ "node_modules/@oxc-project/types": {
101
+ "version": "0.146.0",
102
+ "integrity": "sha1-1Xolkau/H25QmBsH7iSrJpUw2Ho=",
103
+ "license": "MIT",
104
+ "funding": {
105
+ "url": "https://github.com/sponsors/Boshen"
107
106
  }
108
107
  },
109
- "node_modules/@esbuild/android-arm64": {
110
- "version": "0.25.12",
111
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz",
112
- "integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==",
108
+ "node_modules/@rolldown/binding-android-arm-eabi": {
109
+ "version": "1.2.5",
110
+ "integrity": "sha1-FluAkQ3nzTP3ctW3sEWyWay3Qgw=",
113
111
  "cpu": [
114
- "arm64"
112
+ "arm"
115
113
  ],
116
114
  "license": "MIT",
117
115
  "optional": true,
@@ -119,15 +117,14 @@
119
117
  "android"
120
118
  ],
121
119
  "engines": {
122
- "node": ">=18"
120
+ "node": "^20.19.0 || >=22.12.0"
123
121
  }
124
122
  },
125
- "node_modules/@esbuild/android-x64": {
126
- "version": "0.25.12",
127
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.12.tgz",
128
- "integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==",
123
+ "node_modules/@rolldown/binding-android-arm64": {
124
+ "version": "1.2.5",
125
+ "integrity": "sha1-XtdNS4+lbGjrGuuB0NIHqFtt4Fw=",
129
126
  "cpu": [
130
- "x64"
127
+ "arm64"
131
128
  ],
132
129
  "license": "MIT",
133
130
  "optional": true,
@@ -135,13 +132,12 @@
135
132
  "android"
136
133
  ],
137
134
  "engines": {
138
- "node": ">=18"
135
+ "node": "^20.19.0 || >=22.12.0"
139
136
  }
140
137
  },
141
- "node_modules/@esbuild/darwin-arm64": {
142
- "version": "0.25.12",
143
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz",
144
- "integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==",
138
+ "node_modules/@rolldown/binding-darwin-arm64": {
139
+ "version": "1.2.5",
140
+ "integrity": "sha1-byfHBg5YygMGH6fVD53ECbw3f+E=",
145
141
  "cpu": [
146
142
  "arm64"
147
143
  ],
@@ -151,13 +147,12 @@
151
147
  "darwin"
152
148
  ],
153
149
  "engines": {
154
- "node": ">=18"
150
+ "node": "^20.19.0 || >=22.12.0"
155
151
  }
156
152
  },
157
- "node_modules/@esbuild/darwin-x64": {
158
- "version": "0.25.12",
159
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz",
160
- "integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==",
153
+ "node_modules/@rolldown/binding-darwin-x64": {
154
+ "version": "1.2.5",
155
+ "integrity": "sha1-dKuJfRNO3kBy/cYQjwAZPmFn7ig=",
161
156
  "cpu": [
162
157
  "x64"
163
158
  ],
@@ -167,15 +162,14 @@
167
162
  "darwin"
168
163
  ],
169
164
  "engines": {
170
- "node": ">=18"
165
+ "node": "^20.19.0 || >=22.12.0"
171
166
  }
172
167
  },
173
- "node_modules/@esbuild/freebsd-arm64": {
174
- "version": "0.25.12",
175
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz",
176
- "integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==",
168
+ "node_modules/@rolldown/binding-freebsd-x64": {
169
+ "version": "1.2.5",
170
+ "integrity": "sha1-fTN/muS3OWdOGTh0cRirBnbI74o=",
177
171
  "cpu": [
178
- "arm64"
172
+ "x64"
179
173
  ],
180
174
  "license": "MIT",
181
175
  "optional": true,
@@ -183,31 +177,32 @@
183
177
  "freebsd"
184
178
  ],
185
179
  "engines": {
186
- "node": ">=18"
180
+ "node": "^20.19.0 || >=22.12.0"
187
181
  }
188
182
  },
189
- "node_modules/@esbuild/freebsd-x64": {
190
- "version": "0.25.12",
191
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz",
192
- "integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==",
183
+ "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
184
+ "version": "1.2.5",
185
+ "integrity": "sha1-qBldwQka3g+RKwYT72UAlB5WFfQ=",
193
186
  "cpu": [
194
- "x64"
187
+ "arm"
195
188
  ],
196
189
  "license": "MIT",
197
190
  "optional": true,
198
191
  "os": [
199
- "freebsd"
192
+ "linux"
200
193
  ],
201
194
  "engines": {
202
- "node": ">=18"
195
+ "node": "^20.19.0 || >=22.12.0"
203
196
  }
204
197
  },
205
- "node_modules/@esbuild/linux-arm": {
206
- "version": "0.25.12",
207
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz",
208
- "integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==",
198
+ "node_modules/@rolldown/binding-linux-arm64-gnu": {
199
+ "version": "1.2.5",
200
+ "integrity": "sha1-QPu7lwcrGsqj4Oj+l3T+Uk6GC7o=",
209
201
  "cpu": [
210
- "arm"
202
+ "arm64"
203
+ ],
204
+ "libc": [
205
+ "glibc"
211
206
  ],
212
207
  "license": "MIT",
213
208
  "optional": true,
@@ -215,31 +210,35 @@
215
210
  "linux"
216
211
  ],
217
212
  "engines": {
218
- "node": ">=18"
213
+ "node": "^20.19.0 || >=22.12.0"
219
214
  }
220
215
  },
221
- "node_modules/@esbuild/linux-arm64": {
222
- "version": "0.25.12",
223
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz",
224
- "integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==",
216
+ "node_modules/@rolldown/binding-linux-arm64-musl": {
217
+ "version": "1.2.5",
218
+ "integrity": "sha1-PP6LD3wT3inazpqfxsAwgRZBdqs=",
225
219
  "cpu": [
226
220
  "arm64"
227
221
  ],
222
+ "libc": [
223
+ "musl"
224
+ ],
228
225
  "license": "MIT",
229
226
  "optional": true,
230
227
  "os": [
231
228
  "linux"
232
229
  ],
233
230
  "engines": {
234
- "node": ">=18"
231
+ "node": "^20.19.0 || >=22.12.0"
235
232
  }
236
233
  },
237
- "node_modules/@esbuild/linux-ia32": {
238
- "version": "0.25.12",
239
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz",
240
- "integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==",
234
+ "node_modules/@rolldown/binding-linux-ppc64-gnu": {
235
+ "version": "1.2.5",
236
+ "integrity": "sha1-O9iQ2Wrin5NxiqFC7QmC8u4peK0=",
241
237
  "cpu": [
242
- "ia32"
238
+ "ppc64"
239
+ ],
240
+ "libc": [
241
+ "glibc"
243
242
  ],
244
243
  "license": "MIT",
245
244
  "optional": true,
@@ -247,15 +246,17 @@
247
246
  "linux"
248
247
  ],
249
248
  "engines": {
250
- "node": ">=18"
249
+ "node": "^20.19.0 || >=22.12.0"
251
250
  }
252
251
  },
253
- "node_modules/@esbuild/linux-loong64": {
254
- "version": "0.25.12",
255
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz",
256
- "integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==",
252
+ "node_modules/@rolldown/binding-linux-s390x-gnu": {
253
+ "version": "1.2.5",
254
+ "integrity": "sha1-CVmg1a8idB1Xh5GOJ673DchgKAQ=",
257
255
  "cpu": [
258
- "loong64"
256
+ "s390x"
257
+ ],
258
+ "libc": [
259
+ "glibc"
259
260
  ],
260
261
  "license": "MIT",
261
262
  "optional": true,
@@ -263,15 +264,17 @@
263
264
  "linux"
264
265
  ],
265
266
  "engines": {
266
- "node": ">=18"
267
+ "node": "^20.19.0 || >=22.12.0"
267
268
  }
268
269
  },
269
- "node_modules/@esbuild/linux-mips64el": {
270
- "version": "0.25.12",
271
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz",
272
- "integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==",
270
+ "node_modules/@rolldown/binding-linux-x64-gnu": {
271
+ "version": "1.2.5",
272
+ "integrity": "sha1-e6qU6CYyisb0V9nhq6z/oDU+jSI=",
273
273
  "cpu": [
274
- "mips64el"
274
+ "x64"
275
+ ],
276
+ "libc": [
277
+ "glibc"
275
278
  ],
276
279
  "license": "MIT",
277
280
  "optional": true,
@@ -279,15 +282,17 @@
279
282
  "linux"
280
283
  ],
281
284
  "engines": {
282
- "node": ">=18"
285
+ "node": "^20.19.0 || >=22.12.0"
283
286
  }
284
287
  },
285
- "node_modules/@esbuild/linux-ppc64": {
286
- "version": "0.25.12",
287
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz",
288
- "integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==",
288
+ "node_modules/@rolldown/binding-linux-x64-musl": {
289
+ "version": "1.2.5",
290
+ "integrity": "sha1-XzdZfq8OIjE9Hj1L59G+H9MykE4=",
289
291
  "cpu": [
290
- "ppc64"
292
+ "x64"
293
+ ],
294
+ "libc": [
295
+ "musl"
291
296
  ],
292
297
  "license": "MIT",
293
298
  "optional": true,
@@ -295,1269 +300,803 @@
295
300
  "linux"
296
301
  ],
297
302
  "engines": {
298
- "node": ">=18"
303
+ "node": "^20.19.0 || >=22.12.0"
299
304
  }
300
305
  },
301
- "node_modules/@esbuild/linux-riscv64": {
302
- "version": "0.25.12",
303
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz",
304
- "integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==",
306
+ "node_modules/@rolldown/binding-openharmony-arm64": {
307
+ "version": "1.2.5",
308
+ "integrity": "sha1-0JZWevP3OMvmqoWKsKAarp81fvQ=",
305
309
  "cpu": [
306
- "riscv64"
310
+ "arm64"
307
311
  ],
308
312
  "license": "MIT",
309
313
  "optional": true,
310
314
  "os": [
311
- "linux"
315
+ "openharmony"
312
316
  ],
313
317
  "engines": {
314
- "node": ">=18"
318
+ "node": "^20.19.0 || >=22.12.0"
315
319
  }
316
320
  },
317
- "node_modules/@esbuild/linux-s390x": {
318
- "version": "0.25.12",
319
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz",
320
- "integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==",
321
+ "node_modules/@rolldown/binding-win32-arm64-msvc": {
322
+ "version": "1.2.5",
323
+ "integrity": "sha1-1TuRGqTmtUe3icB3R/q6sqyMI30=",
321
324
  "cpu": [
322
- "s390x"
325
+ "arm64"
323
326
  ],
324
327
  "license": "MIT",
325
328
  "optional": true,
326
329
  "os": [
327
- "linux"
330
+ "win32"
328
331
  ],
329
332
  "engines": {
330
- "node": ">=18"
333
+ "node": "^20.19.0 || >=22.12.0"
331
334
  }
332
335
  },
333
- "node_modules/@esbuild/linux-x64": {
334
- "version": "0.25.12",
335
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz",
336
- "integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==",
336
+ "node_modules/@rolldown/binding-win32-x64-msvc": {
337
+ "version": "1.2.5",
338
+ "integrity": "sha1-e70Iz9pqmN6bdWRyx3KjbrtyKbw=",
337
339
  "cpu": [
338
340
  "x64"
339
341
  ],
340
342
  "license": "MIT",
341
343
  "optional": true,
342
344
  "os": [
343
- "linux"
345
+ "win32"
344
346
  ],
345
347
  "engines": {
346
- "node": ">=18"
348
+ "node": "^20.19.0 || >=22.12.0"
349
+ }
350
+ },
351
+ "node_modules/@rolldown/pluginutils": {
352
+ "version": "1.0.1",
353
+ "integrity": "sha1-4/zuCT+7XOdl4a0Ij/TeKIn2+b4=",
354
+ "license": "MIT"
355
+ },
356
+ "node_modules/@tailwindcss/node": {
357
+ "version": "4.3.3",
358
+ "integrity": "sha1-OP8EMJ/wNuo1iae62QacROydOIM=",
359
+ "license": "MIT",
360
+ "dependencies": {
361
+ "@jridgewell/remapping": "^2.3.5",
362
+ "enhanced-resolve": "^5.24.1",
363
+ "jiti": "^2.7.0",
364
+ "lightningcss": "1.32.0",
365
+ "magic-string": "^0.30.21",
366
+ "source-map-js": "^1.2.1",
367
+ "tailwindcss": "4.3.3"
347
368
  }
348
369
  },
349
- "node_modules/@esbuild/netbsd-arm64": {
350
- "version": "0.25.12",
351
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz",
352
- "integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==",
370
+ "node_modules/@tailwindcss/oxide": {
371
+ "version": "4.3.3",
372
+ "integrity": "sha1-YmYQnQJc/LBPjkxYlUpvYwpBW38=",
373
+ "license": "MIT",
374
+ "engines": {
375
+ "node": ">= 20"
376
+ },
377
+ "optionalDependencies": {
378
+ "@tailwindcss/oxide-android-arm64": "4.3.3",
379
+ "@tailwindcss/oxide-darwin-arm64": "4.3.3",
380
+ "@tailwindcss/oxide-darwin-x64": "4.3.3",
381
+ "@tailwindcss/oxide-freebsd-x64": "4.3.3",
382
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.3",
383
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.3.3",
384
+ "@tailwindcss/oxide-linux-arm64-musl": "4.3.3",
385
+ "@tailwindcss/oxide-linux-x64-gnu": "4.3.3",
386
+ "@tailwindcss/oxide-linux-x64-musl": "4.3.3",
387
+ "@tailwindcss/oxide-wasm32-wasi": "4.3.3",
388
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.3.3",
389
+ "@tailwindcss/oxide-win32-x64-msvc": "4.3.3"
390
+ }
391
+ },
392
+ "node_modules/@tailwindcss/oxide-android-arm64": {
393
+ "version": "4.3.3",
394
+ "integrity": "sha1-hI+TA0FV2veJIYUCjfsYFDv8fQc=",
353
395
  "cpu": [
354
396
  "arm64"
355
397
  ],
356
398
  "license": "MIT",
357
399
  "optional": true,
358
400
  "os": [
359
- "netbsd"
401
+ "android"
360
402
  ],
361
403
  "engines": {
362
- "node": ">=18"
404
+ "node": ">= 20"
363
405
  }
364
406
  },
365
- "node_modules/@esbuild/netbsd-x64": {
366
- "version": "0.25.12",
367
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz",
368
- "integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==",
407
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
408
+ "version": "4.3.3",
409
+ "integrity": "sha1-XHeeMsHDYb63UTb9jixif8uaWyg=",
369
410
  "cpu": [
370
- "x64"
411
+ "arm64"
371
412
  ],
372
413
  "license": "MIT",
373
414
  "optional": true,
374
415
  "os": [
375
- "netbsd"
416
+ "darwin"
376
417
  ],
377
418
  "engines": {
378
- "node": ">=18"
419
+ "node": ">= 20"
379
420
  }
380
421
  },
381
- "node_modules/@esbuild/openbsd-arm64": {
382
- "version": "0.25.12",
383
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz",
384
- "integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==",
422
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
423
+ "version": "4.3.3",
424
+ "integrity": "sha1-uikv9S+jJkE59/54dHGc4KRmaHU=",
385
425
  "cpu": [
386
- "arm64"
426
+ "x64"
387
427
  ],
388
428
  "license": "MIT",
389
429
  "optional": true,
390
430
  "os": [
391
- "openbsd"
431
+ "darwin"
392
432
  ],
393
433
  "engines": {
394
- "node": ">=18"
434
+ "node": ">= 20"
395
435
  }
396
436
  },
397
- "node_modules/@esbuild/openbsd-x64": {
398
- "version": "0.25.12",
399
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz",
400
- "integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==",
437
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
438
+ "version": "4.3.3",
439
+ "integrity": "sha1-B+WJSHuaY2I1pK3kjO/B+e7uxX8=",
401
440
  "cpu": [
402
441
  "x64"
403
442
  ],
404
443
  "license": "MIT",
405
444
  "optional": true,
406
445
  "os": [
407
- "openbsd"
446
+ "freebsd"
408
447
  ],
409
448
  "engines": {
410
- "node": ">=18"
449
+ "node": ">= 20"
411
450
  }
412
451
  },
413
- "node_modules/@esbuild/openharmony-arm64": {
414
- "version": "0.25.12",
415
- "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz",
416
- "integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==",
452
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
453
+ "version": "4.3.3",
454
+ "integrity": "sha1-DIq8Io2eGeAGXdtwfrpS4hhVs/8=",
417
455
  "cpu": [
418
- "arm64"
456
+ "arm"
419
457
  ],
420
458
  "license": "MIT",
421
459
  "optional": true,
422
460
  "os": [
423
- "openharmony"
461
+ "linux"
424
462
  ],
425
463
  "engines": {
426
- "node": ">=18"
464
+ "node": ">= 20"
427
465
  }
428
466
  },
429
- "node_modules/@esbuild/sunos-x64": {
430
- "version": "0.25.12",
431
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz",
432
- "integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==",
467
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
468
+ "version": "4.3.3",
469
+ "integrity": "sha1-UGfcev0V0rl63HepEXfcS+yNG4s=",
433
470
  "cpu": [
434
- "x64"
471
+ "arm64"
472
+ ],
473
+ "libc": [
474
+ "glibc"
435
475
  ],
436
476
  "license": "MIT",
437
477
  "optional": true,
438
478
  "os": [
439
- "sunos"
479
+ "linux"
440
480
  ],
441
481
  "engines": {
442
- "node": ">=18"
482
+ "node": ">= 20"
443
483
  }
444
484
  },
445
- "node_modules/@esbuild/win32-arm64": {
446
- "version": "0.25.12",
447
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz",
448
- "integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==",
485
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
486
+ "version": "4.3.3",
487
+ "integrity": "sha1-Ka5fJ5vizmTbNocRmFtq2ORWLlc=",
449
488
  "cpu": [
450
489
  "arm64"
451
490
  ],
491
+ "libc": [
492
+ "musl"
493
+ ],
452
494
  "license": "MIT",
453
495
  "optional": true,
454
496
  "os": [
455
- "win32"
497
+ "linux"
456
498
  ],
457
499
  "engines": {
458
- "node": ">=18"
500
+ "node": ">= 20"
459
501
  }
460
502
  },
461
- "node_modules/@esbuild/win32-ia32": {
462
- "version": "0.25.12",
463
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz",
464
- "integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==",
503
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
504
+ "version": "4.3.3",
505
+ "integrity": "sha1-fWk7QPaYdXRLSZSBNZsif9OsOjw=",
465
506
  "cpu": [
466
- "ia32"
507
+ "x64"
508
+ ],
509
+ "libc": [
510
+ "glibc"
467
511
  ],
468
512
  "license": "MIT",
469
513
  "optional": true,
470
514
  "os": [
471
- "win32"
515
+ "linux"
472
516
  ],
473
517
  "engines": {
474
- "node": ">=18"
518
+ "node": ">= 20"
475
519
  }
476
520
  },
477
- "node_modules/@esbuild/win32-x64": {
478
- "version": "0.25.12",
479
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz",
480
- "integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==",
521
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
522
+ "version": "4.3.3",
523
+ "integrity": "sha1-alXWZPR8X/mtP0a/Bf4H1BC4z9g=",
481
524
  "cpu": [
482
525
  "x64"
483
526
  ],
527
+ "libc": [
528
+ "musl"
529
+ ],
484
530
  "license": "MIT",
485
531
  "optional": true,
486
532
  "os": [
487
- "win32"
533
+ "linux"
488
534
  ],
489
535
  "engines": {
490
- "node": ">=18"
536
+ "node": ">= 20"
491
537
  }
492
538
  },
493
- "node_modules/@jridgewell/gen-mapping": {
494
- "version": "0.3.13",
495
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
496
- "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
539
+ "node_modules/@tailwindcss/oxide-wasm32-wasi": {
540
+ "version": "4.3.3",
541
+ "integrity": "sha1-QIqbxiDmjxqvDf6jPae9O2X54u8=",
542
+ "bundleDependencies": [
543
+ "@napi-rs/wasm-runtime",
544
+ "@emnapi/core",
545
+ "@emnapi/runtime",
546
+ "@tybys/wasm-util",
547
+ "@emnapi/wasi-threads",
548
+ "tslib"
549
+ ],
550
+ "cpu": [
551
+ "wasm32"
552
+ ],
497
553
  "license": "MIT",
554
+ "optional": true,
498
555
  "dependencies": {
499
- "@jridgewell/sourcemap-codec": "^1.5.0",
500
- "@jridgewell/trace-mapping": "^0.3.24"
501
- }
502
- },
503
- "node_modules/@jridgewell/resolve-uri": {
504
- "version": "3.1.2",
505
- "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
506
- "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
507
- "license": "MIT",
556
+ "@emnapi/core": "^1.11.1",
557
+ "@emnapi/runtime": "^1.11.1",
558
+ "@emnapi/wasi-threads": "^1.2.2",
559
+ "@napi-rs/wasm-runtime": "^1.1.4",
560
+ "@tybys/wasm-util": "^0.10.2",
561
+ "tslib": "^2.8.1"
562
+ },
508
563
  "engines": {
509
- "node": ">=6.0.0"
564
+ "node": ">=14.0.0"
510
565
  }
511
566
  },
512
- "node_modules/@jridgewell/sourcemap-codec": {
513
- "version": "1.5.5",
514
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
515
- "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
516
- "license": "MIT"
517
- },
518
- "node_modules/@jridgewell/trace-mapping": {
519
- "version": "0.3.31",
520
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
521
- "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
567
+ "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/core": {
568
+ "version": "1.11.1",
569
+ "inBundle": true,
522
570
  "license": "MIT",
571
+ "optional": true,
523
572
  "dependencies": {
524
- "@jridgewell/resolve-uri": "^3.1.0",
525
- "@jridgewell/sourcemap-codec": "^1.4.14"
573
+ "@emnapi/wasi-threads": "1.2.2",
574
+ "tslib": "^2.4.0"
526
575
  }
527
576
  },
528
- "node_modules/@nodelib/fs.scandir": {
529
- "version": "2.1.5",
530
- "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
531
- "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
577
+ "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/runtime": {
578
+ "version": "1.11.1",
579
+ "inBundle": true,
532
580
  "license": "MIT",
581
+ "optional": true,
533
582
  "dependencies": {
534
- "@nodelib/fs.stat": "2.0.5",
535
- "run-parallel": "^1.1.9"
536
- },
537
- "engines": {
538
- "node": ">= 8"
583
+ "tslib": "^2.4.0"
539
584
  }
540
585
  },
541
- "node_modules/@nodelib/fs.stat": {
542
- "version": "2.0.5",
543
- "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
544
- "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
586
+ "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/wasi-threads": {
587
+ "version": "1.2.2",
588
+ "inBundle": true,
545
589
  "license": "MIT",
546
- "engines": {
547
- "node": ">= 8"
590
+ "optional": true,
591
+ "dependencies": {
592
+ "tslib": "^2.4.0"
548
593
  }
549
594
  },
550
- "node_modules/@nodelib/fs.walk": {
551
- "version": "1.2.8",
552
- "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
553
- "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
595
+ "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@napi-rs/wasm-runtime": {
596
+ "version": "1.1.4",
597
+ "inBundle": true,
554
598
  "license": "MIT",
599
+ "optional": true,
555
600
  "dependencies": {
556
- "@nodelib/fs.scandir": "2.1.5",
557
- "fastq": "^1.6.0"
601
+ "@tybys/wasm-util": "^0.10.1"
558
602
  },
559
- "engines": {
560
- "node": ">= 8"
603
+ "funding": {
604
+ "type": "github",
605
+ "url": "https://github.com/sponsors/Brooooooklyn"
606
+ },
607
+ "peerDependencies": {
608
+ "@emnapi/core": "^1.7.1",
609
+ "@emnapi/runtime": "^1.7.1"
561
610
  }
562
611
  },
563
- "node_modules/@rollup/rollup-android-arm-eabi": {
564
- "version": "4.62.2",
565
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.62.2.tgz",
566
- "integrity": "sha512-6o7ZLZK+BeenkZCFNDXqpbjw9bD6nuWonvS/lwQJp7NoVVxm6p3qE7qQ5jGuBjiFsgvqjD8mZAU5oWxTmbOeOg==",
567
- "cpu": [
568
- "arm"
569
- ],
612
+ "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@tybys/wasm-util": {
613
+ "version": "0.10.2",
614
+ "inBundle": true,
570
615
  "license": "MIT",
571
616
  "optional": true,
572
- "os": [
573
- "android"
574
- ]
617
+ "dependencies": {
618
+ "tslib": "^2.4.0"
619
+ }
575
620
  },
576
- "node_modules/@rollup/rollup-android-arm64": {
577
- "version": "4.62.2",
578
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.62.2.tgz",
579
- "integrity": "sha512-BaH7BllCACHoH1LguOU56UItGfUWjujlO65kS9LAodViaN4bwIKd7oeW/ZHJ/4ljr/7MIiENnNy3HJ0zXv8Zkw==",
580
- "cpu": [
581
- "arm64"
582
- ],
583
- "license": "MIT",
584
- "optional": true,
585
- "os": [
586
- "android"
587
- ]
621
+ "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/tslib": {
622
+ "version": "2.8.1",
623
+ "inBundle": true,
624
+ "license": "0BSD",
625
+ "optional": true
588
626
  },
589
- "node_modules/@rollup/rollup-darwin-arm64": {
590
- "version": "4.62.2",
591
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.62.2.tgz",
592
- "integrity": "sha512-v39RCCvj4He82I9sFmk+M1VZ0PLM9sfsLVikjfx2hYBNALhrrOR2D3JjQA6AhlaSOgcR+RzrKY7e1+bT6SUO/A==",
627
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
628
+ "version": "4.3.3",
629
+ "integrity": "sha1-PVgrABgPpGgOC2yQvmn6X0ogkJI=",
593
630
  "cpu": [
594
631
  "arm64"
595
632
  ],
596
633
  "license": "MIT",
597
634
  "optional": true,
598
635
  "os": [
599
- "darwin"
600
- ]
636
+ "win32"
637
+ ],
638
+ "engines": {
639
+ "node": ">= 20"
640
+ }
601
641
  },
602
- "node_modules/@rollup/rollup-darwin-x64": {
603
- "version": "4.62.2",
604
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.62.2.tgz",
605
- "integrity": "sha512-yl0y2vq3S3lHeuXhEdss6TWfKW8vkujImO12tn4ZkG/4oghr09LvdYm2RElVjokTQiUvDUGXLGsYeLqUMCKpGA==",
642
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
643
+ "version": "4.3.3",
644
+ "integrity": "sha1-zkxmP+87T95nYRpME5GGb4wKp5s=",
606
645
  "cpu": [
607
646
  "x64"
608
647
  ],
609
648
  "license": "MIT",
610
649
  "optional": true,
611
650
  "os": [
612
- "darwin"
613
- ]
614
- },
615
- "node_modules/@rollup/rollup-freebsd-arm64": {
616
- "version": "4.62.2",
617
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.62.2.tgz",
618
- "integrity": "sha512-tT4pvt4qXD+vEoezupCWi+a1F0vvDiksiHc+PxRlYTOH1I6/X4id9jPxTP+Fg+545euaFT1jJVs4CEdHZAU1vw==",
619
- "cpu": [
620
- "arm64"
651
+ "win32"
621
652
  ],
622
- "license": "MIT",
623
- "optional": true,
624
- "os": [
625
- "freebsd"
626
- ]
653
+ "engines": {
654
+ "node": ">= 20"
655
+ }
627
656
  },
628
- "node_modules/@rollup/rollup-freebsd-x64": {
629
- "version": "4.62.2",
630
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.62.2.tgz",
631
- "integrity": "sha512-6nU5F2wCW+qvCBhTn1pdIU3bzsIoF7EUwsCDRxilWGprQR6yd508YnH9+OKFCwpfS8pjZqDUmnCAr7exax0XCg==",
632
- "cpu": [
633
- "x64"
634
- ],
657
+ "node_modules/@tailwindcss/vite": {
658
+ "version": "4.3.3",
659
+ "integrity": "sha1-H0A3uty15sa7V009igFyyD8muX8=",
635
660
  "license": "MIT",
636
- "optional": true,
637
- "os": [
638
- "freebsd"
639
- ]
661
+ "dependencies": {
662
+ "@tailwindcss/node": "4.3.3",
663
+ "@tailwindcss/oxide": "4.3.3",
664
+ "tailwindcss": "4.3.3"
665
+ },
666
+ "peerDependencies": {
667
+ "vite": "^5.2.0 || ^6 || ^7 || ^8"
668
+ }
640
669
  },
641
- "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
642
- "version": "4.62.2",
643
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.62.2.tgz",
644
- "integrity": "sha512-n1GJHPOvpIfhi3TmrCeh6S6URt9BFCt0KQE3qvexyGCTAKpR4Lg+eWvNZEqu7epxwus/8ElT3hacYEucm49SZg==",
645
- "cpu": [
646
- "arm"
647
- ],
670
+ "node_modules/@vitejs/plugin-vue": {
671
+ "version": "6.0.8",
672
+ "integrity": "sha1-GAnQkLfJO49K6D0+dTZlXLuxx5M=",
648
673
  "license": "MIT",
649
- "optional": true,
650
- "os": [
651
- "linux"
652
- ]
674
+ "dependencies": {
675
+ "@rolldown/pluginutils": "^1.0.1"
676
+ },
677
+ "engines": {
678
+ "node": "^20.19.0 || >=22.12.0"
679
+ },
680
+ "peerDependencies": {
681
+ "vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
682
+ "vue": "^3.2.25"
683
+ }
653
684
  },
654
- "node_modules/@rollup/rollup-linux-arm-musleabihf": {
655
- "version": "4.62.2",
656
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.62.2.tgz",
657
- "integrity": "sha512-JqgflS8wEB+UXV/vS1RpRbifGBeN4D5lz8D8oOFbFZw4vedvdOgCFAjfBmIMdW3yL10XpQQ0Ambepw6MXrhOnA==",
658
- "cpu": [
659
- "arm"
660
- ],
685
+ "node_modules/@vue/compiler-core": {
686
+ "version": "3.5.41",
687
+ "integrity": "sha1-gqQBLYtCD1piwWWKctFvfR7fEao=",
661
688
  "license": "MIT",
662
- "optional": true,
663
- "os": [
664
- "linux"
665
- ]
689
+ "dependencies": {
690
+ "@babel/parser": "^7.29.8",
691
+ "@vue/shared": "3.5.41",
692
+ "entities": "^7.0.1",
693
+ "estree-walker": "^2.0.2",
694
+ "source-map-js": "^1.2.1"
695
+ }
666
696
  },
667
- "node_modules/@rollup/rollup-linux-arm64-gnu": {
668
- "version": "4.62.2",
669
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.62.2.tgz",
670
- "integrity": "sha512-wnFJkogWvN4jm/hQRF2UBaeUmk20j5+DmHvoyWii2b8HJDyvz1MF2OU/6ynXt2KR63rbZLWkFpoytpdc/yBuSA==",
671
- "cpu": [
672
- "arm64"
673
- ],
697
+ "node_modules/@vue/compiler-dom": {
698
+ "version": "3.5.41",
699
+ "integrity": "sha1-ECn3XeCcZloKksYVZGN1QZKss2E=",
674
700
  "license": "MIT",
675
- "optional": true,
676
- "os": [
677
- "linux"
678
- ]
701
+ "dependencies": {
702
+ "@vue/compiler-core": "3.5.41",
703
+ "@vue/shared": "3.5.41"
704
+ }
679
705
  },
680
- "node_modules/@rollup/rollup-linux-arm64-musl": {
681
- "version": "4.62.2",
682
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.62.2.tgz",
683
- "integrity": "sha512-HVu2bp0zhvJ8xHEV9+UUs7S90VadmBSY3LcIMvozbPo4AuMGDWlz3ymHLHZPX4hR67TKTt8Qp5PJ5RBg/i+RMQ==",
684
- "cpu": [
685
- "arm64"
686
- ],
706
+ "node_modules/@vue/compiler-sfc": {
707
+ "version": "3.5.41",
708
+ "integrity": "sha1-+cfCFwrW7kvzXBeLXfAmSF2KY9s=",
687
709
  "license": "MIT",
688
- "optional": true,
689
- "os": [
690
- "linux"
691
- ]
710
+ "dependencies": {
711
+ "@babel/parser": "^7.29.8",
712
+ "@vue/compiler-core": "3.5.41",
713
+ "@vue/compiler-dom": "3.5.41",
714
+ "@vue/compiler-ssr": "3.5.41",
715
+ "@vue/shared": "3.5.41",
716
+ "estree-walker": "^2.0.2",
717
+ "magic-string": "^0.30.21",
718
+ "postcss": "^8.5.19",
719
+ "source-map-js": "^1.2.1"
720
+ }
692
721
  },
693
- "node_modules/@rollup/rollup-linux-loong64-gnu": {
694
- "version": "4.62.2",
695
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.62.2.tgz",
696
- "integrity": "sha512-mQqqAV8QaoSgr9I2fKDLY2BAVvmKjWoGiu/cSYQonsLvtqwEn1E4QYfnCOcp5zoEqNhsDYin1s6jx/VJmrxlZg==",
697
- "cpu": [
698
- "loong64"
699
- ],
722
+ "node_modules/@vue/compiler-ssr": {
723
+ "version": "3.5.41",
724
+ "integrity": "sha1-jl+fao0huAL85zc4B92TXtRUEIM=",
700
725
  "license": "MIT",
701
- "optional": true,
702
- "os": [
703
- "linux"
704
- ]
726
+ "dependencies": {
727
+ "@vue/compiler-dom": "3.5.41",
728
+ "@vue/shared": "3.5.41"
729
+ }
705
730
  },
706
- "node_modules/@rollup/rollup-linux-loong64-musl": {
707
- "version": "4.62.2",
708
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.62.2.tgz",
709
- "integrity": "sha512-IxKLoxCQ2IWi6bT2akyDUBGsOImDKB+sPp4EsTmwFQ/fMwpCKm8uLSSgP/Kx/QYUgKis6SEZ5/Nlhup0DIA0PQ==",
710
- "cpu": [
711
- "loong64"
712
- ],
731
+ "node_modules/@vue/reactivity": {
732
+ "version": "3.5.41",
733
+ "integrity": "sha1-g75huIsZjyHBV9OqbcuEOiWhGHI=",
713
734
  "license": "MIT",
714
- "optional": true,
715
- "os": [
716
- "linux"
717
- ]
735
+ "dependencies": {
736
+ "@vue/shared": "3.5.41"
737
+ }
718
738
  },
719
- "node_modules/@rollup/rollup-linux-ppc64-gnu": {
720
- "version": "4.62.2",
721
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.62.2.tgz",
722
- "integrity": "sha512-Mk5ha2RQSgyFfmYYLkBpPnUk8D8FriBxesO1u9O75X0mHgXL1UQcH5Itl2lurWL2tj0RxV9b9tJgipac0hRY9A==",
723
- "cpu": [
724
- "ppc64"
725
- ],
739
+ "node_modules/@vue/runtime-core": {
740
+ "version": "3.5.41",
741
+ "integrity": "sha1-o+AjyfIYCcgfJIE9rLf/oYouQWE=",
726
742
  "license": "MIT",
727
- "optional": true,
728
- "os": [
729
- "linux"
730
- ]
743
+ "dependencies": {
744
+ "@vue/reactivity": "3.5.41",
745
+ "@vue/shared": "3.5.41"
746
+ }
731
747
  },
732
- "node_modules/@rollup/rollup-linux-ppc64-musl": {
733
- "version": "4.62.2",
734
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.62.2.tgz",
735
- "integrity": "sha512-CjvEnqJL/0/TQ3TXX3OPIJ/kmBellrWd4heXUmHeJlTnmwjKpSJzoehLaL6Xk0ZnMHBu9dZuFADNOrtjF4v+2w==",
736
- "cpu": [
737
- "ppc64"
738
- ],
748
+ "node_modules/@vue/runtime-dom": {
749
+ "version": "3.5.41",
750
+ "integrity": "sha1-Qo96BCBAI4X64X1BPSUWn5j2QgU=",
751
+ "license": "MIT",
752
+ "dependencies": {
753
+ "@vue/reactivity": "3.5.41",
754
+ "@vue/runtime-core": "3.5.41",
755
+ "@vue/shared": "3.5.41",
756
+ "csstype": "^3.2.3"
757
+ }
758
+ },
759
+ "node_modules/@vue/server-renderer": {
760
+ "version": "3.5.41",
761
+ "integrity": "sha1-A1o4x5GC8VRJUjjqg6y6JCZqwgA=",
762
+ "license": "MIT",
763
+ "dependencies": {
764
+ "@vue/compiler-ssr": "3.5.41",
765
+ "@vue/runtime-dom": "3.5.41",
766
+ "@vue/shared": "3.5.41"
767
+ }
768
+ },
769
+ "node_modules/@vue/shared": {
770
+ "version": "3.5.41",
771
+ "integrity": "sha1-rEdkl/dElfdSUIcnCEmEF1ZVXPI=",
772
+ "license": "MIT"
773
+ },
774
+ "node_modules/csstype": {
775
+ "version": "3.2.3",
776
+ "integrity": "sha1-7EjA8+mT5QZIyG2lWeJhCZXPmJo=",
777
+ "license": "MIT"
778
+ },
779
+ "node_modules/detect-libc": {
780
+ "version": "2.1.2",
781
+ "integrity": "sha1-aJxdzcGQDvVYOky59te0c3QgdK0=",
782
+ "license": "Apache-2.0",
783
+ "engines": {
784
+ "node": ">=8"
785
+ }
786
+ },
787
+ "node_modules/enhanced-resolve": {
788
+ "version": "5.24.5",
789
+ "integrity": "sha1-tNrTJVt1RfB7pVNRiYaOn4X0dXM=",
790
+ "license": "MIT",
791
+ "dependencies": {
792
+ "graceful-fs": "^4.2.4",
793
+ "tapable": "^2.3.3"
794
+ },
795
+ "engines": {
796
+ "node": ">=10.13.0"
797
+ }
798
+ },
799
+ "node_modules/entities": {
800
+ "version": "7.0.1",
801
+ "integrity": "sha1-JuioiInbY0F9y5oeeaPxvJK1l2s=",
802
+ "license": "BSD-2-Clause",
803
+ "engines": {
804
+ "node": ">=0.12"
805
+ },
806
+ "funding": {
807
+ "url": "https://github.com/fb55/entities?sponsor=1"
808
+ }
809
+ },
810
+ "node_modules/estree-walker": {
811
+ "version": "2.0.2",
812
+ "integrity": "sha1-UvAQF4wqTBF6d1fP6UKtt9LaTKw=",
813
+ "license": "MIT"
814
+ },
815
+ "node_modules/fsevents": {
816
+ "version": "2.3.3",
817
+ "integrity": "sha1-ysZAd4XQNnWipeGlMFxpezR9kNY=",
739
818
  "license": "MIT",
740
819
  "optional": true,
741
820
  "os": [
742
- "linux"
743
- ]
821
+ "darwin"
822
+ ],
823
+ "engines": {
824
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
825
+ }
826
+ },
827
+ "node_modules/graceful-fs": {
828
+ "version": "4.2.11",
829
+ "integrity": "sha1-QYPk6L8Iu24Fu7L30uDI9xLKQOM=",
830
+ "license": "ISC"
744
831
  },
745
- "node_modules/@rollup/rollup-linux-riscv64-gnu": {
746
- "version": "4.62.2",
747
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.62.2.tgz",
748
- "integrity": "sha512-1SiZbzwdkaDURsew/tSOrooKiYy7EQGT6m8ufavAi9NEyQb/6VuIxFXAL1fqa4iZe3g4NbNk4P7J32z2tw5Mgg==",
832
+ "node_modules/jiti": {
833
+ "version": "2.7.0",
834
+ "integrity": "sha1-l0Io8vTKK8IYhaF5e0X+po6VDGQ=",
835
+ "license": "MIT",
836
+ "bin": {
837
+ "jiti": "lib/jiti-cli.mjs"
838
+ }
839
+ },
840
+ "node_modules/lightningcss": {
841
+ "version": "1.32.0",
842
+ "integrity": "sha1-uFqulkhtyxv0mnyFcSISc/Tx5Kk=",
843
+ "license": "MPL-2.0",
844
+ "dependencies": {
845
+ "detect-libc": "^2.0.3"
846
+ },
847
+ "engines": {
848
+ "node": ">= 12.0.0"
849
+ },
850
+ "funding": {
851
+ "type": "opencollective",
852
+ "url": "https://opencollective.com/parcel"
853
+ },
854
+ "optionalDependencies": {
855
+ "lightningcss-android-arm64": "1.32.0",
856
+ "lightningcss-darwin-arm64": "1.32.0",
857
+ "lightningcss-darwin-x64": "1.32.0",
858
+ "lightningcss-freebsd-x64": "1.32.0",
859
+ "lightningcss-linux-arm-gnueabihf": "1.32.0",
860
+ "lightningcss-linux-arm64-gnu": "1.32.0",
861
+ "lightningcss-linux-arm64-musl": "1.32.0",
862
+ "lightningcss-linux-x64-gnu": "1.32.0",
863
+ "lightningcss-linux-x64-musl": "1.32.0",
864
+ "lightningcss-win32-arm64-msvc": "1.32.0",
865
+ "lightningcss-win32-x64-msvc": "1.32.0"
866
+ }
867
+ },
868
+ "node_modules/lightningcss-android-arm64": {
869
+ "version": "1.32.0",
870
+ "integrity": "sha1-8DOIURbf79nG9UeHUj41FLYeGWg=",
749
871
  "cpu": [
750
- "riscv64"
872
+ "arm64"
751
873
  ],
752
- "license": "MIT",
874
+ "license": "MPL-2.0",
753
875
  "optional": true,
754
876
  "os": [
755
- "linux"
756
- ]
877
+ "android"
878
+ ],
879
+ "engines": {
880
+ "node": ">= 12.0.0"
881
+ },
882
+ "funding": {
883
+ "type": "opencollective",
884
+ "url": "https://opencollective.com/parcel"
885
+ }
757
886
  },
758
- "node_modules/@rollup/rollup-linux-riscv64-musl": {
759
- "version": "4.62.2",
760
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.62.2.tgz",
761
- "integrity": "sha512-nQts12zJ3NQRoE6uYljOH89v7szzLDvG2JD/vsX+vGXU8w/At1GowTZ5/7qeFQ8m7L55rpR8Okugnuo5bgjy2Q==",
887
+ "node_modules/lightningcss-darwin-arm64": {
888
+ "version": "1.32.0",
889
+ "integrity": "sha1-ULcYcbAcgZlYS2SeKSVH+up6+bU=",
762
890
  "cpu": [
763
- "riscv64"
891
+ "arm64"
764
892
  ],
765
- "license": "MIT",
893
+ "license": "MPL-2.0",
766
894
  "optional": true,
767
895
  "os": [
768
- "linux"
769
- ]
896
+ "darwin"
897
+ ],
898
+ "engines": {
899
+ "node": ">= 12.0.0"
900
+ },
901
+ "funding": {
902
+ "type": "opencollective",
903
+ "url": "https://opencollective.com/parcel"
904
+ }
770
905
  },
771
- "node_modules/@rollup/rollup-linux-s390x-gnu": {
772
- "version": "4.62.2",
773
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.62.2.tgz",
774
- "integrity": "sha512-E9/ll019jhPIJgpzfZoIkBGhcz+kKNgVWYRY0zr9srBdPPFVpvOKW8VaJKUbeK+eZXyQF9ltME+Kk6affeaPgg==",
906
+ "node_modules/lightningcss-darwin-x64": {
907
+ "version": "1.32.0",
908
+ "integrity": "sha1-NfPpczLRMLnKGB4RtWje1q68bV4=",
775
909
  "cpu": [
776
- "s390x"
910
+ "x64"
777
911
  ],
778
- "license": "MIT",
912
+ "license": "MPL-2.0",
779
913
  "optional": true,
780
914
  "os": [
781
- "linux"
782
- ]
915
+ "darwin"
916
+ ],
917
+ "engines": {
918
+ "node": ">= 12.0.0"
919
+ },
920
+ "funding": {
921
+ "type": "opencollective",
922
+ "url": "https://opencollective.com/parcel"
923
+ }
783
924
  },
784
- "node_modules/@rollup/rollup-linux-x64-gnu": {
785
- "version": "4.62.2",
786
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.62.2.tgz",
787
- "integrity": "sha512-5BqxR/pshjey51iliyzTD5Xi3EN0aLmQ2lZ3lvefVV9c82BvrLo2/6OT55iifpWBufs6kdwWbuOKS841DrmK9A==",
925
+ "node_modules/lightningcss-freebsd-x64": {
926
+ "version": "1.32.0",
927
+ "integrity": "sha1-l3enZHK2Ttb/lDQq1kx7r9eUpXU=",
788
928
  "cpu": [
789
929
  "x64"
790
930
  ],
791
- "license": "MIT",
931
+ "license": "MPL-2.0",
792
932
  "optional": true,
793
933
  "os": [
794
- "linux"
795
- ]
934
+ "freebsd"
935
+ ],
936
+ "engines": {
937
+ "node": ">= 12.0.0"
938
+ },
939
+ "funding": {
940
+ "type": "opencollective",
941
+ "url": "https://opencollective.com/parcel"
942
+ }
796
943
  },
797
- "node_modules/@rollup/rollup-linux-x64-musl": {
798
- "version": "4.62.2",
799
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.62.2.tgz",
800
- "integrity": "sha512-uNN83XxQrRAh/w0/pmAfibcwyb6YWt4gP+dpnQKPVJshAloQ785ii8CT8ZCIxkGg9opVsvAlGhFitSm6D1Jjpg==",
944
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
945
+ "version": "1.32.0",
946
+ "integrity": "sha1-E65lLhq3O5E117faFy9mbEEK1T0=",
801
947
  "cpu": [
802
- "x64"
948
+ "arm"
803
949
  ],
804
- "license": "MIT",
950
+ "license": "MPL-2.0",
805
951
  "optional": true,
806
952
  "os": [
807
953
  "linux"
808
- ]
954
+ ],
955
+ "engines": {
956
+ "node": ">= 12.0.0"
957
+ },
958
+ "funding": {
959
+ "type": "opencollective",
960
+ "url": "https://opencollective.com/parcel"
961
+ }
809
962
  },
810
- "node_modules/@rollup/rollup-openbsd-x64": {
811
- "version": "4.62.2",
812
- "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.62.2.tgz",
813
- "integrity": "sha512-srjEIxSH3LRnJN6THczDHWQplqEMFiAJrTab0msUryh9kwNpkICf3Ea6q6MN/2cZwRFUNx5w+h6Hpi4QuHS6Zg==",
963
+ "node_modules/lightningcss-linux-arm64-gnu": {
964
+ "version": "1.32.0",
965
+ "integrity": "sha1-QXhYeVqUWS9oASOhsfnaig4e8zU=",
814
966
  "cpu": [
815
- "x64"
967
+ "arm64"
816
968
  ],
817
- "license": "MIT",
969
+ "libc": [
970
+ "glibc"
971
+ ],
972
+ "license": "MPL-2.0",
818
973
  "optional": true,
819
974
  "os": [
820
- "openbsd"
821
- ]
975
+ "linux"
976
+ ],
977
+ "engines": {
978
+ "node": ">= 12.0.0"
979
+ },
980
+ "funding": {
981
+ "type": "opencollective",
982
+ "url": "https://opencollective.com/parcel"
983
+ }
822
984
  },
823
- "node_modules/@rollup/rollup-openharmony-arm64": {
824
- "version": "4.62.2",
825
- "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.62.2.tgz",
826
- "integrity": "sha512-8hOJnxgbyObnCm5AlRA3A931xX19xq80RjVTKgJOvEKWqJruP/Uf12IbAOaDjjEXYRewwHLfmF0YRIdK3OwKWA==",
985
+ "node_modules/lightningcss-linux-arm64-musl": {
986
+ "version": "1.32.0",
987
+ "integrity": "sha1-a+NmkugQtxgECAL9gJYjz/5zITM=",
827
988
  "cpu": [
828
989
  "arm64"
829
990
  ],
830
- "license": "MIT",
991
+ "libc": [
992
+ "musl"
993
+ ],
994
+ "license": "MPL-2.0",
831
995
  "optional": true,
832
996
  "os": [
833
- "openharmony"
834
- ]
997
+ "linux"
998
+ ],
999
+ "engines": {
1000
+ "node": ">= 12.0.0"
1001
+ },
1002
+ "funding": {
1003
+ "type": "opencollective",
1004
+ "url": "https://opencollective.com/parcel"
1005
+ }
835
1006
  },
836
- "node_modules/@rollup/rollup-win32-arm64-msvc": {
837
- "version": "4.62.2",
838
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.62.2.tgz",
839
- "integrity": "sha512-mmF4AY1i0hG/bLWUctUq59gtmgaSIRa3cu/A3JFRp/sCNEme2bgDEiDS22P9FbnJB8NJNF4jPJiSP5RHQpUTDg==",
1007
+ "node_modules/lightningcss-linux-x64-gnu": {
1008
+ "version": "1.32.0",
1009
+ "integrity": "sha1-C3gDr06yHP043Tn+Kru1PH3QkfY=",
840
1010
  "cpu": [
841
- "arm64"
1011
+ "x64"
842
1012
  ],
843
- "license": "MIT",
1013
+ "libc": [
1014
+ "glibc"
1015
+ ],
1016
+ "license": "MPL-2.0",
844
1017
  "optional": true,
845
1018
  "os": [
846
- "win32"
847
- ]
1019
+ "linux"
1020
+ ],
1021
+ "engines": {
1022
+ "node": ">= 12.0.0"
1023
+ },
1024
+ "funding": {
1025
+ "type": "opencollective",
1026
+ "url": "https://opencollective.com/parcel"
1027
+ }
848
1028
  },
849
- "node_modules/@rollup/rollup-win32-ia32-msvc": {
850
- "version": "4.62.2",
851
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.62.2.tgz",
852
- "integrity": "sha512-DZgkknc6jhHrk46V25vbAM0zZkyP0nSDkJB8/dRkLTxv470dOmWDqGoEJl/9A0dFfS7yE3REOwNDxpHwSLSt0Q==",
1029
+ "node_modules/lightningcss-linux-x64-musl": {
1030
+ "version": "1.32.0",
1031
+ "integrity": "sha1-iNyLqGXd3bGsXvBLDxYYBEGMFjs=",
853
1032
  "cpu": [
854
- "ia32"
1033
+ "x64"
855
1034
  ],
856
- "license": "MIT",
1035
+ "libc": [
1036
+ "musl"
1037
+ ],
1038
+ "license": "MPL-2.0",
857
1039
  "optional": true,
858
1040
  "os": [
859
- "win32"
860
- ]
1041
+ "linux"
1042
+ ],
1043
+ "engines": {
1044
+ "node": ">= 12.0.0"
1045
+ },
1046
+ "funding": {
1047
+ "type": "opencollective",
1048
+ "url": "https://opencollective.com/parcel"
1049
+ }
861
1050
  },
862
- "node_modules/@rollup/rollup-win32-x64-gnu": {
863
- "version": "4.62.2",
864
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.62.2.tgz",
865
- "integrity": "sha512-T6xr6ucWSFto+VGajA8YH26LdpHRuP4YLHEKAtCWvJDOlnmWcDZVCI2Jmjr+IFHDlt2zRaTAKE4tfjTaWLgJBg==",
1051
+ "node_modules/lightningcss-win32-arm64-msvc": {
1052
+ "version": "1.32.0",
1053
+ "integrity": "sha1-TzC6P6XpJfW3n5RejMDRdsOxqzg=",
866
1054
  "cpu": [
867
- "x64"
1055
+ "arm64"
868
1056
  ],
869
- "license": "MIT",
1057
+ "license": "MPL-2.0",
870
1058
  "optional": true,
871
1059
  "os": [
872
1060
  "win32"
873
- ]
1061
+ ],
1062
+ "engines": {
1063
+ "node": ">= 12.0.0"
1064
+ },
1065
+ "funding": {
1066
+ "type": "opencollective",
1067
+ "url": "https://opencollective.com/parcel"
1068
+ }
874
1069
  },
875
- "node_modules/@rollup/rollup-win32-x64-msvc": {
876
- "version": "4.62.2",
877
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.62.2.tgz",
878
- "integrity": "sha512-BfzEnDJOt9T8M989/lA37EcJgat01wLRnoi5dQf3QzOH7jzpqTAzdDbVfRljVr5r+jzKqpbHeyOfAaXxAd0PAA==",
1070
+ "node_modules/lightningcss-win32-x64-msvc": {
1071
+ "version": "1.32.0",
1072
+ "integrity": "sha1-FBqlYFZFBkkokCu0rwRfp9n0Igo=",
879
1073
  "cpu": [
880
1074
  "x64"
881
1075
  ],
882
- "license": "MIT",
1076
+ "license": "MPL-2.0",
883
1077
  "optional": true,
884
1078
  "os": [
885
1079
  "win32"
886
- ]
887
- },
888
- "node_modules/@types/estree": {
889
- "version": "1.0.9",
890
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz",
891
- "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
892
- "license": "MIT"
893
- },
894
- "node_modules/@vitejs/plugin-vue": {
895
- "version": "5.2.4",
896
- "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.2.4.tgz",
897
- "integrity": "sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==",
898
- "license": "MIT",
1080
+ ],
899
1081
  "engines": {
900
- "node": "^18.0.0 || >=20.0.0"
1082
+ "node": ">= 12.0.0"
901
1083
  },
902
- "peerDependencies": {
903
- "vite": "^5.0.0 || ^6.0.0",
904
- "vue": "^3.2.25"
905
- }
906
- },
907
- "node_modules/@vue/compiler-core": {
908
- "version": "3.5.40",
909
- "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.40.tgz",
910
- "integrity": "sha512-39E8IgOhTbVDnoJFMKc2DvYnypcZwUqgUhQkccva/0m6FUwtIKSGV7n1hpVmYcFaoRAwf9pBcwnKlCEsN63ZEQ==",
911
- "license": "MIT",
912
- "dependencies": {
913
- "@babel/parser": "^7.29.7",
914
- "@vue/shared": "3.5.40",
915
- "entities": "^7.0.1",
916
- "estree-walker": "^2.0.2",
917
- "source-map-js": "^1.2.1"
918
- }
919
- },
920
- "node_modules/@vue/compiler-dom": {
921
- "version": "3.5.40",
922
- "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.40.tgz",
923
- "integrity": "sha512-pwkx4vqlqOspFstrcmzwkKLePVMD3PT65imRzLhanU2V1Fj4K13g6OXjanOyzw3aTAuRk84BOmY8f3rEHqPaVA==",
924
- "license": "MIT",
925
- "dependencies": {
926
- "@vue/compiler-core": "3.5.40",
927
- "@vue/shared": "3.5.40"
928
- }
929
- },
930
- "node_modules/@vue/compiler-sfc": {
931
- "version": "3.5.40",
932
- "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.40.tgz",
933
- "integrity": "sha512-gIf497P4kpuALcvs5n3AEg1Vdn0pSY4XbjASIfHNYF1/MP3T2Mf2STERTubysBxCRxzJGJYtF/O7vwJrxFB3Vw==",
934
- "license": "MIT",
935
- "dependencies": {
936
- "@babel/parser": "^7.29.7",
937
- "@vue/compiler-core": "3.5.40",
938
- "@vue/compiler-dom": "3.5.40",
939
- "@vue/compiler-ssr": "3.5.40",
940
- "@vue/shared": "3.5.40",
941
- "estree-walker": "^2.0.2",
942
- "magic-string": "^0.30.21",
943
- "postcss": "^8.5.19",
944
- "source-map-js": "^1.2.1"
945
- }
946
- },
947
- "node_modules/@vue/compiler-ssr": {
948
- "version": "3.5.40",
949
- "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.40.tgz",
950
- "integrity": "sha512-rrE5xiXG663+vHCHa3J9p2z5OcBRjXmoqenprJxAFQxg5pSshzeBiCE6pu46axapRJ2Adk0YDA2BRZVjiHXnhg==",
951
- "license": "MIT",
952
- "dependencies": {
953
- "@vue/compiler-dom": "3.5.40",
954
- "@vue/shared": "3.5.40"
955
- }
956
- },
957
- "node_modules/@vue/reactivity": {
958
- "version": "3.5.40",
959
- "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.40.tgz",
960
- "integrity": "sha512-B7ot9UlUZOi1zbq61/LvE88ZLTV8IlajTdiZTAEiDQgrnIMIZoPr9kGw0Zw46ObW62O9+H/Be3kMbfb7kYPQZA==",
961
- "license": "MIT",
962
- "dependencies": {
963
- "@vue/shared": "3.5.40"
964
- }
965
- },
966
- "node_modules/@vue/runtime-core": {
967
- "version": "3.5.40",
968
- "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.40.tgz",
969
- "integrity": "sha512-KAZLweuZ6uUJPK1PMSQPgBU5gCjgrrfjUhSglmU9NhH+Zjepa8cnwSydPWDWHDwOgY4g3VcZ+PljbiHlURNCbw==",
970
- "license": "MIT",
971
- "dependencies": {
972
- "@vue/reactivity": "3.5.40",
973
- "@vue/shared": "3.5.40"
974
- }
975
- },
976
- "node_modules/@vue/runtime-dom": {
977
- "version": "3.5.40",
978
- "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.40.tgz",
979
- "integrity": "sha512-ZfrX8ssZQds900L9pr8AuK05ddnMsR4MPMZr8cPN9GoqoPWcXLhjvvbIA2SMv+7a97sJ1vv9pj/zxK0Cq/eEFQ==",
980
- "license": "MIT",
981
- "dependencies": {
982
- "@vue/reactivity": "3.5.40",
983
- "@vue/runtime-core": "3.5.40",
984
- "@vue/shared": "3.5.40",
985
- "csstype": "^3.2.3"
1084
+ "funding": {
1085
+ "type": "opencollective",
1086
+ "url": "https://opencollective.com/parcel"
986
1087
  }
987
1088
  },
988
- "node_modules/@vue/server-renderer": {
989
- "version": "3.5.40",
990
- "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.40.tgz",
991
- "integrity": "sha512-XNJym9WpevhTVt1HuwOrCRJ5Q+9z4BjTMrDtjTrvx74SmUll8spNTw6whWJa9mEkO4PKn5TihI/bm/8ds2QVJw==",
1089
+ "node_modules/magic-string": {
1090
+ "version": "0.30.21",
1091
+ "integrity": "sha1-VnY+wJoPqAkd8nh5/ZTRkHjADZE=",
992
1092
  "license": "MIT",
993
1093
  "dependencies": {
994
- "@vue/compiler-ssr": "3.5.40",
995
- "@vue/runtime-dom": "3.5.40",
996
- "@vue/shared": "3.5.40"
997
- }
998
- },
999
- "node_modules/@vue/shared": {
1000
- "version": "3.5.40",
1001
- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.40.tgz",
1002
- "integrity": "sha512-WxnBtruIqOoV3rA4jeKDWzrYI5h7Cp4+pjwDi8kWGHz+IslhiN+wguLVVhtv2l8VoU02rzDCVfDjgCl1lNpZVg==",
1003
- "license": "MIT"
1004
- },
1005
- "node_modules/any-promise": {
1006
- "version": "1.3.0",
1007
- "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
1008
- "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==",
1009
- "license": "MIT"
1010
- },
1011
- "node_modules/anymatch": {
1012
- "version": "3.1.3",
1013
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
1014
- "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
1015
- "license": "ISC",
1016
- "dependencies": {
1017
- "normalize-path": "^3.0.0",
1018
- "picomatch": "^2.0.4"
1019
- },
1020
- "engines": {
1021
- "node": ">= 8"
1094
+ "@jridgewell/sourcemap-codec": "^1.5.5"
1022
1095
  }
1023
1096
  },
1024
- "node_modules/arg": {
1025
- "version": "5.0.2",
1026
- "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz",
1027
- "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==",
1028
- "license": "MIT"
1029
- },
1030
- "node_modules/autoprefixer": {
1031
- "version": "10.5.4",
1032
- "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.5.4.tgz",
1033
- "integrity": "sha512-MaU0U/za7N3r6brxD4YB/l4NSrFzLPlANv6wEuQVaIPlD3L4W9rFcQPbL/EilY9BHhHvhfcz3gInDLrEtWT4EA==",
1034
- "funding": [
1035
- {
1036
- "type": "opencollective",
1037
- "url": "https://opencollective.com/postcss/"
1038
- },
1039
- {
1040
- "type": "tidelift",
1041
- "url": "https://tidelift.com/funding/github/npm/autoprefixer"
1042
- },
1043
- {
1044
- "type": "github",
1045
- "url": "https://github.com/sponsors/ai"
1046
- }
1047
- ],
1048
- "license": "MIT",
1049
- "dependencies": {
1050
- "browserslist": "^4.28.6",
1051
- "caniuse-lite": "^1.0.30001806",
1052
- "fraction.js": "^5.3.4",
1053
- "picocolors": "^1.1.1",
1054
- "postcss-value-parser": "^4.2.0"
1055
- },
1056
- "bin": {
1057
- "autoprefixer": "bin/autoprefixer"
1058
- },
1059
- "engines": {
1060
- "node": "^10 || ^12 || >=14"
1061
- },
1062
- "peerDependencies": {
1063
- "postcss": "^8.1.0"
1064
- }
1065
- },
1066
- "node_modules/baseline-browser-mapping": {
1067
- "version": "2.11.1",
1068
- "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.11.1.tgz",
1069
- "integrity": "sha512-HYXq73DDpCtNzOmrFsm9eSwCvWCql0RzqjpDzXN9EadiLJ4DNat0nsZ/Bzmy+Ud12mb4/zKDY0cQ805ZzN+i0A==",
1070
- "license": "Apache-2.0",
1071
- "bin": {
1072
- "baseline-browser-mapping": "dist/cli.cjs"
1073
- },
1074
- "engines": {
1075
- "node": ">=6.0.0"
1076
- }
1077
- },
1078
- "node_modules/binary-extensions": {
1079
- "version": "2.3.0",
1080
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
1081
- "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
1082
- "license": "MIT",
1083
- "engines": {
1084
- "node": ">=8"
1085
- },
1086
- "funding": {
1087
- "url": "https://github.com/sponsors/sindresorhus"
1088
- }
1089
- },
1090
- "node_modules/braces": {
1091
- "version": "3.0.3",
1092
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
1093
- "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
1094
- "license": "MIT",
1095
- "dependencies": {
1096
- "fill-range": "^7.1.1"
1097
- },
1098
- "engines": {
1099
- "node": ">=8"
1100
- }
1101
- },
1102
- "node_modules/browserslist": {
1103
- "version": "4.28.7",
1104
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.7.tgz",
1105
- "integrity": "sha512-JxV13hNrFxqjOc8alRbq9dK1MM79NEXYpma2B2J4wAtpWS5zIEIKqWPGCl7N4o7Uc7B7itylh7SuDujATRyyTw==",
1106
- "funding": [
1107
- {
1108
- "type": "opencollective",
1109
- "url": "https://opencollective.com/browserslist"
1110
- },
1111
- {
1112
- "type": "tidelift",
1113
- "url": "https://tidelift.com/funding/github/npm/browserslist"
1114
- },
1115
- {
1116
- "type": "github",
1117
- "url": "https://github.com/sponsors/ai"
1118
- }
1119
- ],
1120
- "license": "MIT",
1121
- "dependencies": {
1122
- "baseline-browser-mapping": "^2.10.44",
1123
- "caniuse-lite": "^1.0.30001806",
1124
- "electron-to-chromium": "^1.5.393",
1125
- "node-releases": "^2.0.51",
1126
- "update-browserslist-db": "^1.2.3"
1127
- },
1128
- "bin": {
1129
- "browserslist": "cli.js"
1130
- },
1131
- "engines": {
1132
- "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
1133
- }
1134
- },
1135
- "node_modules/camelcase-css": {
1136
- "version": "2.0.1",
1137
- "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
1138
- "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==",
1139
- "license": "MIT",
1140
- "engines": {
1141
- "node": ">= 6"
1142
- }
1143
- },
1144
- "node_modules/caniuse-lite": {
1145
- "version": "1.0.30001806",
1146
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001806.tgz",
1147
- "integrity": "sha512-72Cuvd95zbSYPKq6Fhg8eDJRlzgWDf7/mtoZv6Qe/DYNCEBdNxoA3+rZAU2ZhGCpZlns3EssFavaZomckT5Uuw==",
1148
- "funding": [
1149
- {
1150
- "type": "opencollective",
1151
- "url": "https://opencollective.com/browserslist"
1152
- },
1153
- {
1154
- "type": "tidelift",
1155
- "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
1156
- },
1157
- {
1158
- "type": "github",
1159
- "url": "https://github.com/sponsors/ai"
1160
- }
1161
- ],
1162
- "license": "CC-BY-4.0"
1163
- },
1164
- "node_modules/chokidar": {
1165
- "version": "3.6.0",
1166
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
1167
- "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
1168
- "license": "MIT",
1169
- "dependencies": {
1170
- "anymatch": "~3.1.2",
1171
- "braces": "~3.0.2",
1172
- "glob-parent": "~5.1.2",
1173
- "is-binary-path": "~2.1.0",
1174
- "is-glob": "~4.0.1",
1175
- "normalize-path": "~3.0.0",
1176
- "readdirp": "~3.6.0"
1177
- },
1178
- "engines": {
1179
- "node": ">= 8.10.0"
1180
- },
1181
- "funding": {
1182
- "url": "https://paulmillr.com/funding/"
1183
- },
1184
- "optionalDependencies": {
1185
- "fsevents": "~2.3.2"
1186
- }
1187
- },
1188
- "node_modules/chokidar/node_modules/glob-parent": {
1189
- "version": "5.1.2",
1190
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
1191
- "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
1192
- "license": "ISC",
1193
- "dependencies": {
1194
- "is-glob": "^4.0.1"
1195
- },
1196
- "engines": {
1197
- "node": ">= 6"
1198
- }
1199
- },
1200
- "node_modules/commander": {
1201
- "version": "4.1.1",
1202
- "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
1203
- "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
1204
- "license": "MIT",
1205
- "engines": {
1206
- "node": ">= 6"
1207
- }
1208
- },
1209
- "node_modules/cssesc": {
1210
- "version": "3.0.0",
1211
- "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
1212
- "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
1213
- "license": "MIT",
1214
- "bin": {
1215
- "cssesc": "bin/cssesc"
1216
- },
1217
- "engines": {
1218
- "node": ">=4"
1219
- }
1220
- },
1221
- "node_modules/csstype": {
1222
- "version": "3.2.3",
1223
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
1224
- "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
1225
- "license": "MIT"
1226
- },
1227
- "node_modules/didyoumean": {
1228
- "version": "1.2.2",
1229
- "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz",
1230
- "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==",
1231
- "license": "Apache-2.0"
1232
- },
1233
- "node_modules/dlv": {
1234
- "version": "1.1.3",
1235
- "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz",
1236
- "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==",
1237
- "license": "MIT"
1238
- },
1239
- "node_modules/electron-to-chromium": {
1240
- "version": "1.5.396",
1241
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.396.tgz",
1242
- "integrity": "sha512-yHiw2Y3C3H9U6TMbOfoWK/BPreiOPXRfTWPBwQBoZG6/8TB6eOPnsy5oaRYuatR7Fw2SJ4kKforgufeo7fq0EQ==",
1243
- "license": "ISC"
1244
- },
1245
- "node_modules/entities": {
1246
- "version": "7.0.1",
1247
- "resolved": "https://registry.npmjs.org/entities/-/entities-7.0.1.tgz",
1248
- "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==",
1249
- "license": "BSD-2-Clause",
1250
- "engines": {
1251
- "node": ">=0.12"
1252
- },
1253
- "funding": {
1254
- "url": "https://github.com/fb55/entities?sponsor=1"
1255
- }
1256
- },
1257
- "node_modules/es-errors": {
1258
- "version": "1.3.0",
1259
- "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
1260
- "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
1261
- "license": "MIT",
1262
- "engines": {
1263
- "node": ">= 0.4"
1264
- }
1265
- },
1266
- "node_modules/esbuild": {
1267
- "version": "0.25.12",
1268
- "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.12.tgz",
1269
- "integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==",
1270
- "hasInstallScript": true,
1271
- "license": "MIT",
1272
- "bin": {
1273
- "esbuild": "bin/esbuild"
1274
- },
1275
- "engines": {
1276
- "node": ">=18"
1277
- },
1278
- "optionalDependencies": {
1279
- "@esbuild/aix-ppc64": "0.25.12",
1280
- "@esbuild/android-arm": "0.25.12",
1281
- "@esbuild/android-arm64": "0.25.12",
1282
- "@esbuild/android-x64": "0.25.12",
1283
- "@esbuild/darwin-arm64": "0.25.12",
1284
- "@esbuild/darwin-x64": "0.25.12",
1285
- "@esbuild/freebsd-arm64": "0.25.12",
1286
- "@esbuild/freebsd-x64": "0.25.12",
1287
- "@esbuild/linux-arm": "0.25.12",
1288
- "@esbuild/linux-arm64": "0.25.12",
1289
- "@esbuild/linux-ia32": "0.25.12",
1290
- "@esbuild/linux-loong64": "0.25.12",
1291
- "@esbuild/linux-mips64el": "0.25.12",
1292
- "@esbuild/linux-ppc64": "0.25.12",
1293
- "@esbuild/linux-riscv64": "0.25.12",
1294
- "@esbuild/linux-s390x": "0.25.12",
1295
- "@esbuild/linux-x64": "0.25.12",
1296
- "@esbuild/netbsd-arm64": "0.25.12",
1297
- "@esbuild/netbsd-x64": "0.25.12",
1298
- "@esbuild/openbsd-arm64": "0.25.12",
1299
- "@esbuild/openbsd-x64": "0.25.12",
1300
- "@esbuild/openharmony-arm64": "0.25.12",
1301
- "@esbuild/sunos-x64": "0.25.12",
1302
- "@esbuild/win32-arm64": "0.25.12",
1303
- "@esbuild/win32-ia32": "0.25.12",
1304
- "@esbuild/win32-x64": "0.25.12"
1305
- }
1306
- },
1307
- "node_modules/escalade": {
1308
- "version": "3.2.0",
1309
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
1310
- "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
1311
- "license": "MIT",
1312
- "engines": {
1313
- "node": ">=6"
1314
- }
1315
- },
1316
- "node_modules/estree-walker": {
1317
- "version": "2.0.2",
1318
- "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
1319
- "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
1320
- "license": "MIT"
1321
- },
1322
- "node_modules/fast-glob": {
1323
- "version": "3.3.3",
1324
- "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
1325
- "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
1326
- "license": "MIT",
1327
- "dependencies": {
1328
- "@nodelib/fs.stat": "^2.0.2",
1329
- "@nodelib/fs.walk": "^1.2.3",
1330
- "glob-parent": "^5.1.2",
1331
- "merge2": "^1.3.0",
1332
- "micromatch": "^4.0.8"
1333
- },
1334
- "engines": {
1335
- "node": ">=8.6.0"
1336
- }
1337
- },
1338
- "node_modules/fast-glob/node_modules/glob-parent": {
1339
- "version": "5.1.2",
1340
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
1341
- "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
1342
- "license": "ISC",
1343
- "dependencies": {
1344
- "is-glob": "^4.0.1"
1345
- },
1346
- "engines": {
1347
- "node": ">= 6"
1348
- }
1349
- },
1350
- "node_modules/fastq": {
1351
- "version": "1.20.1",
1352
- "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz",
1353
- "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==",
1354
- "license": "ISC",
1355
- "dependencies": {
1356
- "reusify": "^1.0.4"
1357
- }
1358
- },
1359
- "node_modules/fill-range": {
1360
- "version": "7.1.1",
1361
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
1362
- "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
1363
- "license": "MIT",
1364
- "dependencies": {
1365
- "to-regex-range": "^5.0.1"
1366
- },
1367
- "engines": {
1368
- "node": ">=8"
1369
- }
1370
- },
1371
- "node_modules/fraction.js": {
1372
- "version": "5.3.4",
1373
- "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz",
1374
- "integrity": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==",
1375
- "license": "MIT",
1376
- "engines": {
1377
- "node": "*"
1378
- },
1379
- "funding": {
1380
- "type": "github",
1381
- "url": "https://github.com/sponsors/rawify"
1382
- }
1383
- },
1384
- "node_modules/fsevents": {
1385
- "version": "2.3.3",
1386
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
1387
- "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
1388
- "hasInstallScript": true,
1389
- "license": "MIT",
1390
- "optional": true,
1391
- "os": [
1392
- "darwin"
1393
- ],
1394
- "engines": {
1395
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1396
- }
1397
- },
1398
- "node_modules/function-bind": {
1399
- "version": "1.1.2",
1400
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
1401
- "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
1402
- "license": "MIT",
1403
- "funding": {
1404
- "url": "https://github.com/sponsors/ljharb"
1405
- }
1406
- },
1407
- "node_modules/glob-parent": {
1408
- "version": "6.0.2",
1409
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
1410
- "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
1411
- "license": "ISC",
1412
- "dependencies": {
1413
- "is-glob": "^4.0.3"
1414
- },
1415
- "engines": {
1416
- "node": ">=10.13.0"
1417
- }
1418
- },
1419
- "node_modules/hasown": {
1420
- "version": "2.0.4",
1421
- "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.4.tgz",
1422
- "integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==",
1423
- "license": "MIT",
1424
- "dependencies": {
1425
- "function-bind": "^1.1.2"
1426
- },
1427
- "engines": {
1428
- "node": ">= 0.4"
1429
- }
1430
- },
1431
- "node_modules/is-binary-path": {
1432
- "version": "2.1.0",
1433
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
1434
- "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
1435
- "license": "MIT",
1436
- "dependencies": {
1437
- "binary-extensions": "^2.0.0"
1438
- },
1439
- "engines": {
1440
- "node": ">=8"
1441
- }
1442
- },
1443
- "node_modules/is-core-module": {
1444
- "version": "2.16.2",
1445
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.2.tgz",
1446
- "integrity": "sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==",
1447
- "license": "MIT",
1448
- "dependencies": {
1449
- "hasown": "^2.0.3"
1450
- },
1451
- "engines": {
1452
- "node": ">= 0.4"
1453
- },
1454
- "funding": {
1455
- "url": "https://github.com/sponsors/ljharb"
1456
- }
1457
- },
1458
- "node_modules/is-extglob": {
1459
- "version": "2.1.1",
1460
- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
1461
- "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
1462
- "license": "MIT",
1463
- "engines": {
1464
- "node": ">=0.10.0"
1465
- }
1466
- },
1467
- "node_modules/is-glob": {
1468
- "version": "4.0.3",
1469
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
1470
- "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
1471
- "license": "MIT",
1472
- "dependencies": {
1473
- "is-extglob": "^2.1.1"
1474
- },
1475
- "engines": {
1476
- "node": ">=0.10.0"
1477
- }
1478
- },
1479
- "node_modules/is-number": {
1480
- "version": "7.0.0",
1481
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
1482
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
1483
- "license": "MIT",
1484
- "engines": {
1485
- "node": ">=0.12.0"
1486
- }
1487
- },
1488
- "node_modules/jiti": {
1489
- "version": "1.21.7",
1490
- "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz",
1491
- "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==",
1492
- "license": "MIT",
1493
- "bin": {
1494
- "jiti": "bin/jiti.js"
1495
- }
1496
- },
1497
- "node_modules/lilconfig": {
1498
- "version": "3.1.3",
1499
- "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz",
1500
- "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==",
1501
- "license": "MIT",
1502
- "engines": {
1503
- "node": ">=14"
1504
- },
1505
- "funding": {
1506
- "url": "https://github.com/sponsors/antonk52"
1507
- }
1508
- },
1509
- "node_modules/lines-and-columns": {
1510
- "version": "1.2.4",
1511
- "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
1512
- "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
1513
- "license": "MIT"
1514
- },
1515
- "node_modules/magic-string": {
1516
- "version": "0.30.21",
1517
- "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
1518
- "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
1519
- "license": "MIT",
1520
- "dependencies": {
1521
- "@jridgewell/sourcemap-codec": "^1.5.5"
1522
- }
1523
- },
1524
- "node_modules/merge2": {
1525
- "version": "1.4.1",
1526
- "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
1527
- "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
1528
- "license": "MIT",
1529
- "engines": {
1530
- "node": ">= 8"
1531
- }
1532
- },
1533
- "node_modules/micromatch": {
1534
- "version": "4.0.8",
1535
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
1536
- "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
1537
- "license": "MIT",
1538
- "dependencies": {
1539
- "braces": "^3.0.3",
1540
- "picomatch": "^2.3.1"
1541
- },
1542
- "engines": {
1543
- "node": ">=8.6"
1544
- }
1545
- },
1546
- "node_modules/mz": {
1547
- "version": "2.7.0",
1548
- "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz",
1549
- "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
1550
- "license": "MIT",
1551
- "dependencies": {
1552
- "any-promise": "^1.0.0",
1553
- "object-assign": "^4.0.1",
1554
- "thenify-all": "^1.0.0"
1555
- }
1556
- },
1557
- "node_modules/nanoid": {
1558
- "version": "3.3.16",
1559
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.16.tgz",
1560
- "integrity": "sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==",
1097
+ "node_modules/nanoid": {
1098
+ "version": "3.3.18",
1099
+ "integrity": "sha1-9mot4Rmf/eD88hyKXxMQaxwIGRM=",
1561
1100
  "funding": [
1562
1101
  {
1563
1102
  "type": "github",
@@ -1572,483 +1111,108 @@
1572
1111
  "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
1573
1112
  }
1574
1113
  },
1575
- "node_modules/node-releases": {
1576
- "version": "2.0.51",
1577
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.51.tgz",
1578
- "integrity": "sha512-wRNIrw4DmVLKQlbgOMdkMx27Wrpzes2hh5Jtbi2bjPd+4wJstWIqP5A+lscnqbm0xxmT5Bpg8Lec5ItEBwx6BQ==",
1579
- "license": "MIT",
1580
- "engines": {
1581
- "node": ">=18"
1582
- }
1583
- },
1584
- "node_modules/normalize-path": {
1585
- "version": "3.0.0",
1586
- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
1587
- "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
1588
- "license": "MIT",
1589
- "engines": {
1590
- "node": ">=0.10.0"
1591
- }
1592
- },
1593
- "node_modules/object-assign": {
1594
- "version": "4.1.1",
1595
- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
1596
- "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
1597
- "license": "MIT",
1598
- "engines": {
1599
- "node": ">=0.10.0"
1600
- }
1601
- },
1602
- "node_modules/object-hash": {
1603
- "version": "3.0.0",
1604
- "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz",
1605
- "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==",
1606
- "license": "MIT",
1607
- "engines": {
1608
- "node": ">= 6"
1609
- }
1610
- },
1611
- "node_modules/path-parse": {
1612
- "version": "1.0.7",
1613
- "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
1614
- "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
1615
- "license": "MIT"
1616
- },
1617
1114
  "node_modules/picocolors": {
1618
1115
  "version": "1.1.1",
1619
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
1620
1116
  "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
1621
- "license": "ISC"
1622
- },
1623
- "node_modules/picomatch": {
1624
- "version": "2.3.2",
1625
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz",
1626
- "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
1627
- "license": "MIT",
1628
- "engines": {
1629
- "node": ">=8.6"
1630
- },
1631
- "funding": {
1632
- "url": "https://github.com/sponsors/jonschlinkert"
1633
- }
1634
- },
1635
- "node_modules/pify": {
1636
- "version": "2.3.0",
1637
- "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
1638
- "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
1639
- "license": "MIT",
1640
- "engines": {
1641
- "node": ">=0.10.0"
1642
- }
1643
- },
1644
- "node_modules/pirates": {
1645
- "version": "4.0.7",
1646
- "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz",
1647
- "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==",
1648
- "license": "MIT",
1649
- "engines": {
1650
- "node": ">= 6"
1651
- }
1652
- },
1653
- "node_modules/postcss": {
1654
- "version": "8.5.22",
1655
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.22.tgz",
1656
- "integrity": "sha512-KBDEIpLrvpv16pp3K0Fw+UCoZfopFjjgeB+0tA/aaThfEE74kKDLrgg603YvOWJyg3+WYtyq3xYsQWsIyZlPqQ==",
1657
- "funding": [
1658
- {
1659
- "type": "opencollective",
1660
- "url": "https://opencollective.com/postcss/"
1661
- },
1662
- {
1663
- "type": "tidelift",
1664
- "url": "https://tidelift.com/funding/github/npm/postcss"
1665
- },
1666
- {
1667
- "type": "github",
1668
- "url": "https://github.com/sponsors/ai"
1669
- }
1670
- ],
1671
- "license": "MIT",
1672
- "dependencies": {
1673
- "nanoid": "^3.3.16",
1674
- "picocolors": "^1.1.1",
1675
- "source-map-js": "^1.2.1"
1676
- },
1677
- "engines": {
1678
- "node": "^10 || ^12 || >=14"
1679
- }
1680
- },
1681
- "node_modules/postcss-import": {
1682
- "version": "15.1.0",
1683
- "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz",
1684
- "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==",
1685
- "license": "MIT",
1686
- "dependencies": {
1687
- "postcss-value-parser": "^4.0.0",
1688
- "read-cache": "^1.0.0",
1689
- "resolve": "^1.1.7"
1690
- },
1691
- "engines": {
1692
- "node": ">=14.0.0"
1693
- },
1694
- "peerDependencies": {
1695
- "postcss": "^8.0.0"
1696
- }
1697
- },
1698
- "node_modules/postcss-js": {
1699
- "version": "4.1.0",
1700
- "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.1.0.tgz",
1701
- "integrity": "sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==",
1702
- "funding": [
1703
- {
1704
- "type": "opencollective",
1705
- "url": "https://opencollective.com/postcss/"
1706
- },
1707
- {
1708
- "type": "github",
1709
- "url": "https://github.com/sponsors/ai"
1710
- }
1711
- ],
1712
- "license": "MIT",
1713
- "dependencies": {
1714
- "camelcase-css": "^2.0.1"
1715
- },
1716
- "engines": {
1717
- "node": "^12 || ^14 || >= 16"
1718
- },
1719
- "peerDependencies": {
1720
- "postcss": "^8.4.21"
1721
- }
1722
- },
1723
- "node_modules/postcss-load-config": {
1724
- "version": "6.0.1",
1725
- "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-6.0.1.tgz",
1726
- "integrity": "sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==",
1727
- "funding": [
1728
- {
1729
- "type": "opencollective",
1730
- "url": "https://opencollective.com/postcss/"
1731
- },
1732
- {
1733
- "type": "github",
1734
- "url": "https://github.com/sponsors/ai"
1735
- }
1736
- ],
1737
- "license": "MIT",
1738
- "dependencies": {
1739
- "lilconfig": "^3.1.1"
1740
- },
1741
- "engines": {
1742
- "node": ">= 18"
1743
- },
1744
- "peerDependencies": {
1745
- "jiti": ">=1.21.0",
1746
- "postcss": ">=8.0.9",
1747
- "tsx": "^4.8.1",
1748
- "yaml": "^2.4.2"
1749
- },
1750
- "peerDependenciesMeta": {
1751
- "jiti": {
1752
- "optional": true
1753
- },
1754
- "postcss": {
1755
- "optional": true
1756
- },
1757
- "tsx": {
1758
- "optional": true
1759
- },
1760
- "yaml": {
1761
- "optional": true
1762
- }
1763
- }
1764
- },
1765
- "node_modules/postcss-nested": {
1766
- "version": "6.2.0",
1767
- "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz",
1768
- "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==",
1769
- "funding": [
1770
- {
1771
- "type": "opencollective",
1772
- "url": "https://opencollective.com/postcss/"
1773
- },
1774
- {
1775
- "type": "github",
1776
- "url": "https://github.com/sponsors/ai"
1777
- }
1778
- ],
1779
- "license": "MIT",
1780
- "dependencies": {
1781
- "postcss-selector-parser": "^6.1.1"
1782
- },
1783
- "engines": {
1784
- "node": ">=12.0"
1785
- },
1786
- "peerDependencies": {
1787
- "postcss": "^8.2.14"
1788
- }
1789
- },
1790
- "node_modules/postcss-selector-parser": {
1791
- "version": "6.1.4",
1792
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.4.tgz",
1793
- "integrity": "sha512-bIoJLOmjCO1S9XdY/DcnR5hJxvrDir1PbGChrzXG3vw0/FOliy/fA3dmdhQ441kah4gKv+TwckGzex6wNS5cnQ==",
1794
- "license": "MIT",
1795
- "dependencies": {
1796
- "cssesc": "^3.0.0",
1797
- "util-deprecate": "^1.0.2"
1798
- },
1799
- "engines": {
1800
- "node": ">=4"
1801
- }
1802
- },
1803
- "node_modules/postcss-value-parser": {
1804
- "version": "4.2.0",
1805
- "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
1806
- "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
1807
- "license": "MIT"
1808
- },
1809
- "node_modules/queue-microtask": {
1810
- "version": "1.2.3",
1811
- "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
1812
- "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
1813
- "funding": [
1814
- {
1815
- "type": "github",
1816
- "url": "https://github.com/sponsors/feross"
1817
- },
1818
- {
1819
- "type": "patreon",
1820
- "url": "https://www.patreon.com/feross"
1821
- },
1822
- {
1823
- "type": "consulting",
1824
- "url": "https://feross.org/support"
1825
- }
1826
- ],
1827
- "license": "MIT"
1828
- },
1829
- "node_modules/read-cache": {
1830
- "version": "1.0.0",
1831
- "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz",
1832
- "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
1833
- "license": "MIT",
1834
- "dependencies": {
1835
- "pify": "^2.3.0"
1836
- }
1837
- },
1838
- "node_modules/readdirp": {
1839
- "version": "3.6.0",
1840
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
1841
- "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
1842
- "license": "MIT",
1843
- "dependencies": {
1844
- "picomatch": "^2.2.1"
1845
- },
1846
- "engines": {
1847
- "node": ">=8.10.0"
1848
- }
1849
- },
1850
- "node_modules/resolve": {
1851
- "version": "1.22.12",
1852
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.12.tgz",
1853
- "integrity": "sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==",
1854
- "license": "MIT",
1855
- "dependencies": {
1856
- "es-errors": "^1.3.0",
1857
- "is-core-module": "^2.16.1",
1858
- "path-parse": "^1.0.7",
1859
- "supports-preserve-symlinks-flag": "^1.0.0"
1860
- },
1861
- "bin": {
1862
- "resolve": "bin/resolve"
1863
- },
1864
- "engines": {
1865
- "node": ">= 0.4"
1866
- },
1867
- "funding": {
1868
- "url": "https://github.com/sponsors/ljharb"
1869
- }
1117
+ "license": "ISC"
1870
1118
  },
1871
- "node_modules/reusify": {
1872
- "version": "1.1.0",
1873
- "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
1874
- "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
1119
+ "node_modules/picomatch": {
1120
+ "version": "4.0.5",
1121
+ "integrity": "sha1-UepXoX2G9gX4EDlZX7xA7QalX6s=",
1875
1122
  "license": "MIT",
1876
1123
  "engines": {
1877
- "iojs": ">=1.0.0",
1878
- "node": ">=0.10.0"
1124
+ "node": ">=12"
1125
+ },
1126
+ "funding": {
1127
+ "url": "https://github.com/sponsors/jonschlinkert"
1879
1128
  }
1880
1129
  },
1881
- "node_modules/rollup": {
1882
- "version": "4.62.2",
1883
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.62.2.tgz",
1884
- "integrity": "sha512-RFnrW4lhXA3s3eqHDZvN654g8OTjzRfqpIRJYczCGB6HzphckVAi/Qh4tbPUbRuDi7s1Llv8g/NspLkttY3gTA==",
1885
- "license": "MIT",
1886
- "dependencies": {
1887
- "@types/estree": "1.0.9"
1888
- },
1889
- "bin": {
1890
- "rollup": "dist/bin/rollup"
1891
- },
1892
- "engines": {
1893
- "node": ">=18.0.0",
1894
- "npm": ">=8.0.0"
1895
- },
1896
- "optionalDependencies": {
1897
- "@rollup/rollup-android-arm-eabi": "4.62.2",
1898
- "@rollup/rollup-android-arm64": "4.62.2",
1899
- "@rollup/rollup-darwin-arm64": "4.62.2",
1900
- "@rollup/rollup-darwin-x64": "4.62.2",
1901
- "@rollup/rollup-freebsd-arm64": "4.62.2",
1902
- "@rollup/rollup-freebsd-x64": "4.62.2",
1903
- "@rollup/rollup-linux-arm-gnueabihf": "4.62.2",
1904
- "@rollup/rollup-linux-arm-musleabihf": "4.62.2",
1905
- "@rollup/rollup-linux-arm64-gnu": "4.62.2",
1906
- "@rollup/rollup-linux-arm64-musl": "4.62.2",
1907
- "@rollup/rollup-linux-loong64-gnu": "4.62.2",
1908
- "@rollup/rollup-linux-loong64-musl": "4.62.2",
1909
- "@rollup/rollup-linux-ppc64-gnu": "4.62.2",
1910
- "@rollup/rollup-linux-ppc64-musl": "4.62.2",
1911
- "@rollup/rollup-linux-riscv64-gnu": "4.62.2",
1912
- "@rollup/rollup-linux-riscv64-musl": "4.62.2",
1913
- "@rollup/rollup-linux-s390x-gnu": "4.62.2",
1914
- "@rollup/rollup-linux-x64-gnu": "4.62.2",
1915
- "@rollup/rollup-linux-x64-musl": "4.62.2",
1916
- "@rollup/rollup-openbsd-x64": "4.62.2",
1917
- "@rollup/rollup-openharmony-arm64": "4.62.2",
1918
- "@rollup/rollup-win32-arm64-msvc": "4.62.2",
1919
- "@rollup/rollup-win32-ia32-msvc": "4.62.2",
1920
- "@rollup/rollup-win32-x64-gnu": "4.62.2",
1921
- "@rollup/rollup-win32-x64-msvc": "4.62.2",
1922
- "fsevents": "~2.3.2"
1923
- }
1924
- },
1925
- "node_modules/run-parallel": {
1926
- "version": "1.2.0",
1927
- "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
1928
- "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
1130
+ "node_modules/postcss": {
1131
+ "version": "8.5.26",
1132
+ "integrity": "sha1-bnUTV4DH4Q3zQzvyJmxVLTXIxiA=",
1929
1133
  "funding": [
1930
1134
  {
1931
- "type": "github",
1932
- "url": "https://github.com/sponsors/feross"
1135
+ "type": "opencollective",
1136
+ "url": "https://opencollective.com/postcss/"
1933
1137
  },
1934
1138
  {
1935
- "type": "patreon",
1936
- "url": "https://www.patreon.com/feross"
1139
+ "type": "tidelift",
1140
+ "url": "https://tidelift.com/funding/github/npm/postcss"
1937
1141
  },
1938
1142
  {
1939
- "type": "consulting",
1940
- "url": "https://feross.org/support"
1143
+ "type": "github",
1144
+ "url": "https://github.com/sponsors/ai"
1941
1145
  }
1942
1146
  ],
1943
1147
  "license": "MIT",
1944
1148
  "dependencies": {
1945
- "queue-microtask": "^1.2.2"
1946
- }
1947
- },
1948
- "node_modules/source-map-js": {
1949
- "version": "1.2.1",
1950
- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
1951
- "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
1952
- "license": "BSD-3-Clause",
1149
+ "nanoid": "^3.3.17",
1150
+ "picocolors": "^1.1.1",
1151
+ "source-map-js": "^1.2.1"
1152
+ },
1953
1153
  "engines": {
1954
- "node": ">=0.10.0"
1154
+ "node": "^10 || ^12 || >=14"
1955
1155
  }
1956
1156
  },
1957
- "node_modules/sucrase": {
1958
- "version": "3.35.1",
1959
- "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.1.tgz",
1960
- "integrity": "sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==",
1157
+ "node_modules/rolldown": {
1158
+ "version": "1.2.5",
1159
+ "integrity": "sha1-H1BKfQUmCnaeYX2VBBC7sFFJjFA=",
1961
1160
  "license": "MIT",
1962
1161
  "dependencies": {
1963
- "@jridgewell/gen-mapping": "^0.3.2",
1964
- "commander": "^4.0.0",
1965
- "lines-and-columns": "^1.1.6",
1966
- "mz": "^2.7.0",
1967
- "pirates": "^4.0.1",
1968
- "tinyglobby": "^0.2.11",
1969
- "ts-interface-checker": "^0.1.9"
1162
+ "@oxc-project/types": "=0.146.0",
1163
+ "@rolldown/pluginutils": "^1.0.0"
1970
1164
  },
1971
1165
  "bin": {
1972
- "sucrase": "bin/sucrase",
1973
- "sucrase-node": "bin/sucrase-node"
1166
+ "rolldown": "bin/cli.mjs"
1974
1167
  },
1975
1168
  "engines": {
1976
- "node": ">=16 || 14 >=14.17"
1977
- }
1978
- },
1979
- "node_modules/supports-preserve-symlinks-flag": {
1980
- "version": "1.0.0",
1981
- "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
1982
- "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
1983
- "license": "MIT",
1984
- "engines": {
1985
- "node": ">= 0.4"
1169
+ "node": "^20.19.0 || >=22.12.0"
1986
1170
  },
1987
- "funding": {
1988
- "url": "https://github.com/sponsors/ljharb"
1171
+ "optionalDependencies": {
1172
+ "@rolldown/binding-android-arm-eabi": "1.2.5",
1173
+ "@rolldown/binding-android-arm64": "1.2.5",
1174
+ "@rolldown/binding-darwin-arm64": "1.2.5",
1175
+ "@rolldown/binding-darwin-x64": "1.2.5",
1176
+ "@rolldown/binding-freebsd-x64": "1.2.5",
1177
+ "@rolldown/binding-linux-arm-gnueabihf": "1.2.5",
1178
+ "@rolldown/binding-linux-arm64-gnu": "1.2.5",
1179
+ "@rolldown/binding-linux-arm64-musl": "1.2.5",
1180
+ "@rolldown/binding-linux-ppc64-gnu": "1.2.5",
1181
+ "@rolldown/binding-linux-s390x-gnu": "1.2.5",
1182
+ "@rolldown/binding-linux-x64-gnu": "1.2.5",
1183
+ "@rolldown/binding-linux-x64-musl": "1.2.5",
1184
+ "@rolldown/binding-openharmony-arm64": "1.2.5",
1185
+ "@rolldown/binding-win32-arm64-msvc": "1.2.5",
1186
+ "@rolldown/binding-win32-x64-msvc": "1.2.5"
1989
1187
  }
1990
1188
  },
1991
- "node_modules/tailwindcss": {
1992
- "version": "3.4.19",
1993
- "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.19.tgz",
1994
- "integrity": "sha512-3ofp+LL8E+pK/JuPLPggVAIaEuhvIz4qNcf3nA1Xn2o/7fb7s/TYpHhwGDv1ZU3PkBluUVaF8PyCHcm48cKLWQ==",
1995
- "license": "MIT",
1996
- "dependencies": {
1997
- "@alloc/quick-lru": "^5.2.0",
1998
- "arg": "^5.0.2",
1999
- "chokidar": "^3.6.0",
2000
- "didyoumean": "^1.2.2",
2001
- "dlv": "^1.1.3",
2002
- "fast-glob": "^3.3.2",
2003
- "glob-parent": "^6.0.2",
2004
- "is-glob": "^4.0.3",
2005
- "jiti": "^1.21.7",
2006
- "lilconfig": "^3.1.3",
2007
- "micromatch": "^4.0.8",
2008
- "normalize-path": "^3.0.0",
2009
- "object-hash": "^3.0.0",
2010
- "picocolors": "^1.1.1",
2011
- "postcss": "^8.4.47",
2012
- "postcss-import": "^15.1.0",
2013
- "postcss-js": "^4.0.1",
2014
- "postcss-load-config": "^4.0.2 || ^5.0 || ^6.0",
2015
- "postcss-nested": "^6.2.0",
2016
- "postcss-selector-parser": "^6.1.2",
2017
- "resolve": "^1.22.8",
2018
- "sucrase": "^3.35.0"
2019
- },
2020
- "bin": {
2021
- "tailwind": "lib/cli.js",
2022
- "tailwindcss": "lib/cli.js"
2023
- },
1189
+ "node_modules/source-map-js": {
1190
+ "version": "1.2.1",
1191
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
1192
+ "license": "BSD-3-Clause",
2024
1193
  "engines": {
2025
- "node": ">=14.0.0"
1194
+ "node": ">=0.10.0"
2026
1195
  }
2027
1196
  },
2028
- "node_modules/thenify": {
2029
- "version": "3.3.1",
2030
- "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz",
2031
- "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==",
2032
- "license": "MIT",
2033
- "dependencies": {
2034
- "any-promise": "^1.0.0"
2035
- }
1197
+ "node_modules/tailwindcss": {
1198
+ "version": "4.3.3",
1199
+ "integrity": "sha1-wAaGFhHCE8GHeJOrWyPaoWviu1U=",
1200
+ "license": "MIT"
2036
1201
  },
2037
- "node_modules/thenify-all": {
2038
- "version": "1.6.0",
2039
- "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz",
2040
- "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==",
1202
+ "node_modules/tapable": {
1203
+ "version": "2.3.3",
1204
+ "integrity": "sha1-XafJmSxGA4IhJnmFqyhCGoh58WA=",
2041
1205
  "license": "MIT",
2042
- "dependencies": {
2043
- "thenify": ">= 3.1.0 < 4"
2044
- },
2045
1206
  "engines": {
2046
- "node": ">=0.8"
1207
+ "node": ">=6"
1208
+ },
1209
+ "funding": {
1210
+ "type": "opencollective",
1211
+ "url": "https://opencollective.com/webpack"
2047
1212
  }
2048
1213
  },
2049
1214
  "node_modules/tinyglobby": {
2050
1215
  "version": "0.2.17",
2051
- "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
2052
1216
  "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
2053
1217
  "license": "MIT",
2054
1218
  "dependencies": {
@@ -2064,7 +1228,6 @@
2064
1228
  },
2065
1229
  "node_modules/tinyglobby/node_modules/fdir": {
2066
1230
  "version": "6.5.0",
2067
- "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
2068
1231
  "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
2069
1232
  "license": "MIT",
2070
1233
  "engines": {
@@ -2079,90 +1242,22 @@
2079
1242
  }
2080
1243
  }
2081
1244
  },
2082
- "node_modules/tinyglobby/node_modules/picomatch": {
2083
- "version": "4.0.5",
2084
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.5.tgz",
2085
- "integrity": "sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==",
2086
- "license": "MIT",
2087
- "engines": {
2088
- "node": ">=12"
2089
- },
2090
- "funding": {
2091
- "url": "https://github.com/sponsors/jonschlinkert"
2092
- }
2093
- },
2094
- "node_modules/to-regex-range": {
2095
- "version": "5.0.1",
2096
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
2097
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
2098
- "license": "MIT",
2099
- "dependencies": {
2100
- "is-number": "^7.0.0"
2101
- },
2102
- "engines": {
2103
- "node": ">=8.0"
2104
- }
2105
- },
2106
- "node_modules/ts-interface-checker": {
2107
- "version": "0.1.13",
2108
- "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz",
2109
- "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==",
2110
- "license": "Apache-2.0"
2111
- },
2112
- "node_modules/update-browserslist-db": {
2113
- "version": "1.2.3",
2114
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
2115
- "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
2116
- "funding": [
2117
- {
2118
- "type": "opencollective",
2119
- "url": "https://opencollective.com/browserslist"
2120
- },
2121
- {
2122
- "type": "tidelift",
2123
- "url": "https://tidelift.com/funding/github/npm/browserslist"
2124
- },
2125
- {
2126
- "type": "github",
2127
- "url": "https://github.com/sponsors/ai"
2128
- }
2129
- ],
2130
- "license": "MIT",
2131
- "dependencies": {
2132
- "escalade": "^3.2.0",
2133
- "picocolors": "^1.1.1"
2134
- },
2135
- "bin": {
2136
- "update-browserslist-db": "cli.js"
2137
- },
2138
- "peerDependencies": {
2139
- "browserslist": ">= 4.21.0"
2140
- }
2141
- },
2142
- "node_modules/util-deprecate": {
2143
- "version": "1.0.2",
2144
- "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
2145
- "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
2146
- "license": "MIT"
2147
- },
2148
1245
  "node_modules/vite": {
2149
- "version": "6.4.3",
2150
- "resolved": "https://registry.npmjs.org/vite/-/vite-6.4.3.tgz",
2151
- "integrity": "sha512-NTKlcQjlAK7MlQoyb6LgaqHc8sso/pVyUJYWMws3jg21uTJw/LddqIFPcPqP6PzpgbIcZyKI85sFE4HBrQDA8A==",
1246
+ "version": "8.2.2",
1247
+ "integrity": "sha1-OZrvrTZWFFFFvhENE3oH6lu1UBQ=",
2152
1248
  "license": "MIT",
2153
1249
  "dependencies": {
2154
- "esbuild": "^0.25.0",
2155
- "fdir": "^6.4.4",
2156
- "picomatch": "^4.0.2",
2157
- "postcss": "^8.5.3",
2158
- "rollup": "^4.34.9",
2159
- "tinyglobby": "^0.2.13"
1250
+ "lightningcss": "^1.33.0",
1251
+ "picomatch": "^4.0.5",
1252
+ "postcss": "^8.5.26",
1253
+ "rolldown": "~1.2.4",
1254
+ "tinyglobby": "^0.2.17"
2160
1255
  },
2161
1256
  "bin": {
2162
1257
  "vite": "bin/vite.js"
2163
1258
  },
2164
1259
  "engines": {
2165
- "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
1260
+ "node": "^20.19.0 || >=22.12.0"
2166
1261
  },
2167
1262
  "funding": {
2168
1263
  "url": "https://github.com/vitejs/vite?sponsor=1"
@@ -2171,14 +1266,15 @@
2171
1266
  "fsevents": "~2.3.3"
2172
1267
  },
2173
1268
  "peerDependencies": {
2174
- "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
1269
+ "@types/node": "^20.19.0 || >=22.12.0",
1270
+ "@vitejs/devtools": "^0.4.0 || ^0.5.0",
1271
+ "esbuild": "^0.27.0 || ^0.28.0",
2175
1272
  "jiti": ">=1.21.0",
2176
- "less": "*",
2177
- "lightningcss": "^1.21.0",
2178
- "sass": "*",
2179
- "sass-embedded": "*",
2180
- "stylus": "*",
2181
- "sugarss": "*",
1273
+ "less": "^4.0.0",
1274
+ "sass": "^1.70.0",
1275
+ "sass-embedded": "^1.70.0",
1276
+ "stylus": ">=0.54.8",
1277
+ "sugarss": "^5.0.0",
2182
1278
  "terser": "^5.16.0",
2183
1279
  "tsx": "^4.8.1",
2184
1280
  "yaml": "^2.4.2"
@@ -2187,13 +1283,16 @@
2187
1283
  "@types/node": {
2188
1284
  "optional": true
2189
1285
  },
2190
- "jiti": {
1286
+ "@vitejs/devtools": {
2191
1287
  "optional": true
2192
1288
  },
2193
- "less": {
1289
+ "esbuild": {
1290
+ "optional": true
1291
+ },
1292
+ "jiti": {
2194
1293
  "optional": true
2195
1294
  },
2196
- "lightningcss": {
1295
+ "less": {
2197
1296
  "optional": true
2198
1297
  },
2199
1298
  "sass": {
@@ -2219,46 +1318,265 @@
2219
1318
  }
2220
1319
  }
2221
1320
  },
2222
- "node_modules/vite/node_modules/fdir": {
2223
- "version": "6.5.0",
2224
- "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
2225
- "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
2226
- "license": "MIT",
1321
+ "node_modules/vite/node_modules/lightningcss": {
1322
+ "version": "1.33.0",
1323
+ "integrity": "sha1-wIhn1xp5OFxuGQIU/XL+8+X5Xws=",
1324
+ "license": "MPL-2.0",
1325
+ "dependencies": {
1326
+ "detect-libc": "^2.0.3"
1327
+ },
2227
1328
  "engines": {
2228
- "node": ">=12.0.0"
1329
+ "node": ">= 12.0.0"
2229
1330
  },
2230
- "peerDependencies": {
2231
- "picomatch": "^3 || ^4"
1331
+ "funding": {
1332
+ "type": "opencollective",
1333
+ "url": "https://opencollective.com/parcel"
2232
1334
  },
2233
- "peerDependenciesMeta": {
2234
- "picomatch": {
2235
- "optional": true
2236
- }
1335
+ "optionalDependencies": {
1336
+ "lightningcss-android-arm64": "1.33.0",
1337
+ "lightningcss-darwin-arm64": "1.33.0",
1338
+ "lightningcss-darwin-x64": "1.33.0",
1339
+ "lightningcss-freebsd-x64": "1.33.0",
1340
+ "lightningcss-linux-arm-gnueabihf": "1.33.0",
1341
+ "lightningcss-linux-arm64-gnu": "1.33.0",
1342
+ "lightningcss-linux-arm64-musl": "1.33.0",
1343
+ "lightningcss-linux-x64-gnu": "1.33.0",
1344
+ "lightningcss-linux-x64-musl": "1.33.0",
1345
+ "lightningcss-win32-arm64-msvc": "1.33.0",
1346
+ "lightningcss-win32-x64-msvc": "1.33.0"
1347
+ }
1348
+ },
1349
+ "node_modules/vite/node_modules/lightningcss-android-arm64": {
1350
+ "version": "1.33.0",
1351
+ "integrity": "sha1-mmhB+IrlD8g1ApA4krQa9BvCuQc=",
1352
+ "cpu": [
1353
+ "arm64"
1354
+ ],
1355
+ "license": "MPL-2.0",
1356
+ "optional": true,
1357
+ "os": [
1358
+ "android"
1359
+ ],
1360
+ "engines": {
1361
+ "node": ">= 12.0.0"
1362
+ },
1363
+ "funding": {
1364
+ "type": "opencollective",
1365
+ "url": "https://opencollective.com/parcel"
2237
1366
  }
2238
1367
  },
2239
- "node_modules/vite/node_modules/picomatch": {
2240
- "version": "4.0.5",
2241
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.5.tgz",
2242
- "integrity": "sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==",
2243
- "license": "MIT",
1368
+ "node_modules/vite/node_modules/lightningcss-darwin-arm64": {
1369
+ "version": "1.33.0",
1370
+ "integrity": "sha1-wPLDHAv9GfpN0/GOlXofGhUgl9Y=",
1371
+ "cpu": [
1372
+ "arm64"
1373
+ ],
1374
+ "license": "MPL-2.0",
1375
+ "optional": true,
1376
+ "os": [
1377
+ "darwin"
1378
+ ],
2244
1379
  "engines": {
2245
- "node": ">=12"
1380
+ "node": ">= 12.0.0"
2246
1381
  },
2247
1382
  "funding": {
2248
- "url": "https://github.com/sponsors/jonschlinkert"
1383
+ "type": "opencollective",
1384
+ "url": "https://opencollective.com/parcel"
1385
+ }
1386
+ },
1387
+ "node_modules/vite/node_modules/lightningcss-darwin-x64": {
1388
+ "version": "1.33.0",
1389
+ "integrity": "sha1-ywcFllrLU4xmg5Sc5pJfs833w2E=",
1390
+ "cpu": [
1391
+ "x64"
1392
+ ],
1393
+ "license": "MPL-2.0",
1394
+ "optional": true,
1395
+ "os": [
1396
+ "darwin"
1397
+ ],
1398
+ "engines": {
1399
+ "node": ">= 12.0.0"
1400
+ },
1401
+ "funding": {
1402
+ "type": "opencollective",
1403
+ "url": "https://opencollective.com/parcel"
1404
+ }
1405
+ },
1406
+ "node_modules/vite/node_modules/lightningcss-freebsd-x64": {
1407
+ "version": "1.33.0",
1408
+ "integrity": "sha1-djU4gosmurJoDa2vzITueLDrUCs=",
1409
+ "cpu": [
1410
+ "x64"
1411
+ ],
1412
+ "license": "MPL-2.0",
1413
+ "optional": true,
1414
+ "os": [
1415
+ "freebsd"
1416
+ ],
1417
+ "engines": {
1418
+ "node": ">= 12.0.0"
1419
+ },
1420
+ "funding": {
1421
+ "type": "opencollective",
1422
+ "url": "https://opencollective.com/parcel"
1423
+ }
1424
+ },
1425
+ "node_modules/vite/node_modules/lightningcss-linux-arm-gnueabihf": {
1426
+ "version": "1.33.0",
1427
+ "integrity": "sha1-aGLjF2ozGu297B7TUrTX0N0HhN4=",
1428
+ "cpu": [
1429
+ "arm"
1430
+ ],
1431
+ "license": "MPL-2.0",
1432
+ "optional": true,
1433
+ "os": [
1434
+ "linux"
1435
+ ],
1436
+ "engines": {
1437
+ "node": ">= 12.0.0"
1438
+ },
1439
+ "funding": {
1440
+ "type": "opencollective",
1441
+ "url": "https://opencollective.com/parcel"
1442
+ }
1443
+ },
1444
+ "node_modules/vite/node_modules/lightningcss-linux-arm64-gnu": {
1445
+ "version": "1.33.0",
1446
+ "integrity": "sha1-xqOi7RUUHa9r3CYokw+OOb30c6o=",
1447
+ "cpu": [
1448
+ "arm64"
1449
+ ],
1450
+ "libc": [
1451
+ "glibc"
1452
+ ],
1453
+ "license": "MPL-2.0",
1454
+ "optional": true,
1455
+ "os": [
1456
+ "linux"
1457
+ ],
1458
+ "engines": {
1459
+ "node": ">= 12.0.0"
1460
+ },
1461
+ "funding": {
1462
+ "type": "opencollective",
1463
+ "url": "https://opencollective.com/parcel"
1464
+ }
1465
+ },
1466
+ "node_modules/vite/node_modules/lightningcss-linux-arm64-musl": {
1467
+ "version": "1.33.0",
1468
+ "integrity": "sha1-f6EzSXH8goRfmCffbvigsgkUusY=",
1469
+ "cpu": [
1470
+ "arm64"
1471
+ ],
1472
+ "libc": [
1473
+ "musl"
1474
+ ],
1475
+ "license": "MPL-2.0",
1476
+ "optional": true,
1477
+ "os": [
1478
+ "linux"
1479
+ ],
1480
+ "engines": {
1481
+ "node": ">= 12.0.0"
1482
+ },
1483
+ "funding": {
1484
+ "type": "opencollective",
1485
+ "url": "https://opencollective.com/parcel"
1486
+ }
1487
+ },
1488
+ "node_modules/vite/node_modules/lightningcss-linux-x64-gnu": {
1489
+ "version": "1.33.0",
1490
+ "integrity": "sha1-i5J4YuqMK7xoMaRlCSRLUNmTblU=",
1491
+ "cpu": [
1492
+ "x64"
1493
+ ],
1494
+ "libc": [
1495
+ "glibc"
1496
+ ],
1497
+ "license": "MPL-2.0",
1498
+ "optional": true,
1499
+ "os": [
1500
+ "linux"
1501
+ ],
1502
+ "engines": {
1503
+ "node": ">= 12.0.0"
1504
+ },
1505
+ "funding": {
1506
+ "type": "opencollective",
1507
+ "url": "https://opencollective.com/parcel"
1508
+ }
1509
+ },
1510
+ "node_modules/vite/node_modules/lightningcss-linux-x64-musl": {
1511
+ "version": "1.33.0",
1512
+ "integrity": "sha1-DFJbsHff2UQEwFnP5C2teX6Wrq8=",
1513
+ "cpu": [
1514
+ "x64"
1515
+ ],
1516
+ "libc": [
1517
+ "musl"
1518
+ ],
1519
+ "license": "MPL-2.0",
1520
+ "optional": true,
1521
+ "os": [
1522
+ "linux"
1523
+ ],
1524
+ "engines": {
1525
+ "node": ">= 12.0.0"
1526
+ },
1527
+ "funding": {
1528
+ "type": "opencollective",
1529
+ "url": "https://opencollective.com/parcel"
1530
+ }
1531
+ },
1532
+ "node_modules/vite/node_modules/lightningcss-win32-arm64-msvc": {
1533
+ "version": "1.33.0",
1534
+ "integrity": "sha1-hQ7hED2smJz6tQ46wi0aaeOU5j0=",
1535
+ "cpu": [
1536
+ "arm64"
1537
+ ],
1538
+ "license": "MPL-2.0",
1539
+ "optional": true,
1540
+ "os": [
1541
+ "win32"
1542
+ ],
1543
+ "engines": {
1544
+ "node": ">= 12.0.0"
1545
+ },
1546
+ "funding": {
1547
+ "type": "opencollective",
1548
+ "url": "https://opencollective.com/parcel"
1549
+ }
1550
+ },
1551
+ "node_modules/vite/node_modules/lightningcss-win32-x64-msvc": {
1552
+ "version": "1.33.0",
1553
+ "integrity": "sha1-40OuFS7tNgncbhGUnRo785oclG8=",
1554
+ "cpu": [
1555
+ "x64"
1556
+ ],
1557
+ "license": "MPL-2.0",
1558
+ "optional": true,
1559
+ "os": [
1560
+ "win32"
1561
+ ],
1562
+ "engines": {
1563
+ "node": ">= 12.0.0"
1564
+ },
1565
+ "funding": {
1566
+ "type": "opencollective",
1567
+ "url": "https://opencollective.com/parcel"
2249
1568
  }
2250
1569
  },
2251
1570
  "node_modules/vue": {
2252
- "version": "3.5.40",
2253
- "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.40.tgz",
2254
- "integrity": "sha512-+8PJ4SJXdn/cHGImF4CKdxlWHIN5Dkt7DoufRREM6h6uVCx2m7QxgcEQmmzyOK8A9mcafg7sFbJFYsdFVubTig==",
1571
+ "version": "3.5.41",
1572
+ "integrity": "sha1-iGS93+Wc4SiijJutIZzZJIkWr3M=",
2255
1573
  "license": "MIT",
2256
1574
  "dependencies": {
2257
- "@vue/compiler-dom": "3.5.40",
2258
- "@vue/compiler-sfc": "3.5.40",
2259
- "@vue/runtime-dom": "3.5.40",
2260
- "@vue/server-renderer": "3.5.40",
2261
- "@vue/shared": "3.5.40"
1575
+ "@vue/compiler-dom": "3.5.41",
1576
+ "@vue/compiler-sfc": "3.5.41",
1577
+ "@vue/runtime-dom": "3.5.41",
1578
+ "@vue/server-renderer": "3.5.41",
1579
+ "@vue/shared": "3.5.41"
2262
1580
  },
2263
1581
  "peerDependencies": {
2264
1582
  "typescript": "*"