@meshxdata/fops 0.1.52 → 0.1.53
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/CHANGELOG.md +372 -0
- package/package.json +2 -6
- package/src/agent/agent.js +6 -0
- package/src/commands/setup.js +34 -0
- package/src/fleet-registry.js +38 -2
- package/src/plugins/__test-fixtures__/fake-plugin.js +2 -0
- package/src/plugins/__test-fixtures__/no-register-plugin.js +2 -0
- package/src/plugins/__test-fixtures__/with-register/index.js +2 -0
- package/src/plugins/__test-fixtures__/without-register/index.js +2 -0
- package/src/plugins/api.js +4 -0
- package/src/plugins/builtins/docker-compose.js +59 -0
- package/src/plugins/bundled/fops-plugin-azure/index.js +4 -0
- package/src/plugins/bundled/fops-plugin-azure/lib/azure-aks-core.js +44 -53
- package/src/plugins/bundled/fops-plugin-azure/lib/azure-aks-storage.js +2 -2
- package/src/plugins/bundled/fops-plugin-azure/lib/azure-cost.js +52 -22
- package/src/plugins/bundled/fops-plugin-azure/lib/azure-helpers.js +6 -2
- package/src/plugins/bundled/fops-plugin-azure/lib/azure-ops.js +113 -7
- package/src/plugins/bundled/fops-plugin-azure/lib/azure-provision-init.js +13 -4
- package/src/plugins/bundled/fops-plugin-azure/lib/azure-provision.js +91 -14
- package/src/plugins/bundled/fops-plugin-azure/lib/azure-service.js +507 -0
- package/src/plugins/bundled/fops-plugin-azure/lib/azure-sync.js +146 -7
- package/src/plugins/bundled/fops-plugin-azure/lib/azure.js +1 -1
- package/src/plugins/bundled/fops-plugin-azure/lib/commands/vm-cmds.js +61 -0
- package/src/plugins/bundled/fops-plugin-cloud/api.js +712 -0
- package/src/plugins/bundled/fops-plugin-cloud/fops.plugin.json +6 -0
- package/src/plugins/bundled/fops-plugin-cloud/index.js +208 -0
- package/src/plugins/bundled/fops-plugin-cloud/lib/azure-provider.js +81 -0
- package/src/plugins/bundled/fops-plugin-cloud/lib/provider.js +50 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/dist/assets/favicon-C49brna2.svg +15 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/dist/assets/index-CVqQ_kKW.js +65 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/dist/assets/index-DZetahP3.css +1 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/dist/index.html +28 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/index.html +27 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/package-lock.json +2634 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/package.json +29 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/postcss.config.cjs +5 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/src/App.jsx +32 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/src/api/client.js +114 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/src/api/queries.js +111 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/src/components/LogPanel.jsx +162 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/src/components/ThemeToggle.jsx +46 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/src/css/additional-styles/utility-patterns.css +147 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/src/css/style.css +138 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/src/favicon.svg +15 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/src/lib/utils.ts +19 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/src/main.jsx +25 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/src/pages/Audit.jsx +164 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/src/pages/Costs.jsx +305 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/src/pages/CreateResource.jsx +285 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/src/pages/Fleet.jsx +307 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/src/pages/Resources.jsx +229 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/src/partials/Header.jsx +132 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/src/partials/Sidebar.jsx +174 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/src/partials/SidebarLinkGroup.jsx +21 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/src/utils/AuthContext.jsx +170 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/src/utils/Info.jsx +49 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/src/utils/ThemeContext.jsx +37 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/src/utils/Transition.jsx +116 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/src/utils/Utils.js +63 -0
- package/src/plugins/bundled/fops-plugin-cloud/ui/vite.config.js +23 -0
- package/src/plugins/bundled/fops-plugin-foundation/test-helpers.js +65 -0
- package/src/plugins/loader.js +34 -1
- package/src/plugins/registry.js +15 -0
- package/src/plugins/schemas.js +17 -0
- package/src/project.js +1 -1
- package/src/serve.js +196 -2
- package/src/shell.js +21 -1
- package/src/web/admin.html.js +236 -0
- package/src/web/api.js +73 -0
- package/src/web/dist/assets/index-BphVaAUd.css +1 -0
- package/src/web/dist/assets/index-CSckLzuG.js +129 -0
- package/src/web/dist/index.html +2 -2
- package/src/web/frontend/index.html +16 -0
- package/src/web/frontend/src/App.jsx +445 -0
- package/src/web/frontend/src/components/ChatView.jsx +910 -0
- package/src/web/frontend/src/components/InputBox.jsx +523 -0
- package/src/web/frontend/src/components/Sidebar.jsx +410 -0
- package/src/web/frontend/src/components/StatusBar.jsx +37 -0
- package/src/web/frontend/src/components/TabBar.jsx +87 -0
- package/src/web/frontend/src/hooks/useWebSocket.js +412 -0
- package/src/web/frontend/src/index.css +78 -0
- package/src/web/frontend/src/main.jsx +6 -0
- package/src/web/frontend/vite.config.js +21 -0
- package/src/web/server.js +64 -1
- package/src/web/dist/assets/index-NXC8Hvnp.css +0 -1
- package/src/web/dist/assets/index-QH1N4ejK.js +0 -112
|
@@ -0,0 +1,2634 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@meshxdata/fops-cloud-ui",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "@meshxdata/fops-cloud-ui",
|
|
9
|
+
"version": "0.1.0",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@auth0/auth0-react": "^2.16.0",
|
|
12
|
+
"@tanstack/react-query": "^5.60.0",
|
|
13
|
+
"clsx": "^2.1.1",
|
|
14
|
+
"lucide-react": "^0.460.0",
|
|
15
|
+
"react": "^19.0.0",
|
|
16
|
+
"react-dom": "^19.0.0",
|
|
17
|
+
"react-router-dom": "^7.1.0",
|
|
18
|
+
"tailwind-merge": "^2.5.5"
|
|
19
|
+
},
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@tailwindcss/forms": "^0.5.7",
|
|
22
|
+
"@tailwindcss/postcss": "^4.0.0",
|
|
23
|
+
"@vitejs/plugin-react": "^4.3.0",
|
|
24
|
+
"postcss": "^8.4.32",
|
|
25
|
+
"tailwindcss": "^4.0.0",
|
|
26
|
+
"vite": "^6.0.0"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"node_modules/@alloc/quick-lru": {
|
|
30
|
+
"version": "5.2.0",
|
|
31
|
+
"resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
|
|
32
|
+
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
|
|
33
|
+
"dev": true,
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"engines": {
|
|
36
|
+
"node": ">=10"
|
|
37
|
+
},
|
|
38
|
+
"funding": {
|
|
39
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"node_modules/@auth0/auth0-auth-js": {
|
|
43
|
+
"version": "1.5.0",
|
|
44
|
+
"resolved": "https://registry.npmjs.org/@auth0/auth0-auth-js/-/auth0-auth-js-1.5.0.tgz",
|
|
45
|
+
"integrity": "sha512-shahG7sRw6VxduRvnNcmbgL8V42z+kNR9LDih9ofY4eM8ygt07RUh58x7S1M80ENx9wcMqYUsJWMaVudgQHyjQ==",
|
|
46
|
+
"license": "MIT",
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"jose": "^6.0.8",
|
|
49
|
+
"openid-client": "^6.8.0"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"node_modules/@auth0/auth0-react": {
|
|
53
|
+
"version": "2.16.0",
|
|
54
|
+
"resolved": "https://registry.npmjs.org/@auth0/auth0-react/-/auth0-react-2.16.0.tgz",
|
|
55
|
+
"integrity": "sha512-vQJdfkcNsPsZqhQ2KLRX+XhnC2FtbNdYGLkIRcoVaQMvOZeTOnsU45uu5HoNw61Am6j8vvf6YaUrXBlFOnJlZA==",
|
|
56
|
+
"license": "MIT",
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"@auth0/auth0-spa-js": "^2.18.0"
|
|
59
|
+
},
|
|
60
|
+
"peerDependencies": {
|
|
61
|
+
"react": "^16.11.0 || ^17 || ^18 || ~19.0.1 || ~19.1.2 || ^19.2.1",
|
|
62
|
+
"react-dom": "^16.11.0 || ^17 || ^18 || ~19.0.1 || ~19.1.2 || ^19.2.1"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"node_modules/@auth0/auth0-spa-js": {
|
|
66
|
+
"version": "2.18.0",
|
|
67
|
+
"resolved": "https://registry.npmjs.org/@auth0/auth0-spa-js/-/auth0-spa-js-2.18.0.tgz",
|
|
68
|
+
"integrity": "sha512-2oKnn6cD4zQUWDfZ4bWWmLxEbOnxjMYakMFOJCJ5Z5OobVeOBtUTVkYKB8LaDksQrK3F41IRzcP97ffsqEUYEA==",
|
|
69
|
+
"license": "MIT",
|
|
70
|
+
"dependencies": {
|
|
71
|
+
"@auth0/auth0-auth-js": "1.5.0",
|
|
72
|
+
"browser-tabs-lock": "1.3.0",
|
|
73
|
+
"dpop": "2.1.1",
|
|
74
|
+
"es-cookie": "1.3.2"
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"node_modules/@babel/code-frame": {
|
|
78
|
+
"version": "7.29.0",
|
|
79
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
|
|
80
|
+
"integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
|
|
81
|
+
"dev": true,
|
|
82
|
+
"license": "MIT",
|
|
83
|
+
"dependencies": {
|
|
84
|
+
"@babel/helper-validator-identifier": "^7.28.5",
|
|
85
|
+
"js-tokens": "^4.0.0",
|
|
86
|
+
"picocolors": "^1.1.1"
|
|
87
|
+
},
|
|
88
|
+
"engines": {
|
|
89
|
+
"node": ">=6.9.0"
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
"node_modules/@babel/compat-data": {
|
|
93
|
+
"version": "7.29.0",
|
|
94
|
+
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz",
|
|
95
|
+
"integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==",
|
|
96
|
+
"dev": true,
|
|
97
|
+
"license": "MIT",
|
|
98
|
+
"engines": {
|
|
99
|
+
"node": ">=6.9.0"
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
"node_modules/@babel/core": {
|
|
103
|
+
"version": "7.29.0",
|
|
104
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz",
|
|
105
|
+
"integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
|
|
106
|
+
"dev": true,
|
|
107
|
+
"license": "MIT",
|
|
108
|
+
"dependencies": {
|
|
109
|
+
"@babel/code-frame": "^7.29.0",
|
|
110
|
+
"@babel/generator": "^7.29.0",
|
|
111
|
+
"@babel/helper-compilation-targets": "^7.28.6",
|
|
112
|
+
"@babel/helper-module-transforms": "^7.28.6",
|
|
113
|
+
"@babel/helpers": "^7.28.6",
|
|
114
|
+
"@babel/parser": "^7.29.0",
|
|
115
|
+
"@babel/template": "^7.28.6",
|
|
116
|
+
"@babel/traverse": "^7.29.0",
|
|
117
|
+
"@babel/types": "^7.29.0",
|
|
118
|
+
"@jridgewell/remapping": "^2.3.5",
|
|
119
|
+
"convert-source-map": "^2.0.0",
|
|
120
|
+
"debug": "^4.1.0",
|
|
121
|
+
"gensync": "^1.0.0-beta.2",
|
|
122
|
+
"json5": "^2.2.3",
|
|
123
|
+
"semver": "^6.3.1"
|
|
124
|
+
},
|
|
125
|
+
"engines": {
|
|
126
|
+
"node": ">=6.9.0"
|
|
127
|
+
},
|
|
128
|
+
"funding": {
|
|
129
|
+
"type": "opencollective",
|
|
130
|
+
"url": "https://opencollective.com/babel"
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
"node_modules/@babel/generator": {
|
|
134
|
+
"version": "7.29.1",
|
|
135
|
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz",
|
|
136
|
+
"integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
|
|
137
|
+
"dev": true,
|
|
138
|
+
"license": "MIT",
|
|
139
|
+
"dependencies": {
|
|
140
|
+
"@babel/parser": "^7.29.0",
|
|
141
|
+
"@babel/types": "^7.29.0",
|
|
142
|
+
"@jridgewell/gen-mapping": "^0.3.12",
|
|
143
|
+
"@jridgewell/trace-mapping": "^0.3.28",
|
|
144
|
+
"jsesc": "^3.0.2"
|
|
145
|
+
},
|
|
146
|
+
"engines": {
|
|
147
|
+
"node": ">=6.9.0"
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
"node_modules/@babel/helper-compilation-targets": {
|
|
151
|
+
"version": "7.28.6",
|
|
152
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz",
|
|
153
|
+
"integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==",
|
|
154
|
+
"dev": true,
|
|
155
|
+
"license": "MIT",
|
|
156
|
+
"dependencies": {
|
|
157
|
+
"@babel/compat-data": "^7.28.6",
|
|
158
|
+
"@babel/helper-validator-option": "^7.27.1",
|
|
159
|
+
"browserslist": "^4.24.0",
|
|
160
|
+
"lru-cache": "^5.1.1",
|
|
161
|
+
"semver": "^6.3.1"
|
|
162
|
+
},
|
|
163
|
+
"engines": {
|
|
164
|
+
"node": ">=6.9.0"
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
"node_modules/@babel/helper-globals": {
|
|
168
|
+
"version": "7.28.0",
|
|
169
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
|
|
170
|
+
"integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
|
|
171
|
+
"dev": true,
|
|
172
|
+
"license": "MIT",
|
|
173
|
+
"engines": {
|
|
174
|
+
"node": ">=6.9.0"
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
"node_modules/@babel/helper-module-imports": {
|
|
178
|
+
"version": "7.28.6",
|
|
179
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz",
|
|
180
|
+
"integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==",
|
|
181
|
+
"dev": true,
|
|
182
|
+
"license": "MIT",
|
|
183
|
+
"dependencies": {
|
|
184
|
+
"@babel/traverse": "^7.28.6",
|
|
185
|
+
"@babel/types": "^7.28.6"
|
|
186
|
+
},
|
|
187
|
+
"engines": {
|
|
188
|
+
"node": ">=6.9.0"
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
"node_modules/@babel/helper-module-transforms": {
|
|
192
|
+
"version": "7.28.6",
|
|
193
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz",
|
|
194
|
+
"integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==",
|
|
195
|
+
"dev": true,
|
|
196
|
+
"license": "MIT",
|
|
197
|
+
"dependencies": {
|
|
198
|
+
"@babel/helper-module-imports": "^7.28.6",
|
|
199
|
+
"@babel/helper-validator-identifier": "^7.28.5",
|
|
200
|
+
"@babel/traverse": "^7.28.6"
|
|
201
|
+
},
|
|
202
|
+
"engines": {
|
|
203
|
+
"node": ">=6.9.0"
|
|
204
|
+
},
|
|
205
|
+
"peerDependencies": {
|
|
206
|
+
"@babel/core": "^7.0.0"
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
"node_modules/@babel/helper-plugin-utils": {
|
|
210
|
+
"version": "7.28.6",
|
|
211
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz",
|
|
212
|
+
"integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==",
|
|
213
|
+
"dev": true,
|
|
214
|
+
"license": "MIT",
|
|
215
|
+
"engines": {
|
|
216
|
+
"node": ">=6.9.0"
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
"node_modules/@babel/helper-string-parser": {
|
|
220
|
+
"version": "7.27.1",
|
|
221
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
|
|
222
|
+
"integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
|
|
223
|
+
"dev": true,
|
|
224
|
+
"license": "MIT",
|
|
225
|
+
"engines": {
|
|
226
|
+
"node": ">=6.9.0"
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
"node_modules/@babel/helper-validator-identifier": {
|
|
230
|
+
"version": "7.28.5",
|
|
231
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
|
|
232
|
+
"integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
|
|
233
|
+
"dev": true,
|
|
234
|
+
"license": "MIT",
|
|
235
|
+
"engines": {
|
|
236
|
+
"node": ">=6.9.0"
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
"node_modules/@babel/helper-validator-option": {
|
|
240
|
+
"version": "7.27.1",
|
|
241
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
|
|
242
|
+
"integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
|
|
243
|
+
"dev": true,
|
|
244
|
+
"license": "MIT",
|
|
245
|
+
"engines": {
|
|
246
|
+
"node": ">=6.9.0"
|
|
247
|
+
}
|
|
248
|
+
},
|
|
249
|
+
"node_modules/@babel/helpers": {
|
|
250
|
+
"version": "7.29.2",
|
|
251
|
+
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.2.tgz",
|
|
252
|
+
"integrity": "sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==",
|
|
253
|
+
"dev": true,
|
|
254
|
+
"license": "MIT",
|
|
255
|
+
"dependencies": {
|
|
256
|
+
"@babel/template": "^7.28.6",
|
|
257
|
+
"@babel/types": "^7.29.0"
|
|
258
|
+
},
|
|
259
|
+
"engines": {
|
|
260
|
+
"node": ">=6.9.0"
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
"node_modules/@babel/parser": {
|
|
264
|
+
"version": "7.29.2",
|
|
265
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.2.tgz",
|
|
266
|
+
"integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==",
|
|
267
|
+
"dev": true,
|
|
268
|
+
"license": "MIT",
|
|
269
|
+
"dependencies": {
|
|
270
|
+
"@babel/types": "^7.29.0"
|
|
271
|
+
},
|
|
272
|
+
"bin": {
|
|
273
|
+
"parser": "bin/babel-parser.js"
|
|
274
|
+
},
|
|
275
|
+
"engines": {
|
|
276
|
+
"node": ">=6.0.0"
|
|
277
|
+
}
|
|
278
|
+
},
|
|
279
|
+
"node_modules/@babel/plugin-transform-react-jsx-self": {
|
|
280
|
+
"version": "7.27.1",
|
|
281
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz",
|
|
282
|
+
"integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==",
|
|
283
|
+
"dev": true,
|
|
284
|
+
"license": "MIT",
|
|
285
|
+
"dependencies": {
|
|
286
|
+
"@babel/helper-plugin-utils": "^7.27.1"
|
|
287
|
+
},
|
|
288
|
+
"engines": {
|
|
289
|
+
"node": ">=6.9.0"
|
|
290
|
+
},
|
|
291
|
+
"peerDependencies": {
|
|
292
|
+
"@babel/core": "^7.0.0-0"
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
"node_modules/@babel/plugin-transform-react-jsx-source": {
|
|
296
|
+
"version": "7.27.1",
|
|
297
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz",
|
|
298
|
+
"integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==",
|
|
299
|
+
"dev": true,
|
|
300
|
+
"license": "MIT",
|
|
301
|
+
"dependencies": {
|
|
302
|
+
"@babel/helper-plugin-utils": "^7.27.1"
|
|
303
|
+
},
|
|
304
|
+
"engines": {
|
|
305
|
+
"node": ">=6.9.0"
|
|
306
|
+
},
|
|
307
|
+
"peerDependencies": {
|
|
308
|
+
"@babel/core": "^7.0.0-0"
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
"node_modules/@babel/template": {
|
|
312
|
+
"version": "7.28.6",
|
|
313
|
+
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz",
|
|
314
|
+
"integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==",
|
|
315
|
+
"dev": true,
|
|
316
|
+
"license": "MIT",
|
|
317
|
+
"dependencies": {
|
|
318
|
+
"@babel/code-frame": "^7.28.6",
|
|
319
|
+
"@babel/parser": "^7.28.6",
|
|
320
|
+
"@babel/types": "^7.28.6"
|
|
321
|
+
},
|
|
322
|
+
"engines": {
|
|
323
|
+
"node": ">=6.9.0"
|
|
324
|
+
}
|
|
325
|
+
},
|
|
326
|
+
"node_modules/@babel/traverse": {
|
|
327
|
+
"version": "7.29.0",
|
|
328
|
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz",
|
|
329
|
+
"integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
|
|
330
|
+
"dev": true,
|
|
331
|
+
"license": "MIT",
|
|
332
|
+
"dependencies": {
|
|
333
|
+
"@babel/code-frame": "^7.29.0",
|
|
334
|
+
"@babel/generator": "^7.29.0",
|
|
335
|
+
"@babel/helper-globals": "^7.28.0",
|
|
336
|
+
"@babel/parser": "^7.29.0",
|
|
337
|
+
"@babel/template": "^7.28.6",
|
|
338
|
+
"@babel/types": "^7.29.0",
|
|
339
|
+
"debug": "^4.3.1"
|
|
340
|
+
},
|
|
341
|
+
"engines": {
|
|
342
|
+
"node": ">=6.9.0"
|
|
343
|
+
}
|
|
344
|
+
},
|
|
345
|
+
"node_modules/@babel/types": {
|
|
346
|
+
"version": "7.29.0",
|
|
347
|
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
|
|
348
|
+
"integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
|
|
349
|
+
"dev": true,
|
|
350
|
+
"license": "MIT",
|
|
351
|
+
"dependencies": {
|
|
352
|
+
"@babel/helper-string-parser": "^7.27.1",
|
|
353
|
+
"@babel/helper-validator-identifier": "^7.28.5"
|
|
354
|
+
},
|
|
355
|
+
"engines": {
|
|
356
|
+
"node": ">=6.9.0"
|
|
357
|
+
}
|
|
358
|
+
},
|
|
359
|
+
"node_modules/@esbuild/aix-ppc64": {
|
|
360
|
+
"version": "0.25.12",
|
|
361
|
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz",
|
|
362
|
+
"integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==",
|
|
363
|
+
"cpu": [
|
|
364
|
+
"ppc64"
|
|
365
|
+
],
|
|
366
|
+
"dev": true,
|
|
367
|
+
"license": "MIT",
|
|
368
|
+
"optional": true,
|
|
369
|
+
"os": [
|
|
370
|
+
"aix"
|
|
371
|
+
],
|
|
372
|
+
"engines": {
|
|
373
|
+
"node": ">=18"
|
|
374
|
+
}
|
|
375
|
+
},
|
|
376
|
+
"node_modules/@esbuild/android-arm": {
|
|
377
|
+
"version": "0.25.12",
|
|
378
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.12.tgz",
|
|
379
|
+
"integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==",
|
|
380
|
+
"cpu": [
|
|
381
|
+
"arm"
|
|
382
|
+
],
|
|
383
|
+
"dev": true,
|
|
384
|
+
"license": "MIT",
|
|
385
|
+
"optional": true,
|
|
386
|
+
"os": [
|
|
387
|
+
"android"
|
|
388
|
+
],
|
|
389
|
+
"engines": {
|
|
390
|
+
"node": ">=18"
|
|
391
|
+
}
|
|
392
|
+
},
|
|
393
|
+
"node_modules/@esbuild/android-arm64": {
|
|
394
|
+
"version": "0.25.12",
|
|
395
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz",
|
|
396
|
+
"integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==",
|
|
397
|
+
"cpu": [
|
|
398
|
+
"arm64"
|
|
399
|
+
],
|
|
400
|
+
"dev": true,
|
|
401
|
+
"license": "MIT",
|
|
402
|
+
"optional": true,
|
|
403
|
+
"os": [
|
|
404
|
+
"android"
|
|
405
|
+
],
|
|
406
|
+
"engines": {
|
|
407
|
+
"node": ">=18"
|
|
408
|
+
}
|
|
409
|
+
},
|
|
410
|
+
"node_modules/@esbuild/android-x64": {
|
|
411
|
+
"version": "0.25.12",
|
|
412
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.12.tgz",
|
|
413
|
+
"integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==",
|
|
414
|
+
"cpu": [
|
|
415
|
+
"x64"
|
|
416
|
+
],
|
|
417
|
+
"dev": true,
|
|
418
|
+
"license": "MIT",
|
|
419
|
+
"optional": true,
|
|
420
|
+
"os": [
|
|
421
|
+
"android"
|
|
422
|
+
],
|
|
423
|
+
"engines": {
|
|
424
|
+
"node": ">=18"
|
|
425
|
+
}
|
|
426
|
+
},
|
|
427
|
+
"node_modules/@esbuild/darwin-arm64": {
|
|
428
|
+
"version": "0.25.12",
|
|
429
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz",
|
|
430
|
+
"integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==",
|
|
431
|
+
"cpu": [
|
|
432
|
+
"arm64"
|
|
433
|
+
],
|
|
434
|
+
"dev": true,
|
|
435
|
+
"license": "MIT",
|
|
436
|
+
"optional": true,
|
|
437
|
+
"os": [
|
|
438
|
+
"darwin"
|
|
439
|
+
],
|
|
440
|
+
"engines": {
|
|
441
|
+
"node": ">=18"
|
|
442
|
+
}
|
|
443
|
+
},
|
|
444
|
+
"node_modules/@esbuild/darwin-x64": {
|
|
445
|
+
"version": "0.25.12",
|
|
446
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz",
|
|
447
|
+
"integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==",
|
|
448
|
+
"cpu": [
|
|
449
|
+
"x64"
|
|
450
|
+
],
|
|
451
|
+
"dev": true,
|
|
452
|
+
"license": "MIT",
|
|
453
|
+
"optional": true,
|
|
454
|
+
"os": [
|
|
455
|
+
"darwin"
|
|
456
|
+
],
|
|
457
|
+
"engines": {
|
|
458
|
+
"node": ">=18"
|
|
459
|
+
}
|
|
460
|
+
},
|
|
461
|
+
"node_modules/@esbuild/freebsd-arm64": {
|
|
462
|
+
"version": "0.25.12",
|
|
463
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz",
|
|
464
|
+
"integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==",
|
|
465
|
+
"cpu": [
|
|
466
|
+
"arm64"
|
|
467
|
+
],
|
|
468
|
+
"dev": true,
|
|
469
|
+
"license": "MIT",
|
|
470
|
+
"optional": true,
|
|
471
|
+
"os": [
|
|
472
|
+
"freebsd"
|
|
473
|
+
],
|
|
474
|
+
"engines": {
|
|
475
|
+
"node": ">=18"
|
|
476
|
+
}
|
|
477
|
+
},
|
|
478
|
+
"node_modules/@esbuild/freebsd-x64": {
|
|
479
|
+
"version": "0.25.12",
|
|
480
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz",
|
|
481
|
+
"integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==",
|
|
482
|
+
"cpu": [
|
|
483
|
+
"x64"
|
|
484
|
+
],
|
|
485
|
+
"dev": true,
|
|
486
|
+
"license": "MIT",
|
|
487
|
+
"optional": true,
|
|
488
|
+
"os": [
|
|
489
|
+
"freebsd"
|
|
490
|
+
],
|
|
491
|
+
"engines": {
|
|
492
|
+
"node": ">=18"
|
|
493
|
+
}
|
|
494
|
+
},
|
|
495
|
+
"node_modules/@esbuild/linux-arm": {
|
|
496
|
+
"version": "0.25.12",
|
|
497
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz",
|
|
498
|
+
"integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==",
|
|
499
|
+
"cpu": [
|
|
500
|
+
"arm"
|
|
501
|
+
],
|
|
502
|
+
"dev": true,
|
|
503
|
+
"license": "MIT",
|
|
504
|
+
"optional": true,
|
|
505
|
+
"os": [
|
|
506
|
+
"linux"
|
|
507
|
+
],
|
|
508
|
+
"engines": {
|
|
509
|
+
"node": ">=18"
|
|
510
|
+
}
|
|
511
|
+
},
|
|
512
|
+
"node_modules/@esbuild/linux-arm64": {
|
|
513
|
+
"version": "0.25.12",
|
|
514
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz",
|
|
515
|
+
"integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==",
|
|
516
|
+
"cpu": [
|
|
517
|
+
"arm64"
|
|
518
|
+
],
|
|
519
|
+
"dev": true,
|
|
520
|
+
"license": "MIT",
|
|
521
|
+
"optional": true,
|
|
522
|
+
"os": [
|
|
523
|
+
"linux"
|
|
524
|
+
],
|
|
525
|
+
"engines": {
|
|
526
|
+
"node": ">=18"
|
|
527
|
+
}
|
|
528
|
+
},
|
|
529
|
+
"node_modules/@esbuild/linux-ia32": {
|
|
530
|
+
"version": "0.25.12",
|
|
531
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz",
|
|
532
|
+
"integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==",
|
|
533
|
+
"cpu": [
|
|
534
|
+
"ia32"
|
|
535
|
+
],
|
|
536
|
+
"dev": true,
|
|
537
|
+
"license": "MIT",
|
|
538
|
+
"optional": true,
|
|
539
|
+
"os": [
|
|
540
|
+
"linux"
|
|
541
|
+
],
|
|
542
|
+
"engines": {
|
|
543
|
+
"node": ">=18"
|
|
544
|
+
}
|
|
545
|
+
},
|
|
546
|
+
"node_modules/@esbuild/linux-loong64": {
|
|
547
|
+
"version": "0.25.12",
|
|
548
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz",
|
|
549
|
+
"integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==",
|
|
550
|
+
"cpu": [
|
|
551
|
+
"loong64"
|
|
552
|
+
],
|
|
553
|
+
"dev": true,
|
|
554
|
+
"license": "MIT",
|
|
555
|
+
"optional": true,
|
|
556
|
+
"os": [
|
|
557
|
+
"linux"
|
|
558
|
+
],
|
|
559
|
+
"engines": {
|
|
560
|
+
"node": ">=18"
|
|
561
|
+
}
|
|
562
|
+
},
|
|
563
|
+
"node_modules/@esbuild/linux-mips64el": {
|
|
564
|
+
"version": "0.25.12",
|
|
565
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz",
|
|
566
|
+
"integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==",
|
|
567
|
+
"cpu": [
|
|
568
|
+
"mips64el"
|
|
569
|
+
],
|
|
570
|
+
"dev": true,
|
|
571
|
+
"license": "MIT",
|
|
572
|
+
"optional": true,
|
|
573
|
+
"os": [
|
|
574
|
+
"linux"
|
|
575
|
+
],
|
|
576
|
+
"engines": {
|
|
577
|
+
"node": ">=18"
|
|
578
|
+
}
|
|
579
|
+
},
|
|
580
|
+
"node_modules/@esbuild/linux-ppc64": {
|
|
581
|
+
"version": "0.25.12",
|
|
582
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz",
|
|
583
|
+
"integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==",
|
|
584
|
+
"cpu": [
|
|
585
|
+
"ppc64"
|
|
586
|
+
],
|
|
587
|
+
"dev": true,
|
|
588
|
+
"license": "MIT",
|
|
589
|
+
"optional": true,
|
|
590
|
+
"os": [
|
|
591
|
+
"linux"
|
|
592
|
+
],
|
|
593
|
+
"engines": {
|
|
594
|
+
"node": ">=18"
|
|
595
|
+
}
|
|
596
|
+
},
|
|
597
|
+
"node_modules/@esbuild/linux-riscv64": {
|
|
598
|
+
"version": "0.25.12",
|
|
599
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz",
|
|
600
|
+
"integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==",
|
|
601
|
+
"cpu": [
|
|
602
|
+
"riscv64"
|
|
603
|
+
],
|
|
604
|
+
"dev": true,
|
|
605
|
+
"license": "MIT",
|
|
606
|
+
"optional": true,
|
|
607
|
+
"os": [
|
|
608
|
+
"linux"
|
|
609
|
+
],
|
|
610
|
+
"engines": {
|
|
611
|
+
"node": ">=18"
|
|
612
|
+
}
|
|
613
|
+
},
|
|
614
|
+
"node_modules/@esbuild/linux-s390x": {
|
|
615
|
+
"version": "0.25.12",
|
|
616
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz",
|
|
617
|
+
"integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==",
|
|
618
|
+
"cpu": [
|
|
619
|
+
"s390x"
|
|
620
|
+
],
|
|
621
|
+
"dev": true,
|
|
622
|
+
"license": "MIT",
|
|
623
|
+
"optional": true,
|
|
624
|
+
"os": [
|
|
625
|
+
"linux"
|
|
626
|
+
],
|
|
627
|
+
"engines": {
|
|
628
|
+
"node": ">=18"
|
|
629
|
+
}
|
|
630
|
+
},
|
|
631
|
+
"node_modules/@esbuild/linux-x64": {
|
|
632
|
+
"version": "0.25.12",
|
|
633
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz",
|
|
634
|
+
"integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==",
|
|
635
|
+
"cpu": [
|
|
636
|
+
"x64"
|
|
637
|
+
],
|
|
638
|
+
"dev": true,
|
|
639
|
+
"license": "MIT",
|
|
640
|
+
"optional": true,
|
|
641
|
+
"os": [
|
|
642
|
+
"linux"
|
|
643
|
+
],
|
|
644
|
+
"engines": {
|
|
645
|
+
"node": ">=18"
|
|
646
|
+
}
|
|
647
|
+
},
|
|
648
|
+
"node_modules/@esbuild/netbsd-arm64": {
|
|
649
|
+
"version": "0.25.12",
|
|
650
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz",
|
|
651
|
+
"integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==",
|
|
652
|
+
"cpu": [
|
|
653
|
+
"arm64"
|
|
654
|
+
],
|
|
655
|
+
"dev": true,
|
|
656
|
+
"license": "MIT",
|
|
657
|
+
"optional": true,
|
|
658
|
+
"os": [
|
|
659
|
+
"netbsd"
|
|
660
|
+
],
|
|
661
|
+
"engines": {
|
|
662
|
+
"node": ">=18"
|
|
663
|
+
}
|
|
664
|
+
},
|
|
665
|
+
"node_modules/@esbuild/netbsd-x64": {
|
|
666
|
+
"version": "0.25.12",
|
|
667
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz",
|
|
668
|
+
"integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==",
|
|
669
|
+
"cpu": [
|
|
670
|
+
"x64"
|
|
671
|
+
],
|
|
672
|
+
"dev": true,
|
|
673
|
+
"license": "MIT",
|
|
674
|
+
"optional": true,
|
|
675
|
+
"os": [
|
|
676
|
+
"netbsd"
|
|
677
|
+
],
|
|
678
|
+
"engines": {
|
|
679
|
+
"node": ">=18"
|
|
680
|
+
}
|
|
681
|
+
},
|
|
682
|
+
"node_modules/@esbuild/openbsd-arm64": {
|
|
683
|
+
"version": "0.25.12",
|
|
684
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz",
|
|
685
|
+
"integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==",
|
|
686
|
+
"cpu": [
|
|
687
|
+
"arm64"
|
|
688
|
+
],
|
|
689
|
+
"dev": true,
|
|
690
|
+
"license": "MIT",
|
|
691
|
+
"optional": true,
|
|
692
|
+
"os": [
|
|
693
|
+
"openbsd"
|
|
694
|
+
],
|
|
695
|
+
"engines": {
|
|
696
|
+
"node": ">=18"
|
|
697
|
+
}
|
|
698
|
+
},
|
|
699
|
+
"node_modules/@esbuild/openbsd-x64": {
|
|
700
|
+
"version": "0.25.12",
|
|
701
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz",
|
|
702
|
+
"integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==",
|
|
703
|
+
"cpu": [
|
|
704
|
+
"x64"
|
|
705
|
+
],
|
|
706
|
+
"dev": true,
|
|
707
|
+
"license": "MIT",
|
|
708
|
+
"optional": true,
|
|
709
|
+
"os": [
|
|
710
|
+
"openbsd"
|
|
711
|
+
],
|
|
712
|
+
"engines": {
|
|
713
|
+
"node": ">=18"
|
|
714
|
+
}
|
|
715
|
+
},
|
|
716
|
+
"node_modules/@esbuild/openharmony-arm64": {
|
|
717
|
+
"version": "0.25.12",
|
|
718
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz",
|
|
719
|
+
"integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==",
|
|
720
|
+
"cpu": [
|
|
721
|
+
"arm64"
|
|
722
|
+
],
|
|
723
|
+
"dev": true,
|
|
724
|
+
"license": "MIT",
|
|
725
|
+
"optional": true,
|
|
726
|
+
"os": [
|
|
727
|
+
"openharmony"
|
|
728
|
+
],
|
|
729
|
+
"engines": {
|
|
730
|
+
"node": ">=18"
|
|
731
|
+
}
|
|
732
|
+
},
|
|
733
|
+
"node_modules/@esbuild/sunos-x64": {
|
|
734
|
+
"version": "0.25.12",
|
|
735
|
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz",
|
|
736
|
+
"integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==",
|
|
737
|
+
"cpu": [
|
|
738
|
+
"x64"
|
|
739
|
+
],
|
|
740
|
+
"dev": true,
|
|
741
|
+
"license": "MIT",
|
|
742
|
+
"optional": true,
|
|
743
|
+
"os": [
|
|
744
|
+
"sunos"
|
|
745
|
+
],
|
|
746
|
+
"engines": {
|
|
747
|
+
"node": ">=18"
|
|
748
|
+
}
|
|
749
|
+
},
|
|
750
|
+
"node_modules/@esbuild/win32-arm64": {
|
|
751
|
+
"version": "0.25.12",
|
|
752
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz",
|
|
753
|
+
"integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==",
|
|
754
|
+
"cpu": [
|
|
755
|
+
"arm64"
|
|
756
|
+
],
|
|
757
|
+
"dev": true,
|
|
758
|
+
"license": "MIT",
|
|
759
|
+
"optional": true,
|
|
760
|
+
"os": [
|
|
761
|
+
"win32"
|
|
762
|
+
],
|
|
763
|
+
"engines": {
|
|
764
|
+
"node": ">=18"
|
|
765
|
+
}
|
|
766
|
+
},
|
|
767
|
+
"node_modules/@esbuild/win32-ia32": {
|
|
768
|
+
"version": "0.25.12",
|
|
769
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz",
|
|
770
|
+
"integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==",
|
|
771
|
+
"cpu": [
|
|
772
|
+
"ia32"
|
|
773
|
+
],
|
|
774
|
+
"dev": true,
|
|
775
|
+
"license": "MIT",
|
|
776
|
+
"optional": true,
|
|
777
|
+
"os": [
|
|
778
|
+
"win32"
|
|
779
|
+
],
|
|
780
|
+
"engines": {
|
|
781
|
+
"node": ">=18"
|
|
782
|
+
}
|
|
783
|
+
},
|
|
784
|
+
"node_modules/@esbuild/win32-x64": {
|
|
785
|
+
"version": "0.25.12",
|
|
786
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz",
|
|
787
|
+
"integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==",
|
|
788
|
+
"cpu": [
|
|
789
|
+
"x64"
|
|
790
|
+
],
|
|
791
|
+
"dev": true,
|
|
792
|
+
"license": "MIT",
|
|
793
|
+
"optional": true,
|
|
794
|
+
"os": [
|
|
795
|
+
"win32"
|
|
796
|
+
],
|
|
797
|
+
"engines": {
|
|
798
|
+
"node": ">=18"
|
|
799
|
+
}
|
|
800
|
+
},
|
|
801
|
+
"node_modules/@jridgewell/gen-mapping": {
|
|
802
|
+
"version": "0.3.13",
|
|
803
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
|
|
804
|
+
"integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
|
|
805
|
+
"dev": true,
|
|
806
|
+
"license": "MIT",
|
|
807
|
+
"dependencies": {
|
|
808
|
+
"@jridgewell/sourcemap-codec": "^1.5.0",
|
|
809
|
+
"@jridgewell/trace-mapping": "^0.3.24"
|
|
810
|
+
}
|
|
811
|
+
},
|
|
812
|
+
"node_modules/@jridgewell/remapping": {
|
|
813
|
+
"version": "2.3.5",
|
|
814
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
|
|
815
|
+
"integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
|
|
816
|
+
"dev": true,
|
|
817
|
+
"license": "MIT",
|
|
818
|
+
"dependencies": {
|
|
819
|
+
"@jridgewell/gen-mapping": "^0.3.5",
|
|
820
|
+
"@jridgewell/trace-mapping": "^0.3.24"
|
|
821
|
+
}
|
|
822
|
+
},
|
|
823
|
+
"node_modules/@jridgewell/resolve-uri": {
|
|
824
|
+
"version": "3.1.2",
|
|
825
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
|
|
826
|
+
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
|
|
827
|
+
"dev": true,
|
|
828
|
+
"license": "MIT",
|
|
829
|
+
"engines": {
|
|
830
|
+
"node": ">=6.0.0"
|
|
831
|
+
}
|
|
832
|
+
},
|
|
833
|
+
"node_modules/@jridgewell/sourcemap-codec": {
|
|
834
|
+
"version": "1.5.5",
|
|
835
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
|
|
836
|
+
"integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
|
|
837
|
+
"dev": true,
|
|
838
|
+
"license": "MIT"
|
|
839
|
+
},
|
|
840
|
+
"node_modules/@jridgewell/trace-mapping": {
|
|
841
|
+
"version": "0.3.31",
|
|
842
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
|
|
843
|
+
"integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
|
|
844
|
+
"dev": true,
|
|
845
|
+
"license": "MIT",
|
|
846
|
+
"dependencies": {
|
|
847
|
+
"@jridgewell/resolve-uri": "^3.1.0",
|
|
848
|
+
"@jridgewell/sourcemap-codec": "^1.4.14"
|
|
849
|
+
}
|
|
850
|
+
},
|
|
851
|
+
"node_modules/@rolldown/pluginutils": {
|
|
852
|
+
"version": "1.0.0-beta.27",
|
|
853
|
+
"resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz",
|
|
854
|
+
"integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==",
|
|
855
|
+
"dev": true,
|
|
856
|
+
"license": "MIT"
|
|
857
|
+
},
|
|
858
|
+
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
859
|
+
"version": "4.60.0",
|
|
860
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.0.tgz",
|
|
861
|
+
"integrity": "sha512-WOhNW9K8bR3kf4zLxbfg6Pxu2ybOUbB2AjMDHSQx86LIF4rH4Ft7vmMwNt0loO0eonglSNy4cpD3MKXXKQu0/A==",
|
|
862
|
+
"cpu": [
|
|
863
|
+
"arm"
|
|
864
|
+
],
|
|
865
|
+
"dev": true,
|
|
866
|
+
"license": "MIT",
|
|
867
|
+
"optional": true,
|
|
868
|
+
"os": [
|
|
869
|
+
"android"
|
|
870
|
+
]
|
|
871
|
+
},
|
|
872
|
+
"node_modules/@rollup/rollup-android-arm64": {
|
|
873
|
+
"version": "4.60.0",
|
|
874
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.0.tgz",
|
|
875
|
+
"integrity": "sha512-u6JHLll5QKRvjciE78bQXDmqRqNs5M/3GVqZeMwvmjaNODJih/WIrJlFVEihvV0MiYFmd+ZyPr9wxOVbPAG2Iw==",
|
|
876
|
+
"cpu": [
|
|
877
|
+
"arm64"
|
|
878
|
+
],
|
|
879
|
+
"dev": true,
|
|
880
|
+
"license": "MIT",
|
|
881
|
+
"optional": true,
|
|
882
|
+
"os": [
|
|
883
|
+
"android"
|
|
884
|
+
]
|
|
885
|
+
},
|
|
886
|
+
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
887
|
+
"version": "4.60.0",
|
|
888
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.0.tgz",
|
|
889
|
+
"integrity": "sha512-qEF7CsKKzSRc20Ciu2Zw1wRrBz4g56F7r/vRwY430UPp/nt1x21Q/fpJ9N5l47WWvJlkNCPJz3QRVw008fi7yA==",
|
|
890
|
+
"cpu": [
|
|
891
|
+
"arm64"
|
|
892
|
+
],
|
|
893
|
+
"dev": true,
|
|
894
|
+
"license": "MIT",
|
|
895
|
+
"optional": true,
|
|
896
|
+
"os": [
|
|
897
|
+
"darwin"
|
|
898
|
+
]
|
|
899
|
+
},
|
|
900
|
+
"node_modules/@rollup/rollup-darwin-x64": {
|
|
901
|
+
"version": "4.60.0",
|
|
902
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.0.tgz",
|
|
903
|
+
"integrity": "sha512-WADYozJ4QCnXCH4wPB+3FuGmDPoFseVCUrANmA5LWwGmC6FL14BWC7pcq+FstOZv3baGX65tZ378uT6WG8ynTw==",
|
|
904
|
+
"cpu": [
|
|
905
|
+
"x64"
|
|
906
|
+
],
|
|
907
|
+
"dev": true,
|
|
908
|
+
"license": "MIT",
|
|
909
|
+
"optional": true,
|
|
910
|
+
"os": [
|
|
911
|
+
"darwin"
|
|
912
|
+
]
|
|
913
|
+
},
|
|
914
|
+
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
915
|
+
"version": "4.60.0",
|
|
916
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.0.tgz",
|
|
917
|
+
"integrity": "sha512-6b8wGHJlDrGeSE3aH5mGNHBjA0TTkxdoNHik5EkvPHCt351XnigA4pS7Wsj/Eo9Y8RBU6f35cjN9SYmCFBtzxw==",
|
|
918
|
+
"cpu": [
|
|
919
|
+
"arm64"
|
|
920
|
+
],
|
|
921
|
+
"dev": true,
|
|
922
|
+
"license": "MIT",
|
|
923
|
+
"optional": true,
|
|
924
|
+
"os": [
|
|
925
|
+
"freebsd"
|
|
926
|
+
]
|
|
927
|
+
},
|
|
928
|
+
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
929
|
+
"version": "4.60.0",
|
|
930
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.0.tgz",
|
|
931
|
+
"integrity": "sha512-h25Ga0t4jaylMB8M/JKAyrvvfxGRjnPQIR8lnCayyzEjEOx2EJIlIiMbhpWxDRKGKF8jbNH01NnN663dH638mA==",
|
|
932
|
+
"cpu": [
|
|
933
|
+
"x64"
|
|
934
|
+
],
|
|
935
|
+
"dev": true,
|
|
936
|
+
"license": "MIT",
|
|
937
|
+
"optional": true,
|
|
938
|
+
"os": [
|
|
939
|
+
"freebsd"
|
|
940
|
+
]
|
|
941
|
+
},
|
|
942
|
+
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
943
|
+
"version": "4.60.0",
|
|
944
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.0.tgz",
|
|
945
|
+
"integrity": "sha512-RzeBwv0B3qtVBWtcuABtSuCzToo2IEAIQrcyB/b2zMvBWVbjo8bZDjACUpnaafaxhTw2W+imQbP2BD1usasK4g==",
|
|
946
|
+
"cpu": [
|
|
947
|
+
"arm"
|
|
948
|
+
],
|
|
949
|
+
"dev": true,
|
|
950
|
+
"license": "MIT",
|
|
951
|
+
"optional": true,
|
|
952
|
+
"os": [
|
|
953
|
+
"linux"
|
|
954
|
+
]
|
|
955
|
+
},
|
|
956
|
+
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
957
|
+
"version": "4.60.0",
|
|
958
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.0.tgz",
|
|
959
|
+
"integrity": "sha512-Sf7zusNI2CIU1HLzuu9Tc5YGAHEZs5Lu7N1ssJG4Tkw6e0MEsN7NdjUDDfGNHy2IU+ENyWT+L2obgWiguWibWQ==",
|
|
960
|
+
"cpu": [
|
|
961
|
+
"arm"
|
|
962
|
+
],
|
|
963
|
+
"dev": true,
|
|
964
|
+
"license": "MIT",
|
|
965
|
+
"optional": true,
|
|
966
|
+
"os": [
|
|
967
|
+
"linux"
|
|
968
|
+
]
|
|
969
|
+
},
|
|
970
|
+
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
971
|
+
"version": "4.60.0",
|
|
972
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.0.tgz",
|
|
973
|
+
"integrity": "sha512-DX2x7CMcrJzsE91q7/O02IJQ5/aLkVtYFryqCjduJhUfGKG6yJV8hxaw8pZa93lLEpPTP/ohdN4wFz7yp/ry9A==",
|
|
974
|
+
"cpu": [
|
|
975
|
+
"arm64"
|
|
976
|
+
],
|
|
977
|
+
"dev": true,
|
|
978
|
+
"license": "MIT",
|
|
979
|
+
"optional": true,
|
|
980
|
+
"os": [
|
|
981
|
+
"linux"
|
|
982
|
+
]
|
|
983
|
+
},
|
|
984
|
+
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
985
|
+
"version": "4.60.0",
|
|
986
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.0.tgz",
|
|
987
|
+
"integrity": "sha512-09EL+yFVbJZlhcQfShpswwRZ0Rg+z/CsSELFCnPt3iK+iqwGsI4zht3secj5vLEs957QvFFXnzAT0FFPIxSrkQ==",
|
|
988
|
+
"cpu": [
|
|
989
|
+
"arm64"
|
|
990
|
+
],
|
|
991
|
+
"dev": true,
|
|
992
|
+
"license": "MIT",
|
|
993
|
+
"optional": true,
|
|
994
|
+
"os": [
|
|
995
|
+
"linux"
|
|
996
|
+
]
|
|
997
|
+
},
|
|
998
|
+
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
999
|
+
"version": "4.60.0",
|
|
1000
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.0.tgz",
|
|
1001
|
+
"integrity": "sha512-i9IcCMPr3EXm8EQg5jnja0Zyc1iFxJjZWlb4wr7U2Wx/GrddOuEafxRdMPRYVaXjgbhvqalp6np07hN1w9kAKw==",
|
|
1002
|
+
"cpu": [
|
|
1003
|
+
"loong64"
|
|
1004
|
+
],
|
|
1005
|
+
"dev": true,
|
|
1006
|
+
"license": "MIT",
|
|
1007
|
+
"optional": true,
|
|
1008
|
+
"os": [
|
|
1009
|
+
"linux"
|
|
1010
|
+
]
|
|
1011
|
+
},
|
|
1012
|
+
"node_modules/@rollup/rollup-linux-loong64-musl": {
|
|
1013
|
+
"version": "4.60.0",
|
|
1014
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.0.tgz",
|
|
1015
|
+
"integrity": "sha512-DGzdJK9kyJ+B78MCkWeGnpXJ91tK/iKA6HwHxF4TAlPIY7GXEvMe8hBFRgdrR9Ly4qebR/7gfUs9y2IoaVEyog==",
|
|
1016
|
+
"cpu": [
|
|
1017
|
+
"loong64"
|
|
1018
|
+
],
|
|
1019
|
+
"dev": true,
|
|
1020
|
+
"license": "MIT",
|
|
1021
|
+
"optional": true,
|
|
1022
|
+
"os": [
|
|
1023
|
+
"linux"
|
|
1024
|
+
]
|
|
1025
|
+
},
|
|
1026
|
+
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
1027
|
+
"version": "4.60.0",
|
|
1028
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.0.tgz",
|
|
1029
|
+
"integrity": "sha512-RwpnLsqC8qbS8z1H1AxBA1H6qknR4YpPR9w2XX0vo2Sz10miu57PkNcnHVaZkbqyw/kUWfKMI73jhmfi9BRMUQ==",
|
|
1030
|
+
"cpu": [
|
|
1031
|
+
"ppc64"
|
|
1032
|
+
],
|
|
1033
|
+
"dev": true,
|
|
1034
|
+
"license": "MIT",
|
|
1035
|
+
"optional": true,
|
|
1036
|
+
"os": [
|
|
1037
|
+
"linux"
|
|
1038
|
+
]
|
|
1039
|
+
},
|
|
1040
|
+
"node_modules/@rollup/rollup-linux-ppc64-musl": {
|
|
1041
|
+
"version": "4.60.0",
|
|
1042
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.0.tgz",
|
|
1043
|
+
"integrity": "sha512-Z8pPf54Ly3aqtdWC3G4rFigZgNvd+qJlOE52fmko3KST9SoGfAdSRCwyoyG05q1HrrAblLbk1/PSIV+80/pxLg==",
|
|
1044
|
+
"cpu": [
|
|
1045
|
+
"ppc64"
|
|
1046
|
+
],
|
|
1047
|
+
"dev": true,
|
|
1048
|
+
"license": "MIT",
|
|
1049
|
+
"optional": true,
|
|
1050
|
+
"os": [
|
|
1051
|
+
"linux"
|
|
1052
|
+
]
|
|
1053
|
+
},
|
|
1054
|
+
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
1055
|
+
"version": "4.60.0",
|
|
1056
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.0.tgz",
|
|
1057
|
+
"integrity": "sha512-3a3qQustp3COCGvnP4SvrMHnPQ9d1vzCakQVRTliaz8cIp/wULGjiGpbcqrkv0WrHTEp8bQD/B3HBjzujVWLOA==",
|
|
1058
|
+
"cpu": [
|
|
1059
|
+
"riscv64"
|
|
1060
|
+
],
|
|
1061
|
+
"dev": true,
|
|
1062
|
+
"license": "MIT",
|
|
1063
|
+
"optional": true,
|
|
1064
|
+
"os": [
|
|
1065
|
+
"linux"
|
|
1066
|
+
]
|
|
1067
|
+
},
|
|
1068
|
+
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
1069
|
+
"version": "4.60.0",
|
|
1070
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.0.tgz",
|
|
1071
|
+
"integrity": "sha512-pjZDsVH/1VsghMJ2/kAaxt6dL0psT6ZexQVrijczOf+PeP2BUqTHYejk3l6TlPRydggINOeNRhvpLa0AYpCWSQ==",
|
|
1072
|
+
"cpu": [
|
|
1073
|
+
"riscv64"
|
|
1074
|
+
],
|
|
1075
|
+
"dev": true,
|
|
1076
|
+
"license": "MIT",
|
|
1077
|
+
"optional": true,
|
|
1078
|
+
"os": [
|
|
1079
|
+
"linux"
|
|
1080
|
+
]
|
|
1081
|
+
},
|
|
1082
|
+
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
1083
|
+
"version": "4.60.0",
|
|
1084
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.0.tgz",
|
|
1085
|
+
"integrity": "sha512-3ObQs0BhvPgiUVZrN7gqCSvmFuMWvWvsjG5ayJ3Lraqv+2KhOsp+pUbigqbeWqueGIsnn+09HBw27rJ+gYK4VQ==",
|
|
1086
|
+
"cpu": [
|
|
1087
|
+
"s390x"
|
|
1088
|
+
],
|
|
1089
|
+
"dev": true,
|
|
1090
|
+
"license": "MIT",
|
|
1091
|
+
"optional": true,
|
|
1092
|
+
"os": [
|
|
1093
|
+
"linux"
|
|
1094
|
+
]
|
|
1095
|
+
},
|
|
1096
|
+
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
1097
|
+
"version": "4.60.0",
|
|
1098
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.0.tgz",
|
|
1099
|
+
"integrity": "sha512-EtylprDtQPdS5rXvAayrNDYoJhIz1/vzN2fEubo3yLE7tfAw+948dO0g4M0vkTVFhKojnF+n6C8bDNe+gDRdTg==",
|
|
1100
|
+
"cpu": [
|
|
1101
|
+
"x64"
|
|
1102
|
+
],
|
|
1103
|
+
"dev": true,
|
|
1104
|
+
"license": "MIT",
|
|
1105
|
+
"optional": true,
|
|
1106
|
+
"os": [
|
|
1107
|
+
"linux"
|
|
1108
|
+
]
|
|
1109
|
+
},
|
|
1110
|
+
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
1111
|
+
"version": "4.60.0",
|
|
1112
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.0.tgz",
|
|
1113
|
+
"integrity": "sha512-k09oiRCi/bHU9UVFqD17r3eJR9bn03TyKraCrlz5ULFJGdJGi7VOmm9jl44vOJvRJ6P7WuBi/s2A97LxxHGIdw==",
|
|
1114
|
+
"cpu": [
|
|
1115
|
+
"x64"
|
|
1116
|
+
],
|
|
1117
|
+
"dev": true,
|
|
1118
|
+
"license": "MIT",
|
|
1119
|
+
"optional": true,
|
|
1120
|
+
"os": [
|
|
1121
|
+
"linux"
|
|
1122
|
+
]
|
|
1123
|
+
},
|
|
1124
|
+
"node_modules/@rollup/rollup-openbsd-x64": {
|
|
1125
|
+
"version": "4.60.0",
|
|
1126
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.0.tgz",
|
|
1127
|
+
"integrity": "sha512-1o/0/pIhozoSaDJoDcec+IVLbnRtQmHwPV730+AOD29lHEEo4F5BEUB24H0OBdhbBBDwIOSuf7vgg0Ywxdfiiw==",
|
|
1128
|
+
"cpu": [
|
|
1129
|
+
"x64"
|
|
1130
|
+
],
|
|
1131
|
+
"dev": true,
|
|
1132
|
+
"license": "MIT",
|
|
1133
|
+
"optional": true,
|
|
1134
|
+
"os": [
|
|
1135
|
+
"openbsd"
|
|
1136
|
+
]
|
|
1137
|
+
},
|
|
1138
|
+
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
1139
|
+
"version": "4.60.0",
|
|
1140
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.0.tgz",
|
|
1141
|
+
"integrity": "sha512-pESDkos/PDzYwtyzB5p/UoNU/8fJo68vcXM9ZW2V0kjYayj1KaaUfi1NmTUTUpMn4UhU4gTuK8gIaFO4UGuMbA==",
|
|
1142
|
+
"cpu": [
|
|
1143
|
+
"arm64"
|
|
1144
|
+
],
|
|
1145
|
+
"dev": true,
|
|
1146
|
+
"license": "MIT",
|
|
1147
|
+
"optional": true,
|
|
1148
|
+
"os": [
|
|
1149
|
+
"openharmony"
|
|
1150
|
+
]
|
|
1151
|
+
},
|
|
1152
|
+
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
1153
|
+
"version": "4.60.0",
|
|
1154
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.0.tgz",
|
|
1155
|
+
"integrity": "sha512-hj1wFStD7B1YBeYmvY+lWXZ7ey73YGPcViMShYikqKT1GtstIKQAtfUI6yrzPjAy/O7pO0VLXGmUVWXQMaYgTQ==",
|
|
1156
|
+
"cpu": [
|
|
1157
|
+
"arm64"
|
|
1158
|
+
],
|
|
1159
|
+
"dev": true,
|
|
1160
|
+
"license": "MIT",
|
|
1161
|
+
"optional": true,
|
|
1162
|
+
"os": [
|
|
1163
|
+
"win32"
|
|
1164
|
+
]
|
|
1165
|
+
},
|
|
1166
|
+
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
1167
|
+
"version": "4.60.0",
|
|
1168
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.0.tgz",
|
|
1169
|
+
"integrity": "sha512-SyaIPFoxmUPlNDq5EHkTbiKzmSEmq/gOYFI/3HHJ8iS/v1mbugVa7dXUzcJGQfoytp9DJFLhHH4U3/eTy2Bq4w==",
|
|
1170
|
+
"cpu": [
|
|
1171
|
+
"ia32"
|
|
1172
|
+
],
|
|
1173
|
+
"dev": true,
|
|
1174
|
+
"license": "MIT",
|
|
1175
|
+
"optional": true,
|
|
1176
|
+
"os": [
|
|
1177
|
+
"win32"
|
|
1178
|
+
]
|
|
1179
|
+
},
|
|
1180
|
+
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
1181
|
+
"version": "4.60.0",
|
|
1182
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.0.tgz",
|
|
1183
|
+
"integrity": "sha512-RdcryEfzZr+lAr5kRm2ucN9aVlCCa2QNq4hXelZxb8GG0NJSazq44Z3PCCc8wISRuCVnGs0lQJVX5Vp6fKA+IA==",
|
|
1184
|
+
"cpu": [
|
|
1185
|
+
"x64"
|
|
1186
|
+
],
|
|
1187
|
+
"dev": true,
|
|
1188
|
+
"license": "MIT",
|
|
1189
|
+
"optional": true,
|
|
1190
|
+
"os": [
|
|
1191
|
+
"win32"
|
|
1192
|
+
]
|
|
1193
|
+
},
|
|
1194
|
+
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
1195
|
+
"version": "4.60.0",
|
|
1196
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.0.tgz",
|
|
1197
|
+
"integrity": "sha512-PrsWNQ8BuE00O3Xsx3ALh2Df8fAj9+cvvX9AIA6o4KpATR98c9mud4XtDWVvsEuyia5U4tVSTKygawyJkjm60w==",
|
|
1198
|
+
"cpu": [
|
|
1199
|
+
"x64"
|
|
1200
|
+
],
|
|
1201
|
+
"dev": true,
|
|
1202
|
+
"license": "MIT",
|
|
1203
|
+
"optional": true,
|
|
1204
|
+
"os": [
|
|
1205
|
+
"win32"
|
|
1206
|
+
]
|
|
1207
|
+
},
|
|
1208
|
+
"node_modules/@tailwindcss/forms": {
|
|
1209
|
+
"version": "0.5.11",
|
|
1210
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.11.tgz",
|
|
1211
|
+
"integrity": "sha512-h9wegbZDPurxG22xZSoWtdzc41/OlNEUQERNqI/0fOwa2aVlWGu7C35E/x6LDyD3lgtztFSSjKZyuVM0hxhbgA==",
|
|
1212
|
+
"dev": true,
|
|
1213
|
+
"license": "MIT",
|
|
1214
|
+
"dependencies": {
|
|
1215
|
+
"mini-svg-data-uri": "^1.2.3"
|
|
1216
|
+
},
|
|
1217
|
+
"peerDependencies": {
|
|
1218
|
+
"tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1 || >= 4.0.0-alpha.20 || >= 4.0.0-beta.1"
|
|
1219
|
+
}
|
|
1220
|
+
},
|
|
1221
|
+
"node_modules/@tailwindcss/node": {
|
|
1222
|
+
"version": "4.2.2",
|
|
1223
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.2.2.tgz",
|
|
1224
|
+
"integrity": "sha512-pXS+wJ2gZpVXqFaUEjojq7jzMpTGf8rU6ipJz5ovJV6PUGmlJ+jvIwGrzdHdQ80Sg+wmQxUFuoW1UAAwHNEdFA==",
|
|
1225
|
+
"dev": true,
|
|
1226
|
+
"license": "MIT",
|
|
1227
|
+
"dependencies": {
|
|
1228
|
+
"@jridgewell/remapping": "^2.3.5",
|
|
1229
|
+
"enhanced-resolve": "^5.19.0",
|
|
1230
|
+
"jiti": "^2.6.1",
|
|
1231
|
+
"lightningcss": "1.32.0",
|
|
1232
|
+
"magic-string": "^0.30.21",
|
|
1233
|
+
"source-map-js": "^1.2.1",
|
|
1234
|
+
"tailwindcss": "4.2.2"
|
|
1235
|
+
}
|
|
1236
|
+
},
|
|
1237
|
+
"node_modules/@tailwindcss/oxide": {
|
|
1238
|
+
"version": "4.2.2",
|
|
1239
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.2.2.tgz",
|
|
1240
|
+
"integrity": "sha512-qEUA07+E5kehxYp9BVMpq9E8vnJuBHfJEC0vPC5e7iL/hw7HR61aDKoVoKzrG+QKp56vhNZe4qwkRmMC0zDLvg==",
|
|
1241
|
+
"dev": true,
|
|
1242
|
+
"license": "MIT",
|
|
1243
|
+
"engines": {
|
|
1244
|
+
"node": ">= 20"
|
|
1245
|
+
},
|
|
1246
|
+
"optionalDependencies": {
|
|
1247
|
+
"@tailwindcss/oxide-android-arm64": "4.2.2",
|
|
1248
|
+
"@tailwindcss/oxide-darwin-arm64": "4.2.2",
|
|
1249
|
+
"@tailwindcss/oxide-darwin-x64": "4.2.2",
|
|
1250
|
+
"@tailwindcss/oxide-freebsd-x64": "4.2.2",
|
|
1251
|
+
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.2",
|
|
1252
|
+
"@tailwindcss/oxide-linux-arm64-gnu": "4.2.2",
|
|
1253
|
+
"@tailwindcss/oxide-linux-arm64-musl": "4.2.2",
|
|
1254
|
+
"@tailwindcss/oxide-linux-x64-gnu": "4.2.2",
|
|
1255
|
+
"@tailwindcss/oxide-linux-x64-musl": "4.2.2",
|
|
1256
|
+
"@tailwindcss/oxide-wasm32-wasi": "4.2.2",
|
|
1257
|
+
"@tailwindcss/oxide-win32-arm64-msvc": "4.2.2",
|
|
1258
|
+
"@tailwindcss/oxide-win32-x64-msvc": "4.2.2"
|
|
1259
|
+
}
|
|
1260
|
+
},
|
|
1261
|
+
"node_modules/@tailwindcss/oxide-android-arm64": {
|
|
1262
|
+
"version": "4.2.2",
|
|
1263
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.2.tgz",
|
|
1264
|
+
"integrity": "sha512-dXGR1n+P3B6748jZO/SvHZq7qBOqqzQ+yFrXpoOWWALWndF9MoSKAT3Q0fYgAzYzGhxNYOoysRvYlpixRBBoDg==",
|
|
1265
|
+
"cpu": [
|
|
1266
|
+
"arm64"
|
|
1267
|
+
],
|
|
1268
|
+
"dev": true,
|
|
1269
|
+
"license": "MIT",
|
|
1270
|
+
"optional": true,
|
|
1271
|
+
"os": [
|
|
1272
|
+
"android"
|
|
1273
|
+
],
|
|
1274
|
+
"engines": {
|
|
1275
|
+
"node": ">= 20"
|
|
1276
|
+
}
|
|
1277
|
+
},
|
|
1278
|
+
"node_modules/@tailwindcss/oxide-darwin-arm64": {
|
|
1279
|
+
"version": "4.2.2",
|
|
1280
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.2.tgz",
|
|
1281
|
+
"integrity": "sha512-iq9Qjr6knfMpZHj55/37ouZeykwbDqF21gPFtfnhCCKGDcPI/21FKC9XdMO/XyBM7qKORx6UIhGgg6jLl7BZlg==",
|
|
1282
|
+
"cpu": [
|
|
1283
|
+
"arm64"
|
|
1284
|
+
],
|
|
1285
|
+
"dev": true,
|
|
1286
|
+
"license": "MIT",
|
|
1287
|
+
"optional": true,
|
|
1288
|
+
"os": [
|
|
1289
|
+
"darwin"
|
|
1290
|
+
],
|
|
1291
|
+
"engines": {
|
|
1292
|
+
"node": ">= 20"
|
|
1293
|
+
}
|
|
1294
|
+
},
|
|
1295
|
+
"node_modules/@tailwindcss/oxide-darwin-x64": {
|
|
1296
|
+
"version": "4.2.2",
|
|
1297
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.2.tgz",
|
|
1298
|
+
"integrity": "sha512-BlR+2c3nzc8f2G639LpL89YY4bdcIdUmiOOkv2GQv4/4M0vJlpXEa0JXNHhCHU7VWOKWT/CjqHdTP8aUuDJkuw==",
|
|
1299
|
+
"cpu": [
|
|
1300
|
+
"x64"
|
|
1301
|
+
],
|
|
1302
|
+
"dev": true,
|
|
1303
|
+
"license": "MIT",
|
|
1304
|
+
"optional": true,
|
|
1305
|
+
"os": [
|
|
1306
|
+
"darwin"
|
|
1307
|
+
],
|
|
1308
|
+
"engines": {
|
|
1309
|
+
"node": ">= 20"
|
|
1310
|
+
}
|
|
1311
|
+
},
|
|
1312
|
+
"node_modules/@tailwindcss/oxide-freebsd-x64": {
|
|
1313
|
+
"version": "4.2.2",
|
|
1314
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.2.tgz",
|
|
1315
|
+
"integrity": "sha512-YUqUgrGMSu2CDO82hzlQ5qSb5xmx3RUrke/QgnoEx7KvmRJHQuZHZmZTLSuuHwFf0DJPybFMXMYf+WJdxHy/nQ==",
|
|
1316
|
+
"cpu": [
|
|
1317
|
+
"x64"
|
|
1318
|
+
],
|
|
1319
|
+
"dev": true,
|
|
1320
|
+
"license": "MIT",
|
|
1321
|
+
"optional": true,
|
|
1322
|
+
"os": [
|
|
1323
|
+
"freebsd"
|
|
1324
|
+
],
|
|
1325
|
+
"engines": {
|
|
1326
|
+
"node": ">= 20"
|
|
1327
|
+
}
|
|
1328
|
+
},
|
|
1329
|
+
"node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
|
|
1330
|
+
"version": "4.2.2",
|
|
1331
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.2.tgz",
|
|
1332
|
+
"integrity": "sha512-FPdhvsW6g06T9BWT0qTwiVZYE2WIFo2dY5aCSpjG/S/u1tby+wXoslXS0kl3/KXnULlLr1E3NPRRw0g7t2kgaQ==",
|
|
1333
|
+
"cpu": [
|
|
1334
|
+
"arm"
|
|
1335
|
+
],
|
|
1336
|
+
"dev": true,
|
|
1337
|
+
"license": "MIT",
|
|
1338
|
+
"optional": true,
|
|
1339
|
+
"os": [
|
|
1340
|
+
"linux"
|
|
1341
|
+
],
|
|
1342
|
+
"engines": {
|
|
1343
|
+
"node": ">= 20"
|
|
1344
|
+
}
|
|
1345
|
+
},
|
|
1346
|
+
"node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
|
|
1347
|
+
"version": "4.2.2",
|
|
1348
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.2.tgz",
|
|
1349
|
+
"integrity": "sha512-4og1V+ftEPXGttOO7eCmW7VICmzzJWgMx+QXAJRAhjrSjumCwWqMfkDrNu1LXEQzNAwz28NCUpucgQPrR4S2yw==",
|
|
1350
|
+
"cpu": [
|
|
1351
|
+
"arm64"
|
|
1352
|
+
],
|
|
1353
|
+
"dev": true,
|
|
1354
|
+
"license": "MIT",
|
|
1355
|
+
"optional": true,
|
|
1356
|
+
"os": [
|
|
1357
|
+
"linux"
|
|
1358
|
+
],
|
|
1359
|
+
"engines": {
|
|
1360
|
+
"node": ">= 20"
|
|
1361
|
+
}
|
|
1362
|
+
},
|
|
1363
|
+
"node_modules/@tailwindcss/oxide-linux-arm64-musl": {
|
|
1364
|
+
"version": "4.2.2",
|
|
1365
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.2.tgz",
|
|
1366
|
+
"integrity": "sha512-oCfG/mS+/+XRlwNjnsNLVwnMWYH7tn/kYPsNPh+JSOMlnt93mYNCKHYzylRhI51X+TbR+ufNhhKKzm6QkqX8ag==",
|
|
1367
|
+
"cpu": [
|
|
1368
|
+
"arm64"
|
|
1369
|
+
],
|
|
1370
|
+
"dev": true,
|
|
1371
|
+
"license": "MIT",
|
|
1372
|
+
"optional": true,
|
|
1373
|
+
"os": [
|
|
1374
|
+
"linux"
|
|
1375
|
+
],
|
|
1376
|
+
"engines": {
|
|
1377
|
+
"node": ">= 20"
|
|
1378
|
+
}
|
|
1379
|
+
},
|
|
1380
|
+
"node_modules/@tailwindcss/oxide-linux-x64-gnu": {
|
|
1381
|
+
"version": "4.2.2",
|
|
1382
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.2.tgz",
|
|
1383
|
+
"integrity": "sha512-rTAGAkDgqbXHNp/xW0iugLVmX62wOp2PoE39BTCGKjv3Iocf6AFbRP/wZT/kuCxC9QBh9Pu8XPkv/zCZB2mcMg==",
|
|
1384
|
+
"cpu": [
|
|
1385
|
+
"x64"
|
|
1386
|
+
],
|
|
1387
|
+
"dev": true,
|
|
1388
|
+
"license": "MIT",
|
|
1389
|
+
"optional": true,
|
|
1390
|
+
"os": [
|
|
1391
|
+
"linux"
|
|
1392
|
+
],
|
|
1393
|
+
"engines": {
|
|
1394
|
+
"node": ">= 20"
|
|
1395
|
+
}
|
|
1396
|
+
},
|
|
1397
|
+
"node_modules/@tailwindcss/oxide-linux-x64-musl": {
|
|
1398
|
+
"version": "4.2.2",
|
|
1399
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.2.tgz",
|
|
1400
|
+
"integrity": "sha512-XW3t3qwbIwiSyRCggeO2zxe3KWaEbM0/kW9e8+0XpBgyKU4ATYzcVSMKteZJ1iukJ3HgHBjbg9P5YPRCVUxlnQ==",
|
|
1401
|
+
"cpu": [
|
|
1402
|
+
"x64"
|
|
1403
|
+
],
|
|
1404
|
+
"dev": true,
|
|
1405
|
+
"license": "MIT",
|
|
1406
|
+
"optional": true,
|
|
1407
|
+
"os": [
|
|
1408
|
+
"linux"
|
|
1409
|
+
],
|
|
1410
|
+
"engines": {
|
|
1411
|
+
"node": ">= 20"
|
|
1412
|
+
}
|
|
1413
|
+
},
|
|
1414
|
+
"node_modules/@tailwindcss/oxide-wasm32-wasi": {
|
|
1415
|
+
"version": "4.2.2",
|
|
1416
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.2.tgz",
|
|
1417
|
+
"integrity": "sha512-eKSztKsmEsn1O5lJ4ZAfyn41NfG7vzCg496YiGtMDV86jz1q/irhms5O0VrY6ZwTUkFy/EKG3RfWgxSI3VbZ8Q==",
|
|
1418
|
+
"bundleDependencies": [
|
|
1419
|
+
"@napi-rs/wasm-runtime",
|
|
1420
|
+
"@emnapi/core",
|
|
1421
|
+
"@emnapi/runtime",
|
|
1422
|
+
"@tybys/wasm-util",
|
|
1423
|
+
"@emnapi/wasi-threads",
|
|
1424
|
+
"tslib"
|
|
1425
|
+
],
|
|
1426
|
+
"cpu": [
|
|
1427
|
+
"wasm32"
|
|
1428
|
+
],
|
|
1429
|
+
"dev": true,
|
|
1430
|
+
"license": "MIT",
|
|
1431
|
+
"optional": true,
|
|
1432
|
+
"dependencies": {
|
|
1433
|
+
"@emnapi/core": "^1.8.1",
|
|
1434
|
+
"@emnapi/runtime": "^1.8.1",
|
|
1435
|
+
"@emnapi/wasi-threads": "^1.1.0",
|
|
1436
|
+
"@napi-rs/wasm-runtime": "^1.1.1",
|
|
1437
|
+
"@tybys/wasm-util": "^0.10.1",
|
|
1438
|
+
"tslib": "^2.8.1"
|
|
1439
|
+
},
|
|
1440
|
+
"engines": {
|
|
1441
|
+
"node": ">=14.0.0"
|
|
1442
|
+
}
|
|
1443
|
+
},
|
|
1444
|
+
"node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
|
|
1445
|
+
"version": "4.2.2",
|
|
1446
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.2.tgz",
|
|
1447
|
+
"integrity": "sha512-qPmaQM4iKu5mxpsrWZMOZRgZv1tOZpUm+zdhhQP0VhJfyGGO3aUKdbh3gDZc/dPLQwW4eSqWGrrcWNBZWUWaXQ==",
|
|
1448
|
+
"cpu": [
|
|
1449
|
+
"arm64"
|
|
1450
|
+
],
|
|
1451
|
+
"dev": true,
|
|
1452
|
+
"license": "MIT",
|
|
1453
|
+
"optional": true,
|
|
1454
|
+
"os": [
|
|
1455
|
+
"win32"
|
|
1456
|
+
],
|
|
1457
|
+
"engines": {
|
|
1458
|
+
"node": ">= 20"
|
|
1459
|
+
}
|
|
1460
|
+
},
|
|
1461
|
+
"node_modules/@tailwindcss/oxide-win32-x64-msvc": {
|
|
1462
|
+
"version": "4.2.2",
|
|
1463
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.2.tgz",
|
|
1464
|
+
"integrity": "sha512-1T/37VvI7WyH66b+vqHj/cLwnCxt7Qt3WFu5Q8hk65aOvlwAhs7rAp1VkulBJw/N4tMirXjVnylTR72uI0HGcA==",
|
|
1465
|
+
"cpu": [
|
|
1466
|
+
"x64"
|
|
1467
|
+
],
|
|
1468
|
+
"dev": true,
|
|
1469
|
+
"license": "MIT",
|
|
1470
|
+
"optional": true,
|
|
1471
|
+
"os": [
|
|
1472
|
+
"win32"
|
|
1473
|
+
],
|
|
1474
|
+
"engines": {
|
|
1475
|
+
"node": ">= 20"
|
|
1476
|
+
}
|
|
1477
|
+
},
|
|
1478
|
+
"node_modules/@tailwindcss/postcss": {
|
|
1479
|
+
"version": "4.2.2",
|
|
1480
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.2.2.tgz",
|
|
1481
|
+
"integrity": "sha512-n4goKQbW8RVXIbNKRB/45LzyUqN451deQK0nzIeauVEqjlI49slUlgKYJM2QyUzap/PcpnS7kzSUmPb1sCRvYQ==",
|
|
1482
|
+
"dev": true,
|
|
1483
|
+
"license": "MIT",
|
|
1484
|
+
"dependencies": {
|
|
1485
|
+
"@alloc/quick-lru": "^5.2.0",
|
|
1486
|
+
"@tailwindcss/node": "4.2.2",
|
|
1487
|
+
"@tailwindcss/oxide": "4.2.2",
|
|
1488
|
+
"postcss": "^8.5.6",
|
|
1489
|
+
"tailwindcss": "4.2.2"
|
|
1490
|
+
}
|
|
1491
|
+
},
|
|
1492
|
+
"node_modules/@tanstack/query-core": {
|
|
1493
|
+
"version": "5.95.2",
|
|
1494
|
+
"resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.95.2.tgz",
|
|
1495
|
+
"integrity": "sha512-o4T8vZHZET4Bib3jZ/tCW9/7080urD4c+0/AUaYVpIqOsr7y0reBc1oX3ttNaSW5mYyvZHctiQ/UOP2PfdmFEQ==",
|
|
1496
|
+
"license": "MIT",
|
|
1497
|
+
"funding": {
|
|
1498
|
+
"type": "github",
|
|
1499
|
+
"url": "https://github.com/sponsors/tannerlinsley"
|
|
1500
|
+
}
|
|
1501
|
+
},
|
|
1502
|
+
"node_modules/@tanstack/react-query": {
|
|
1503
|
+
"version": "5.95.2",
|
|
1504
|
+
"resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.95.2.tgz",
|
|
1505
|
+
"integrity": "sha512-/wGkvLj/st5Ud1Q76KF1uFxScV7WeqN1slQx5280ycwAyYkIPGaRZAEgHxe3bjirSd5Zpwkj6zNcR4cqYni/ZA==",
|
|
1506
|
+
"license": "MIT",
|
|
1507
|
+
"dependencies": {
|
|
1508
|
+
"@tanstack/query-core": "5.95.2"
|
|
1509
|
+
},
|
|
1510
|
+
"funding": {
|
|
1511
|
+
"type": "github",
|
|
1512
|
+
"url": "https://github.com/sponsors/tannerlinsley"
|
|
1513
|
+
},
|
|
1514
|
+
"peerDependencies": {
|
|
1515
|
+
"react": "^18 || ^19"
|
|
1516
|
+
}
|
|
1517
|
+
},
|
|
1518
|
+
"node_modules/@types/babel__core": {
|
|
1519
|
+
"version": "7.20.5",
|
|
1520
|
+
"resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
|
|
1521
|
+
"integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
|
|
1522
|
+
"dev": true,
|
|
1523
|
+
"license": "MIT",
|
|
1524
|
+
"dependencies": {
|
|
1525
|
+
"@babel/parser": "^7.20.7",
|
|
1526
|
+
"@babel/types": "^7.20.7",
|
|
1527
|
+
"@types/babel__generator": "*",
|
|
1528
|
+
"@types/babel__template": "*",
|
|
1529
|
+
"@types/babel__traverse": "*"
|
|
1530
|
+
}
|
|
1531
|
+
},
|
|
1532
|
+
"node_modules/@types/babel__generator": {
|
|
1533
|
+
"version": "7.27.0",
|
|
1534
|
+
"resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz",
|
|
1535
|
+
"integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
|
|
1536
|
+
"dev": true,
|
|
1537
|
+
"license": "MIT",
|
|
1538
|
+
"dependencies": {
|
|
1539
|
+
"@babel/types": "^7.0.0"
|
|
1540
|
+
}
|
|
1541
|
+
},
|
|
1542
|
+
"node_modules/@types/babel__template": {
|
|
1543
|
+
"version": "7.4.4",
|
|
1544
|
+
"resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
|
|
1545
|
+
"integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
|
|
1546
|
+
"dev": true,
|
|
1547
|
+
"license": "MIT",
|
|
1548
|
+
"dependencies": {
|
|
1549
|
+
"@babel/parser": "^7.1.0",
|
|
1550
|
+
"@babel/types": "^7.0.0"
|
|
1551
|
+
}
|
|
1552
|
+
},
|
|
1553
|
+
"node_modules/@types/babel__traverse": {
|
|
1554
|
+
"version": "7.28.0",
|
|
1555
|
+
"resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz",
|
|
1556
|
+
"integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==",
|
|
1557
|
+
"dev": true,
|
|
1558
|
+
"license": "MIT",
|
|
1559
|
+
"dependencies": {
|
|
1560
|
+
"@babel/types": "^7.28.2"
|
|
1561
|
+
}
|
|
1562
|
+
},
|
|
1563
|
+
"node_modules/@types/estree": {
|
|
1564
|
+
"version": "1.0.8",
|
|
1565
|
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
|
|
1566
|
+
"integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
|
|
1567
|
+
"dev": true,
|
|
1568
|
+
"license": "MIT"
|
|
1569
|
+
},
|
|
1570
|
+
"node_modules/@vitejs/plugin-react": {
|
|
1571
|
+
"version": "4.7.0",
|
|
1572
|
+
"resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz",
|
|
1573
|
+
"integrity": "sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==",
|
|
1574
|
+
"dev": true,
|
|
1575
|
+
"license": "MIT",
|
|
1576
|
+
"dependencies": {
|
|
1577
|
+
"@babel/core": "^7.28.0",
|
|
1578
|
+
"@babel/plugin-transform-react-jsx-self": "^7.27.1",
|
|
1579
|
+
"@babel/plugin-transform-react-jsx-source": "^7.27.1",
|
|
1580
|
+
"@rolldown/pluginutils": "1.0.0-beta.27",
|
|
1581
|
+
"@types/babel__core": "^7.20.5",
|
|
1582
|
+
"react-refresh": "^0.17.0"
|
|
1583
|
+
},
|
|
1584
|
+
"engines": {
|
|
1585
|
+
"node": "^14.18.0 || >=16.0.0"
|
|
1586
|
+
},
|
|
1587
|
+
"peerDependencies": {
|
|
1588
|
+
"vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
|
|
1589
|
+
}
|
|
1590
|
+
},
|
|
1591
|
+
"node_modules/baseline-browser-mapping": {
|
|
1592
|
+
"version": "2.10.10",
|
|
1593
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.10.tgz",
|
|
1594
|
+
"integrity": "sha512-sUoJ3IMxx4AyRqO4MLeHlnGDkyXRoUG0/AI9fjK+vS72ekpV0yWVY7O0BVjmBcRtkNcsAO2QDZ4tdKKGoI6YaQ==",
|
|
1595
|
+
"dev": true,
|
|
1596
|
+
"license": "Apache-2.0",
|
|
1597
|
+
"bin": {
|
|
1598
|
+
"baseline-browser-mapping": "dist/cli.cjs"
|
|
1599
|
+
},
|
|
1600
|
+
"engines": {
|
|
1601
|
+
"node": ">=6.0.0"
|
|
1602
|
+
}
|
|
1603
|
+
},
|
|
1604
|
+
"node_modules/browser-tabs-lock": {
|
|
1605
|
+
"version": "1.3.0",
|
|
1606
|
+
"resolved": "https://registry.npmjs.org/browser-tabs-lock/-/browser-tabs-lock-1.3.0.tgz",
|
|
1607
|
+
"integrity": "sha512-g6nHaobTiT0eMZ7jh16YpD2kcjAp+PInbiVq3M1x6KKaEIVhT4v9oURNIpZLOZ3LQbQ3XYfNhMAb/9hzNLIWrw==",
|
|
1608
|
+
"hasInstallScript": true,
|
|
1609
|
+
"license": "MIT",
|
|
1610
|
+
"dependencies": {
|
|
1611
|
+
"lodash": ">=4.17.21"
|
|
1612
|
+
}
|
|
1613
|
+
},
|
|
1614
|
+
"node_modules/browserslist": {
|
|
1615
|
+
"version": "4.28.1",
|
|
1616
|
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz",
|
|
1617
|
+
"integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
|
|
1618
|
+
"dev": true,
|
|
1619
|
+
"funding": [
|
|
1620
|
+
{
|
|
1621
|
+
"type": "opencollective",
|
|
1622
|
+
"url": "https://opencollective.com/browserslist"
|
|
1623
|
+
},
|
|
1624
|
+
{
|
|
1625
|
+
"type": "tidelift",
|
|
1626
|
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
|
1627
|
+
},
|
|
1628
|
+
{
|
|
1629
|
+
"type": "github",
|
|
1630
|
+
"url": "https://github.com/sponsors/ai"
|
|
1631
|
+
}
|
|
1632
|
+
],
|
|
1633
|
+
"license": "MIT",
|
|
1634
|
+
"dependencies": {
|
|
1635
|
+
"baseline-browser-mapping": "^2.9.0",
|
|
1636
|
+
"caniuse-lite": "^1.0.30001759",
|
|
1637
|
+
"electron-to-chromium": "^1.5.263",
|
|
1638
|
+
"node-releases": "^2.0.27",
|
|
1639
|
+
"update-browserslist-db": "^1.2.0"
|
|
1640
|
+
},
|
|
1641
|
+
"bin": {
|
|
1642
|
+
"browserslist": "cli.js"
|
|
1643
|
+
},
|
|
1644
|
+
"engines": {
|
|
1645
|
+
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
|
|
1646
|
+
}
|
|
1647
|
+
},
|
|
1648
|
+
"node_modules/caniuse-lite": {
|
|
1649
|
+
"version": "1.0.30001781",
|
|
1650
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001781.tgz",
|
|
1651
|
+
"integrity": "sha512-RdwNCyMsNBftLjW6w01z8bKEvT6e/5tpPVEgtn22TiLGlstHOVecsX2KHFkD5e/vRnIE4EGzpuIODb3mtswtkw==",
|
|
1652
|
+
"dev": true,
|
|
1653
|
+
"funding": [
|
|
1654
|
+
{
|
|
1655
|
+
"type": "opencollective",
|
|
1656
|
+
"url": "https://opencollective.com/browserslist"
|
|
1657
|
+
},
|
|
1658
|
+
{
|
|
1659
|
+
"type": "tidelift",
|
|
1660
|
+
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
|
|
1661
|
+
},
|
|
1662
|
+
{
|
|
1663
|
+
"type": "github",
|
|
1664
|
+
"url": "https://github.com/sponsors/ai"
|
|
1665
|
+
}
|
|
1666
|
+
],
|
|
1667
|
+
"license": "CC-BY-4.0"
|
|
1668
|
+
},
|
|
1669
|
+
"node_modules/clsx": {
|
|
1670
|
+
"version": "2.1.1",
|
|
1671
|
+
"resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
|
|
1672
|
+
"integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
|
|
1673
|
+
"license": "MIT",
|
|
1674
|
+
"engines": {
|
|
1675
|
+
"node": ">=6"
|
|
1676
|
+
}
|
|
1677
|
+
},
|
|
1678
|
+
"node_modules/convert-source-map": {
|
|
1679
|
+
"version": "2.0.0",
|
|
1680
|
+
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
|
|
1681
|
+
"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
|
|
1682
|
+
"dev": true,
|
|
1683
|
+
"license": "MIT"
|
|
1684
|
+
},
|
|
1685
|
+
"node_modules/cookie": {
|
|
1686
|
+
"version": "1.1.1",
|
|
1687
|
+
"resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz",
|
|
1688
|
+
"integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==",
|
|
1689
|
+
"license": "MIT",
|
|
1690
|
+
"engines": {
|
|
1691
|
+
"node": ">=18"
|
|
1692
|
+
},
|
|
1693
|
+
"funding": {
|
|
1694
|
+
"type": "opencollective",
|
|
1695
|
+
"url": "https://opencollective.com/express"
|
|
1696
|
+
}
|
|
1697
|
+
},
|
|
1698
|
+
"node_modules/debug": {
|
|
1699
|
+
"version": "4.4.3",
|
|
1700
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
1701
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
1702
|
+
"dev": true,
|
|
1703
|
+
"license": "MIT",
|
|
1704
|
+
"dependencies": {
|
|
1705
|
+
"ms": "^2.1.3"
|
|
1706
|
+
},
|
|
1707
|
+
"engines": {
|
|
1708
|
+
"node": ">=6.0"
|
|
1709
|
+
},
|
|
1710
|
+
"peerDependenciesMeta": {
|
|
1711
|
+
"supports-color": {
|
|
1712
|
+
"optional": true
|
|
1713
|
+
}
|
|
1714
|
+
}
|
|
1715
|
+
},
|
|
1716
|
+
"node_modules/detect-libc": {
|
|
1717
|
+
"version": "2.1.2",
|
|
1718
|
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
|
|
1719
|
+
"integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
|
|
1720
|
+
"dev": true,
|
|
1721
|
+
"license": "Apache-2.0",
|
|
1722
|
+
"engines": {
|
|
1723
|
+
"node": ">=8"
|
|
1724
|
+
}
|
|
1725
|
+
},
|
|
1726
|
+
"node_modules/dpop": {
|
|
1727
|
+
"version": "2.1.1",
|
|
1728
|
+
"resolved": "https://registry.npmjs.org/dpop/-/dpop-2.1.1.tgz",
|
|
1729
|
+
"integrity": "sha512-J0Of2JTiM4h5si0tlbPQ/lkqfZ5wAEVkKYBhkwyyANnPJfWH4VsR5uIkZ+T+OSPIwDYUg1fbd5Mmodd25HjY1w==",
|
|
1730
|
+
"license": "MIT",
|
|
1731
|
+
"funding": {
|
|
1732
|
+
"url": "https://github.com/sponsors/panva"
|
|
1733
|
+
}
|
|
1734
|
+
},
|
|
1735
|
+
"node_modules/electron-to-chromium": {
|
|
1736
|
+
"version": "1.5.325",
|
|
1737
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.325.tgz",
|
|
1738
|
+
"integrity": "sha512-PwfIw7WQSt3xX7yOf5OE/unLzsK9CaN2f/FvV3WjPR1Knoc1T9vePRVV4W1EM301JzzysK51K7FNKcusCr0zYA==",
|
|
1739
|
+
"dev": true,
|
|
1740
|
+
"license": "ISC"
|
|
1741
|
+
},
|
|
1742
|
+
"node_modules/enhanced-resolve": {
|
|
1743
|
+
"version": "5.20.1",
|
|
1744
|
+
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.20.1.tgz",
|
|
1745
|
+
"integrity": "sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==",
|
|
1746
|
+
"dev": true,
|
|
1747
|
+
"license": "MIT",
|
|
1748
|
+
"dependencies": {
|
|
1749
|
+
"graceful-fs": "^4.2.4",
|
|
1750
|
+
"tapable": "^2.3.0"
|
|
1751
|
+
},
|
|
1752
|
+
"engines": {
|
|
1753
|
+
"node": ">=10.13.0"
|
|
1754
|
+
}
|
|
1755
|
+
},
|
|
1756
|
+
"node_modules/es-cookie": {
|
|
1757
|
+
"version": "1.3.2",
|
|
1758
|
+
"resolved": "https://registry.npmjs.org/es-cookie/-/es-cookie-1.3.2.tgz",
|
|
1759
|
+
"integrity": "sha512-UTlYYhXGLOy05P/vKVT2Ui7WtC7NiRzGtJyAKKn32g5Gvcjn7KAClLPWlipCtxIus934dFg9o9jXiBL0nP+t9Q==",
|
|
1760
|
+
"license": "MIT"
|
|
1761
|
+
},
|
|
1762
|
+
"node_modules/esbuild": {
|
|
1763
|
+
"version": "0.25.12",
|
|
1764
|
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.12.tgz",
|
|
1765
|
+
"integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==",
|
|
1766
|
+
"dev": true,
|
|
1767
|
+
"hasInstallScript": true,
|
|
1768
|
+
"license": "MIT",
|
|
1769
|
+
"bin": {
|
|
1770
|
+
"esbuild": "bin/esbuild"
|
|
1771
|
+
},
|
|
1772
|
+
"engines": {
|
|
1773
|
+
"node": ">=18"
|
|
1774
|
+
},
|
|
1775
|
+
"optionalDependencies": {
|
|
1776
|
+
"@esbuild/aix-ppc64": "0.25.12",
|
|
1777
|
+
"@esbuild/android-arm": "0.25.12",
|
|
1778
|
+
"@esbuild/android-arm64": "0.25.12",
|
|
1779
|
+
"@esbuild/android-x64": "0.25.12",
|
|
1780
|
+
"@esbuild/darwin-arm64": "0.25.12",
|
|
1781
|
+
"@esbuild/darwin-x64": "0.25.12",
|
|
1782
|
+
"@esbuild/freebsd-arm64": "0.25.12",
|
|
1783
|
+
"@esbuild/freebsd-x64": "0.25.12",
|
|
1784
|
+
"@esbuild/linux-arm": "0.25.12",
|
|
1785
|
+
"@esbuild/linux-arm64": "0.25.12",
|
|
1786
|
+
"@esbuild/linux-ia32": "0.25.12",
|
|
1787
|
+
"@esbuild/linux-loong64": "0.25.12",
|
|
1788
|
+
"@esbuild/linux-mips64el": "0.25.12",
|
|
1789
|
+
"@esbuild/linux-ppc64": "0.25.12",
|
|
1790
|
+
"@esbuild/linux-riscv64": "0.25.12",
|
|
1791
|
+
"@esbuild/linux-s390x": "0.25.12",
|
|
1792
|
+
"@esbuild/linux-x64": "0.25.12",
|
|
1793
|
+
"@esbuild/netbsd-arm64": "0.25.12",
|
|
1794
|
+
"@esbuild/netbsd-x64": "0.25.12",
|
|
1795
|
+
"@esbuild/openbsd-arm64": "0.25.12",
|
|
1796
|
+
"@esbuild/openbsd-x64": "0.25.12",
|
|
1797
|
+
"@esbuild/openharmony-arm64": "0.25.12",
|
|
1798
|
+
"@esbuild/sunos-x64": "0.25.12",
|
|
1799
|
+
"@esbuild/win32-arm64": "0.25.12",
|
|
1800
|
+
"@esbuild/win32-ia32": "0.25.12",
|
|
1801
|
+
"@esbuild/win32-x64": "0.25.12"
|
|
1802
|
+
}
|
|
1803
|
+
},
|
|
1804
|
+
"node_modules/escalade": {
|
|
1805
|
+
"version": "3.2.0",
|
|
1806
|
+
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
|
|
1807
|
+
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
|
|
1808
|
+
"dev": true,
|
|
1809
|
+
"license": "MIT",
|
|
1810
|
+
"engines": {
|
|
1811
|
+
"node": ">=6"
|
|
1812
|
+
}
|
|
1813
|
+
},
|
|
1814
|
+
"node_modules/fdir": {
|
|
1815
|
+
"version": "6.5.0",
|
|
1816
|
+
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
|
|
1817
|
+
"integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
|
|
1818
|
+
"dev": true,
|
|
1819
|
+
"license": "MIT",
|
|
1820
|
+
"engines": {
|
|
1821
|
+
"node": ">=12.0.0"
|
|
1822
|
+
},
|
|
1823
|
+
"peerDependencies": {
|
|
1824
|
+
"picomatch": "^3 || ^4"
|
|
1825
|
+
},
|
|
1826
|
+
"peerDependenciesMeta": {
|
|
1827
|
+
"picomatch": {
|
|
1828
|
+
"optional": true
|
|
1829
|
+
}
|
|
1830
|
+
}
|
|
1831
|
+
},
|
|
1832
|
+
"node_modules/fsevents": {
|
|
1833
|
+
"version": "2.3.3",
|
|
1834
|
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
1835
|
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
1836
|
+
"dev": true,
|
|
1837
|
+
"hasInstallScript": true,
|
|
1838
|
+
"license": "MIT",
|
|
1839
|
+
"optional": true,
|
|
1840
|
+
"os": [
|
|
1841
|
+
"darwin"
|
|
1842
|
+
],
|
|
1843
|
+
"engines": {
|
|
1844
|
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
1845
|
+
}
|
|
1846
|
+
},
|
|
1847
|
+
"node_modules/gensync": {
|
|
1848
|
+
"version": "1.0.0-beta.2",
|
|
1849
|
+
"resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
|
|
1850
|
+
"integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
|
|
1851
|
+
"dev": true,
|
|
1852
|
+
"license": "MIT",
|
|
1853
|
+
"engines": {
|
|
1854
|
+
"node": ">=6.9.0"
|
|
1855
|
+
}
|
|
1856
|
+
},
|
|
1857
|
+
"node_modules/graceful-fs": {
|
|
1858
|
+
"version": "4.2.11",
|
|
1859
|
+
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
|
|
1860
|
+
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
|
1861
|
+
"dev": true,
|
|
1862
|
+
"license": "ISC"
|
|
1863
|
+
},
|
|
1864
|
+
"node_modules/jiti": {
|
|
1865
|
+
"version": "2.6.1",
|
|
1866
|
+
"resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz",
|
|
1867
|
+
"integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
|
|
1868
|
+
"dev": true,
|
|
1869
|
+
"license": "MIT",
|
|
1870
|
+
"bin": {
|
|
1871
|
+
"jiti": "lib/jiti-cli.mjs"
|
|
1872
|
+
}
|
|
1873
|
+
},
|
|
1874
|
+
"node_modules/jose": {
|
|
1875
|
+
"version": "6.2.2",
|
|
1876
|
+
"resolved": "https://registry.npmjs.org/jose/-/jose-6.2.2.tgz",
|
|
1877
|
+
"integrity": "sha512-d7kPDd34KO/YnzaDOlikGpOurfF0ByC2sEV4cANCtdqLlTfBlw2p14O/5d/zv40gJPbIQxfES3nSx1/oYNyuZQ==",
|
|
1878
|
+
"license": "MIT",
|
|
1879
|
+
"funding": {
|
|
1880
|
+
"url": "https://github.com/sponsors/panva"
|
|
1881
|
+
}
|
|
1882
|
+
},
|
|
1883
|
+
"node_modules/js-tokens": {
|
|
1884
|
+
"version": "4.0.0",
|
|
1885
|
+
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
|
|
1886
|
+
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
|
|
1887
|
+
"dev": true,
|
|
1888
|
+
"license": "MIT"
|
|
1889
|
+
},
|
|
1890
|
+
"node_modules/jsesc": {
|
|
1891
|
+
"version": "3.1.0",
|
|
1892
|
+
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
|
|
1893
|
+
"integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
|
|
1894
|
+
"dev": true,
|
|
1895
|
+
"license": "MIT",
|
|
1896
|
+
"bin": {
|
|
1897
|
+
"jsesc": "bin/jsesc"
|
|
1898
|
+
},
|
|
1899
|
+
"engines": {
|
|
1900
|
+
"node": ">=6"
|
|
1901
|
+
}
|
|
1902
|
+
},
|
|
1903
|
+
"node_modules/json5": {
|
|
1904
|
+
"version": "2.2.3",
|
|
1905
|
+
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
|
|
1906
|
+
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
|
|
1907
|
+
"dev": true,
|
|
1908
|
+
"license": "MIT",
|
|
1909
|
+
"bin": {
|
|
1910
|
+
"json5": "lib/cli.js"
|
|
1911
|
+
},
|
|
1912
|
+
"engines": {
|
|
1913
|
+
"node": ">=6"
|
|
1914
|
+
}
|
|
1915
|
+
},
|
|
1916
|
+
"node_modules/lightningcss": {
|
|
1917
|
+
"version": "1.32.0",
|
|
1918
|
+
"resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
|
|
1919
|
+
"integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
|
|
1920
|
+
"dev": true,
|
|
1921
|
+
"license": "MPL-2.0",
|
|
1922
|
+
"dependencies": {
|
|
1923
|
+
"detect-libc": "^2.0.3"
|
|
1924
|
+
},
|
|
1925
|
+
"engines": {
|
|
1926
|
+
"node": ">= 12.0.0"
|
|
1927
|
+
},
|
|
1928
|
+
"funding": {
|
|
1929
|
+
"type": "opencollective",
|
|
1930
|
+
"url": "https://opencollective.com/parcel"
|
|
1931
|
+
},
|
|
1932
|
+
"optionalDependencies": {
|
|
1933
|
+
"lightningcss-android-arm64": "1.32.0",
|
|
1934
|
+
"lightningcss-darwin-arm64": "1.32.0",
|
|
1935
|
+
"lightningcss-darwin-x64": "1.32.0",
|
|
1936
|
+
"lightningcss-freebsd-x64": "1.32.0",
|
|
1937
|
+
"lightningcss-linux-arm-gnueabihf": "1.32.0",
|
|
1938
|
+
"lightningcss-linux-arm64-gnu": "1.32.0",
|
|
1939
|
+
"lightningcss-linux-arm64-musl": "1.32.0",
|
|
1940
|
+
"lightningcss-linux-x64-gnu": "1.32.0",
|
|
1941
|
+
"lightningcss-linux-x64-musl": "1.32.0",
|
|
1942
|
+
"lightningcss-win32-arm64-msvc": "1.32.0",
|
|
1943
|
+
"lightningcss-win32-x64-msvc": "1.32.0"
|
|
1944
|
+
}
|
|
1945
|
+
},
|
|
1946
|
+
"node_modules/lightningcss-android-arm64": {
|
|
1947
|
+
"version": "1.32.0",
|
|
1948
|
+
"resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
|
|
1949
|
+
"integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
|
|
1950
|
+
"cpu": [
|
|
1951
|
+
"arm64"
|
|
1952
|
+
],
|
|
1953
|
+
"dev": true,
|
|
1954
|
+
"license": "MPL-2.0",
|
|
1955
|
+
"optional": true,
|
|
1956
|
+
"os": [
|
|
1957
|
+
"android"
|
|
1958
|
+
],
|
|
1959
|
+
"engines": {
|
|
1960
|
+
"node": ">= 12.0.0"
|
|
1961
|
+
},
|
|
1962
|
+
"funding": {
|
|
1963
|
+
"type": "opencollective",
|
|
1964
|
+
"url": "https://opencollective.com/parcel"
|
|
1965
|
+
}
|
|
1966
|
+
},
|
|
1967
|
+
"node_modules/lightningcss-darwin-arm64": {
|
|
1968
|
+
"version": "1.32.0",
|
|
1969
|
+
"resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
|
|
1970
|
+
"integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
|
|
1971
|
+
"cpu": [
|
|
1972
|
+
"arm64"
|
|
1973
|
+
],
|
|
1974
|
+
"dev": true,
|
|
1975
|
+
"license": "MPL-2.0",
|
|
1976
|
+
"optional": true,
|
|
1977
|
+
"os": [
|
|
1978
|
+
"darwin"
|
|
1979
|
+
],
|
|
1980
|
+
"engines": {
|
|
1981
|
+
"node": ">= 12.0.0"
|
|
1982
|
+
},
|
|
1983
|
+
"funding": {
|
|
1984
|
+
"type": "opencollective",
|
|
1985
|
+
"url": "https://opencollective.com/parcel"
|
|
1986
|
+
}
|
|
1987
|
+
},
|
|
1988
|
+
"node_modules/lightningcss-darwin-x64": {
|
|
1989
|
+
"version": "1.32.0",
|
|
1990
|
+
"resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
|
|
1991
|
+
"integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
|
|
1992
|
+
"cpu": [
|
|
1993
|
+
"x64"
|
|
1994
|
+
],
|
|
1995
|
+
"dev": true,
|
|
1996
|
+
"license": "MPL-2.0",
|
|
1997
|
+
"optional": true,
|
|
1998
|
+
"os": [
|
|
1999
|
+
"darwin"
|
|
2000
|
+
],
|
|
2001
|
+
"engines": {
|
|
2002
|
+
"node": ">= 12.0.0"
|
|
2003
|
+
},
|
|
2004
|
+
"funding": {
|
|
2005
|
+
"type": "opencollective",
|
|
2006
|
+
"url": "https://opencollective.com/parcel"
|
|
2007
|
+
}
|
|
2008
|
+
},
|
|
2009
|
+
"node_modules/lightningcss-freebsd-x64": {
|
|
2010
|
+
"version": "1.32.0",
|
|
2011
|
+
"resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
|
|
2012
|
+
"integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
|
|
2013
|
+
"cpu": [
|
|
2014
|
+
"x64"
|
|
2015
|
+
],
|
|
2016
|
+
"dev": true,
|
|
2017
|
+
"license": "MPL-2.0",
|
|
2018
|
+
"optional": true,
|
|
2019
|
+
"os": [
|
|
2020
|
+
"freebsd"
|
|
2021
|
+
],
|
|
2022
|
+
"engines": {
|
|
2023
|
+
"node": ">= 12.0.0"
|
|
2024
|
+
},
|
|
2025
|
+
"funding": {
|
|
2026
|
+
"type": "opencollective",
|
|
2027
|
+
"url": "https://opencollective.com/parcel"
|
|
2028
|
+
}
|
|
2029
|
+
},
|
|
2030
|
+
"node_modules/lightningcss-linux-arm-gnueabihf": {
|
|
2031
|
+
"version": "1.32.0",
|
|
2032
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
|
|
2033
|
+
"integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
|
|
2034
|
+
"cpu": [
|
|
2035
|
+
"arm"
|
|
2036
|
+
],
|
|
2037
|
+
"dev": true,
|
|
2038
|
+
"license": "MPL-2.0",
|
|
2039
|
+
"optional": true,
|
|
2040
|
+
"os": [
|
|
2041
|
+
"linux"
|
|
2042
|
+
],
|
|
2043
|
+
"engines": {
|
|
2044
|
+
"node": ">= 12.0.0"
|
|
2045
|
+
},
|
|
2046
|
+
"funding": {
|
|
2047
|
+
"type": "opencollective",
|
|
2048
|
+
"url": "https://opencollective.com/parcel"
|
|
2049
|
+
}
|
|
2050
|
+
},
|
|
2051
|
+
"node_modules/lightningcss-linux-arm64-gnu": {
|
|
2052
|
+
"version": "1.32.0",
|
|
2053
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
|
|
2054
|
+
"integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
|
|
2055
|
+
"cpu": [
|
|
2056
|
+
"arm64"
|
|
2057
|
+
],
|
|
2058
|
+
"dev": true,
|
|
2059
|
+
"license": "MPL-2.0",
|
|
2060
|
+
"optional": true,
|
|
2061
|
+
"os": [
|
|
2062
|
+
"linux"
|
|
2063
|
+
],
|
|
2064
|
+
"engines": {
|
|
2065
|
+
"node": ">= 12.0.0"
|
|
2066
|
+
},
|
|
2067
|
+
"funding": {
|
|
2068
|
+
"type": "opencollective",
|
|
2069
|
+
"url": "https://opencollective.com/parcel"
|
|
2070
|
+
}
|
|
2071
|
+
},
|
|
2072
|
+
"node_modules/lightningcss-linux-arm64-musl": {
|
|
2073
|
+
"version": "1.32.0",
|
|
2074
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
|
|
2075
|
+
"integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
|
|
2076
|
+
"cpu": [
|
|
2077
|
+
"arm64"
|
|
2078
|
+
],
|
|
2079
|
+
"dev": true,
|
|
2080
|
+
"license": "MPL-2.0",
|
|
2081
|
+
"optional": true,
|
|
2082
|
+
"os": [
|
|
2083
|
+
"linux"
|
|
2084
|
+
],
|
|
2085
|
+
"engines": {
|
|
2086
|
+
"node": ">= 12.0.0"
|
|
2087
|
+
},
|
|
2088
|
+
"funding": {
|
|
2089
|
+
"type": "opencollective",
|
|
2090
|
+
"url": "https://opencollective.com/parcel"
|
|
2091
|
+
}
|
|
2092
|
+
},
|
|
2093
|
+
"node_modules/lightningcss-linux-x64-gnu": {
|
|
2094
|
+
"version": "1.32.0",
|
|
2095
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
|
|
2096
|
+
"integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
|
|
2097
|
+
"cpu": [
|
|
2098
|
+
"x64"
|
|
2099
|
+
],
|
|
2100
|
+
"dev": true,
|
|
2101
|
+
"license": "MPL-2.0",
|
|
2102
|
+
"optional": true,
|
|
2103
|
+
"os": [
|
|
2104
|
+
"linux"
|
|
2105
|
+
],
|
|
2106
|
+
"engines": {
|
|
2107
|
+
"node": ">= 12.0.0"
|
|
2108
|
+
},
|
|
2109
|
+
"funding": {
|
|
2110
|
+
"type": "opencollective",
|
|
2111
|
+
"url": "https://opencollective.com/parcel"
|
|
2112
|
+
}
|
|
2113
|
+
},
|
|
2114
|
+
"node_modules/lightningcss-linux-x64-musl": {
|
|
2115
|
+
"version": "1.32.0",
|
|
2116
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
|
|
2117
|
+
"integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
|
|
2118
|
+
"cpu": [
|
|
2119
|
+
"x64"
|
|
2120
|
+
],
|
|
2121
|
+
"dev": true,
|
|
2122
|
+
"license": "MPL-2.0",
|
|
2123
|
+
"optional": true,
|
|
2124
|
+
"os": [
|
|
2125
|
+
"linux"
|
|
2126
|
+
],
|
|
2127
|
+
"engines": {
|
|
2128
|
+
"node": ">= 12.0.0"
|
|
2129
|
+
},
|
|
2130
|
+
"funding": {
|
|
2131
|
+
"type": "opencollective",
|
|
2132
|
+
"url": "https://opencollective.com/parcel"
|
|
2133
|
+
}
|
|
2134
|
+
},
|
|
2135
|
+
"node_modules/lightningcss-win32-arm64-msvc": {
|
|
2136
|
+
"version": "1.32.0",
|
|
2137
|
+
"resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
|
|
2138
|
+
"integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
|
|
2139
|
+
"cpu": [
|
|
2140
|
+
"arm64"
|
|
2141
|
+
],
|
|
2142
|
+
"dev": true,
|
|
2143
|
+
"license": "MPL-2.0",
|
|
2144
|
+
"optional": true,
|
|
2145
|
+
"os": [
|
|
2146
|
+
"win32"
|
|
2147
|
+
],
|
|
2148
|
+
"engines": {
|
|
2149
|
+
"node": ">= 12.0.0"
|
|
2150
|
+
},
|
|
2151
|
+
"funding": {
|
|
2152
|
+
"type": "opencollective",
|
|
2153
|
+
"url": "https://opencollective.com/parcel"
|
|
2154
|
+
}
|
|
2155
|
+
},
|
|
2156
|
+
"node_modules/lightningcss-win32-x64-msvc": {
|
|
2157
|
+
"version": "1.32.0",
|
|
2158
|
+
"resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
|
|
2159
|
+
"integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
|
|
2160
|
+
"cpu": [
|
|
2161
|
+
"x64"
|
|
2162
|
+
],
|
|
2163
|
+
"dev": true,
|
|
2164
|
+
"license": "MPL-2.0",
|
|
2165
|
+
"optional": true,
|
|
2166
|
+
"os": [
|
|
2167
|
+
"win32"
|
|
2168
|
+
],
|
|
2169
|
+
"engines": {
|
|
2170
|
+
"node": ">= 12.0.0"
|
|
2171
|
+
},
|
|
2172
|
+
"funding": {
|
|
2173
|
+
"type": "opencollective",
|
|
2174
|
+
"url": "https://opencollective.com/parcel"
|
|
2175
|
+
}
|
|
2176
|
+
},
|
|
2177
|
+
"node_modules/lodash": {
|
|
2178
|
+
"version": "4.17.23",
|
|
2179
|
+
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz",
|
|
2180
|
+
"integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==",
|
|
2181
|
+
"license": "MIT"
|
|
2182
|
+
},
|
|
2183
|
+
"node_modules/lru-cache": {
|
|
2184
|
+
"version": "5.1.1",
|
|
2185
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
|
|
2186
|
+
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
|
|
2187
|
+
"dev": true,
|
|
2188
|
+
"license": "ISC",
|
|
2189
|
+
"dependencies": {
|
|
2190
|
+
"yallist": "^3.0.2"
|
|
2191
|
+
}
|
|
2192
|
+
},
|
|
2193
|
+
"node_modules/lucide-react": {
|
|
2194
|
+
"version": "0.460.0",
|
|
2195
|
+
"resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.460.0.tgz",
|
|
2196
|
+
"integrity": "sha512-BVtq/DykVeIvRTJvRAgCsOwaGL8Un3Bxh8MbDxMhEWlZay3T4IpEKDEpwt5KZ0KJMHzgm6jrltxlT5eXOWXDHg==",
|
|
2197
|
+
"license": "ISC",
|
|
2198
|
+
"peerDependencies": {
|
|
2199
|
+
"react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc"
|
|
2200
|
+
}
|
|
2201
|
+
},
|
|
2202
|
+
"node_modules/magic-string": {
|
|
2203
|
+
"version": "0.30.21",
|
|
2204
|
+
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
|
|
2205
|
+
"integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
|
|
2206
|
+
"dev": true,
|
|
2207
|
+
"license": "MIT",
|
|
2208
|
+
"dependencies": {
|
|
2209
|
+
"@jridgewell/sourcemap-codec": "^1.5.5"
|
|
2210
|
+
}
|
|
2211
|
+
},
|
|
2212
|
+
"node_modules/mini-svg-data-uri": {
|
|
2213
|
+
"version": "1.4.4",
|
|
2214
|
+
"resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz",
|
|
2215
|
+
"integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==",
|
|
2216
|
+
"dev": true,
|
|
2217
|
+
"license": "MIT",
|
|
2218
|
+
"bin": {
|
|
2219
|
+
"mini-svg-data-uri": "cli.js"
|
|
2220
|
+
}
|
|
2221
|
+
},
|
|
2222
|
+
"node_modules/ms": {
|
|
2223
|
+
"version": "2.1.3",
|
|
2224
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
2225
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
2226
|
+
"dev": true,
|
|
2227
|
+
"license": "MIT"
|
|
2228
|
+
},
|
|
2229
|
+
"node_modules/nanoid": {
|
|
2230
|
+
"version": "3.3.11",
|
|
2231
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
|
|
2232
|
+
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
|
|
2233
|
+
"dev": true,
|
|
2234
|
+
"funding": [
|
|
2235
|
+
{
|
|
2236
|
+
"type": "github",
|
|
2237
|
+
"url": "https://github.com/sponsors/ai"
|
|
2238
|
+
}
|
|
2239
|
+
],
|
|
2240
|
+
"license": "MIT",
|
|
2241
|
+
"bin": {
|
|
2242
|
+
"nanoid": "bin/nanoid.cjs"
|
|
2243
|
+
},
|
|
2244
|
+
"engines": {
|
|
2245
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
2246
|
+
}
|
|
2247
|
+
},
|
|
2248
|
+
"node_modules/node-releases": {
|
|
2249
|
+
"version": "2.0.36",
|
|
2250
|
+
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.36.tgz",
|
|
2251
|
+
"integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==",
|
|
2252
|
+
"dev": true,
|
|
2253
|
+
"license": "MIT"
|
|
2254
|
+
},
|
|
2255
|
+
"node_modules/oauth4webapi": {
|
|
2256
|
+
"version": "3.8.5",
|
|
2257
|
+
"resolved": "https://registry.npmjs.org/oauth4webapi/-/oauth4webapi-3.8.5.tgz",
|
|
2258
|
+
"integrity": "sha512-A8jmyUckVhRJj5lspguklcl90Ydqk61H3dcU0oLhH3Yv13KpAliKTt5hknpGGPZSSfOwGyraNEFmofDYH+1kSg==",
|
|
2259
|
+
"license": "MIT",
|
|
2260
|
+
"funding": {
|
|
2261
|
+
"url": "https://github.com/sponsors/panva"
|
|
2262
|
+
}
|
|
2263
|
+
},
|
|
2264
|
+
"node_modules/openid-client": {
|
|
2265
|
+
"version": "6.8.2",
|
|
2266
|
+
"resolved": "https://registry.npmjs.org/openid-client/-/openid-client-6.8.2.tgz",
|
|
2267
|
+
"integrity": "sha512-uOvTCndr4udZsKihJ68H9bUICrriHdUVJ6Az+4Ns6cW55rwM5h0bjVIzDz2SxgOI84LKjFyjOFvERLzdTUROGA==",
|
|
2268
|
+
"license": "MIT",
|
|
2269
|
+
"dependencies": {
|
|
2270
|
+
"jose": "^6.1.3",
|
|
2271
|
+
"oauth4webapi": "^3.8.4"
|
|
2272
|
+
},
|
|
2273
|
+
"funding": {
|
|
2274
|
+
"url": "https://github.com/sponsors/panva"
|
|
2275
|
+
}
|
|
2276
|
+
},
|
|
2277
|
+
"node_modules/picocolors": {
|
|
2278
|
+
"version": "1.1.1",
|
|
2279
|
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
2280
|
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
2281
|
+
"dev": true,
|
|
2282
|
+
"license": "ISC"
|
|
2283
|
+
},
|
|
2284
|
+
"node_modules/picomatch": {
|
|
2285
|
+
"version": "4.0.4",
|
|
2286
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
|
|
2287
|
+
"integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
|
|
2288
|
+
"dev": true,
|
|
2289
|
+
"license": "MIT",
|
|
2290
|
+
"engines": {
|
|
2291
|
+
"node": ">=12"
|
|
2292
|
+
},
|
|
2293
|
+
"funding": {
|
|
2294
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
2295
|
+
}
|
|
2296
|
+
},
|
|
2297
|
+
"node_modules/postcss": {
|
|
2298
|
+
"version": "8.5.8",
|
|
2299
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz",
|
|
2300
|
+
"integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==",
|
|
2301
|
+
"dev": true,
|
|
2302
|
+
"funding": [
|
|
2303
|
+
{
|
|
2304
|
+
"type": "opencollective",
|
|
2305
|
+
"url": "https://opencollective.com/postcss/"
|
|
2306
|
+
},
|
|
2307
|
+
{
|
|
2308
|
+
"type": "tidelift",
|
|
2309
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
2310
|
+
},
|
|
2311
|
+
{
|
|
2312
|
+
"type": "github",
|
|
2313
|
+
"url": "https://github.com/sponsors/ai"
|
|
2314
|
+
}
|
|
2315
|
+
],
|
|
2316
|
+
"license": "MIT",
|
|
2317
|
+
"dependencies": {
|
|
2318
|
+
"nanoid": "^3.3.11",
|
|
2319
|
+
"picocolors": "^1.1.1",
|
|
2320
|
+
"source-map-js": "^1.2.1"
|
|
2321
|
+
},
|
|
2322
|
+
"engines": {
|
|
2323
|
+
"node": "^10 || ^12 || >=14"
|
|
2324
|
+
}
|
|
2325
|
+
},
|
|
2326
|
+
"node_modules/react": {
|
|
2327
|
+
"version": "19.2.4",
|
|
2328
|
+
"resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz",
|
|
2329
|
+
"integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==",
|
|
2330
|
+
"license": "MIT",
|
|
2331
|
+
"engines": {
|
|
2332
|
+
"node": ">=0.10.0"
|
|
2333
|
+
}
|
|
2334
|
+
},
|
|
2335
|
+
"node_modules/react-dom": {
|
|
2336
|
+
"version": "19.2.4",
|
|
2337
|
+
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz",
|
|
2338
|
+
"integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==",
|
|
2339
|
+
"license": "MIT",
|
|
2340
|
+
"dependencies": {
|
|
2341
|
+
"scheduler": "^0.27.0"
|
|
2342
|
+
},
|
|
2343
|
+
"peerDependencies": {
|
|
2344
|
+
"react": "^19.2.4"
|
|
2345
|
+
}
|
|
2346
|
+
},
|
|
2347
|
+
"node_modules/react-refresh": {
|
|
2348
|
+
"version": "0.17.0",
|
|
2349
|
+
"resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz",
|
|
2350
|
+
"integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==",
|
|
2351
|
+
"dev": true,
|
|
2352
|
+
"license": "MIT",
|
|
2353
|
+
"engines": {
|
|
2354
|
+
"node": ">=0.10.0"
|
|
2355
|
+
}
|
|
2356
|
+
},
|
|
2357
|
+
"node_modules/react-router": {
|
|
2358
|
+
"version": "7.13.2",
|
|
2359
|
+
"resolved": "https://registry.npmjs.org/react-router/-/react-router-7.13.2.tgz",
|
|
2360
|
+
"integrity": "sha512-tX1Aee+ArlKQP+NIUd7SE6Li+CiGKwQtbS+FfRxPX6Pe4vHOo6nr9d++u5cwg+Z8K/x8tP+7qLmujDtfrAoUJA==",
|
|
2361
|
+
"license": "MIT",
|
|
2362
|
+
"dependencies": {
|
|
2363
|
+
"cookie": "^1.0.1",
|
|
2364
|
+
"set-cookie-parser": "^2.6.0"
|
|
2365
|
+
},
|
|
2366
|
+
"engines": {
|
|
2367
|
+
"node": ">=20.0.0"
|
|
2368
|
+
},
|
|
2369
|
+
"peerDependencies": {
|
|
2370
|
+
"react": ">=18",
|
|
2371
|
+
"react-dom": ">=18"
|
|
2372
|
+
},
|
|
2373
|
+
"peerDependenciesMeta": {
|
|
2374
|
+
"react-dom": {
|
|
2375
|
+
"optional": true
|
|
2376
|
+
}
|
|
2377
|
+
}
|
|
2378
|
+
},
|
|
2379
|
+
"node_modules/react-router-dom": {
|
|
2380
|
+
"version": "7.13.2",
|
|
2381
|
+
"resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.13.2.tgz",
|
|
2382
|
+
"integrity": "sha512-aR7SUORwTqAW0JDeiWF07e9SBE9qGpByR9I8kJT5h/FrBKxPMS6TiC7rmVO+gC0q52Bx7JnjWe8Z1sR9faN4YA==",
|
|
2383
|
+
"license": "MIT",
|
|
2384
|
+
"dependencies": {
|
|
2385
|
+
"react-router": "7.13.2"
|
|
2386
|
+
},
|
|
2387
|
+
"engines": {
|
|
2388
|
+
"node": ">=20.0.0"
|
|
2389
|
+
},
|
|
2390
|
+
"peerDependencies": {
|
|
2391
|
+
"react": ">=18",
|
|
2392
|
+
"react-dom": ">=18"
|
|
2393
|
+
}
|
|
2394
|
+
},
|
|
2395
|
+
"node_modules/rollup": {
|
|
2396
|
+
"version": "4.60.0",
|
|
2397
|
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.0.tgz",
|
|
2398
|
+
"integrity": "sha512-yqjxruMGBQJ2gG4HtjZtAfXArHomazDHoFwFFmZZl0r7Pdo7qCIXKqKHZc8yeoMgzJJ+pO6pEEHa+V7uzWlrAQ==",
|
|
2399
|
+
"dev": true,
|
|
2400
|
+
"license": "MIT",
|
|
2401
|
+
"dependencies": {
|
|
2402
|
+
"@types/estree": "1.0.8"
|
|
2403
|
+
},
|
|
2404
|
+
"bin": {
|
|
2405
|
+
"rollup": "dist/bin/rollup"
|
|
2406
|
+
},
|
|
2407
|
+
"engines": {
|
|
2408
|
+
"node": ">=18.0.0",
|
|
2409
|
+
"npm": ">=8.0.0"
|
|
2410
|
+
},
|
|
2411
|
+
"optionalDependencies": {
|
|
2412
|
+
"@rollup/rollup-android-arm-eabi": "4.60.0",
|
|
2413
|
+
"@rollup/rollup-android-arm64": "4.60.0",
|
|
2414
|
+
"@rollup/rollup-darwin-arm64": "4.60.0",
|
|
2415
|
+
"@rollup/rollup-darwin-x64": "4.60.0",
|
|
2416
|
+
"@rollup/rollup-freebsd-arm64": "4.60.0",
|
|
2417
|
+
"@rollup/rollup-freebsd-x64": "4.60.0",
|
|
2418
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.60.0",
|
|
2419
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.60.0",
|
|
2420
|
+
"@rollup/rollup-linux-arm64-gnu": "4.60.0",
|
|
2421
|
+
"@rollup/rollup-linux-arm64-musl": "4.60.0",
|
|
2422
|
+
"@rollup/rollup-linux-loong64-gnu": "4.60.0",
|
|
2423
|
+
"@rollup/rollup-linux-loong64-musl": "4.60.0",
|
|
2424
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.60.0",
|
|
2425
|
+
"@rollup/rollup-linux-ppc64-musl": "4.60.0",
|
|
2426
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.60.0",
|
|
2427
|
+
"@rollup/rollup-linux-riscv64-musl": "4.60.0",
|
|
2428
|
+
"@rollup/rollup-linux-s390x-gnu": "4.60.0",
|
|
2429
|
+
"@rollup/rollup-linux-x64-gnu": "4.60.0",
|
|
2430
|
+
"@rollup/rollup-linux-x64-musl": "4.60.0",
|
|
2431
|
+
"@rollup/rollup-openbsd-x64": "4.60.0",
|
|
2432
|
+
"@rollup/rollup-openharmony-arm64": "4.60.0",
|
|
2433
|
+
"@rollup/rollup-win32-arm64-msvc": "4.60.0",
|
|
2434
|
+
"@rollup/rollup-win32-ia32-msvc": "4.60.0",
|
|
2435
|
+
"@rollup/rollup-win32-x64-gnu": "4.60.0",
|
|
2436
|
+
"@rollup/rollup-win32-x64-msvc": "4.60.0",
|
|
2437
|
+
"fsevents": "~2.3.2"
|
|
2438
|
+
}
|
|
2439
|
+
},
|
|
2440
|
+
"node_modules/scheduler": {
|
|
2441
|
+
"version": "0.27.0",
|
|
2442
|
+
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
|
|
2443
|
+
"integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
|
|
2444
|
+
"license": "MIT"
|
|
2445
|
+
},
|
|
2446
|
+
"node_modules/semver": {
|
|
2447
|
+
"version": "6.3.1",
|
|
2448
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
|
2449
|
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
|
|
2450
|
+
"dev": true,
|
|
2451
|
+
"license": "ISC",
|
|
2452
|
+
"bin": {
|
|
2453
|
+
"semver": "bin/semver.js"
|
|
2454
|
+
}
|
|
2455
|
+
},
|
|
2456
|
+
"node_modules/set-cookie-parser": {
|
|
2457
|
+
"version": "2.7.2",
|
|
2458
|
+
"resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.2.tgz",
|
|
2459
|
+
"integrity": "sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==",
|
|
2460
|
+
"license": "MIT"
|
|
2461
|
+
},
|
|
2462
|
+
"node_modules/source-map-js": {
|
|
2463
|
+
"version": "1.2.1",
|
|
2464
|
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
2465
|
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
2466
|
+
"dev": true,
|
|
2467
|
+
"license": "BSD-3-Clause",
|
|
2468
|
+
"engines": {
|
|
2469
|
+
"node": ">=0.10.0"
|
|
2470
|
+
}
|
|
2471
|
+
},
|
|
2472
|
+
"node_modules/tailwind-merge": {
|
|
2473
|
+
"version": "2.6.1",
|
|
2474
|
+
"resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-2.6.1.tgz",
|
|
2475
|
+
"integrity": "sha512-Oo6tHdpZsGpkKG88HJ8RR1rg/RdnEkQEfMoEk2x1XRI3F1AxeU+ijRXpiVUF4UbLfcxxRGw6TbUINKYdWVsQTQ==",
|
|
2476
|
+
"license": "MIT",
|
|
2477
|
+
"funding": {
|
|
2478
|
+
"type": "github",
|
|
2479
|
+
"url": "https://github.com/sponsors/dcastil"
|
|
2480
|
+
}
|
|
2481
|
+
},
|
|
2482
|
+
"node_modules/tailwindcss": {
|
|
2483
|
+
"version": "4.2.2",
|
|
2484
|
+
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.2.2.tgz",
|
|
2485
|
+
"integrity": "sha512-KWBIxs1Xb6NoLdMVqhbhgwZf2PGBpPEiwOqgI4pFIYbNTfBXiKYyWoTsXgBQ9WFg/OlhnvHaY+AEpW7wSmFo2Q==",
|
|
2486
|
+
"dev": true,
|
|
2487
|
+
"license": "MIT"
|
|
2488
|
+
},
|
|
2489
|
+
"node_modules/tapable": {
|
|
2490
|
+
"version": "2.3.2",
|
|
2491
|
+
"resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.2.tgz",
|
|
2492
|
+
"integrity": "sha512-1MOpMXuhGzGL5TTCZFItxCc0AARf1EZFQkGqMm7ERKj8+Hgr5oLvJOVFcC+lRmR8hCe2S3jC4T5D7Vg/d7/fhA==",
|
|
2493
|
+
"dev": true,
|
|
2494
|
+
"license": "MIT",
|
|
2495
|
+
"engines": {
|
|
2496
|
+
"node": ">=6"
|
|
2497
|
+
},
|
|
2498
|
+
"funding": {
|
|
2499
|
+
"type": "opencollective",
|
|
2500
|
+
"url": "https://opencollective.com/webpack"
|
|
2501
|
+
}
|
|
2502
|
+
},
|
|
2503
|
+
"node_modules/tinyglobby": {
|
|
2504
|
+
"version": "0.2.15",
|
|
2505
|
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
|
|
2506
|
+
"integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
|
|
2507
|
+
"dev": true,
|
|
2508
|
+
"license": "MIT",
|
|
2509
|
+
"dependencies": {
|
|
2510
|
+
"fdir": "^6.5.0",
|
|
2511
|
+
"picomatch": "^4.0.3"
|
|
2512
|
+
},
|
|
2513
|
+
"engines": {
|
|
2514
|
+
"node": ">=12.0.0"
|
|
2515
|
+
},
|
|
2516
|
+
"funding": {
|
|
2517
|
+
"url": "https://github.com/sponsors/SuperchupuDev"
|
|
2518
|
+
}
|
|
2519
|
+
},
|
|
2520
|
+
"node_modules/update-browserslist-db": {
|
|
2521
|
+
"version": "1.2.3",
|
|
2522
|
+
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
|
|
2523
|
+
"integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
|
|
2524
|
+
"dev": true,
|
|
2525
|
+
"funding": [
|
|
2526
|
+
{
|
|
2527
|
+
"type": "opencollective",
|
|
2528
|
+
"url": "https://opencollective.com/browserslist"
|
|
2529
|
+
},
|
|
2530
|
+
{
|
|
2531
|
+
"type": "tidelift",
|
|
2532
|
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
|
2533
|
+
},
|
|
2534
|
+
{
|
|
2535
|
+
"type": "github",
|
|
2536
|
+
"url": "https://github.com/sponsors/ai"
|
|
2537
|
+
}
|
|
2538
|
+
],
|
|
2539
|
+
"license": "MIT",
|
|
2540
|
+
"dependencies": {
|
|
2541
|
+
"escalade": "^3.2.0",
|
|
2542
|
+
"picocolors": "^1.1.1"
|
|
2543
|
+
},
|
|
2544
|
+
"bin": {
|
|
2545
|
+
"update-browserslist-db": "cli.js"
|
|
2546
|
+
},
|
|
2547
|
+
"peerDependencies": {
|
|
2548
|
+
"browserslist": ">= 4.21.0"
|
|
2549
|
+
}
|
|
2550
|
+
},
|
|
2551
|
+
"node_modules/vite": {
|
|
2552
|
+
"version": "6.4.1",
|
|
2553
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-6.4.1.tgz",
|
|
2554
|
+
"integrity": "sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==",
|
|
2555
|
+
"dev": true,
|
|
2556
|
+
"license": "MIT",
|
|
2557
|
+
"dependencies": {
|
|
2558
|
+
"esbuild": "^0.25.0",
|
|
2559
|
+
"fdir": "^6.4.4",
|
|
2560
|
+
"picomatch": "^4.0.2",
|
|
2561
|
+
"postcss": "^8.5.3",
|
|
2562
|
+
"rollup": "^4.34.9",
|
|
2563
|
+
"tinyglobby": "^0.2.13"
|
|
2564
|
+
},
|
|
2565
|
+
"bin": {
|
|
2566
|
+
"vite": "bin/vite.js"
|
|
2567
|
+
},
|
|
2568
|
+
"engines": {
|
|
2569
|
+
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
|
|
2570
|
+
},
|
|
2571
|
+
"funding": {
|
|
2572
|
+
"url": "https://github.com/vitejs/vite?sponsor=1"
|
|
2573
|
+
},
|
|
2574
|
+
"optionalDependencies": {
|
|
2575
|
+
"fsevents": "~2.3.3"
|
|
2576
|
+
},
|
|
2577
|
+
"peerDependencies": {
|
|
2578
|
+
"@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
|
|
2579
|
+
"jiti": ">=1.21.0",
|
|
2580
|
+
"less": "*",
|
|
2581
|
+
"lightningcss": "^1.21.0",
|
|
2582
|
+
"sass": "*",
|
|
2583
|
+
"sass-embedded": "*",
|
|
2584
|
+
"stylus": "*",
|
|
2585
|
+
"sugarss": "*",
|
|
2586
|
+
"terser": "^5.16.0",
|
|
2587
|
+
"tsx": "^4.8.1",
|
|
2588
|
+
"yaml": "^2.4.2"
|
|
2589
|
+
},
|
|
2590
|
+
"peerDependenciesMeta": {
|
|
2591
|
+
"@types/node": {
|
|
2592
|
+
"optional": true
|
|
2593
|
+
},
|
|
2594
|
+
"jiti": {
|
|
2595
|
+
"optional": true
|
|
2596
|
+
},
|
|
2597
|
+
"less": {
|
|
2598
|
+
"optional": true
|
|
2599
|
+
},
|
|
2600
|
+
"lightningcss": {
|
|
2601
|
+
"optional": true
|
|
2602
|
+
},
|
|
2603
|
+
"sass": {
|
|
2604
|
+
"optional": true
|
|
2605
|
+
},
|
|
2606
|
+
"sass-embedded": {
|
|
2607
|
+
"optional": true
|
|
2608
|
+
},
|
|
2609
|
+
"stylus": {
|
|
2610
|
+
"optional": true
|
|
2611
|
+
},
|
|
2612
|
+
"sugarss": {
|
|
2613
|
+
"optional": true
|
|
2614
|
+
},
|
|
2615
|
+
"terser": {
|
|
2616
|
+
"optional": true
|
|
2617
|
+
},
|
|
2618
|
+
"tsx": {
|
|
2619
|
+
"optional": true
|
|
2620
|
+
},
|
|
2621
|
+
"yaml": {
|
|
2622
|
+
"optional": true
|
|
2623
|
+
}
|
|
2624
|
+
}
|
|
2625
|
+
},
|
|
2626
|
+
"node_modules/yallist": {
|
|
2627
|
+
"version": "3.1.1",
|
|
2628
|
+
"resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
|
|
2629
|
+
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
|
|
2630
|
+
"dev": true,
|
|
2631
|
+
"license": "ISC"
|
|
2632
|
+
}
|
|
2633
|
+
}
|
|
2634
|
+
}
|