@msn-control/liftoff 0.4.1 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +65 -256
- package/assets/locks/frontend/package-lock.json +224 -168
- package/assets/locks/frontend/package.json +1 -1
- package/assets/locks/node-backend/package-lock.json +85 -31
- package/assets/locks/node-backend/package.json +1 -1
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/UPSTREAM_LICENSE.txt +21 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/catalog.json +520 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/packaged/gitignore +27 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/README.md +25 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/components.json +22 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/eslint.config.js +23 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/index.html +13 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/package-lock.json +6597 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/package.json +60 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/public/power-apps.svg +55 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/App.tsx +17 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/assets/react.svg +1 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/components/mode-toggle.tsx +37 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/components/ui/badge.tsx +46 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/components/ui/button.tsx +60 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/components/ui/calendar.tsx +211 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/components/ui/card.tsx +92 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/components/ui/chart.tsx +355 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/components/ui/checkbox.tsx +32 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/components/ui/command.tsx +184 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/components/ui/dialog.tsx +141 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/components/ui/dropdown-menu.tsx +257 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/components/ui/input.tsx +21 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/components/ui/label.tsx +22 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/components/ui/popover.tsx +46 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/components/ui/progress.tsx +29 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/components/ui/select.tsx +185 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/components/ui/separator.tsx +26 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/components/ui/skeleton.tsx +13 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/components/ui/table.tsx +114 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/components/ui/tabs.tsx +66 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/components/ui/textarea.tsx +18 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/components/ui/tooltip.tsx +61 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/hooks/use-theme.ts +11 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/index.css +131 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/lib/utils.ts +6 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/main.tsx +10 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/pages/_layout.tsx +31 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/pages/home.tsx +59 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/pages/not-found.tsx +14 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/providers/query-provider.tsx +26 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/providers/sonner-provider.tsx +23 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/providers/theme-provider.tsx +64 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/src/router.tsx +24 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/tsconfig.app.json +34 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/tsconfig.json +13 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/tsconfig.node.json +26 -0
- package/assets/power-apps-code-app/3438c352483e40982f6c5c0fc36fd71f8e7adbbb/starter/vite.config.ts +19 -0
- package/assets/power-apps-code-app/README.md +27 -0
- package/dist/args.js +7 -1
- package/dist/args.js.map +1 -1
- package/dist/catalogs.d.ts +3 -1
- package/dist/catalogs.js +23 -0
- package/dist/catalogs.js.map +1 -1
- package/dist/code-apps-plugin.d.ts +13 -0
- package/dist/code-apps-plugin.js +69 -0
- package/dist/code-apps-plugin.js.map +1 -0
- package/dist/commands.js +282 -55
- package/dist/commands.js.map +1 -1
- package/dist/file-system.d.ts +16 -1
- package/dist/file-system.js +320 -10
- package/dist/file-system.js.map +1 -1
- package/dist/genai-templates.d.ts +6 -6
- package/dist/genai-templates.js +0 -3
- package/dist/genai-templates.js.map +1 -1
- package/dist/interactive.d.ts +40 -3
- package/dist/interactive.js +180 -24
- package/dist/interactive.js.map +1 -1
- package/dist/migrate-plan.d.ts +4 -4
- package/dist/migrate-plan.js +1 -1
- package/dist/migrate-plan.js.map +1 -1
- package/dist/planner.js +177 -40
- package/dist/planner.js.map +1 -1
- package/dist/power-apps-assets.d.ts +30 -0
- package/dist/power-apps-assets.js +131 -0
- package/dist/power-apps-assets.js.map +1 -0
- package/dist/power-apps-templates.d.ts +3 -0
- package/dist/power-apps-templates.js +140 -0
- package/dist/power-apps-templates.js.map +1 -0
- package/dist/power-apps-validation.d.ts +1 -0
- package/dist/power-apps-validation.js +79 -0
- package/dist/power-apps-validation.js.map +1 -0
- package/dist/project-dependencies.d.ts +1 -0
- package/dist/project-dependencies.js +12 -1
- package/dist/project-dependencies.js.map +1 -1
- package/dist/standard-templates.d.ts +4 -4
- package/dist/standard-templates.js.map +1 -1
- package/dist/templates.d.ts +2 -2
- package/dist/templates.js +196 -50
- package/dist/templates.js.map +1 -1
- package/dist/types.d.ts +73 -15
- package/dist/workstation.d.ts +10 -5
- package/dist/workstation.js +25 -10
- package/dist/workstation.js.map +1 -1
- package/docs/assets/liftoff-terminal.svg +33 -0
- package/docs/azure-deployment.md +66 -0
- package/docs/cli-reference.md +128 -0
- package/docs/configuration-and-manifests.md +102 -0
- package/docs/existing-repositories.md +87 -0
- package/docs/getting-started.md +114 -0
- package/docs/prerequisites.md +99 -0
- package/docs/project-structure.md +119 -0
- package/docs/safety-and-consent.md +98 -0
- package/docs/spec-workflows-and-agents.md +92 -0
- package/docs/troubleshooting.md +133 -0
- package/docs/workloads.md +128 -0
- package/package.json +10 -2
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"autoprefixer": "^10.4.19",
|
|
13
13
|
"postcss": "^8.4.38",
|
|
14
14
|
"tailwindcss": "^3.4.4",
|
|
15
|
-
"vite": "^
|
|
15
|
+
"vite": "^6.4.3",
|
|
16
16
|
"vue": "^3.4.29"
|
|
17
17
|
}
|
|
18
18
|
},
|
|
@@ -75,9 +75,9 @@
|
|
|
75
75
|
}
|
|
76
76
|
},
|
|
77
77
|
"node_modules/@esbuild/aix-ppc64": {
|
|
78
|
-
"version": "0.
|
|
79
|
-
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.
|
|
80
|
-
"integrity": "sha512-
|
|
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
81
|
"cpu": [
|
|
82
82
|
"ppc64"
|
|
83
83
|
],
|
|
@@ -87,13 +87,13 @@
|
|
|
87
87
|
"aix"
|
|
88
88
|
],
|
|
89
89
|
"engines": {
|
|
90
|
-
"node": ">=
|
|
90
|
+
"node": ">=18"
|
|
91
91
|
}
|
|
92
92
|
},
|
|
93
93
|
"node_modules/@esbuild/android-arm": {
|
|
94
|
-
"version": "0.
|
|
95
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.
|
|
96
|
-
"integrity": "sha512-
|
|
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
97
|
"cpu": [
|
|
98
98
|
"arm"
|
|
99
99
|
],
|
|
@@ -103,13 +103,13 @@
|
|
|
103
103
|
"android"
|
|
104
104
|
],
|
|
105
105
|
"engines": {
|
|
106
|
-
"node": ">=
|
|
106
|
+
"node": ">=18"
|
|
107
107
|
}
|
|
108
108
|
},
|
|
109
109
|
"node_modules/@esbuild/android-arm64": {
|
|
110
|
-
"version": "0.
|
|
111
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.
|
|
112
|
-
"integrity": "sha512-
|
|
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==",
|
|
113
113
|
"cpu": [
|
|
114
114
|
"arm64"
|
|
115
115
|
],
|
|
@@ -119,13 +119,13 @@
|
|
|
119
119
|
"android"
|
|
120
120
|
],
|
|
121
121
|
"engines": {
|
|
122
|
-
"node": ">=
|
|
122
|
+
"node": ">=18"
|
|
123
123
|
}
|
|
124
124
|
},
|
|
125
125
|
"node_modules/@esbuild/android-x64": {
|
|
126
|
-
"version": "0.
|
|
127
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.
|
|
128
|
-
"integrity": "sha512-
|
|
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==",
|
|
129
129
|
"cpu": [
|
|
130
130
|
"x64"
|
|
131
131
|
],
|
|
@@ -135,13 +135,13 @@
|
|
|
135
135
|
"android"
|
|
136
136
|
],
|
|
137
137
|
"engines": {
|
|
138
|
-
"node": ">=
|
|
138
|
+
"node": ">=18"
|
|
139
139
|
}
|
|
140
140
|
},
|
|
141
141
|
"node_modules/@esbuild/darwin-arm64": {
|
|
142
|
-
"version": "0.
|
|
143
|
-
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.
|
|
144
|
-
"integrity": "sha512-
|
|
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==",
|
|
145
145
|
"cpu": [
|
|
146
146
|
"arm64"
|
|
147
147
|
],
|
|
@@ -151,13 +151,13 @@
|
|
|
151
151
|
"darwin"
|
|
152
152
|
],
|
|
153
153
|
"engines": {
|
|
154
|
-
"node": ">=
|
|
154
|
+
"node": ">=18"
|
|
155
155
|
}
|
|
156
156
|
},
|
|
157
157
|
"node_modules/@esbuild/darwin-x64": {
|
|
158
|
-
"version": "0.
|
|
159
|
-
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.
|
|
160
|
-
"integrity": "sha512-
|
|
158
|
+
"version": "0.25.12",
|
|
159
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz",
|
|
160
|
+
"integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==",
|
|
161
161
|
"cpu": [
|
|
162
162
|
"x64"
|
|
163
163
|
],
|
|
@@ -167,13 +167,13 @@
|
|
|
167
167
|
"darwin"
|
|
168
168
|
],
|
|
169
169
|
"engines": {
|
|
170
|
-
"node": ">=
|
|
170
|
+
"node": ">=18"
|
|
171
171
|
}
|
|
172
172
|
},
|
|
173
173
|
"node_modules/@esbuild/freebsd-arm64": {
|
|
174
|
-
"version": "0.
|
|
175
|
-
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.
|
|
176
|
-
"integrity": "sha512-
|
|
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==",
|
|
177
177
|
"cpu": [
|
|
178
178
|
"arm64"
|
|
179
179
|
],
|
|
@@ -183,13 +183,13 @@
|
|
|
183
183
|
"freebsd"
|
|
184
184
|
],
|
|
185
185
|
"engines": {
|
|
186
|
-
"node": ">=
|
|
186
|
+
"node": ">=18"
|
|
187
187
|
}
|
|
188
188
|
},
|
|
189
189
|
"node_modules/@esbuild/freebsd-x64": {
|
|
190
|
-
"version": "0.
|
|
191
|
-
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.
|
|
192
|
-
"integrity": "sha512-
|
|
190
|
+
"version": "0.25.12",
|
|
191
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz",
|
|
192
|
+
"integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==",
|
|
193
193
|
"cpu": [
|
|
194
194
|
"x64"
|
|
195
195
|
],
|
|
@@ -199,13 +199,13 @@
|
|
|
199
199
|
"freebsd"
|
|
200
200
|
],
|
|
201
201
|
"engines": {
|
|
202
|
-
"node": ">=
|
|
202
|
+
"node": ">=18"
|
|
203
203
|
}
|
|
204
204
|
},
|
|
205
205
|
"node_modules/@esbuild/linux-arm": {
|
|
206
|
-
"version": "0.
|
|
207
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.
|
|
208
|
-
"integrity": "sha512-
|
|
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==",
|
|
209
209
|
"cpu": [
|
|
210
210
|
"arm"
|
|
211
211
|
],
|
|
@@ -215,13 +215,13 @@
|
|
|
215
215
|
"linux"
|
|
216
216
|
],
|
|
217
217
|
"engines": {
|
|
218
|
-
"node": ">=
|
|
218
|
+
"node": ">=18"
|
|
219
219
|
}
|
|
220
220
|
},
|
|
221
221
|
"node_modules/@esbuild/linux-arm64": {
|
|
222
|
-
"version": "0.
|
|
223
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.
|
|
224
|
-
"integrity": "sha512-
|
|
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==",
|
|
225
225
|
"cpu": [
|
|
226
226
|
"arm64"
|
|
227
227
|
],
|
|
@@ -231,13 +231,13 @@
|
|
|
231
231
|
"linux"
|
|
232
232
|
],
|
|
233
233
|
"engines": {
|
|
234
|
-
"node": ">=
|
|
234
|
+
"node": ">=18"
|
|
235
235
|
}
|
|
236
236
|
},
|
|
237
237
|
"node_modules/@esbuild/linux-ia32": {
|
|
238
|
-
"version": "0.
|
|
239
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.
|
|
240
|
-
"integrity": "sha512-
|
|
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==",
|
|
241
241
|
"cpu": [
|
|
242
242
|
"ia32"
|
|
243
243
|
],
|
|
@@ -247,13 +247,13 @@
|
|
|
247
247
|
"linux"
|
|
248
248
|
],
|
|
249
249
|
"engines": {
|
|
250
|
-
"node": ">=
|
|
250
|
+
"node": ">=18"
|
|
251
251
|
}
|
|
252
252
|
},
|
|
253
253
|
"node_modules/@esbuild/linux-loong64": {
|
|
254
|
-
"version": "0.
|
|
255
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.
|
|
256
|
-
"integrity": "sha512-
|
|
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==",
|
|
257
257
|
"cpu": [
|
|
258
258
|
"loong64"
|
|
259
259
|
],
|
|
@@ -263,13 +263,13 @@
|
|
|
263
263
|
"linux"
|
|
264
264
|
],
|
|
265
265
|
"engines": {
|
|
266
|
-
"node": ">=
|
|
266
|
+
"node": ">=18"
|
|
267
267
|
}
|
|
268
268
|
},
|
|
269
269
|
"node_modules/@esbuild/linux-mips64el": {
|
|
270
|
-
"version": "0.
|
|
271
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.
|
|
272
|
-
"integrity": "sha512-
|
|
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==",
|
|
273
273
|
"cpu": [
|
|
274
274
|
"mips64el"
|
|
275
275
|
],
|
|
@@ -279,13 +279,13 @@
|
|
|
279
279
|
"linux"
|
|
280
280
|
],
|
|
281
281
|
"engines": {
|
|
282
|
-
"node": ">=
|
|
282
|
+
"node": ">=18"
|
|
283
283
|
}
|
|
284
284
|
},
|
|
285
285
|
"node_modules/@esbuild/linux-ppc64": {
|
|
286
|
-
"version": "0.
|
|
287
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.
|
|
288
|
-
"integrity": "sha512-
|
|
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==",
|
|
289
289
|
"cpu": [
|
|
290
290
|
"ppc64"
|
|
291
291
|
],
|
|
@@ -295,13 +295,13 @@
|
|
|
295
295
|
"linux"
|
|
296
296
|
],
|
|
297
297
|
"engines": {
|
|
298
|
-
"node": ">=
|
|
298
|
+
"node": ">=18"
|
|
299
299
|
}
|
|
300
300
|
},
|
|
301
301
|
"node_modules/@esbuild/linux-riscv64": {
|
|
302
|
-
"version": "0.
|
|
303
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.
|
|
304
|
-
"integrity": "sha512-
|
|
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==",
|
|
305
305
|
"cpu": [
|
|
306
306
|
"riscv64"
|
|
307
307
|
],
|
|
@@ -311,13 +311,13 @@
|
|
|
311
311
|
"linux"
|
|
312
312
|
],
|
|
313
313
|
"engines": {
|
|
314
|
-
"node": ">=
|
|
314
|
+
"node": ">=18"
|
|
315
315
|
}
|
|
316
316
|
},
|
|
317
317
|
"node_modules/@esbuild/linux-s390x": {
|
|
318
|
-
"version": "0.
|
|
319
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.
|
|
320
|
-
"integrity": "sha512-
|
|
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
321
|
"cpu": [
|
|
322
322
|
"s390x"
|
|
323
323
|
],
|
|
@@ -327,13 +327,13 @@
|
|
|
327
327
|
"linux"
|
|
328
328
|
],
|
|
329
329
|
"engines": {
|
|
330
|
-
"node": ">=
|
|
330
|
+
"node": ">=18"
|
|
331
331
|
}
|
|
332
332
|
},
|
|
333
333
|
"node_modules/@esbuild/linux-x64": {
|
|
334
|
-
"version": "0.
|
|
335
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.
|
|
336
|
-
"integrity": "sha512-
|
|
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==",
|
|
337
337
|
"cpu": [
|
|
338
338
|
"x64"
|
|
339
339
|
],
|
|
@@ -343,13 +343,29 @@
|
|
|
343
343
|
"linux"
|
|
344
344
|
],
|
|
345
345
|
"engines": {
|
|
346
|
-
"node": ">=
|
|
346
|
+
"node": ">=18"
|
|
347
|
+
}
|
|
348
|
+
},
|
|
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==",
|
|
353
|
+
"cpu": [
|
|
354
|
+
"arm64"
|
|
355
|
+
],
|
|
356
|
+
"license": "MIT",
|
|
357
|
+
"optional": true,
|
|
358
|
+
"os": [
|
|
359
|
+
"netbsd"
|
|
360
|
+
],
|
|
361
|
+
"engines": {
|
|
362
|
+
"node": ">=18"
|
|
347
363
|
}
|
|
348
364
|
},
|
|
349
365
|
"node_modules/@esbuild/netbsd-x64": {
|
|
350
|
-
"version": "0.
|
|
351
|
-
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.
|
|
352
|
-
"integrity": "sha512-
|
|
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==",
|
|
353
369
|
"cpu": [
|
|
354
370
|
"x64"
|
|
355
371
|
],
|
|
@@ -359,13 +375,29 @@
|
|
|
359
375
|
"netbsd"
|
|
360
376
|
],
|
|
361
377
|
"engines": {
|
|
362
|
-
"node": ">=
|
|
378
|
+
"node": ">=18"
|
|
379
|
+
}
|
|
380
|
+
},
|
|
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==",
|
|
385
|
+
"cpu": [
|
|
386
|
+
"arm64"
|
|
387
|
+
],
|
|
388
|
+
"license": "MIT",
|
|
389
|
+
"optional": true,
|
|
390
|
+
"os": [
|
|
391
|
+
"openbsd"
|
|
392
|
+
],
|
|
393
|
+
"engines": {
|
|
394
|
+
"node": ">=18"
|
|
363
395
|
}
|
|
364
396
|
},
|
|
365
397
|
"node_modules/@esbuild/openbsd-x64": {
|
|
366
|
-
"version": "0.
|
|
367
|
-
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.
|
|
368
|
-
"integrity": "sha512-
|
|
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==",
|
|
369
401
|
"cpu": [
|
|
370
402
|
"x64"
|
|
371
403
|
],
|
|
@@ -375,13 +407,29 @@
|
|
|
375
407
|
"openbsd"
|
|
376
408
|
],
|
|
377
409
|
"engines": {
|
|
378
|
-
"node": ">=
|
|
410
|
+
"node": ">=18"
|
|
411
|
+
}
|
|
412
|
+
},
|
|
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==",
|
|
417
|
+
"cpu": [
|
|
418
|
+
"arm64"
|
|
419
|
+
],
|
|
420
|
+
"license": "MIT",
|
|
421
|
+
"optional": true,
|
|
422
|
+
"os": [
|
|
423
|
+
"openharmony"
|
|
424
|
+
],
|
|
425
|
+
"engines": {
|
|
426
|
+
"node": ">=18"
|
|
379
427
|
}
|
|
380
428
|
},
|
|
381
429
|
"node_modules/@esbuild/sunos-x64": {
|
|
382
|
-
"version": "0.
|
|
383
|
-
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.
|
|
384
|
-
"integrity": "sha512-
|
|
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==",
|
|
385
433
|
"cpu": [
|
|
386
434
|
"x64"
|
|
387
435
|
],
|
|
@@ -391,13 +439,13 @@
|
|
|
391
439
|
"sunos"
|
|
392
440
|
],
|
|
393
441
|
"engines": {
|
|
394
|
-
"node": ">=
|
|
442
|
+
"node": ">=18"
|
|
395
443
|
}
|
|
396
444
|
},
|
|
397
445
|
"node_modules/@esbuild/win32-arm64": {
|
|
398
|
-
"version": "0.
|
|
399
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.
|
|
400
|
-
"integrity": "sha512-
|
|
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==",
|
|
401
449
|
"cpu": [
|
|
402
450
|
"arm64"
|
|
403
451
|
],
|
|
@@ -407,13 +455,13 @@
|
|
|
407
455
|
"win32"
|
|
408
456
|
],
|
|
409
457
|
"engines": {
|
|
410
|
-
"node": ">=
|
|
458
|
+
"node": ">=18"
|
|
411
459
|
}
|
|
412
460
|
},
|
|
413
461
|
"node_modules/@esbuild/win32-ia32": {
|
|
414
|
-
"version": "0.
|
|
415
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.
|
|
416
|
-
"integrity": "sha512-
|
|
462
|
+
"version": "0.25.12",
|
|
463
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz",
|
|
464
|
+
"integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==",
|
|
417
465
|
"cpu": [
|
|
418
466
|
"ia32"
|
|
419
467
|
],
|
|
@@ -423,13 +471,13 @@
|
|
|
423
471
|
"win32"
|
|
424
472
|
],
|
|
425
473
|
"engines": {
|
|
426
|
-
"node": ">=
|
|
474
|
+
"node": ">=18"
|
|
427
475
|
}
|
|
428
476
|
},
|
|
429
477
|
"node_modules/@esbuild/win32-x64": {
|
|
430
|
-
"version": "0.
|
|
431
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.
|
|
432
|
-
"integrity": "sha512-
|
|
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==",
|
|
433
481
|
"cpu": [
|
|
434
482
|
"x64"
|
|
435
483
|
],
|
|
@@ -439,7 +487,7 @@
|
|
|
439
487
|
"win32"
|
|
440
488
|
],
|
|
441
489
|
"engines": {
|
|
442
|
-
"node": ">=
|
|
490
|
+
"node": ">=18"
|
|
443
491
|
}
|
|
444
492
|
},
|
|
445
493
|
"node_modules/@jridgewell/gen-mapping": {
|
|
@@ -597,9 +645,6 @@
|
|
|
597
645
|
"cpu": [
|
|
598
646
|
"arm"
|
|
599
647
|
],
|
|
600
|
-
"libc": [
|
|
601
|
-
"glibc"
|
|
602
|
-
],
|
|
603
648
|
"license": "MIT",
|
|
604
649
|
"optional": true,
|
|
605
650
|
"os": [
|
|
@@ -613,9 +658,6 @@
|
|
|
613
658
|
"cpu": [
|
|
614
659
|
"arm"
|
|
615
660
|
],
|
|
616
|
-
"libc": [
|
|
617
|
-
"musl"
|
|
618
|
-
],
|
|
619
661
|
"license": "MIT",
|
|
620
662
|
"optional": true,
|
|
621
663
|
"os": [
|
|
@@ -629,9 +671,6 @@
|
|
|
629
671
|
"cpu": [
|
|
630
672
|
"arm64"
|
|
631
673
|
],
|
|
632
|
-
"libc": [
|
|
633
|
-
"glibc"
|
|
634
|
-
],
|
|
635
674
|
"license": "MIT",
|
|
636
675
|
"optional": true,
|
|
637
676
|
"os": [
|
|
@@ -645,9 +684,6 @@
|
|
|
645
684
|
"cpu": [
|
|
646
685
|
"arm64"
|
|
647
686
|
],
|
|
648
|
-
"libc": [
|
|
649
|
-
"musl"
|
|
650
|
-
],
|
|
651
687
|
"license": "MIT",
|
|
652
688
|
"optional": true,
|
|
653
689
|
"os": [
|
|
@@ -661,9 +697,6 @@
|
|
|
661
697
|
"cpu": [
|
|
662
698
|
"loong64"
|
|
663
699
|
],
|
|
664
|
-
"libc": [
|
|
665
|
-
"glibc"
|
|
666
|
-
],
|
|
667
700
|
"license": "MIT",
|
|
668
701
|
"optional": true,
|
|
669
702
|
"os": [
|
|
@@ -677,9 +710,6 @@
|
|
|
677
710
|
"cpu": [
|
|
678
711
|
"loong64"
|
|
679
712
|
],
|
|
680
|
-
"libc": [
|
|
681
|
-
"musl"
|
|
682
|
-
],
|
|
683
713
|
"license": "MIT",
|
|
684
714
|
"optional": true,
|
|
685
715
|
"os": [
|
|
@@ -693,9 +723,6 @@
|
|
|
693
723
|
"cpu": [
|
|
694
724
|
"ppc64"
|
|
695
725
|
],
|
|
696
|
-
"libc": [
|
|
697
|
-
"glibc"
|
|
698
|
-
],
|
|
699
726
|
"license": "MIT",
|
|
700
727
|
"optional": true,
|
|
701
728
|
"os": [
|
|
@@ -709,9 +736,6 @@
|
|
|
709
736
|
"cpu": [
|
|
710
737
|
"ppc64"
|
|
711
738
|
],
|
|
712
|
-
"libc": [
|
|
713
|
-
"musl"
|
|
714
|
-
],
|
|
715
739
|
"license": "MIT",
|
|
716
740
|
"optional": true,
|
|
717
741
|
"os": [
|
|
@@ -725,9 +749,6 @@
|
|
|
725
749
|
"cpu": [
|
|
726
750
|
"riscv64"
|
|
727
751
|
],
|
|
728
|
-
"libc": [
|
|
729
|
-
"glibc"
|
|
730
|
-
],
|
|
731
752
|
"license": "MIT",
|
|
732
753
|
"optional": true,
|
|
733
754
|
"os": [
|
|
@@ -741,9 +762,6 @@
|
|
|
741
762
|
"cpu": [
|
|
742
763
|
"riscv64"
|
|
743
764
|
],
|
|
744
|
-
"libc": [
|
|
745
|
-
"musl"
|
|
746
|
-
],
|
|
747
765
|
"license": "MIT",
|
|
748
766
|
"optional": true,
|
|
749
767
|
"os": [
|
|
@@ -757,9 +775,6 @@
|
|
|
757
775
|
"cpu": [
|
|
758
776
|
"s390x"
|
|
759
777
|
],
|
|
760
|
-
"libc": [
|
|
761
|
-
"glibc"
|
|
762
|
-
],
|
|
763
778
|
"license": "MIT",
|
|
764
779
|
"optional": true,
|
|
765
780
|
"os": [
|
|
@@ -773,9 +788,6 @@
|
|
|
773
788
|
"cpu": [
|
|
774
789
|
"x64"
|
|
775
790
|
],
|
|
776
|
-
"libc": [
|
|
777
|
-
"glibc"
|
|
778
|
-
],
|
|
779
791
|
"license": "MIT",
|
|
780
792
|
"optional": true,
|
|
781
793
|
"os": [
|
|
@@ -789,9 +801,6 @@
|
|
|
789
801
|
"cpu": [
|
|
790
802
|
"x64"
|
|
791
803
|
],
|
|
792
|
-
"libc": [
|
|
793
|
-
"musl"
|
|
794
|
-
],
|
|
795
804
|
"license": "MIT",
|
|
796
805
|
"optional": true,
|
|
797
806
|
"os": [
|
|
@@ -1255,41 +1264,44 @@
|
|
|
1255
1264
|
}
|
|
1256
1265
|
},
|
|
1257
1266
|
"node_modules/esbuild": {
|
|
1258
|
-
"version": "0.
|
|
1259
|
-
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.
|
|
1260
|
-
"integrity": "sha512-
|
|
1267
|
+
"version": "0.25.12",
|
|
1268
|
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.12.tgz",
|
|
1269
|
+
"integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==",
|
|
1261
1270
|
"hasInstallScript": true,
|
|
1262
1271
|
"license": "MIT",
|
|
1263
1272
|
"bin": {
|
|
1264
1273
|
"esbuild": "bin/esbuild"
|
|
1265
1274
|
},
|
|
1266
1275
|
"engines": {
|
|
1267
|
-
"node": ">=
|
|
1276
|
+
"node": ">=18"
|
|
1268
1277
|
},
|
|
1269
1278
|
"optionalDependencies": {
|
|
1270
|
-
"@esbuild/aix-ppc64": "0.
|
|
1271
|
-
"@esbuild/android-arm": "0.
|
|
1272
|
-
"@esbuild/android-arm64": "0.
|
|
1273
|
-
"@esbuild/android-x64": "0.
|
|
1274
|
-
"@esbuild/darwin-arm64": "0.
|
|
1275
|
-
"@esbuild/darwin-x64": "0.
|
|
1276
|
-
"@esbuild/freebsd-arm64": "0.
|
|
1277
|
-
"@esbuild/freebsd-x64": "0.
|
|
1278
|
-
"@esbuild/linux-arm": "0.
|
|
1279
|
-
"@esbuild/linux-arm64": "0.
|
|
1280
|
-
"@esbuild/linux-ia32": "0.
|
|
1281
|
-
"@esbuild/linux-loong64": "0.
|
|
1282
|
-
"@esbuild/linux-mips64el": "0.
|
|
1283
|
-
"@esbuild/linux-ppc64": "0.
|
|
1284
|
-
"@esbuild/linux-riscv64": "0.
|
|
1285
|
-
"@esbuild/linux-s390x": "0.
|
|
1286
|
-
"@esbuild/linux-x64": "0.
|
|
1287
|
-
"@esbuild/netbsd-
|
|
1288
|
-
"@esbuild/
|
|
1289
|
-
"@esbuild/
|
|
1290
|
-
"@esbuild/
|
|
1291
|
-
"@esbuild/
|
|
1292
|
-
"@esbuild/
|
|
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"
|
|
1293
1305
|
}
|
|
1294
1306
|
},
|
|
1295
1307
|
"node_modules/escalade": {
|
|
@@ -2134,20 +2146,23 @@
|
|
|
2134
2146
|
"license": "MIT"
|
|
2135
2147
|
},
|
|
2136
2148
|
"node_modules/vite": {
|
|
2137
|
-
"version": "
|
|
2138
|
-
"resolved": "https://registry.npmjs.org/vite/-/vite-
|
|
2139
|
-
"integrity": "sha512-
|
|
2149
|
+
"version": "6.4.3",
|
|
2150
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-6.4.3.tgz",
|
|
2151
|
+
"integrity": "sha512-NTKlcQjlAK7MlQoyb6LgaqHc8sso/pVyUJYWMws3jg21uTJw/LddqIFPcPqP6PzpgbIcZyKI85sFE4HBrQDA8A==",
|
|
2140
2152
|
"license": "MIT",
|
|
2141
2153
|
"dependencies": {
|
|
2142
|
-
"esbuild": "^0.
|
|
2143
|
-
"
|
|
2144
|
-
"
|
|
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"
|
|
2145
2160
|
},
|
|
2146
2161
|
"bin": {
|
|
2147
2162
|
"vite": "bin/vite.js"
|
|
2148
2163
|
},
|
|
2149
2164
|
"engines": {
|
|
2150
|
-
"node": "^18.0.0 ||
|
|
2165
|
+
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
|
|
2151
2166
|
},
|
|
2152
2167
|
"funding": {
|
|
2153
2168
|
"url": "https://github.com/vitejs/vite?sponsor=1"
|
|
@@ -2156,19 +2171,25 @@
|
|
|
2156
2171
|
"fsevents": "~2.3.3"
|
|
2157
2172
|
},
|
|
2158
2173
|
"peerDependencies": {
|
|
2159
|
-
"@types/node": "^18.0.0 ||
|
|
2174
|
+
"@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
|
|
2175
|
+
"jiti": ">=1.21.0",
|
|
2160
2176
|
"less": "*",
|
|
2161
2177
|
"lightningcss": "^1.21.0",
|
|
2162
2178
|
"sass": "*",
|
|
2163
2179
|
"sass-embedded": "*",
|
|
2164
2180
|
"stylus": "*",
|
|
2165
2181
|
"sugarss": "*",
|
|
2166
|
-
"terser": "^5.
|
|
2182
|
+
"terser": "^5.16.0",
|
|
2183
|
+
"tsx": "^4.8.1",
|
|
2184
|
+
"yaml": "^2.4.2"
|
|
2167
2185
|
},
|
|
2168
2186
|
"peerDependenciesMeta": {
|
|
2169
2187
|
"@types/node": {
|
|
2170
2188
|
"optional": true
|
|
2171
2189
|
},
|
|
2190
|
+
"jiti": {
|
|
2191
|
+
"optional": true
|
|
2192
|
+
},
|
|
2172
2193
|
"less": {
|
|
2173
2194
|
"optional": true
|
|
2174
2195
|
},
|
|
@@ -2189,9 +2210,44 @@
|
|
|
2189
2210
|
},
|
|
2190
2211
|
"terser": {
|
|
2191
2212
|
"optional": true
|
|
2213
|
+
},
|
|
2214
|
+
"tsx": {
|
|
2215
|
+
"optional": true
|
|
2216
|
+
},
|
|
2217
|
+
"yaml": {
|
|
2218
|
+
"optional": true
|
|
2219
|
+
}
|
|
2220
|
+
}
|
|
2221
|
+
},
|
|
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",
|
|
2227
|
+
"engines": {
|
|
2228
|
+
"node": ">=12.0.0"
|
|
2229
|
+
},
|
|
2230
|
+
"peerDependencies": {
|
|
2231
|
+
"picomatch": "^3 || ^4"
|
|
2232
|
+
},
|
|
2233
|
+
"peerDependenciesMeta": {
|
|
2234
|
+
"picomatch": {
|
|
2235
|
+
"optional": true
|
|
2192
2236
|
}
|
|
2193
2237
|
}
|
|
2194
2238
|
},
|
|
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",
|
|
2244
|
+
"engines": {
|
|
2245
|
+
"node": ">=12"
|
|
2246
|
+
},
|
|
2247
|
+
"funding": {
|
|
2248
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
2249
|
+
}
|
|
2250
|
+
},
|
|
2195
2251
|
"node_modules/vue": {
|
|
2196
2252
|
"version": "3.5.40",
|
|
2197
2253
|
"resolved": "https://registry.npmjs.org/vue/-/vue-3.5.40.tgz",
|