@regulaforensics/face-sdk 7.2.423-beta → 7.2.425-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -3
- package/RNFaceSDK.podspec +1 -1
- package/android/src/main/java/com/regula/plugin/facesdk/JSONConstructor.kt +2 -0
- package/android/src/main/java/com/regula/plugin/facesdk/Main.kt +18 -0
- package/examples/capacitor/android/app/src/main/AndroidManifest.xml +2 -2
- package/examples/capacitor/index.html +2 -7
- package/examples/capacitor/index.tsx +53 -0
- package/examples/capacitor/package-lock.json +17 -3
- package/examples/capacitor/package.json +2 -2
- package/examples/capacitor/scripts/setup.sh +4 -2
- package/examples/capacitor/src/main.css +60 -6
- package/examples/capacitor/src/main.html +1 -1
- package/examples/capacitor/src/main.tsx +51 -87
- package/examples/ionic/README.md +1 -1
- package/examples/ionic/angular.json +3 -3
- package/examples/ionic/config.xml +4 -2
- package/examples/ionic/index.tsx +68 -0
- package/examples/ionic/package-lock.json +849 -763
- package/examples/ionic/package.json +2 -2
- package/examples/ionic/src/main.css +60 -6
- package/examples/ionic/src/main.html +1 -1
- package/examples/ionic/src/{main.ts → main.tsx} +52 -97
- package/examples/ionic/tsconfig.json +3 -2
- package/examples/react_native/README.md +1 -0
- package/examples/react_native/app.config.ts +1 -1
- package/examples/react_native/index.tsx +49 -7
- package/examples/react_native/package-lock.json +618 -621
- package/examples/react_native/package.json +8 -8
- package/examples/react_native/src/main.css +60 -6
- package/examples/react_native/src/main.html +1 -1
- package/examples/react_native/src/main.tsx +54 -80
- package/ios/RFSWJSONConstructor.h +0 -1
- package/ios/RFSWJSONConstructor.m +5 -14
- package/ios/RFSWMain.m +30 -0
- package/package.json +1 -1
- package/plugin.xml +1 -1
- package/test/json.tsx +375 -0
- package/test/package-lock.json +584 -0
- package/test/package.json +9 -0
- package/test/test.tsx +61 -0
- package/test/utils.tsx +38 -0
- package/www/capacitor/customization/customization_fonts.js +1 -1
- package/www/capacitor/customization/customization_images.js +1 -1
- package/www/capacitor/customization/font.js +8 -0
- package/www/capacitor/detect_faces/detect_face_result.js +12 -0
- package/www/capacitor/detect_faces/detect_faces_attribute_result.js +9 -0
- package/www/capacitor/detect_faces/detect_faces_backend_exception.js +7 -0
- package/www/capacitor/detect_faces/detect_faces_config.js +34 -0
- package/www/capacitor/detect_faces/detect_faces_exception.js +8 -0
- package/www/capacitor/detect_faces/detect_faces_request.js +22 -0
- package/www/capacitor/detect_faces/detect_faces_response.js +9 -0
- package/www/capacitor/face_capture/face_capture_config.js +37 -0
- package/www/capacitor/face_capture/face_capture_exception.js +7 -0
- package/www/capacitor/face_capture/face_capture_image.js +8 -0
- package/www/capacitor/face_capture/face_capture_response.js +7 -0
- package/www/capacitor/image_params/output_image_crop.js +23 -0
- package/www/capacitor/image_params/output_image_params.js +19 -0
- package/www/capacitor/image_params/point.js +7 -0
- package/www/capacitor/image_params/rect.js +9 -0
- package/www/capacitor/image_params/size.js +12 -0
- package/www/capacitor/image_quality/image_quality_characteristic.js +22 -0
- package/www/capacitor/image_quality/image_quality_range.js +7 -0
- package/www/capacitor/image_quality/image_quality_result.js +10 -0
- package/www/capacitor/index.js +48 -0
- package/www/capacitor/init/face_sdk_version.js +8 -0
- package/www/capacitor/init/init_config.js +19 -0
- package/www/capacitor/init/init_exception.js +8 -0
- package/www/capacitor/init/license_exception.js +7 -0
- package/www/capacitor/internal/bridge.js +20 -1
- package/www/capacitor/liveness/liveness_backend_exception.js +7 -0
- package/www/capacitor/liveness/liveness_config.js +43 -0
- package/www/capacitor/liveness/liveness_exception.js +8 -0
- package/www/capacitor/liveness/liveness_notification.js +7 -0
- package/www/capacitor/liveness/liveness_response.js +11 -0
- package/www/capacitor/match_faces/compared_face.js +9 -0
- package/www/capacitor/match_faces/compared_faces_pair.js +10 -0
- package/www/capacitor/match_faces/compared_faces_split.js +7 -0
- package/www/capacitor/match_faces/match_faces_backend_exception.js +7 -0
- package/www/capacitor/match_faces/match_faces_config.js +19 -0
- package/www/capacitor/match_faces/match_faces_detection.js +9 -0
- package/www/capacitor/match_faces/match_faces_detection_face.js +11 -0
- package/www/capacitor/match_faces/match_faces_exception.js +8 -0
- package/www/capacitor/match_faces/match_faces_image.js +9 -0
- package/www/capacitor/match_faces/match_faces_request.js +27 -0
- package/www/capacitor/match_faces/match_faces_response.js +9 -0
- package/www/capacitor/person_database/edit_group_persons_request.js +15 -0
- package/www/capacitor/person_database/image_upload.js +17 -0
- package/www/capacitor/person_database/pageable_item_list.js +8 -0
- package/www/capacitor/person_database/person.js +13 -0
- package/www/capacitor/person_database/person_group.js +11 -0
- package/www/capacitor/person_database/person_image.js +13 -0
- package/www/capacitor/person_database/search_person.js +14 -0
- package/www/capacitor/person_database/search_person_detection.js +9 -0
- package/www/capacitor/person_database/search_person_image.js +15 -0
- package/www/capacitor/person_database/search_person_request.js +29 -0
- package/www/cordova.js +753 -6
- package/www/react-native/customization/customization_fonts.js +1 -1
- package/www/react-native/customization/customization_images.js +1 -1
- package/www/react-native/customization/font.js +8 -0
- package/www/react-native/detect_faces/detect_face_result.js +12 -0
- package/www/react-native/detect_faces/detect_faces_attribute_result.js +9 -0
- package/www/react-native/detect_faces/detect_faces_backend_exception.js +7 -0
- package/www/react-native/detect_faces/detect_faces_config.js +34 -0
- package/www/react-native/detect_faces/detect_faces_exception.js +8 -0
- package/www/react-native/detect_faces/detect_faces_request.js +22 -0
- package/www/react-native/detect_faces/detect_faces_response.js +9 -0
- package/www/react-native/face_capture/face_capture_config.js +37 -0
- package/www/react-native/face_capture/face_capture_exception.js +7 -0
- package/www/react-native/face_capture/face_capture_image.js +8 -0
- package/www/react-native/face_capture/face_capture_response.js +7 -0
- package/www/react-native/image_params/output_image_crop.js +23 -0
- package/www/react-native/image_params/output_image_params.js +19 -0
- package/www/react-native/image_params/point.js +7 -0
- package/www/react-native/image_params/rect.js +9 -0
- package/www/react-native/image_params/size.js +12 -0
- package/www/react-native/image_quality/image_quality_characteristic.js +22 -0
- package/www/react-native/image_quality/image_quality_range.js +7 -0
- package/www/react-native/image_quality/image_quality_result.js +10 -0
- package/www/react-native/index.js +48 -0
- package/www/react-native/init/face_sdk_version.js +8 -0
- package/www/react-native/init/init_config.js +19 -0
- package/www/react-native/init/init_exception.js +8 -0
- package/www/react-native/init/license_exception.js +7 -0
- package/www/react-native/internal/bridge.js +20 -1
- package/www/react-native/liveness/liveness_backend_exception.js +7 -0
- package/www/react-native/liveness/liveness_config.js +43 -0
- package/www/react-native/liveness/liveness_exception.js +8 -0
- package/www/react-native/liveness/liveness_notification.js +7 -0
- package/www/react-native/liveness/liveness_response.js +11 -0
- package/www/react-native/match_faces/compared_face.js +9 -0
- package/www/react-native/match_faces/compared_faces_pair.js +10 -0
- package/www/react-native/match_faces/compared_faces_split.js +7 -0
- package/www/react-native/match_faces/match_faces_backend_exception.js +7 -0
- package/www/react-native/match_faces/match_faces_config.js +19 -0
- package/www/react-native/match_faces/match_faces_detection.js +9 -0
- package/www/react-native/match_faces/match_faces_detection_face.js +11 -0
- package/www/react-native/match_faces/match_faces_exception.js +8 -0
- package/www/react-native/match_faces/match_faces_image.js +9 -0
- package/www/react-native/match_faces/match_faces_request.js +27 -0
- package/www/react-native/match_faces/match_faces_response.js +9 -0
- package/www/react-native/person_database/edit_group_persons_request.js +15 -0
- package/www/react-native/person_database/image_upload.js +17 -0
- package/www/react-native/person_database/pageable_item_list.js +8 -0
- package/www/react-native/person_database/person.js +13 -0
- package/www/react-native/person_database/person_group.js +11 -0
- package/www/react-native/person_database/person_image.js +13 -0
- package/www/react-native/person_database/search_person.js +14 -0
- package/www/react-native/person_database/search_person_detection.js +9 -0
- package/www/react-native/person_database/search_person_image.js +15 -0
- package/www/react-native/person_database/search_person_request.js +29 -0
- package/www/types/index.d.ts +12 -0
- package/www/types/match_faces/match_faces_config.d.ts +2 -0
- package/www/types/person_database/search_person_request.d.ts +4 -0
- package/examples/cordova/.vscode/launch.json +0 -28
- package/examples/cordova/README.md +0 -25
- package/examples/cordova/config.xml +0 -26
- package/examples/cordova/package-lock.json +0 -1313
- package/examples/cordova/package.json +0 -30
- package/examples/cordova/scripts/android.sh +0 -8
- package/examples/cordova/scripts/ios.sh +0 -8
- package/examples/cordova/scripts/setup.sh +0 -8
- package/examples/cordova/www/images/logo.png +0 -0
- package/examples/cordova/www/index.html +0 -21
- package/examples/cordova/www/src/main.css +0 -83
- package/examples/cordova/www/src/main.html +0 -25
- package/examples/cordova/www/src/main.js +0 -152
- package/examples/ionic/index.ts +0 -17
- package/examples/ionic/src/images/portrait.png +0 -0
- /package/examples/ionic/{src/assets → assets}/.gitkeep +0 -0
- /package/examples/ionic/{src/images → images}/icon.png +0 -0
- /package/examples/{cordova/www → ionic}/images/portrait.png +0 -0
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"": {
|
|
7
7
|
"name": "face-sdk",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@angular-devkit/build-angular": "19.2.
|
|
9
|
+
"@angular-devkit/build-angular": "^19.2.15",
|
|
10
10
|
"@angular/cli": "19.2.10",
|
|
11
11
|
"@angular/common": "19.2.9",
|
|
12
12
|
"@angular/compiler-cli": "19.2.9",
|
|
@@ -19,6 +19,8 @@
|
|
|
19
19
|
"@awesome-cordova-plugins/file": "6.16.0",
|
|
20
20
|
"@ionic/angular": "8.5.6",
|
|
21
21
|
"@ionic/cordova-builders": "12.2.0",
|
|
22
|
+
"@regulaforensics/face-core-basic": "7.1.178",
|
|
23
|
+
"@regulaforensics/face-sdk": "7.1.317",
|
|
22
24
|
"cordova-android": "13.0.0",
|
|
23
25
|
"cordova-ios": "7.1.1",
|
|
24
26
|
"cordova-plugin-camera": "8.0.0",
|
|
@@ -65,16 +67,16 @@
|
|
|
65
67
|
}
|
|
66
68
|
},
|
|
67
69
|
"node_modules/@angular-devkit/build-angular": {
|
|
68
|
-
"version": "19.2.
|
|
69
|
-
"resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-19.2.
|
|
70
|
-
"integrity": "sha512-
|
|
70
|
+
"version": "19.2.15",
|
|
71
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-19.2.15.tgz",
|
|
72
|
+
"integrity": "sha512-mqudAcyrSp/E7ZQdQoHfys0/nvQuwyJDaAzj3qL3HUStuUzb5ULNOj2f6sFBo+xYo+/WT8IzmzDN9DCqDgvFaA==",
|
|
71
73
|
"license": "MIT",
|
|
72
74
|
"dependencies": {
|
|
73
75
|
"@ampproject/remapping": "2.3.0",
|
|
74
|
-
"@angular-devkit/architect": "0.1902.
|
|
75
|
-
"@angular-devkit/build-webpack": "0.1902.
|
|
76
|
-
"@angular-devkit/core": "19.2.
|
|
77
|
-
"@angular/build": "19.2.
|
|
76
|
+
"@angular-devkit/architect": "0.1902.15",
|
|
77
|
+
"@angular-devkit/build-webpack": "0.1902.15",
|
|
78
|
+
"@angular-devkit/core": "19.2.15",
|
|
79
|
+
"@angular/build": "19.2.15",
|
|
78
80
|
"@babel/core": "7.26.10",
|
|
79
81
|
"@babel/generator": "7.26.10",
|
|
80
82
|
"@babel/helper-annotate-as-pure": "7.25.9",
|
|
@@ -85,7 +87,7 @@
|
|
|
85
87
|
"@babel/preset-env": "7.26.9",
|
|
86
88
|
"@babel/runtime": "7.26.10",
|
|
87
89
|
"@discoveryjs/json-ext": "0.6.3",
|
|
88
|
-
"@ngtools/webpack": "19.2.
|
|
90
|
+
"@ngtools/webpack": "19.2.15",
|
|
89
91
|
"@vitejs/plugin-basic-ssl": "1.2.0",
|
|
90
92
|
"ansi-colors": "4.1.3",
|
|
91
93
|
"autoprefixer": "10.4.20",
|
|
@@ -93,7 +95,7 @@
|
|
|
93
95
|
"browserslist": "^4.21.5",
|
|
94
96
|
"copy-webpack-plugin": "12.0.2",
|
|
95
97
|
"css-loader": "7.1.2",
|
|
96
|
-
"esbuild-wasm": "0.25.
|
|
98
|
+
"esbuild-wasm": "0.25.4",
|
|
97
99
|
"fast-glob": "3.3.3",
|
|
98
100
|
"http-proxy-middleware": "3.0.5",
|
|
99
101
|
"istanbul-lib-instrument": "6.0.3",
|
|
@@ -122,7 +124,7 @@
|
|
|
122
124
|
"tslib": "2.8.1",
|
|
123
125
|
"webpack": "5.98.0",
|
|
124
126
|
"webpack-dev-middleware": "7.4.2",
|
|
125
|
-
"webpack-dev-server": "5.2.
|
|
127
|
+
"webpack-dev-server": "5.2.2",
|
|
126
128
|
"webpack-merge": "6.0.1",
|
|
127
129
|
"webpack-subresource-integrity": "5.1.0"
|
|
128
130
|
},
|
|
@@ -132,14 +134,14 @@
|
|
|
132
134
|
"yarn": ">= 1.13.0"
|
|
133
135
|
},
|
|
134
136
|
"optionalDependencies": {
|
|
135
|
-
"esbuild": "0.25.
|
|
137
|
+
"esbuild": "0.25.4"
|
|
136
138
|
},
|
|
137
139
|
"peerDependencies": {
|
|
138
140
|
"@angular/compiler-cli": "^19.0.0 || ^19.2.0-next.0",
|
|
139
141
|
"@angular/localize": "^19.0.0 || ^19.2.0-next.0",
|
|
140
142
|
"@angular/platform-server": "^19.0.0 || ^19.2.0-next.0",
|
|
141
143
|
"@angular/service-worker": "^19.0.0 || ^19.2.0-next.0",
|
|
142
|
-
"@angular/ssr": "^19.2.
|
|
144
|
+
"@angular/ssr": "^19.2.15",
|
|
143
145
|
"@web/test-runner": "^0.20.0",
|
|
144
146
|
"browser-sync": "^3.0.2",
|
|
145
147
|
"jest": "^29.5.0",
|
|
@@ -189,47 +191,25 @@
|
|
|
189
191
|
}
|
|
190
192
|
}
|
|
191
193
|
},
|
|
192
|
-
"node_modules/@angular-devkit/build-angular/node_modules/
|
|
193
|
-
"version": "
|
|
194
|
-
"resolved": "https://registry.npmjs.org/
|
|
195
|
-
"integrity": "sha512-
|
|
196
|
-
"license": "Apache-2.0",
|
|
197
|
-
"dependencies": {
|
|
198
|
-
"tslib": "^2.1.0"
|
|
199
|
-
}
|
|
200
|
-
},
|
|
201
|
-
"node_modules/@angular-devkit/build-webpack": {
|
|
202
|
-
"version": "0.1902.10",
|
|
203
|
-
"resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1902.10.tgz",
|
|
204
|
-
"integrity": "sha512-nf8ce3T+kfaU1cmwawxCsRl4Q6TZzVzFIOCW+NpTeFtqUAhGkLiSO+qvWCAUiLSSpqxjvRpgh2LIV1SxaayfbA==",
|
|
194
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@angular-devkit/architect": {
|
|
195
|
+
"version": "0.1902.15",
|
|
196
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1902.15.tgz",
|
|
197
|
+
"integrity": "sha512-RbqhStc6ZoRv57ZqLB36VOkBkAdU3nNezCvIs0AJV5V4+vLPMrb0hpIB0sF+9yMlMjWsolnRsj0/Fil+zQG3bw==",
|
|
205
198
|
"license": "MIT",
|
|
206
199
|
"dependencies": {
|
|
207
|
-
"@angular-devkit/
|
|
200
|
+
"@angular-devkit/core": "19.2.15",
|
|
208
201
|
"rxjs": "7.8.1"
|
|
209
202
|
},
|
|
210
203
|
"engines": {
|
|
211
204
|
"node": "^18.19.1 || ^20.11.1 || >=22.0.0",
|
|
212
205
|
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
|
|
213
206
|
"yarn": ">= 1.13.0"
|
|
214
|
-
},
|
|
215
|
-
"peerDependencies": {
|
|
216
|
-
"webpack": "^5.30.0",
|
|
217
|
-
"webpack-dev-server": "^5.0.2"
|
|
218
|
-
}
|
|
219
|
-
},
|
|
220
|
-
"node_modules/@angular-devkit/build-webpack/node_modules/rxjs": {
|
|
221
|
-
"version": "7.8.1",
|
|
222
|
-
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz",
|
|
223
|
-
"integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==",
|
|
224
|
-
"license": "Apache-2.0",
|
|
225
|
-
"dependencies": {
|
|
226
|
-
"tslib": "^2.1.0"
|
|
227
207
|
}
|
|
228
208
|
},
|
|
229
|
-
"node_modules/@angular-devkit/core": {
|
|
230
|
-
"version": "19.2.
|
|
231
|
-
"resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-19.2.
|
|
232
|
-
"integrity": "sha512-
|
|
209
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@angular-devkit/core": {
|
|
210
|
+
"version": "19.2.15",
|
|
211
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-19.2.15.tgz",
|
|
212
|
+
"integrity": "sha512-pU2RZYX6vhd7uLSdLwPnuBcr0mXJSjp3EgOXKsrlQFQZevc+Qs+2JdXgIElnOT/aDqtRtriDmLlSbtdE8n3ZbA==",
|
|
233
213
|
"license": "MIT",
|
|
234
214
|
"dependencies": {
|
|
235
215
|
"ajv": "8.17.1",
|
|
@@ -253,50 +233,14 @@
|
|
|
253
233
|
}
|
|
254
234
|
}
|
|
255
235
|
},
|
|
256
|
-
"node_modules/@angular-devkit/
|
|
257
|
-
"version": "
|
|
258
|
-
"resolved": "https://registry.npmjs.org/
|
|
259
|
-
"integrity": "sha512-
|
|
260
|
-
"license": "Apache-2.0",
|
|
261
|
-
"dependencies": {
|
|
262
|
-
"tslib": "^2.1.0"
|
|
263
|
-
}
|
|
264
|
-
},
|
|
265
|
-
"node_modules/@angular-devkit/schematics": {
|
|
266
|
-
"version": "19.2.10",
|
|
267
|
-
"resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-19.2.10.tgz",
|
|
268
|
-
"integrity": "sha512-S+7Mvi9GMiJu3BY0Dpa7TrrAiFIwGwCIKLpO0IgGLUDh9fVLIlcIC/PZgU+L46gEpRwPZfrfMbDFKIlGGz/eQQ==",
|
|
269
|
-
"license": "MIT",
|
|
270
|
-
"dependencies": {
|
|
271
|
-
"@angular-devkit/core": "19.2.10",
|
|
272
|
-
"jsonc-parser": "3.3.1",
|
|
273
|
-
"magic-string": "0.30.17",
|
|
274
|
-
"ora": "5.4.1",
|
|
275
|
-
"rxjs": "7.8.1"
|
|
276
|
-
},
|
|
277
|
-
"engines": {
|
|
278
|
-
"node": "^18.19.1 || ^20.11.1 || >=22.0.0",
|
|
279
|
-
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
|
|
280
|
-
"yarn": ">= 1.13.0"
|
|
281
|
-
}
|
|
282
|
-
},
|
|
283
|
-
"node_modules/@angular-devkit/schematics/node_modules/rxjs": {
|
|
284
|
-
"version": "7.8.1",
|
|
285
|
-
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz",
|
|
286
|
-
"integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==",
|
|
287
|
-
"license": "Apache-2.0",
|
|
288
|
-
"dependencies": {
|
|
289
|
-
"tslib": "^2.1.0"
|
|
290
|
-
}
|
|
291
|
-
},
|
|
292
|
-
"node_modules/@angular/build": {
|
|
293
|
-
"version": "19.2.10",
|
|
294
|
-
"resolved": "https://registry.npmjs.org/@angular/build/-/build-19.2.10.tgz",
|
|
295
|
-
"integrity": "sha512-1+veE1S2fuQ3WjzYBabjk5/+7TM91kkyvKo+2P8vc0eb+c9K2VfYx+6ErCHs38mPPqL1JjixsX9Nqbd5b7yowA==",
|
|
236
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@angular/build": {
|
|
237
|
+
"version": "19.2.15",
|
|
238
|
+
"resolved": "https://registry.npmjs.org/@angular/build/-/build-19.2.15.tgz",
|
|
239
|
+
"integrity": "sha512-iE4fp4d5ALu702uoL6/YkjM2JlGEXZ5G+RVzq3W2jg/Ft6ISAQnRKB6mymtetDD6oD7i87e8uSu9kFVNBauX2w==",
|
|
296
240
|
"license": "MIT",
|
|
297
241
|
"dependencies": {
|
|
298
242
|
"@ampproject/remapping": "2.3.0",
|
|
299
|
-
"@angular-devkit/architect": "0.1902.
|
|
243
|
+
"@angular-devkit/architect": "0.1902.15",
|
|
300
244
|
"@babel/core": "7.26.10",
|
|
301
245
|
"@babel/helper-annotate-as-pure": "7.25.9",
|
|
302
246
|
"@babel/helper-split-export-declaration": "7.24.7",
|
|
@@ -305,7 +249,7 @@
|
|
|
305
249
|
"@vitejs/plugin-basic-ssl": "1.2.0",
|
|
306
250
|
"beasties": "0.3.2",
|
|
307
251
|
"browserslist": "^4.23.0",
|
|
308
|
-
"esbuild": "0.25.
|
|
252
|
+
"esbuild": "0.25.4",
|
|
309
253
|
"fast-glob": "3.3.3",
|
|
310
254
|
"https-proxy-agent": "7.0.6",
|
|
311
255
|
"istanbul-lib-instrument": "6.0.3",
|
|
@@ -336,7 +280,7 @@
|
|
|
336
280
|
"@angular/localize": "^19.0.0 || ^19.2.0-next.0",
|
|
337
281
|
"@angular/platform-server": "^19.0.0 || ^19.2.0-next.0",
|
|
338
282
|
"@angular/service-worker": "^19.0.0 || ^19.2.0-next.0",
|
|
339
|
-
"@angular/ssr": "^19.2.
|
|
283
|
+
"@angular/ssr": "^19.2.15",
|
|
340
284
|
"karma": "^6.4.0",
|
|
341
285
|
"less": "^4.2.0",
|
|
342
286
|
"ng-packagr": "^19.0.0 || ^19.2.0-next.0",
|
|
@@ -374,103 +318,536 @@
|
|
|
374
318
|
}
|
|
375
319
|
}
|
|
376
320
|
},
|
|
377
|
-
"node_modules/@angular/build/node_modules/vite": {
|
|
378
|
-
"version": "6.2.7",
|
|
379
|
-
"resolved": "https://registry.npmjs.org/vite/-/vite-6.2.7.tgz",
|
|
380
|
-
"integrity": "sha512-qg3LkeuinTrZoJHHF94coSaTfIPyBYoywp+ys4qu20oSJFbKMYoIJo0FWJT9q6Vp49l6z9IsJRbHdcGtiKbGoQ==",
|
|
321
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@angular/build/node_modules/vite": {
|
|
322
|
+
"version": "6.2.7",
|
|
323
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-6.2.7.tgz",
|
|
324
|
+
"integrity": "sha512-qg3LkeuinTrZoJHHF94coSaTfIPyBYoywp+ys4qu20oSJFbKMYoIJo0FWJT9q6Vp49l6z9IsJRbHdcGtiKbGoQ==",
|
|
325
|
+
"license": "MIT",
|
|
326
|
+
"dependencies": {
|
|
327
|
+
"esbuild": "^0.25.0",
|
|
328
|
+
"postcss": "^8.5.3",
|
|
329
|
+
"rollup": "^4.30.1"
|
|
330
|
+
},
|
|
331
|
+
"bin": {
|
|
332
|
+
"vite": "bin/vite.js"
|
|
333
|
+
},
|
|
334
|
+
"engines": {
|
|
335
|
+
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
|
|
336
|
+
},
|
|
337
|
+
"funding": {
|
|
338
|
+
"url": "https://github.com/vitejs/vite?sponsor=1"
|
|
339
|
+
},
|
|
340
|
+
"optionalDependencies": {
|
|
341
|
+
"fsevents": "~2.3.3"
|
|
342
|
+
},
|
|
343
|
+
"peerDependencies": {
|
|
344
|
+
"@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
|
|
345
|
+
"jiti": ">=1.21.0",
|
|
346
|
+
"less": "*",
|
|
347
|
+
"lightningcss": "^1.21.0",
|
|
348
|
+
"sass": "*",
|
|
349
|
+
"sass-embedded": "*",
|
|
350
|
+
"stylus": "*",
|
|
351
|
+
"sugarss": "*",
|
|
352
|
+
"terser": "^5.16.0",
|
|
353
|
+
"tsx": "^4.8.1",
|
|
354
|
+
"yaml": "^2.4.2"
|
|
355
|
+
},
|
|
356
|
+
"peerDependenciesMeta": {
|
|
357
|
+
"@types/node": {
|
|
358
|
+
"optional": true
|
|
359
|
+
},
|
|
360
|
+
"jiti": {
|
|
361
|
+
"optional": true
|
|
362
|
+
},
|
|
363
|
+
"less": {
|
|
364
|
+
"optional": true
|
|
365
|
+
},
|
|
366
|
+
"lightningcss": {
|
|
367
|
+
"optional": true
|
|
368
|
+
},
|
|
369
|
+
"sass": {
|
|
370
|
+
"optional": true
|
|
371
|
+
},
|
|
372
|
+
"sass-embedded": {
|
|
373
|
+
"optional": true
|
|
374
|
+
},
|
|
375
|
+
"stylus": {
|
|
376
|
+
"optional": true
|
|
377
|
+
},
|
|
378
|
+
"sugarss": {
|
|
379
|
+
"optional": true
|
|
380
|
+
},
|
|
381
|
+
"terser": {
|
|
382
|
+
"optional": true
|
|
383
|
+
},
|
|
384
|
+
"tsx": {
|
|
385
|
+
"optional": true
|
|
386
|
+
},
|
|
387
|
+
"yaml": {
|
|
388
|
+
"optional": true
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@angular/build/node_modules/vite/node_modules/postcss": {
|
|
393
|
+
"version": "8.5.6",
|
|
394
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
|
|
395
|
+
"integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
|
|
396
|
+
"funding": [
|
|
397
|
+
{
|
|
398
|
+
"type": "opencollective",
|
|
399
|
+
"url": "https://opencollective.com/postcss/"
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"type": "tidelift",
|
|
403
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"type": "github",
|
|
407
|
+
"url": "https://github.com/sponsors/ai"
|
|
408
|
+
}
|
|
409
|
+
],
|
|
410
|
+
"license": "MIT",
|
|
411
|
+
"dependencies": {
|
|
412
|
+
"nanoid": "^3.3.11",
|
|
413
|
+
"picocolors": "^1.1.1",
|
|
414
|
+
"source-map-js": "^1.2.1"
|
|
415
|
+
},
|
|
416
|
+
"engines": {
|
|
417
|
+
"node": "^10 || ^12 || >=14"
|
|
418
|
+
}
|
|
419
|
+
},
|
|
420
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@rollup/rollup-android-arm-eabi": {
|
|
421
|
+
"version": "4.34.8",
|
|
422
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.34.8.tgz",
|
|
423
|
+
"integrity": "sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==",
|
|
424
|
+
"cpu": [
|
|
425
|
+
"arm"
|
|
426
|
+
],
|
|
427
|
+
"license": "MIT",
|
|
428
|
+
"optional": true,
|
|
429
|
+
"os": [
|
|
430
|
+
"android"
|
|
431
|
+
]
|
|
432
|
+
},
|
|
433
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@rollup/rollup-android-arm64": {
|
|
434
|
+
"version": "4.34.8",
|
|
435
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.34.8.tgz",
|
|
436
|
+
"integrity": "sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==",
|
|
437
|
+
"cpu": [
|
|
438
|
+
"arm64"
|
|
439
|
+
],
|
|
440
|
+
"license": "MIT",
|
|
441
|
+
"optional": true,
|
|
442
|
+
"os": [
|
|
443
|
+
"android"
|
|
444
|
+
]
|
|
445
|
+
},
|
|
446
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@rollup/rollup-darwin-arm64": {
|
|
447
|
+
"version": "4.34.8",
|
|
448
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.34.8.tgz",
|
|
449
|
+
"integrity": "sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==",
|
|
450
|
+
"cpu": [
|
|
451
|
+
"arm64"
|
|
452
|
+
],
|
|
453
|
+
"license": "MIT",
|
|
454
|
+
"optional": true,
|
|
455
|
+
"os": [
|
|
456
|
+
"darwin"
|
|
457
|
+
]
|
|
458
|
+
},
|
|
459
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@rollup/rollup-darwin-x64": {
|
|
460
|
+
"version": "4.34.8",
|
|
461
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.34.8.tgz",
|
|
462
|
+
"integrity": "sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==",
|
|
463
|
+
"cpu": [
|
|
464
|
+
"x64"
|
|
465
|
+
],
|
|
466
|
+
"license": "MIT",
|
|
467
|
+
"optional": true,
|
|
468
|
+
"os": [
|
|
469
|
+
"darwin"
|
|
470
|
+
]
|
|
471
|
+
},
|
|
472
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@rollup/rollup-freebsd-arm64": {
|
|
473
|
+
"version": "4.34.8",
|
|
474
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.34.8.tgz",
|
|
475
|
+
"integrity": "sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==",
|
|
476
|
+
"cpu": [
|
|
477
|
+
"arm64"
|
|
478
|
+
],
|
|
479
|
+
"license": "MIT",
|
|
480
|
+
"optional": true,
|
|
481
|
+
"os": [
|
|
482
|
+
"freebsd"
|
|
483
|
+
]
|
|
484
|
+
},
|
|
485
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@rollup/rollup-freebsd-x64": {
|
|
486
|
+
"version": "4.34.8",
|
|
487
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.34.8.tgz",
|
|
488
|
+
"integrity": "sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==",
|
|
489
|
+
"cpu": [
|
|
490
|
+
"x64"
|
|
491
|
+
],
|
|
492
|
+
"license": "MIT",
|
|
493
|
+
"optional": true,
|
|
494
|
+
"os": [
|
|
495
|
+
"freebsd"
|
|
496
|
+
]
|
|
497
|
+
},
|
|
498
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
499
|
+
"version": "4.34.8",
|
|
500
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.34.8.tgz",
|
|
501
|
+
"integrity": "sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==",
|
|
502
|
+
"cpu": [
|
|
503
|
+
"arm"
|
|
504
|
+
],
|
|
505
|
+
"license": "MIT",
|
|
506
|
+
"optional": true,
|
|
507
|
+
"os": [
|
|
508
|
+
"linux"
|
|
509
|
+
]
|
|
510
|
+
},
|
|
511
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
512
|
+
"version": "4.34.8",
|
|
513
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.34.8.tgz",
|
|
514
|
+
"integrity": "sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==",
|
|
515
|
+
"cpu": [
|
|
516
|
+
"arm"
|
|
517
|
+
],
|
|
518
|
+
"license": "MIT",
|
|
519
|
+
"optional": true,
|
|
520
|
+
"os": [
|
|
521
|
+
"linux"
|
|
522
|
+
]
|
|
523
|
+
},
|
|
524
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
525
|
+
"version": "4.34.8",
|
|
526
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.34.8.tgz",
|
|
527
|
+
"integrity": "sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==",
|
|
528
|
+
"cpu": [
|
|
529
|
+
"arm64"
|
|
530
|
+
],
|
|
531
|
+
"license": "MIT",
|
|
532
|
+
"optional": true,
|
|
533
|
+
"os": [
|
|
534
|
+
"linux"
|
|
535
|
+
]
|
|
536
|
+
},
|
|
537
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
538
|
+
"version": "4.34.8",
|
|
539
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.34.8.tgz",
|
|
540
|
+
"integrity": "sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==",
|
|
541
|
+
"cpu": [
|
|
542
|
+
"arm64"
|
|
543
|
+
],
|
|
544
|
+
"license": "MIT",
|
|
545
|
+
"optional": true,
|
|
546
|
+
"os": [
|
|
547
|
+
"linux"
|
|
548
|
+
]
|
|
549
|
+
},
|
|
550
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@rollup/rollup-linux-loongarch64-gnu": {
|
|
551
|
+
"version": "4.34.8",
|
|
552
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.34.8.tgz",
|
|
553
|
+
"integrity": "sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==",
|
|
554
|
+
"cpu": [
|
|
555
|
+
"loong64"
|
|
556
|
+
],
|
|
557
|
+
"license": "MIT",
|
|
558
|
+
"optional": true,
|
|
559
|
+
"os": [
|
|
560
|
+
"linux"
|
|
561
|
+
]
|
|
562
|
+
},
|
|
563
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
|
|
564
|
+
"version": "4.34.8",
|
|
565
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.34.8.tgz",
|
|
566
|
+
"integrity": "sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==",
|
|
567
|
+
"cpu": [
|
|
568
|
+
"ppc64"
|
|
569
|
+
],
|
|
570
|
+
"license": "MIT",
|
|
571
|
+
"optional": true,
|
|
572
|
+
"os": [
|
|
573
|
+
"linux"
|
|
574
|
+
]
|
|
575
|
+
},
|
|
576
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
577
|
+
"version": "4.34.8",
|
|
578
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.34.8.tgz",
|
|
579
|
+
"integrity": "sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==",
|
|
580
|
+
"cpu": [
|
|
581
|
+
"riscv64"
|
|
582
|
+
],
|
|
583
|
+
"license": "MIT",
|
|
584
|
+
"optional": true,
|
|
585
|
+
"os": [
|
|
586
|
+
"linux"
|
|
587
|
+
]
|
|
588
|
+
},
|
|
589
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
590
|
+
"version": "4.34.8",
|
|
591
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.34.8.tgz",
|
|
592
|
+
"integrity": "sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==",
|
|
593
|
+
"cpu": [
|
|
594
|
+
"s390x"
|
|
595
|
+
],
|
|
596
|
+
"license": "MIT",
|
|
597
|
+
"optional": true,
|
|
598
|
+
"os": [
|
|
599
|
+
"linux"
|
|
600
|
+
]
|
|
601
|
+
},
|
|
602
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
603
|
+
"version": "4.34.8",
|
|
604
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.34.8.tgz",
|
|
605
|
+
"integrity": "sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==",
|
|
606
|
+
"cpu": [
|
|
607
|
+
"x64"
|
|
608
|
+
],
|
|
609
|
+
"license": "MIT",
|
|
610
|
+
"optional": true,
|
|
611
|
+
"os": [
|
|
612
|
+
"linux"
|
|
613
|
+
]
|
|
614
|
+
},
|
|
615
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@rollup/rollup-linux-x64-musl": {
|
|
616
|
+
"version": "4.34.8",
|
|
617
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.34.8.tgz",
|
|
618
|
+
"integrity": "sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==",
|
|
619
|
+
"cpu": [
|
|
620
|
+
"x64"
|
|
621
|
+
],
|
|
622
|
+
"license": "MIT",
|
|
623
|
+
"optional": true,
|
|
624
|
+
"os": [
|
|
625
|
+
"linux"
|
|
626
|
+
]
|
|
627
|
+
},
|
|
628
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
629
|
+
"version": "4.34.8",
|
|
630
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.34.8.tgz",
|
|
631
|
+
"integrity": "sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==",
|
|
632
|
+
"cpu": [
|
|
633
|
+
"arm64"
|
|
634
|
+
],
|
|
635
|
+
"license": "MIT",
|
|
636
|
+
"optional": true,
|
|
637
|
+
"os": [
|
|
638
|
+
"win32"
|
|
639
|
+
]
|
|
640
|
+
},
|
|
641
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
642
|
+
"version": "4.34.8",
|
|
643
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.34.8.tgz",
|
|
644
|
+
"integrity": "sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==",
|
|
645
|
+
"cpu": [
|
|
646
|
+
"ia32"
|
|
647
|
+
],
|
|
648
|
+
"license": "MIT",
|
|
649
|
+
"optional": true,
|
|
650
|
+
"os": [
|
|
651
|
+
"win32"
|
|
652
|
+
]
|
|
653
|
+
},
|
|
654
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
655
|
+
"version": "4.34.8",
|
|
656
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.34.8.tgz",
|
|
657
|
+
"integrity": "sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==",
|
|
658
|
+
"cpu": [
|
|
659
|
+
"x64"
|
|
660
|
+
],
|
|
661
|
+
"license": "MIT",
|
|
662
|
+
"optional": true,
|
|
663
|
+
"os": [
|
|
664
|
+
"win32"
|
|
665
|
+
]
|
|
666
|
+
},
|
|
667
|
+
"node_modules/@angular-devkit/build-angular/node_modules/@types/estree": {
|
|
668
|
+
"version": "1.0.6",
|
|
669
|
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
|
|
670
|
+
"integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==",
|
|
671
|
+
"license": "MIT"
|
|
672
|
+
},
|
|
673
|
+
"node_modules/@angular-devkit/build-angular/node_modules/rollup": {
|
|
674
|
+
"version": "4.34.8",
|
|
675
|
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.34.8.tgz",
|
|
676
|
+
"integrity": "sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==",
|
|
677
|
+
"license": "MIT",
|
|
678
|
+
"dependencies": {
|
|
679
|
+
"@types/estree": "1.0.6"
|
|
680
|
+
},
|
|
681
|
+
"bin": {
|
|
682
|
+
"rollup": "dist/bin/rollup"
|
|
683
|
+
},
|
|
684
|
+
"engines": {
|
|
685
|
+
"node": ">=18.0.0",
|
|
686
|
+
"npm": ">=8.0.0"
|
|
687
|
+
},
|
|
688
|
+
"optionalDependencies": {
|
|
689
|
+
"@rollup/rollup-android-arm-eabi": "4.34.8",
|
|
690
|
+
"@rollup/rollup-android-arm64": "4.34.8",
|
|
691
|
+
"@rollup/rollup-darwin-arm64": "4.34.8",
|
|
692
|
+
"@rollup/rollup-darwin-x64": "4.34.8",
|
|
693
|
+
"@rollup/rollup-freebsd-arm64": "4.34.8",
|
|
694
|
+
"@rollup/rollup-freebsd-x64": "4.34.8",
|
|
695
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.34.8",
|
|
696
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.34.8",
|
|
697
|
+
"@rollup/rollup-linux-arm64-gnu": "4.34.8",
|
|
698
|
+
"@rollup/rollup-linux-arm64-musl": "4.34.8",
|
|
699
|
+
"@rollup/rollup-linux-loongarch64-gnu": "4.34.8",
|
|
700
|
+
"@rollup/rollup-linux-powerpc64le-gnu": "4.34.8",
|
|
701
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.34.8",
|
|
702
|
+
"@rollup/rollup-linux-s390x-gnu": "4.34.8",
|
|
703
|
+
"@rollup/rollup-linux-x64-gnu": "4.34.8",
|
|
704
|
+
"@rollup/rollup-linux-x64-musl": "4.34.8",
|
|
705
|
+
"@rollup/rollup-win32-arm64-msvc": "4.34.8",
|
|
706
|
+
"@rollup/rollup-win32-ia32-msvc": "4.34.8",
|
|
707
|
+
"@rollup/rollup-win32-x64-msvc": "4.34.8",
|
|
708
|
+
"fsevents": "~2.3.2"
|
|
709
|
+
}
|
|
710
|
+
},
|
|
711
|
+
"node_modules/@angular-devkit/build-angular/node_modules/rxjs": {
|
|
712
|
+
"version": "7.8.1",
|
|
713
|
+
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz",
|
|
714
|
+
"integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==",
|
|
715
|
+
"license": "Apache-2.0",
|
|
716
|
+
"dependencies": {
|
|
717
|
+
"tslib": "^2.1.0"
|
|
718
|
+
}
|
|
719
|
+
},
|
|
720
|
+
"node_modules/@angular-devkit/build-webpack": {
|
|
721
|
+
"version": "0.1902.15",
|
|
722
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1902.15.tgz",
|
|
723
|
+
"integrity": "sha512-pIfZeizWsViXx8bsMoBLZw7Tl7uFf7bM7hAfmNwk0bb0QGzx5k1BiW6IKWyaG+Dg6U4UCrlNpIiut2b78HwQZw==",
|
|
724
|
+
"license": "MIT",
|
|
725
|
+
"dependencies": {
|
|
726
|
+
"@angular-devkit/architect": "0.1902.15",
|
|
727
|
+
"rxjs": "7.8.1"
|
|
728
|
+
},
|
|
729
|
+
"engines": {
|
|
730
|
+
"node": "^18.19.1 || ^20.11.1 || >=22.0.0",
|
|
731
|
+
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
|
|
732
|
+
"yarn": ">= 1.13.0"
|
|
733
|
+
},
|
|
734
|
+
"peerDependencies": {
|
|
735
|
+
"webpack": "^5.30.0",
|
|
736
|
+
"webpack-dev-server": "^5.0.2"
|
|
737
|
+
}
|
|
738
|
+
},
|
|
739
|
+
"node_modules/@angular-devkit/build-webpack/node_modules/@angular-devkit/architect": {
|
|
740
|
+
"version": "0.1902.15",
|
|
741
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1902.15.tgz",
|
|
742
|
+
"integrity": "sha512-RbqhStc6ZoRv57ZqLB36VOkBkAdU3nNezCvIs0AJV5V4+vLPMrb0hpIB0sF+9yMlMjWsolnRsj0/Fil+zQG3bw==",
|
|
743
|
+
"license": "MIT",
|
|
744
|
+
"dependencies": {
|
|
745
|
+
"@angular-devkit/core": "19.2.15",
|
|
746
|
+
"rxjs": "7.8.1"
|
|
747
|
+
},
|
|
748
|
+
"engines": {
|
|
749
|
+
"node": "^18.19.1 || ^20.11.1 || >=22.0.0",
|
|
750
|
+
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
|
|
751
|
+
"yarn": ">= 1.13.0"
|
|
752
|
+
}
|
|
753
|
+
},
|
|
754
|
+
"node_modules/@angular-devkit/build-webpack/node_modules/@angular-devkit/core": {
|
|
755
|
+
"version": "19.2.15",
|
|
756
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-19.2.15.tgz",
|
|
757
|
+
"integrity": "sha512-pU2RZYX6vhd7uLSdLwPnuBcr0mXJSjp3EgOXKsrlQFQZevc+Qs+2JdXgIElnOT/aDqtRtriDmLlSbtdE8n3ZbA==",
|
|
758
|
+
"license": "MIT",
|
|
759
|
+
"dependencies": {
|
|
760
|
+
"ajv": "8.17.1",
|
|
761
|
+
"ajv-formats": "3.0.1",
|
|
762
|
+
"jsonc-parser": "3.3.1",
|
|
763
|
+
"picomatch": "4.0.2",
|
|
764
|
+
"rxjs": "7.8.1",
|
|
765
|
+
"source-map": "0.7.4"
|
|
766
|
+
},
|
|
767
|
+
"engines": {
|
|
768
|
+
"node": "^18.19.1 || ^20.11.1 || >=22.0.0",
|
|
769
|
+
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
|
|
770
|
+
"yarn": ">= 1.13.0"
|
|
771
|
+
},
|
|
772
|
+
"peerDependencies": {
|
|
773
|
+
"chokidar": "^4.0.0"
|
|
774
|
+
},
|
|
775
|
+
"peerDependenciesMeta": {
|
|
776
|
+
"chokidar": {
|
|
777
|
+
"optional": true
|
|
778
|
+
}
|
|
779
|
+
}
|
|
780
|
+
},
|
|
781
|
+
"node_modules/@angular-devkit/build-webpack/node_modules/rxjs": {
|
|
782
|
+
"version": "7.8.1",
|
|
783
|
+
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz",
|
|
784
|
+
"integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==",
|
|
785
|
+
"license": "Apache-2.0",
|
|
786
|
+
"dependencies": {
|
|
787
|
+
"tslib": "^2.1.0"
|
|
788
|
+
}
|
|
789
|
+
},
|
|
790
|
+
"node_modules/@angular-devkit/core": {
|
|
791
|
+
"version": "19.2.10",
|
|
792
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-19.2.10.tgz",
|
|
793
|
+
"integrity": "sha512-xYF+Vgc+j6iPboR0uptQk3QFed5n/0KSgITbfV/uPEqhzSNdkiM4Y2i/sKlTZrI07cRK/m/dbZ6sZsbvXJVtkA==",
|
|
381
794
|
"license": "MIT",
|
|
382
795
|
"dependencies": {
|
|
383
|
-
"
|
|
384
|
-
"
|
|
385
|
-
"
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
"
|
|
796
|
+
"ajv": "8.17.1",
|
|
797
|
+
"ajv-formats": "3.0.1",
|
|
798
|
+
"jsonc-parser": "3.3.1",
|
|
799
|
+
"picomatch": "4.0.2",
|
|
800
|
+
"rxjs": "7.8.1",
|
|
801
|
+
"source-map": "0.7.4"
|
|
389
802
|
},
|
|
390
803
|
"engines": {
|
|
391
|
-
"node": "^18.
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
"url": "https://github.com/vitejs/vite?sponsor=1"
|
|
395
|
-
},
|
|
396
|
-
"optionalDependencies": {
|
|
397
|
-
"fsevents": "~2.3.3"
|
|
804
|
+
"node": "^18.19.1 || ^20.11.1 || >=22.0.0",
|
|
805
|
+
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
|
|
806
|
+
"yarn": ">= 1.13.0"
|
|
398
807
|
},
|
|
399
808
|
"peerDependencies": {
|
|
400
|
-
"
|
|
401
|
-
"jiti": ">=1.21.0",
|
|
402
|
-
"less": "*",
|
|
403
|
-
"lightningcss": "^1.21.0",
|
|
404
|
-
"sass": "*",
|
|
405
|
-
"sass-embedded": "*",
|
|
406
|
-
"stylus": "*",
|
|
407
|
-
"sugarss": "*",
|
|
408
|
-
"terser": "^5.16.0",
|
|
409
|
-
"tsx": "^4.8.1",
|
|
410
|
-
"yaml": "^2.4.2"
|
|
809
|
+
"chokidar": "^4.0.0"
|
|
411
810
|
},
|
|
412
811
|
"peerDependenciesMeta": {
|
|
413
|
-
"
|
|
414
|
-
"optional": true
|
|
415
|
-
},
|
|
416
|
-
"jiti": {
|
|
417
|
-
"optional": true
|
|
418
|
-
},
|
|
419
|
-
"less": {
|
|
420
|
-
"optional": true
|
|
421
|
-
},
|
|
422
|
-
"lightningcss": {
|
|
423
|
-
"optional": true
|
|
424
|
-
},
|
|
425
|
-
"sass": {
|
|
426
|
-
"optional": true
|
|
427
|
-
},
|
|
428
|
-
"sass-embedded": {
|
|
429
|
-
"optional": true
|
|
430
|
-
},
|
|
431
|
-
"stylus": {
|
|
432
|
-
"optional": true
|
|
433
|
-
},
|
|
434
|
-
"sugarss": {
|
|
435
|
-
"optional": true
|
|
436
|
-
},
|
|
437
|
-
"terser": {
|
|
438
|
-
"optional": true
|
|
439
|
-
},
|
|
440
|
-
"tsx": {
|
|
441
|
-
"optional": true
|
|
442
|
-
},
|
|
443
|
-
"yaml": {
|
|
812
|
+
"chokidar": {
|
|
444
813
|
"optional": true
|
|
445
814
|
}
|
|
446
815
|
}
|
|
447
816
|
},
|
|
448
|
-
"node_modules/@angular/
|
|
449
|
-
"version": "8.
|
|
450
|
-
"resolved": "https://registry.npmjs.org/
|
|
451
|
-
"integrity": "sha512-
|
|
452
|
-
"
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
{
|
|
462
|
-
"type": "github",
|
|
463
|
-
"url": "https://github.com/sponsors/ai"
|
|
464
|
-
}
|
|
465
|
-
],
|
|
817
|
+
"node_modules/@angular-devkit/core/node_modules/rxjs": {
|
|
818
|
+
"version": "7.8.1",
|
|
819
|
+
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz",
|
|
820
|
+
"integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==",
|
|
821
|
+
"license": "Apache-2.0",
|
|
822
|
+
"dependencies": {
|
|
823
|
+
"tslib": "^2.1.0"
|
|
824
|
+
}
|
|
825
|
+
},
|
|
826
|
+
"node_modules/@angular-devkit/schematics": {
|
|
827
|
+
"version": "19.2.10",
|
|
828
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-19.2.10.tgz",
|
|
829
|
+
"integrity": "sha512-S+7Mvi9GMiJu3BY0Dpa7TrrAiFIwGwCIKLpO0IgGLUDh9fVLIlcIC/PZgU+L46gEpRwPZfrfMbDFKIlGGz/eQQ==",
|
|
466
830
|
"license": "MIT",
|
|
467
831
|
"dependencies": {
|
|
468
|
-
"
|
|
469
|
-
"
|
|
470
|
-
"
|
|
832
|
+
"@angular-devkit/core": "19.2.10",
|
|
833
|
+
"jsonc-parser": "3.3.1",
|
|
834
|
+
"magic-string": "0.30.17",
|
|
835
|
+
"ora": "5.4.1",
|
|
836
|
+
"rxjs": "7.8.1"
|
|
471
837
|
},
|
|
472
838
|
"engines": {
|
|
473
|
-
"node": "^
|
|
839
|
+
"node": "^18.19.1 || ^20.11.1 || >=22.0.0",
|
|
840
|
+
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
|
|
841
|
+
"yarn": ">= 1.13.0"
|
|
842
|
+
}
|
|
843
|
+
},
|
|
844
|
+
"node_modules/@angular-devkit/schematics/node_modules/rxjs": {
|
|
845
|
+
"version": "7.8.1",
|
|
846
|
+
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz",
|
|
847
|
+
"integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==",
|
|
848
|
+
"license": "Apache-2.0",
|
|
849
|
+
"dependencies": {
|
|
850
|
+
"tslib": "^2.1.0"
|
|
474
851
|
}
|
|
475
852
|
},
|
|
476
853
|
"node_modules/@angular/cli": {
|
|
@@ -2339,9 +2716,9 @@
|
|
|
2339
2716
|
}
|
|
2340
2717
|
},
|
|
2341
2718
|
"node_modules/@esbuild/aix-ppc64": {
|
|
2342
|
-
"version": "0.25.
|
|
2343
|
-
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.
|
|
2344
|
-
"integrity": "sha512-
|
|
2719
|
+
"version": "0.25.4",
|
|
2720
|
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.4.tgz",
|
|
2721
|
+
"integrity": "sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q==",
|
|
2345
2722
|
"cpu": [
|
|
2346
2723
|
"ppc64"
|
|
2347
2724
|
],
|
|
@@ -2355,9 +2732,9 @@
|
|
|
2355
2732
|
}
|
|
2356
2733
|
},
|
|
2357
2734
|
"node_modules/@esbuild/android-arm": {
|
|
2358
|
-
"version": "0.25.
|
|
2359
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.
|
|
2360
|
-
"integrity": "sha512-
|
|
2735
|
+
"version": "0.25.4",
|
|
2736
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.4.tgz",
|
|
2737
|
+
"integrity": "sha512-QNdQEps7DfFwE3hXiU4BZeOV68HHzYwGd0Nthhd3uCkkEKK7/R6MTgM0P7H7FAs5pU/DIWsviMmEGxEoxIZ+ZQ==",
|
|
2361
2738
|
"cpu": [
|
|
2362
2739
|
"arm"
|
|
2363
2740
|
],
|
|
@@ -2371,9 +2748,9 @@
|
|
|
2371
2748
|
}
|
|
2372
2749
|
},
|
|
2373
2750
|
"node_modules/@esbuild/android-arm64": {
|
|
2374
|
-
"version": "0.25.
|
|
2375
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.
|
|
2376
|
-
"integrity": "sha512-
|
|
2751
|
+
"version": "0.25.4",
|
|
2752
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.4.tgz",
|
|
2753
|
+
"integrity": "sha512-bBy69pgfhMGtCnwpC/x5QhfxAz/cBgQ9enbtwjf6V9lnPI/hMyT9iWpR1arm0l3kttTr4L0KSLpKmLp/ilKS9A==",
|
|
2377
2754
|
"cpu": [
|
|
2378
2755
|
"arm64"
|
|
2379
2756
|
],
|
|
@@ -2387,9 +2764,9 @@
|
|
|
2387
2764
|
}
|
|
2388
2765
|
},
|
|
2389
2766
|
"node_modules/@esbuild/android-x64": {
|
|
2390
|
-
"version": "0.25.
|
|
2391
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.
|
|
2392
|
-
"integrity": "sha512-
|
|
2767
|
+
"version": "0.25.4",
|
|
2768
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.4.tgz",
|
|
2769
|
+
"integrity": "sha512-TVhdVtQIFuVpIIR282btcGC2oGQoSfZfmBdTip2anCaVYcqWlZXGcdcKIUklfX2wj0JklNYgz39OBqh2cqXvcQ==",
|
|
2393
2770
|
"cpu": [
|
|
2394
2771
|
"x64"
|
|
2395
2772
|
],
|
|
@@ -2403,9 +2780,9 @@
|
|
|
2403
2780
|
}
|
|
2404
2781
|
},
|
|
2405
2782
|
"node_modules/@esbuild/darwin-arm64": {
|
|
2406
|
-
"version": "0.25.
|
|
2407
|
-
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.
|
|
2408
|
-
"integrity": "sha512-
|
|
2783
|
+
"version": "0.25.4",
|
|
2784
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.4.tgz",
|
|
2785
|
+
"integrity": "sha512-Y1giCfM4nlHDWEfSckMzeWNdQS31BQGs9/rouw6Ub91tkK79aIMTH3q9xHvzH8d0wDru5Ci0kWB8b3up/nl16g==",
|
|
2409
2786
|
"cpu": [
|
|
2410
2787
|
"arm64"
|
|
2411
2788
|
],
|
|
@@ -2419,9 +2796,9 @@
|
|
|
2419
2796
|
}
|
|
2420
2797
|
},
|
|
2421
2798
|
"node_modules/@esbuild/darwin-x64": {
|
|
2422
|
-
"version": "0.25.
|
|
2423
|
-
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.
|
|
2424
|
-
"integrity": "sha512-
|
|
2799
|
+
"version": "0.25.4",
|
|
2800
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.4.tgz",
|
|
2801
|
+
"integrity": "sha512-CJsry8ZGM5VFVeyUYB3cdKpd/H69PYez4eJh1W/t38vzutdjEjtP7hB6eLKBoOdxcAlCtEYHzQ/PJ/oU9I4u0A==",
|
|
2425
2802
|
"cpu": [
|
|
2426
2803
|
"x64"
|
|
2427
2804
|
],
|
|
@@ -2435,9 +2812,9 @@
|
|
|
2435
2812
|
}
|
|
2436
2813
|
},
|
|
2437
2814
|
"node_modules/@esbuild/freebsd-arm64": {
|
|
2438
|
-
"version": "0.25.
|
|
2439
|
-
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.
|
|
2440
|
-
"integrity": "sha512-
|
|
2815
|
+
"version": "0.25.4",
|
|
2816
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.4.tgz",
|
|
2817
|
+
"integrity": "sha512-yYq+39NlTRzU2XmoPW4l5Ifpl9fqSk0nAJYM/V/WUGPEFfek1epLHJIkTQM6bBs1swApjO5nWgvr843g6TjxuQ==",
|
|
2441
2818
|
"cpu": [
|
|
2442
2819
|
"arm64"
|
|
2443
2820
|
],
|
|
@@ -2451,9 +2828,9 @@
|
|
|
2451
2828
|
}
|
|
2452
2829
|
},
|
|
2453
2830
|
"node_modules/@esbuild/freebsd-x64": {
|
|
2454
|
-
"version": "0.25.
|
|
2455
|
-
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.
|
|
2456
|
-
"integrity": "sha512-
|
|
2831
|
+
"version": "0.25.4",
|
|
2832
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.4.tgz",
|
|
2833
|
+
"integrity": "sha512-0FgvOJ6UUMflsHSPLzdfDnnBBVoCDtBTVyn/MrWloUNvq/5SFmh13l3dvgRPkDihRxb77Y17MbqbCAa2strMQQ==",
|
|
2457
2834
|
"cpu": [
|
|
2458
2835
|
"x64"
|
|
2459
2836
|
],
|
|
@@ -2467,9 +2844,9 @@
|
|
|
2467
2844
|
}
|
|
2468
2845
|
},
|
|
2469
2846
|
"node_modules/@esbuild/linux-arm": {
|
|
2470
|
-
"version": "0.25.
|
|
2471
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.
|
|
2472
|
-
"integrity": "sha512-
|
|
2847
|
+
"version": "0.25.4",
|
|
2848
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.4.tgz",
|
|
2849
|
+
"integrity": "sha512-kro4c0P85GMfFYqW4TWOpvmF8rFShbWGnrLqlzp4X1TNWjRY3JMYUfDCtOxPKOIY8B0WC8HN51hGP4I4hz4AaQ==",
|
|
2473
2850
|
"cpu": [
|
|
2474
2851
|
"arm"
|
|
2475
2852
|
],
|
|
@@ -2483,9 +2860,9 @@
|
|
|
2483
2860
|
}
|
|
2484
2861
|
},
|
|
2485
2862
|
"node_modules/@esbuild/linux-arm64": {
|
|
2486
|
-
"version": "0.25.
|
|
2487
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.
|
|
2488
|
-
"integrity": "sha512
|
|
2863
|
+
"version": "0.25.4",
|
|
2864
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.4.tgz",
|
|
2865
|
+
"integrity": "sha512-+89UsQTfXdmjIvZS6nUnOOLoXnkUTB9hR5QAeLrQdzOSWZvNSAXAtcRDHWtqAUtAmv7ZM1WPOOeSxDzzzMogiQ==",
|
|
2489
2866
|
"cpu": [
|
|
2490
2867
|
"arm64"
|
|
2491
2868
|
],
|
|
@@ -2499,9 +2876,9 @@
|
|
|
2499
2876
|
}
|
|
2500
2877
|
},
|
|
2501
2878
|
"node_modules/@esbuild/linux-ia32": {
|
|
2502
|
-
"version": "0.25.
|
|
2503
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.
|
|
2504
|
-
"integrity": "sha512-
|
|
2879
|
+
"version": "0.25.4",
|
|
2880
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.4.tgz",
|
|
2881
|
+
"integrity": "sha512-yTEjoapy8UP3rv8dB0ip3AfMpRbyhSN3+hY8mo/i4QXFeDxmiYbEKp3ZRjBKcOP862Ua4b1PDfwlvbuwY7hIGQ==",
|
|
2505
2882
|
"cpu": [
|
|
2506
2883
|
"ia32"
|
|
2507
2884
|
],
|
|
@@ -2515,9 +2892,9 @@
|
|
|
2515
2892
|
}
|
|
2516
2893
|
},
|
|
2517
2894
|
"node_modules/@esbuild/linux-loong64": {
|
|
2518
|
-
"version": "0.25.
|
|
2519
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.
|
|
2520
|
-
"integrity": "sha512-
|
|
2895
|
+
"version": "0.25.4",
|
|
2896
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.4.tgz",
|
|
2897
|
+
"integrity": "sha512-NeqqYkrcGzFwi6CGRGNMOjWGGSYOpqwCjS9fvaUlX5s3zwOtn1qwg1s2iE2svBe4Q/YOG1q6875lcAoQK/F4VA==",
|
|
2521
2898
|
"cpu": [
|
|
2522
2899
|
"loong64"
|
|
2523
2900
|
],
|
|
@@ -2531,9 +2908,9 @@
|
|
|
2531
2908
|
}
|
|
2532
2909
|
},
|
|
2533
2910
|
"node_modules/@esbuild/linux-mips64el": {
|
|
2534
|
-
"version": "0.25.
|
|
2535
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.
|
|
2536
|
-
"integrity": "sha512-
|
|
2911
|
+
"version": "0.25.4",
|
|
2912
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.4.tgz",
|
|
2913
|
+
"integrity": "sha512-IcvTlF9dtLrfL/M8WgNI/qJYBENP3ekgsHbYUIzEzq5XJzzVEV/fXY9WFPfEEXmu3ck2qJP8LG/p3Q8f7Zc2Xg==",
|
|
2537
2914
|
"cpu": [
|
|
2538
2915
|
"mips64el"
|
|
2539
2916
|
],
|
|
@@ -2547,9 +2924,9 @@
|
|
|
2547
2924
|
}
|
|
2548
2925
|
},
|
|
2549
2926
|
"node_modules/@esbuild/linux-ppc64": {
|
|
2550
|
-
"version": "0.25.
|
|
2551
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.
|
|
2552
|
-
"integrity": "sha512
|
|
2927
|
+
"version": "0.25.4",
|
|
2928
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.4.tgz",
|
|
2929
|
+
"integrity": "sha512-HOy0aLTJTVtoTeGZh4HSXaO6M95qu4k5lJcH4gxv56iaycfz1S8GO/5Jh6X4Y1YiI0h7cRyLi+HixMR+88swag==",
|
|
2553
2930
|
"cpu": [
|
|
2554
2931
|
"ppc64"
|
|
2555
2932
|
],
|
|
@@ -2563,9 +2940,9 @@
|
|
|
2563
2940
|
}
|
|
2564
2941
|
},
|
|
2565
2942
|
"node_modules/@esbuild/linux-riscv64": {
|
|
2566
|
-
"version": "0.25.
|
|
2567
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.
|
|
2568
|
-
"integrity": "sha512-
|
|
2943
|
+
"version": "0.25.4",
|
|
2944
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.4.tgz",
|
|
2945
|
+
"integrity": "sha512-i8JUDAufpz9jOzo4yIShCTcXzS07vEgWzyX3NH2G7LEFVgrLEhjwL3ajFE4fZI3I4ZgiM7JH3GQ7ReObROvSUA==",
|
|
2569
2946
|
"cpu": [
|
|
2570
2947
|
"riscv64"
|
|
2571
2948
|
],
|
|
@@ -2579,9 +2956,9 @@
|
|
|
2579
2956
|
}
|
|
2580
2957
|
},
|
|
2581
2958
|
"node_modules/@esbuild/linux-s390x": {
|
|
2582
|
-
"version": "0.25.
|
|
2583
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.
|
|
2584
|
-
"integrity": "sha512-
|
|
2959
|
+
"version": "0.25.4",
|
|
2960
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.4.tgz",
|
|
2961
|
+
"integrity": "sha512-jFnu+6UbLlzIjPQpWCNh5QtrcNfMLjgIavnwPQAfoGx4q17ocOU9MsQ2QVvFxwQoWpZT8DvTLooTvmOQXkO51g==",
|
|
2585
2962
|
"cpu": [
|
|
2586
2963
|
"s390x"
|
|
2587
2964
|
],
|
|
@@ -2595,9 +2972,9 @@
|
|
|
2595
2972
|
}
|
|
2596
2973
|
},
|
|
2597
2974
|
"node_modules/@esbuild/linux-x64": {
|
|
2598
|
-
"version": "0.25.
|
|
2599
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.
|
|
2600
|
-
"integrity": "sha512-
|
|
2975
|
+
"version": "0.25.4",
|
|
2976
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.4.tgz",
|
|
2977
|
+
"integrity": "sha512-6e0cvXwzOnVWJHq+mskP8DNSrKBr1bULBvnFLpc1KY+d+irZSgZ02TGse5FsafKS5jg2e4pbvK6TPXaF/A6+CA==",
|
|
2601
2978
|
"cpu": [
|
|
2602
2979
|
"x64"
|
|
2603
2980
|
],
|
|
@@ -2611,9 +2988,9 @@
|
|
|
2611
2988
|
}
|
|
2612
2989
|
},
|
|
2613
2990
|
"node_modules/@esbuild/netbsd-arm64": {
|
|
2614
|
-
"version": "0.25.
|
|
2615
|
-
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.
|
|
2616
|
-
"integrity": "sha512-
|
|
2991
|
+
"version": "0.25.4",
|
|
2992
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.4.tgz",
|
|
2993
|
+
"integrity": "sha512-vUnkBYxZW4hL/ie91hSqaSNjulOnYXE1VSLusnvHg2u3jewJBz3YzB9+oCw8DABeVqZGg94t9tyZFoHma8gWZQ==",
|
|
2617
2994
|
"cpu": [
|
|
2618
2995
|
"arm64"
|
|
2619
2996
|
],
|
|
@@ -2627,9 +3004,9 @@
|
|
|
2627
3004
|
}
|
|
2628
3005
|
},
|
|
2629
3006
|
"node_modules/@esbuild/netbsd-x64": {
|
|
2630
|
-
"version": "0.25.
|
|
2631
|
-
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.
|
|
2632
|
-
"integrity": "sha512-
|
|
3007
|
+
"version": "0.25.4",
|
|
3008
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.4.tgz",
|
|
3009
|
+
"integrity": "sha512-XAg8pIQn5CzhOB8odIcAm42QsOfa98SBeKUdo4xa8OvX8LbMZqEtgeWE9P/Wxt7MlG2QqvjGths+nq48TrUiKw==",
|
|
2633
3010
|
"cpu": [
|
|
2634
3011
|
"x64"
|
|
2635
3012
|
],
|
|
@@ -2643,9 +3020,9 @@
|
|
|
2643
3020
|
}
|
|
2644
3021
|
},
|
|
2645
3022
|
"node_modules/@esbuild/openbsd-arm64": {
|
|
2646
|
-
"version": "0.25.
|
|
2647
|
-
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.
|
|
2648
|
-
"integrity": "sha512-
|
|
3023
|
+
"version": "0.25.4",
|
|
3024
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.4.tgz",
|
|
3025
|
+
"integrity": "sha512-Ct2WcFEANlFDtp1nVAXSNBPDxyU+j7+tId//iHXU2f/lN5AmO4zLyhDcpR5Cz1r08mVxzt3Jpyt4PmXQ1O6+7A==",
|
|
2649
3026
|
"cpu": [
|
|
2650
3027
|
"arm64"
|
|
2651
3028
|
],
|
|
@@ -2659,9 +3036,9 @@
|
|
|
2659
3036
|
}
|
|
2660
3037
|
},
|
|
2661
3038
|
"node_modules/@esbuild/openbsd-x64": {
|
|
2662
|
-
"version": "0.25.
|
|
2663
|
-
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.
|
|
2664
|
-
"integrity": "sha512-
|
|
3039
|
+
"version": "0.25.4",
|
|
3040
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.4.tgz",
|
|
3041
|
+
"integrity": "sha512-xAGGhyOQ9Otm1Xu8NT1ifGLnA6M3sJxZ6ixylb+vIUVzvvd6GOALpwQrYrtlPouMqd/vSbgehz6HaVk4+7Afhw==",
|
|
2665
3042
|
"cpu": [
|
|
2666
3043
|
"x64"
|
|
2667
3044
|
],
|
|
@@ -2675,9 +3052,9 @@
|
|
|
2675
3052
|
}
|
|
2676
3053
|
},
|
|
2677
3054
|
"node_modules/@esbuild/sunos-x64": {
|
|
2678
|
-
"version": "0.25.
|
|
2679
|
-
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.
|
|
2680
|
-
"integrity": "sha512-
|
|
3055
|
+
"version": "0.25.4",
|
|
3056
|
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.4.tgz",
|
|
3057
|
+
"integrity": "sha512-Mw+tzy4pp6wZEK0+Lwr76pWLjrtjmJyUB23tHKqEDP74R3q95luY/bXqXZeYl4NYlvwOqoRKlInQialgCKy67Q==",
|
|
2681
3058
|
"cpu": [
|
|
2682
3059
|
"x64"
|
|
2683
3060
|
],
|
|
@@ -2691,9 +3068,9 @@
|
|
|
2691
3068
|
}
|
|
2692
3069
|
},
|
|
2693
3070
|
"node_modules/@esbuild/win32-arm64": {
|
|
2694
|
-
"version": "0.25.
|
|
2695
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.
|
|
2696
|
-
"integrity": "sha512-
|
|
3071
|
+
"version": "0.25.4",
|
|
3072
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.4.tgz",
|
|
3073
|
+
"integrity": "sha512-AVUP428VQTSddguz9dO9ngb+E5aScyg7nOeJDrF1HPYu555gmza3bDGMPhmVXL8svDSoqPCsCPjb265yG/kLKQ==",
|
|
2697
3074
|
"cpu": [
|
|
2698
3075
|
"arm64"
|
|
2699
3076
|
],
|
|
@@ -2707,9 +3084,9 @@
|
|
|
2707
3084
|
}
|
|
2708
3085
|
},
|
|
2709
3086
|
"node_modules/@esbuild/win32-ia32": {
|
|
2710
|
-
"version": "0.25.
|
|
2711
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.
|
|
2712
|
-
"integrity": "sha512-
|
|
3087
|
+
"version": "0.25.4",
|
|
3088
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.4.tgz",
|
|
3089
|
+
"integrity": "sha512-i1sW+1i+oWvQzSgfRcxxG2k4I9n3O9NRqy8U+uugaT2Dy7kLO9Y7wI72haOahxceMX8hZAzgGou1FhndRldxRg==",
|
|
2713
3090
|
"cpu": [
|
|
2714
3091
|
"ia32"
|
|
2715
3092
|
],
|
|
@@ -2723,9 +3100,9 @@
|
|
|
2723
3100
|
}
|
|
2724
3101
|
},
|
|
2725
3102
|
"node_modules/@esbuild/win32-x64": {
|
|
2726
|
-
"version": "0.25.
|
|
2727
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.
|
|
2728
|
-
"integrity": "sha512-
|
|
3103
|
+
"version": "0.25.4",
|
|
3104
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.4.tgz",
|
|
3105
|
+
"integrity": "sha512-nOT2vZNw6hJ+z43oP1SPea/G/6AbN6X+bGNhNuq8NtRHy4wsMhw765IKLNmnjek7GvjWBYQ8Q5VBoYTFg9y1UQ==",
|
|
2729
3106
|
"cpu": [
|
|
2730
3107
|
"x64"
|
|
2731
3108
|
],
|
|
@@ -3840,9 +4217,9 @@
|
|
|
3840
4217
|
}
|
|
3841
4218
|
},
|
|
3842
4219
|
"node_modules/@ngtools/webpack": {
|
|
3843
|
-
"version": "19.2.
|
|
3844
|
-
"resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-19.2.
|
|
3845
|
-
"integrity": "sha512-
|
|
4220
|
+
"version": "19.2.15",
|
|
4221
|
+
"resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-19.2.15.tgz",
|
|
4222
|
+
"integrity": "sha512-H37nop/wWMkSgoU2VvrMzanHePdLRRrX52nC5tT2ZhH3qP25+PrnMyw11PoLDLv3iWXC68uB1AiKNIT+jiQbuQ==",
|
|
3846
4223
|
"license": "MIT",
|
|
3847
4224
|
"engines": {
|
|
3848
4225
|
"node": "^18.19.1 || ^20.11.1 || >=22.0.0",
|
|
@@ -4401,10 +4778,22 @@
|
|
|
4401
4778
|
"node": ">=14"
|
|
4402
4779
|
}
|
|
4403
4780
|
},
|
|
4781
|
+
"node_modules/@regulaforensics/face-core-basic": {
|
|
4782
|
+
"version": "7.1.178",
|
|
4783
|
+
"resolved": "https://registry.npmjs.org/@regulaforensics/face-core-basic/-/face-core-basic-7.1.178.tgz",
|
|
4784
|
+
"integrity": "sha512-KfVME7fPy3vOMKM5g/79Yiz6enWvhxL/nw6B9HKkMpE1uKYgXUa3DWgs4m5EMiqH7jmJ3bmxekkDUFwer6j3pw==",
|
|
4785
|
+
"license": "commercial"
|
|
4786
|
+
},
|
|
4787
|
+
"node_modules/@regulaforensics/face-sdk": {
|
|
4788
|
+
"version": "7.1.317",
|
|
4789
|
+
"resolved": "https://registry.npmjs.org/@regulaforensics/face-sdk/-/face-sdk-7.1.317.tgz",
|
|
4790
|
+
"integrity": "sha512-RtZ4vOlVfcisVcD86rEYbnxPyUjVW2cKwG45oUBGE43UJYAuoYdwdUdfOWoQqwNAsk5Aehp/8EsMwc6e775h3Q==",
|
|
4791
|
+
"license": "commercial"
|
|
4792
|
+
},
|
|
4404
4793
|
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
4405
|
-
"version": "4.
|
|
4406
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.
|
|
4407
|
-
"integrity": "sha512-
|
|
4794
|
+
"version": "4.43.0",
|
|
4795
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.43.0.tgz",
|
|
4796
|
+
"integrity": "sha512-Krjy9awJl6rKbruhQDgivNbD1WuLb8xAclM4IR4cN5pHGAs2oIMMQJEiC3IC/9TZJ+QZkmZhlMO/6MBGxPidpw==",
|
|
4408
4797
|
"cpu": [
|
|
4409
4798
|
"arm"
|
|
4410
4799
|
],
|
|
@@ -4412,12 +4801,13 @@
|
|
|
4412
4801
|
"optional": true,
|
|
4413
4802
|
"os": [
|
|
4414
4803
|
"android"
|
|
4415
|
-
]
|
|
4804
|
+
],
|
|
4805
|
+
"peer": true
|
|
4416
4806
|
},
|
|
4417
4807
|
"node_modules/@rollup/rollup-android-arm64": {
|
|
4418
|
-
"version": "4.
|
|
4419
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.
|
|
4420
|
-
"integrity": "sha512-
|
|
4808
|
+
"version": "4.43.0",
|
|
4809
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.43.0.tgz",
|
|
4810
|
+
"integrity": "sha512-ss4YJwRt5I63454Rpj+mXCXicakdFmKnUNxr1dLK+5rv5FJgAxnN7s31a5VchRYxCFWdmnDWKd0wbAdTr0J5EA==",
|
|
4421
4811
|
"cpu": [
|
|
4422
4812
|
"arm64"
|
|
4423
4813
|
],
|
|
@@ -4425,12 +4815,13 @@
|
|
|
4425
4815
|
"optional": true,
|
|
4426
4816
|
"os": [
|
|
4427
4817
|
"android"
|
|
4428
|
-
]
|
|
4818
|
+
],
|
|
4819
|
+
"peer": true
|
|
4429
4820
|
},
|
|
4430
4821
|
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
4431
|
-
"version": "4.
|
|
4432
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.
|
|
4433
|
-
"integrity": "sha512-
|
|
4822
|
+
"version": "4.43.0",
|
|
4823
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.43.0.tgz",
|
|
4824
|
+
"integrity": "sha512-eKoL8ykZ7zz8MjgBenEF2OoTNFAPFz1/lyJ5UmmFSz5jW+7XbH1+MAgCVHy72aG59rbuQLcJeiMrP8qP5d/N0A==",
|
|
4434
4825
|
"cpu": [
|
|
4435
4826
|
"arm64"
|
|
4436
4827
|
],
|
|
@@ -4438,12 +4829,13 @@
|
|
|
4438
4829
|
"optional": true,
|
|
4439
4830
|
"os": [
|
|
4440
4831
|
"darwin"
|
|
4441
|
-
]
|
|
4832
|
+
],
|
|
4833
|
+
"peer": true
|
|
4442
4834
|
},
|
|
4443
4835
|
"node_modules/@rollup/rollup-darwin-x64": {
|
|
4444
|
-
"version": "4.
|
|
4445
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.
|
|
4446
|
-
"integrity": "sha512-
|
|
4836
|
+
"version": "4.43.0",
|
|
4837
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.43.0.tgz",
|
|
4838
|
+
"integrity": "sha512-SYwXJgaBYW33Wi/q4ubN+ldWC4DzQY62S4Ll2dgfr/dbPoF50dlQwEaEHSKrQdSjC6oIe1WgzosoaNoHCdNuMg==",
|
|
4447
4839
|
"cpu": [
|
|
4448
4840
|
"x64"
|
|
4449
4841
|
],
|
|
@@ -4451,12 +4843,13 @@
|
|
|
4451
4843
|
"optional": true,
|
|
4452
4844
|
"os": [
|
|
4453
4845
|
"darwin"
|
|
4454
|
-
]
|
|
4846
|
+
],
|
|
4847
|
+
"peer": true
|
|
4455
4848
|
},
|
|
4456
4849
|
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
4457
|
-
"version": "4.
|
|
4458
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.
|
|
4459
|
-
"integrity": "sha512-
|
|
4850
|
+
"version": "4.43.0",
|
|
4851
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.43.0.tgz",
|
|
4852
|
+
"integrity": "sha512-SV+U5sSo0yujrjzBF7/YidieK2iF6E7MdF6EbYxNz94lA+R0wKl3SiixGyG/9Klab6uNBIqsN7j4Y/Fya7wAjQ==",
|
|
4460
4853
|
"cpu": [
|
|
4461
4854
|
"arm64"
|
|
4462
4855
|
],
|
|
@@ -4464,12 +4857,13 @@
|
|
|
4464
4857
|
"optional": true,
|
|
4465
4858
|
"os": [
|
|
4466
4859
|
"freebsd"
|
|
4467
|
-
]
|
|
4860
|
+
],
|
|
4861
|
+
"peer": true
|
|
4468
4862
|
},
|
|
4469
4863
|
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
4470
|
-
"version": "4.
|
|
4471
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.
|
|
4472
|
-
"integrity": "sha512-
|
|
4864
|
+
"version": "4.43.0",
|
|
4865
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.43.0.tgz",
|
|
4866
|
+
"integrity": "sha512-J7uCsiV13L/VOeHJBo5SjasKiGxJ0g+nQTrBkAsmQBIdil3KhPnSE9GnRon4ejX1XDdsmK/l30IYLiAaQEO0Cg==",
|
|
4473
4867
|
"cpu": [
|
|
4474
4868
|
"x64"
|
|
4475
4869
|
],
|
|
@@ -4477,12 +4871,13 @@
|
|
|
4477
4871
|
"optional": true,
|
|
4478
4872
|
"os": [
|
|
4479
4873
|
"freebsd"
|
|
4480
|
-
]
|
|
4874
|
+
],
|
|
4875
|
+
"peer": true
|
|
4481
4876
|
},
|
|
4482
4877
|
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
4483
|
-
"version": "4.
|
|
4484
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.
|
|
4485
|
-
"integrity": "sha512-
|
|
4878
|
+
"version": "4.43.0",
|
|
4879
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.43.0.tgz",
|
|
4880
|
+
"integrity": "sha512-gTJ/JnnjCMc15uwB10TTATBEhK9meBIY+gXP4s0sHD1zHOaIh4Dmy1X9wup18IiY9tTNk5gJc4yx9ctj/fjrIw==",
|
|
4486
4881
|
"cpu": [
|
|
4487
4882
|
"arm"
|
|
4488
4883
|
],
|
|
@@ -4490,12 +4885,13 @@
|
|
|
4490
4885
|
"optional": true,
|
|
4491
4886
|
"os": [
|
|
4492
4887
|
"linux"
|
|
4493
|
-
]
|
|
4888
|
+
],
|
|
4889
|
+
"peer": true
|
|
4494
4890
|
},
|
|
4495
4891
|
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
4496
|
-
"version": "4.
|
|
4497
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.
|
|
4498
|
-
"integrity": "sha512-
|
|
4892
|
+
"version": "4.43.0",
|
|
4893
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.43.0.tgz",
|
|
4894
|
+
"integrity": "sha512-ZJ3gZynL1LDSIvRfz0qXtTNs56n5DI2Mq+WACWZ7yGHFUEirHBRt7fyIk0NsCKhmRhn7WAcjgSkSVVxKlPNFFw==",
|
|
4499
4895
|
"cpu": [
|
|
4500
4896
|
"arm"
|
|
4501
4897
|
],
|
|
@@ -4503,12 +4899,13 @@
|
|
|
4503
4899
|
"optional": true,
|
|
4504
4900
|
"os": [
|
|
4505
4901
|
"linux"
|
|
4506
|
-
]
|
|
4902
|
+
],
|
|
4903
|
+
"peer": true
|
|
4507
4904
|
},
|
|
4508
4905
|
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
4509
|
-
"version": "4.
|
|
4510
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.
|
|
4511
|
-
"integrity": "sha512-
|
|
4906
|
+
"version": "4.43.0",
|
|
4907
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.43.0.tgz",
|
|
4908
|
+
"integrity": "sha512-8FnkipasmOOSSlfucGYEu58U8cxEdhziKjPD2FIa0ONVMxvl/hmONtX/7y4vGjdUhjcTHlKlDhw3H9t98fPvyA==",
|
|
4512
4909
|
"cpu": [
|
|
4513
4910
|
"arm64"
|
|
4514
4911
|
],
|
|
@@ -4516,12 +4913,13 @@
|
|
|
4516
4913
|
"optional": true,
|
|
4517
4914
|
"os": [
|
|
4518
4915
|
"linux"
|
|
4519
|
-
]
|
|
4916
|
+
],
|
|
4917
|
+
"peer": true
|
|
4520
4918
|
},
|
|
4521
4919
|
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
4522
|
-
"version": "4.
|
|
4523
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.
|
|
4524
|
-
"integrity": "sha512-
|
|
4920
|
+
"version": "4.43.0",
|
|
4921
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.43.0.tgz",
|
|
4922
|
+
"integrity": "sha512-KPPyAdlcIZ6S9C3S2cndXDkV0Bb1OSMsX0Eelr2Bay4EsF9yi9u9uzc9RniK3mcUGCLhWY9oLr6er80P5DE6XA==",
|
|
4525
4923
|
"cpu": [
|
|
4526
4924
|
"arm64"
|
|
4527
4925
|
],
|
|
@@ -4529,12 +4927,13 @@
|
|
|
4529
4927
|
"optional": true,
|
|
4530
4928
|
"os": [
|
|
4531
4929
|
"linux"
|
|
4532
|
-
]
|
|
4930
|
+
],
|
|
4931
|
+
"peer": true
|
|
4533
4932
|
},
|
|
4534
4933
|
"node_modules/@rollup/rollup-linux-loongarch64-gnu": {
|
|
4535
|
-
"version": "4.
|
|
4536
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.
|
|
4537
|
-
"integrity": "sha512-
|
|
4934
|
+
"version": "4.43.0",
|
|
4935
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.43.0.tgz",
|
|
4936
|
+
"integrity": "sha512-HPGDIH0/ZzAZjvtlXj6g+KDQ9ZMHfSP553za7o2Odegb/BEfwJcR0Sw0RLNpQ9nC6Gy8s+3mSS9xjZ0n3rhcYg==",
|
|
4538
4937
|
"cpu": [
|
|
4539
4938
|
"loong64"
|
|
4540
4939
|
],
|
|
@@ -4542,12 +4941,13 @@
|
|
|
4542
4941
|
"optional": true,
|
|
4543
4942
|
"os": [
|
|
4544
4943
|
"linux"
|
|
4545
|
-
]
|
|
4944
|
+
],
|
|
4945
|
+
"peer": true
|
|
4546
4946
|
},
|
|
4547
4947
|
"node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
|
|
4548
|
-
"version": "4.
|
|
4549
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.
|
|
4550
|
-
"integrity": "sha512-
|
|
4948
|
+
"version": "4.43.0",
|
|
4949
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.43.0.tgz",
|
|
4950
|
+
"integrity": "sha512-gEmwbOws4U4GLAJDhhtSPWPXUzDfMRedT3hFMyRAvM9Mrnj+dJIFIeL7otsv2WF3D7GrV0GIewW0y28dOYWkmw==",
|
|
4551
4951
|
"cpu": [
|
|
4552
4952
|
"ppc64"
|
|
4553
4953
|
],
|
|
@@ -4555,12 +4955,13 @@
|
|
|
4555
4955
|
"optional": true,
|
|
4556
4956
|
"os": [
|
|
4557
4957
|
"linux"
|
|
4558
|
-
]
|
|
4958
|
+
],
|
|
4959
|
+
"peer": true
|
|
4559
4960
|
},
|
|
4560
4961
|
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
4561
|
-
"version": "4.
|
|
4562
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.
|
|
4563
|
-
"integrity": "sha512-
|
|
4962
|
+
"version": "4.43.0",
|
|
4963
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.43.0.tgz",
|
|
4964
|
+
"integrity": "sha512-XXKvo2e+wFtXZF/9xoWohHg+MuRnvO29TI5Hqe9xwN5uN8NKUYy7tXUG3EZAlfchufNCTHNGjEx7uN78KsBo0g==",
|
|
4564
4965
|
"cpu": [
|
|
4565
4966
|
"riscv64"
|
|
4566
4967
|
],
|
|
@@ -4568,12 +4969,13 @@
|
|
|
4568
4969
|
"optional": true,
|
|
4569
4970
|
"os": [
|
|
4570
4971
|
"linux"
|
|
4571
|
-
]
|
|
4972
|
+
],
|
|
4973
|
+
"peer": true
|
|
4572
4974
|
},
|
|
4573
4975
|
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
4574
|
-
"version": "4.
|
|
4575
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.
|
|
4576
|
-
"integrity": "sha512-
|
|
4976
|
+
"version": "4.43.0",
|
|
4977
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.43.0.tgz",
|
|
4978
|
+
"integrity": "sha512-ruf3hPWhjw6uDFsOAzmbNIvlXFXlBQ4nk57Sec8E8rUxs/AI4HD6xmiiasOOx/3QxS2f5eQMKTAwk7KHwpzr/Q==",
|
|
4577
4979
|
"cpu": [
|
|
4578
4980
|
"riscv64"
|
|
4579
4981
|
],
|
|
@@ -4585,9 +4987,9 @@
|
|
|
4585
4987
|
"peer": true
|
|
4586
4988
|
},
|
|
4587
4989
|
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
4588
|
-
"version": "4.
|
|
4589
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.
|
|
4590
|
-
"integrity": "sha512-
|
|
4990
|
+
"version": "4.43.0",
|
|
4991
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.43.0.tgz",
|
|
4992
|
+
"integrity": "sha512-QmNIAqDiEMEvFV15rsSnjoSmO0+eJLoKRD9EAa9rrYNwO/XRCtOGM3A5A0X+wmG+XRrw9Fxdsw+LnyYiZWWcVw==",
|
|
4591
4993
|
"cpu": [
|
|
4592
4994
|
"s390x"
|
|
4593
4995
|
],
|
|
@@ -4595,12 +4997,13 @@
|
|
|
4595
4997
|
"optional": true,
|
|
4596
4998
|
"os": [
|
|
4597
4999
|
"linux"
|
|
4598
|
-
]
|
|
5000
|
+
],
|
|
5001
|
+
"peer": true
|
|
4599
5002
|
},
|
|
4600
5003
|
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
4601
|
-
"version": "4.
|
|
4602
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.
|
|
4603
|
-
"integrity": "sha512-
|
|
5004
|
+
"version": "4.43.0",
|
|
5005
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.43.0.tgz",
|
|
5006
|
+
"integrity": "sha512-jAHr/S0iiBtFyzjhOkAics/2SrXE092qyqEg96e90L3t9Op8OTzS6+IX0Fy5wCt2+KqeHAkti+eitV0wvblEoQ==",
|
|
4604
5007
|
"cpu": [
|
|
4605
5008
|
"x64"
|
|
4606
5009
|
],
|
|
@@ -4608,12 +5011,13 @@
|
|
|
4608
5011
|
"optional": true,
|
|
4609
5012
|
"os": [
|
|
4610
5013
|
"linux"
|
|
4611
|
-
]
|
|
5014
|
+
],
|
|
5015
|
+
"peer": true
|
|
4612
5016
|
},
|
|
4613
5017
|
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
4614
|
-
"version": "4.
|
|
4615
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.
|
|
4616
|
-
"integrity": "sha512-
|
|
5018
|
+
"version": "4.43.0",
|
|
5019
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.43.0.tgz",
|
|
5020
|
+
"integrity": "sha512-3yATWgdeXyuHtBhrLt98w+5fKurdqvs8B53LaoKD7P7H7FKOONLsBVMNl9ghPQZQuYcceV5CDyPfyfGpMWD9mQ==",
|
|
4617
5021
|
"cpu": [
|
|
4618
5022
|
"x64"
|
|
4619
5023
|
],
|
|
@@ -4621,12 +5025,13 @@
|
|
|
4621
5025
|
"optional": true,
|
|
4622
5026
|
"os": [
|
|
4623
5027
|
"linux"
|
|
4624
|
-
]
|
|
5028
|
+
],
|
|
5029
|
+
"peer": true
|
|
4625
5030
|
},
|
|
4626
5031
|
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
4627
|
-
"version": "4.
|
|
4628
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.
|
|
4629
|
-
"integrity": "sha512-
|
|
5032
|
+
"version": "4.43.0",
|
|
5033
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.43.0.tgz",
|
|
5034
|
+
"integrity": "sha512-wVzXp2qDSCOpcBCT5WRWLmpJRIzv23valvcTwMHEobkjippNf+C3ys/+wf07poPkeNix0paTNemB2XrHr2TnGw==",
|
|
4630
5035
|
"cpu": [
|
|
4631
5036
|
"arm64"
|
|
4632
5037
|
],
|
|
@@ -4634,12 +5039,13 @@
|
|
|
4634
5039
|
"optional": true,
|
|
4635
5040
|
"os": [
|
|
4636
5041
|
"win32"
|
|
4637
|
-
]
|
|
5042
|
+
],
|
|
5043
|
+
"peer": true
|
|
4638
5044
|
},
|
|
4639
5045
|
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
4640
|
-
"version": "4.
|
|
4641
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.
|
|
4642
|
-
"integrity": "sha512-
|
|
5046
|
+
"version": "4.43.0",
|
|
5047
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.43.0.tgz",
|
|
5048
|
+
"integrity": "sha512-fYCTEyzf8d+7diCw8b+asvWDCLMjsCEA8alvtAutqJOJp/wL5hs1rWSqJ1vkjgW0L2NB4bsYJrpKkiIPRR9dvw==",
|
|
4643
5049
|
"cpu": [
|
|
4644
5050
|
"ia32"
|
|
4645
5051
|
],
|
|
@@ -4647,12 +5053,13 @@
|
|
|
4647
5053
|
"optional": true,
|
|
4648
5054
|
"os": [
|
|
4649
5055
|
"win32"
|
|
4650
|
-
]
|
|
5056
|
+
],
|
|
5057
|
+
"peer": true
|
|
4651
5058
|
},
|
|
4652
5059
|
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
4653
|
-
"version": "4.
|
|
4654
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.
|
|
4655
|
-
"integrity": "sha512-
|
|
5060
|
+
"version": "4.43.0",
|
|
5061
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.43.0.tgz",
|
|
5062
|
+
"integrity": "sha512-SnGhLiE5rlK0ofq8kzuDkM0g7FN1s5VYY+YSMTibP7CqShxCQvqtNxTARS4xX4PFJfHjG0ZQYX9iGzI3FQh5Aw==",
|
|
4656
5063
|
"cpu": [
|
|
4657
5064
|
"x64"
|
|
4658
5065
|
],
|
|
@@ -4660,7 +5067,8 @@
|
|
|
4660
5067
|
"optional": true,
|
|
4661
5068
|
"os": [
|
|
4662
5069
|
"win32"
|
|
4663
|
-
]
|
|
5070
|
+
],
|
|
5071
|
+
"peer": true
|
|
4664
5072
|
},
|
|
4665
5073
|
"node_modules/@schematics/angular": {
|
|
4666
5074
|
"version": "19.2.10",
|
|
@@ -4800,9 +5208,9 @@
|
|
|
4800
5208
|
}
|
|
4801
5209
|
},
|
|
4802
5210
|
"node_modules/@types/body-parser": {
|
|
4803
|
-
"version": "1.19.
|
|
4804
|
-
"resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.
|
|
4805
|
-
"integrity": "sha512-
|
|
5211
|
+
"version": "1.19.6",
|
|
5212
|
+
"resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.6.tgz",
|
|
5213
|
+
"integrity": "sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==",
|
|
4806
5214
|
"license": "MIT",
|
|
4807
5215
|
"dependencies": {
|
|
4808
5216
|
"@types/connect": "*",
|
|
@@ -4864,36 +5272,24 @@
|
|
|
4864
5272
|
}
|
|
4865
5273
|
},
|
|
4866
5274
|
"node_modules/@types/estree": {
|
|
4867
|
-
"version": "1.0.
|
|
4868
|
-
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.
|
|
4869
|
-
"integrity": "sha512-
|
|
5275
|
+
"version": "1.0.7",
|
|
5276
|
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz",
|
|
5277
|
+
"integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==",
|
|
4870
5278
|
"license": "MIT"
|
|
4871
5279
|
},
|
|
4872
5280
|
"node_modules/@types/express": {
|
|
4873
|
-
"version": "4.17.
|
|
4874
|
-
"resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.
|
|
4875
|
-
"integrity": "sha512-
|
|
5281
|
+
"version": "4.17.23",
|
|
5282
|
+
"resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.23.tgz",
|
|
5283
|
+
"integrity": "sha512-Crp6WY9aTYP3qPi2wGDo9iUe/rceX01UMhnF1jmwDcKCFM6cx7YhGP/Mpr3y9AASpfHixIG0E6azCcL5OcDHsQ==",
|
|
4876
5284
|
"license": "MIT",
|
|
4877
5285
|
"dependencies": {
|
|
4878
5286
|
"@types/body-parser": "*",
|
|
4879
5287
|
"@types/express-serve-static-core": "^4.17.33",
|
|
4880
5288
|
"@types/qs": "*",
|
|
4881
|
-
"@types/serve-static": "*"
|
|
4882
|
-
}
|
|
4883
|
-
},
|
|
4884
|
-
"node_modules/@types/express-serve-static-core": {
|
|
4885
|
-
"version": "5.0.6",
|
|
4886
|
-
"resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.6.tgz",
|
|
4887
|
-
"integrity": "sha512-3xhRnjJPkULekpSzgtoNYYcTWgEZkp4myc+Saevii5JPnHNvHMRlBSHDbs7Bh1iPPoVTERHEZXyhyLbMEsExsA==",
|
|
4888
|
-
"license": "MIT",
|
|
4889
|
-
"dependencies": {
|
|
4890
|
-
"@types/node": "*",
|
|
4891
|
-
"@types/qs": "*",
|
|
4892
|
-
"@types/range-parser": "*",
|
|
4893
|
-
"@types/send": "*"
|
|
5289
|
+
"@types/serve-static": "*"
|
|
4894
5290
|
}
|
|
4895
5291
|
},
|
|
4896
|
-
"node_modules/@types/express
|
|
5292
|
+
"node_modules/@types/express-serve-static-core": {
|
|
4897
5293
|
"version": "4.19.6",
|
|
4898
5294
|
"resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz",
|
|
4899
5295
|
"integrity": "sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==",
|
|
@@ -4906,9 +5302,9 @@
|
|
|
4906
5302
|
}
|
|
4907
5303
|
},
|
|
4908
5304
|
"node_modules/@types/http-errors": {
|
|
4909
|
-
"version": "2.0.
|
|
4910
|
-
"resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.
|
|
4911
|
-
"integrity": "sha512-
|
|
5305
|
+
"version": "2.0.5",
|
|
5306
|
+
"resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.5.tgz",
|
|
5307
|
+
"integrity": "sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==",
|
|
4912
5308
|
"license": "MIT"
|
|
4913
5309
|
},
|
|
4914
5310
|
"node_modules/@types/http-proxy": {
|
|
@@ -4951,9 +5347,9 @@
|
|
|
4951
5347
|
}
|
|
4952
5348
|
},
|
|
4953
5349
|
"node_modules/@types/qs": {
|
|
4954
|
-
"version": "6.
|
|
4955
|
-
"resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.
|
|
4956
|
-
"integrity": "sha512-
|
|
5350
|
+
"version": "6.14.0",
|
|
5351
|
+
"resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.14.0.tgz",
|
|
5352
|
+
"integrity": "sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==",
|
|
4957
5353
|
"license": "MIT"
|
|
4958
5354
|
},
|
|
4959
5355
|
"node_modules/@types/range-parser": {
|
|
@@ -4969,9 +5365,9 @@
|
|
|
4969
5365
|
"license": "MIT"
|
|
4970
5366
|
},
|
|
4971
5367
|
"node_modules/@types/send": {
|
|
4972
|
-
"version": "0.17.
|
|
4973
|
-
"resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.
|
|
4974
|
-
"integrity": "sha512-
|
|
5368
|
+
"version": "0.17.5",
|
|
5369
|
+
"resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.5.tgz",
|
|
5370
|
+
"integrity": "sha512-z6F2D3cOStZvuk2SaP6YrwkNO65iTZcwA2ZkSABegdkAh/lf+Aa/YQndZVfmEXT5vgAp6zv06VQ3ejSVjAny4w==",
|
|
4975
5371
|
"license": "MIT",
|
|
4976
5372
|
"dependencies": {
|
|
4977
5373
|
"@types/mime": "^1",
|
|
@@ -4988,9 +5384,9 @@
|
|
|
4988
5384
|
}
|
|
4989
5385
|
},
|
|
4990
5386
|
"node_modules/@types/serve-static": {
|
|
4991
|
-
"version": "1.15.
|
|
4992
|
-
"resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.
|
|
4993
|
-
"integrity": "sha512-
|
|
5387
|
+
"version": "1.15.8",
|
|
5388
|
+
"resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.8.tgz",
|
|
5389
|
+
"integrity": "sha512-roei0UY3LhpOJvjbIP6ZZFngyLKl5dskOtDhxY5THRSpO+ZI+nzJ+m5yUMzGrp89YRa7lvknKkMYjqQFGwA7Sg==",
|
|
4994
5390
|
"license": "MIT",
|
|
4995
5391
|
"dependencies": {
|
|
4996
5392
|
"@types/http-errors": "*",
|
|
@@ -5732,9 +6128,9 @@
|
|
|
5732
6128
|
}
|
|
5733
6129
|
},
|
|
5734
6130
|
"node_modules/brace-expansion": {
|
|
5735
|
-
"version": "2.0.
|
|
5736
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.
|
|
5737
|
-
"integrity": "sha512-
|
|
6131
|
+
"version": "2.0.2",
|
|
6132
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
|
|
6133
|
+
"integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
|
|
5738
6134
|
"license": "MIT",
|
|
5739
6135
|
"dependencies": {
|
|
5740
6136
|
"balanced-match": "^1.0.0"
|
|
@@ -6308,16 +6704,16 @@
|
|
|
6308
6704
|
}
|
|
6309
6705
|
},
|
|
6310
6706
|
"node_modules/compression": {
|
|
6311
|
-
"version": "1.8.
|
|
6312
|
-
"resolved": "https://registry.npmjs.org/compression/-/compression-1.8.
|
|
6313
|
-
"integrity": "sha512-
|
|
6707
|
+
"version": "1.8.1",
|
|
6708
|
+
"resolved": "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz",
|
|
6709
|
+
"integrity": "sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==",
|
|
6314
6710
|
"license": "MIT",
|
|
6315
6711
|
"dependencies": {
|
|
6316
6712
|
"bytes": "3.1.2",
|
|
6317
6713
|
"compressible": "~2.0.18",
|
|
6318
6714
|
"debug": "2.6.9",
|
|
6319
6715
|
"negotiator": "~0.6.4",
|
|
6320
|
-
"on-headers": "~1.0
|
|
6716
|
+
"on-headers": "~1.1.0",
|
|
6321
6717
|
"safe-buffer": "5.2.1",
|
|
6322
6718
|
"vary": "~1.1.2"
|
|
6323
6719
|
},
|
|
@@ -7167,9 +7563,9 @@
|
|
|
7167
7563
|
}
|
|
7168
7564
|
},
|
|
7169
7565
|
"node_modules/esbuild": {
|
|
7170
|
-
"version": "0.25.
|
|
7171
|
-
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.
|
|
7172
|
-
"integrity": "sha512-
|
|
7566
|
+
"version": "0.25.4",
|
|
7567
|
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.4.tgz",
|
|
7568
|
+
"integrity": "sha512-8pgjLUcUjcgDg+2Q4NYXnPbo/vncAY4UmyaCm0jZevERqCHZIaWwdJHkf8XQtu4AxSKCdvrUbT0XUr1IdZzI8Q==",
|
|
7173
7569
|
"hasInstallScript": true,
|
|
7174
7570
|
"license": "MIT",
|
|
7175
7571
|
"bin": {
|
|
@@ -7179,37 +7575,37 @@
|
|
|
7179
7575
|
"node": ">=18"
|
|
7180
7576
|
},
|
|
7181
7577
|
"optionalDependencies": {
|
|
7182
|
-
"@esbuild/aix-ppc64": "0.25.
|
|
7183
|
-
"@esbuild/android-arm": "0.25.
|
|
7184
|
-
"@esbuild/android-arm64": "0.25.
|
|
7185
|
-
"@esbuild/android-x64": "0.25.
|
|
7186
|
-
"@esbuild/darwin-arm64": "0.25.
|
|
7187
|
-
"@esbuild/darwin-x64": "0.25.
|
|
7188
|
-
"@esbuild/freebsd-arm64": "0.25.
|
|
7189
|
-
"@esbuild/freebsd-x64": "0.25.
|
|
7190
|
-
"@esbuild/linux-arm": "0.25.
|
|
7191
|
-
"@esbuild/linux-arm64": "0.25.
|
|
7192
|
-
"@esbuild/linux-ia32": "0.25.
|
|
7193
|
-
"@esbuild/linux-loong64": "0.25.
|
|
7194
|
-
"@esbuild/linux-mips64el": "0.25.
|
|
7195
|
-
"@esbuild/linux-ppc64": "0.25.
|
|
7196
|
-
"@esbuild/linux-riscv64": "0.25.
|
|
7197
|
-
"@esbuild/linux-s390x": "0.25.
|
|
7198
|
-
"@esbuild/linux-x64": "0.25.
|
|
7199
|
-
"@esbuild/netbsd-arm64": "0.25.
|
|
7200
|
-
"@esbuild/netbsd-x64": "0.25.
|
|
7201
|
-
"@esbuild/openbsd-arm64": "0.25.
|
|
7202
|
-
"@esbuild/openbsd-x64": "0.25.
|
|
7203
|
-
"@esbuild/sunos-x64": "0.25.
|
|
7204
|
-
"@esbuild/win32-arm64": "0.25.
|
|
7205
|
-
"@esbuild/win32-ia32": "0.25.
|
|
7206
|
-
"@esbuild/win32-x64": "0.25.
|
|
7578
|
+
"@esbuild/aix-ppc64": "0.25.4",
|
|
7579
|
+
"@esbuild/android-arm": "0.25.4",
|
|
7580
|
+
"@esbuild/android-arm64": "0.25.4",
|
|
7581
|
+
"@esbuild/android-x64": "0.25.4",
|
|
7582
|
+
"@esbuild/darwin-arm64": "0.25.4",
|
|
7583
|
+
"@esbuild/darwin-x64": "0.25.4",
|
|
7584
|
+
"@esbuild/freebsd-arm64": "0.25.4",
|
|
7585
|
+
"@esbuild/freebsd-x64": "0.25.4",
|
|
7586
|
+
"@esbuild/linux-arm": "0.25.4",
|
|
7587
|
+
"@esbuild/linux-arm64": "0.25.4",
|
|
7588
|
+
"@esbuild/linux-ia32": "0.25.4",
|
|
7589
|
+
"@esbuild/linux-loong64": "0.25.4",
|
|
7590
|
+
"@esbuild/linux-mips64el": "0.25.4",
|
|
7591
|
+
"@esbuild/linux-ppc64": "0.25.4",
|
|
7592
|
+
"@esbuild/linux-riscv64": "0.25.4",
|
|
7593
|
+
"@esbuild/linux-s390x": "0.25.4",
|
|
7594
|
+
"@esbuild/linux-x64": "0.25.4",
|
|
7595
|
+
"@esbuild/netbsd-arm64": "0.25.4",
|
|
7596
|
+
"@esbuild/netbsd-x64": "0.25.4",
|
|
7597
|
+
"@esbuild/openbsd-arm64": "0.25.4",
|
|
7598
|
+
"@esbuild/openbsd-x64": "0.25.4",
|
|
7599
|
+
"@esbuild/sunos-x64": "0.25.4",
|
|
7600
|
+
"@esbuild/win32-arm64": "0.25.4",
|
|
7601
|
+
"@esbuild/win32-ia32": "0.25.4",
|
|
7602
|
+
"@esbuild/win32-x64": "0.25.4"
|
|
7207
7603
|
}
|
|
7208
7604
|
},
|
|
7209
7605
|
"node_modules/esbuild-wasm": {
|
|
7210
|
-
"version": "0.25.
|
|
7211
|
-
"resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.25.
|
|
7212
|
-
"integrity": "sha512-
|
|
7606
|
+
"version": "0.25.4",
|
|
7607
|
+
"resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.25.4.tgz",
|
|
7608
|
+
"integrity": "sha512-2HlCS6rNvKWaSKhWaG/YIyRsTsL3gUrMP2ToZMBIjw9LM7vVcIs+rz8kE2vExvTJgvM8OKPqNpcHawY/BQc/qQ==",
|
|
7213
7609
|
"license": "MIT",
|
|
7214
7610
|
"bin": {
|
|
7215
7611
|
"esbuild": "bin/esbuild"
|
|
@@ -8022,9 +8418,9 @@
|
|
|
8022
8418
|
}
|
|
8023
8419
|
},
|
|
8024
8420
|
"node_modules/htmlparser2/node_modules/entities": {
|
|
8025
|
-
"version": "6.0.
|
|
8026
|
-
"resolved": "https://registry.npmjs.org/entities/-/entities-6.0.
|
|
8027
|
-
"integrity": "sha512-
|
|
8421
|
+
"version": "6.0.1",
|
|
8422
|
+
"resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz",
|
|
8423
|
+
"integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==",
|
|
8028
8424
|
"license": "BSD-2-Clause",
|
|
8029
8425
|
"engines": {
|
|
8030
8426
|
"node": ">=0.12"
|
|
@@ -9193,9 +9589,9 @@
|
|
|
9193
9589
|
}
|
|
9194
9590
|
},
|
|
9195
9591
|
"node_modules/memfs": {
|
|
9196
|
-
"version": "4.17.
|
|
9197
|
-
"resolved": "https://registry.npmjs.org/memfs/-/memfs-4.17.
|
|
9198
|
-
"integrity": "sha512-
|
|
9592
|
+
"version": "4.17.2",
|
|
9593
|
+
"resolved": "https://registry.npmjs.org/memfs/-/memfs-4.17.2.tgz",
|
|
9594
|
+
"integrity": "sha512-NgYhCOWgovOXSzvYgUW0LQ7Qy72rWQMGGFJDoWg4G30RHd3z77VbYdtJ4fembJXBy8pMIUA31XNAupobOQlwdg==",
|
|
9199
9595
|
"license": "Apache-2.0",
|
|
9200
9596
|
"dependencies": {
|
|
9201
9597
|
"@jsonjoy.com/json-pack": "^1.0.3",
|
|
@@ -9532,9 +9928,9 @@
|
|
|
9532
9928
|
"license": "MIT"
|
|
9533
9929
|
},
|
|
9534
9930
|
"node_modules/msgpackr": {
|
|
9535
|
-
"version": "1.11.
|
|
9536
|
-
"resolved": "https://registry.npmjs.org/msgpackr/-/msgpackr-1.11.
|
|
9537
|
-
"integrity": "sha512-
|
|
9931
|
+
"version": "1.11.4",
|
|
9932
|
+
"resolved": "https://registry.npmjs.org/msgpackr/-/msgpackr-1.11.4.tgz",
|
|
9933
|
+
"integrity": "sha512-uaff7RG9VIC4jacFW9xzL3jc0iM32DNHe4jYVycBcjUePT/Klnfj7pqtWJt9khvDFizmjN2TlYniYmSS2LIaZg==",
|
|
9538
9934
|
"license": "MIT",
|
|
9539
9935
|
"optional": true,
|
|
9540
9936
|
"optionalDependencies": {
|
|
@@ -9980,9 +10376,9 @@
|
|
|
9980
10376
|
}
|
|
9981
10377
|
},
|
|
9982
10378
|
"node_modules/on-headers": {
|
|
9983
|
-
"version": "1.0
|
|
9984
|
-
"resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.
|
|
9985
|
-
"integrity": "sha512-
|
|
10379
|
+
"version": "1.1.0",
|
|
10380
|
+
"resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz",
|
|
10381
|
+
"integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==",
|
|
9986
10382
|
"license": "MIT",
|
|
9987
10383
|
"engines": {
|
|
9988
10384
|
"node": ">= 0.8"
|
|
@@ -11094,12 +11490,13 @@
|
|
|
11094
11490
|
"license": "MIT"
|
|
11095
11491
|
},
|
|
11096
11492
|
"node_modules/rollup": {
|
|
11097
|
-
"version": "4.
|
|
11098
|
-
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.
|
|
11099
|
-
"integrity": "sha512-
|
|
11493
|
+
"version": "4.43.0",
|
|
11494
|
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.43.0.tgz",
|
|
11495
|
+
"integrity": "sha512-wdN2Kd3Twh8MAEOEJZsuxuLKCsBEo4PVNLK6tQWAn10VhsVewQLzcucMgLolRlhFybGxfclbPeEYBaP6RvUFGg==",
|
|
11100
11496
|
"license": "MIT",
|
|
11497
|
+
"peer": true,
|
|
11101
11498
|
"dependencies": {
|
|
11102
|
-
"@types/estree": "1.0.
|
|
11499
|
+
"@types/estree": "1.0.7"
|
|
11103
11500
|
},
|
|
11104
11501
|
"bin": {
|
|
11105
11502
|
"rollup": "dist/bin/rollup"
|
|
@@ -11109,25 +11506,26 @@
|
|
|
11109
11506
|
"npm": ">=8.0.0"
|
|
11110
11507
|
},
|
|
11111
11508
|
"optionalDependencies": {
|
|
11112
|
-
"@rollup/rollup-android-arm-eabi": "4.
|
|
11113
|
-
"@rollup/rollup-android-arm64": "4.
|
|
11114
|
-
"@rollup/rollup-darwin-arm64": "4.
|
|
11115
|
-
"@rollup/rollup-darwin-x64": "4.
|
|
11116
|
-
"@rollup/rollup-freebsd-arm64": "4.
|
|
11117
|
-
"@rollup/rollup-freebsd-x64": "4.
|
|
11118
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.
|
|
11119
|
-
"@rollup/rollup-linux-arm-musleabihf": "4.
|
|
11120
|
-
"@rollup/rollup-linux-arm64-gnu": "4.
|
|
11121
|
-
"@rollup/rollup-linux-arm64-musl": "4.
|
|
11122
|
-
"@rollup/rollup-linux-loongarch64-gnu": "4.
|
|
11123
|
-
"@rollup/rollup-linux-powerpc64le-gnu": "4.
|
|
11124
|
-
"@rollup/rollup-linux-riscv64-gnu": "4.
|
|
11125
|
-
"@rollup/rollup-linux-
|
|
11126
|
-
"@rollup/rollup-linux-
|
|
11127
|
-
"@rollup/rollup-linux-x64-
|
|
11128
|
-
"@rollup/rollup-
|
|
11129
|
-
"@rollup/rollup-win32-
|
|
11130
|
-
"@rollup/rollup-win32-
|
|
11509
|
+
"@rollup/rollup-android-arm-eabi": "4.43.0",
|
|
11510
|
+
"@rollup/rollup-android-arm64": "4.43.0",
|
|
11511
|
+
"@rollup/rollup-darwin-arm64": "4.43.0",
|
|
11512
|
+
"@rollup/rollup-darwin-x64": "4.43.0",
|
|
11513
|
+
"@rollup/rollup-freebsd-arm64": "4.43.0",
|
|
11514
|
+
"@rollup/rollup-freebsd-x64": "4.43.0",
|
|
11515
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.43.0",
|
|
11516
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.43.0",
|
|
11517
|
+
"@rollup/rollup-linux-arm64-gnu": "4.43.0",
|
|
11518
|
+
"@rollup/rollup-linux-arm64-musl": "4.43.0",
|
|
11519
|
+
"@rollup/rollup-linux-loongarch64-gnu": "4.43.0",
|
|
11520
|
+
"@rollup/rollup-linux-powerpc64le-gnu": "4.43.0",
|
|
11521
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.43.0",
|
|
11522
|
+
"@rollup/rollup-linux-riscv64-musl": "4.43.0",
|
|
11523
|
+
"@rollup/rollup-linux-s390x-gnu": "4.43.0",
|
|
11524
|
+
"@rollup/rollup-linux-x64-gnu": "4.43.0",
|
|
11525
|
+
"@rollup/rollup-linux-x64-musl": "4.43.0",
|
|
11526
|
+
"@rollup/rollup-win32-arm64-msvc": "4.43.0",
|
|
11527
|
+
"@rollup/rollup-win32-ia32-msvc": "4.43.0",
|
|
11528
|
+
"@rollup/rollup-win32-x64-msvc": "4.43.0",
|
|
11131
11529
|
"fsevents": "~2.3.2"
|
|
11132
11530
|
}
|
|
11133
11531
|
},
|
|
@@ -11525,9 +11923,9 @@
|
|
|
11525
11923
|
}
|
|
11526
11924
|
},
|
|
11527
11925
|
"node_modules/shell-quote": {
|
|
11528
|
-
"version": "1.8.
|
|
11529
|
-
"resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.
|
|
11530
|
-
"integrity": "sha512-
|
|
11926
|
+
"version": "1.8.3",
|
|
11927
|
+
"resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.3.tgz",
|
|
11928
|
+
"integrity": "sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==",
|
|
11531
11929
|
"license": "MIT",
|
|
11532
11930
|
"engines": {
|
|
11533
11931
|
"node": ">= 0.4"
|
|
@@ -11554,9 +11952,9 @@
|
|
|
11554
11952
|
}
|
|
11555
11953
|
},
|
|
11556
11954
|
"node_modules/shelljs/node_modules/brace-expansion": {
|
|
11557
|
-
"version": "1.1.
|
|
11558
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.
|
|
11559
|
-
"integrity": "sha512-
|
|
11955
|
+
"version": "1.1.12",
|
|
11956
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
|
|
11957
|
+
"integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
|
|
11560
11958
|
"license": "MIT",
|
|
11561
11959
|
"dependencies": {
|
|
11562
11960
|
"balanced-match": "^1.0.0",
|
|
@@ -12366,9 +12764,9 @@
|
|
|
12366
12764
|
}
|
|
12367
12765
|
},
|
|
12368
12766
|
"node_modules/tree-dump": {
|
|
12369
|
-
"version": "1.0.
|
|
12370
|
-
"resolved": "https://registry.npmjs.org/tree-dump/-/tree-dump-1.0.
|
|
12371
|
-
"integrity": "sha512-
|
|
12767
|
+
"version": "1.0.3",
|
|
12768
|
+
"resolved": "https://registry.npmjs.org/tree-dump/-/tree-dump-1.0.3.tgz",
|
|
12769
|
+
"integrity": "sha512-il+Cv80yVHFBwokQSfd4bldvr1Md951DpgAGfmhydt04L+YzHgubm2tQ7zueWDcGENKHq0ZvGFR/hjvNXilHEg==",
|
|
12372
12770
|
"license": "Apache-2.0",
|
|
12373
12771
|
"engines": {
|
|
12374
12772
|
"node": ">=10.0"
|
|
@@ -12730,283 +13128,10 @@
|
|
|
12730
13128
|
}
|
|
12731
13129
|
}
|
|
12732
13130
|
},
|
|
12733
|
-
"node_modules/vite/node_modules/@rollup/rollup-android-arm-eabi": {
|
|
12734
|
-
"version": "4.40.1",
|
|
12735
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.40.1.tgz",
|
|
12736
|
-
"integrity": "sha512-kxz0YeeCrRUHz3zyqvd7n+TVRlNyTifBsmnmNPtk3hQURUyG9eAB+usz6DAwagMusjx/zb3AjvDUvhFGDAexGw==",
|
|
12737
|
-
"cpu": [
|
|
12738
|
-
"arm"
|
|
12739
|
-
],
|
|
12740
|
-
"license": "MIT",
|
|
12741
|
-
"optional": true,
|
|
12742
|
-
"os": [
|
|
12743
|
-
"android"
|
|
12744
|
-
],
|
|
12745
|
-
"peer": true
|
|
12746
|
-
},
|
|
12747
|
-
"node_modules/vite/node_modules/@rollup/rollup-android-arm64": {
|
|
12748
|
-
"version": "4.40.1",
|
|
12749
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.40.1.tgz",
|
|
12750
|
-
"integrity": "sha512-PPkxTOisoNC6TpnDKatjKkjRMsdaWIhyuMkA4UsBXT9WEZY4uHezBTjs6Vl4PbqQQeu6oION1w2voYZv9yquCw==",
|
|
12751
|
-
"cpu": [
|
|
12752
|
-
"arm64"
|
|
12753
|
-
],
|
|
12754
|
-
"license": "MIT",
|
|
12755
|
-
"optional": true,
|
|
12756
|
-
"os": [
|
|
12757
|
-
"android"
|
|
12758
|
-
],
|
|
12759
|
-
"peer": true
|
|
12760
|
-
},
|
|
12761
|
-
"node_modules/vite/node_modules/@rollup/rollup-darwin-arm64": {
|
|
12762
|
-
"version": "4.40.1",
|
|
12763
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.40.1.tgz",
|
|
12764
|
-
"integrity": "sha512-VWXGISWFY18v/0JyNUy4A46KCFCb9NVsH+1100XP31lud+TzlezBbz24CYzbnA4x6w4hx+NYCXDfnvDVO6lcAA==",
|
|
12765
|
-
"cpu": [
|
|
12766
|
-
"arm64"
|
|
12767
|
-
],
|
|
12768
|
-
"license": "MIT",
|
|
12769
|
-
"optional": true,
|
|
12770
|
-
"os": [
|
|
12771
|
-
"darwin"
|
|
12772
|
-
],
|
|
12773
|
-
"peer": true
|
|
12774
|
-
},
|
|
12775
|
-
"node_modules/vite/node_modules/@rollup/rollup-darwin-x64": {
|
|
12776
|
-
"version": "4.40.1",
|
|
12777
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.40.1.tgz",
|
|
12778
|
-
"integrity": "sha512-nIwkXafAI1/QCS7pxSpv/ZtFW6TXcNUEHAIA9EIyw5OzxJZQ1YDrX+CL6JAIQgZ33CInl1R6mHet9Y/UZTg2Bw==",
|
|
12779
|
-
"cpu": [
|
|
12780
|
-
"x64"
|
|
12781
|
-
],
|
|
12782
|
-
"license": "MIT",
|
|
12783
|
-
"optional": true,
|
|
12784
|
-
"os": [
|
|
12785
|
-
"darwin"
|
|
12786
|
-
],
|
|
12787
|
-
"peer": true
|
|
12788
|
-
},
|
|
12789
|
-
"node_modules/vite/node_modules/@rollup/rollup-freebsd-arm64": {
|
|
12790
|
-
"version": "4.40.1",
|
|
12791
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.40.1.tgz",
|
|
12792
|
-
"integrity": "sha512-BdrLJ2mHTrIYdaS2I99mriyJfGGenSaP+UwGi1kB9BLOCu9SR8ZpbkmmalKIALnRw24kM7qCN0IOm6L0S44iWw==",
|
|
12793
|
-
"cpu": [
|
|
12794
|
-
"arm64"
|
|
12795
|
-
],
|
|
12796
|
-
"license": "MIT",
|
|
12797
|
-
"optional": true,
|
|
12798
|
-
"os": [
|
|
12799
|
-
"freebsd"
|
|
12800
|
-
],
|
|
12801
|
-
"peer": true
|
|
12802
|
-
},
|
|
12803
|
-
"node_modules/vite/node_modules/@rollup/rollup-freebsd-x64": {
|
|
12804
|
-
"version": "4.40.1",
|
|
12805
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.40.1.tgz",
|
|
12806
|
-
"integrity": "sha512-VXeo/puqvCG8JBPNZXZf5Dqq7BzElNJzHRRw3vjBE27WujdzuOPecDPc/+1DcdcTptNBep3861jNq0mYkT8Z6Q==",
|
|
12807
|
-
"cpu": [
|
|
12808
|
-
"x64"
|
|
12809
|
-
],
|
|
12810
|
-
"license": "MIT",
|
|
12811
|
-
"optional": true,
|
|
12812
|
-
"os": [
|
|
12813
|
-
"freebsd"
|
|
12814
|
-
],
|
|
12815
|
-
"peer": true
|
|
12816
|
-
},
|
|
12817
|
-
"node_modules/vite/node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
12818
|
-
"version": "4.40.1",
|
|
12819
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.40.1.tgz",
|
|
12820
|
-
"integrity": "sha512-ehSKrewwsESPt1TgSE/na9nIhWCosfGSFqv7vwEtjyAqZcvbGIg4JAcV7ZEh2tfj/IlfBeZjgOXm35iOOjadcg==",
|
|
12821
|
-
"cpu": [
|
|
12822
|
-
"arm"
|
|
12823
|
-
],
|
|
12824
|
-
"license": "MIT",
|
|
12825
|
-
"optional": true,
|
|
12826
|
-
"os": [
|
|
12827
|
-
"linux"
|
|
12828
|
-
],
|
|
12829
|
-
"peer": true
|
|
12830
|
-
},
|
|
12831
|
-
"node_modules/vite/node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
12832
|
-
"version": "4.40.1",
|
|
12833
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.40.1.tgz",
|
|
12834
|
-
"integrity": "sha512-m39iO/aaurh5FVIu/F4/Zsl8xppd76S4qoID8E+dSRQvTyZTOI2gVk3T4oqzfq1PtcvOfAVlwLMK3KRQMaR8lg==",
|
|
12835
|
-
"cpu": [
|
|
12836
|
-
"arm"
|
|
12837
|
-
],
|
|
12838
|
-
"license": "MIT",
|
|
12839
|
-
"optional": true,
|
|
12840
|
-
"os": [
|
|
12841
|
-
"linux"
|
|
12842
|
-
],
|
|
12843
|
-
"peer": true
|
|
12844
|
-
},
|
|
12845
|
-
"node_modules/vite/node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
12846
|
-
"version": "4.40.1",
|
|
12847
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.40.1.tgz",
|
|
12848
|
-
"integrity": "sha512-Y+GHnGaku4aVLSgrT0uWe2o2Rq8te9hi+MwqGF9r9ORgXhmHK5Q71N757u0F8yU1OIwUIFy6YiJtKjtyktk5hg==",
|
|
12849
|
-
"cpu": [
|
|
12850
|
-
"arm64"
|
|
12851
|
-
],
|
|
12852
|
-
"license": "MIT",
|
|
12853
|
-
"optional": true,
|
|
12854
|
-
"os": [
|
|
12855
|
-
"linux"
|
|
12856
|
-
],
|
|
12857
|
-
"peer": true
|
|
12858
|
-
},
|
|
12859
|
-
"node_modules/vite/node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
12860
|
-
"version": "4.40.1",
|
|
12861
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.40.1.tgz",
|
|
12862
|
-
"integrity": "sha512-jEwjn3jCA+tQGswK3aEWcD09/7M5wGwc6+flhva7dsQNRZZTe30vkalgIzV4tjkopsTS9Jd7Y1Bsj6a4lzz8gQ==",
|
|
12863
|
-
"cpu": [
|
|
12864
|
-
"arm64"
|
|
12865
|
-
],
|
|
12866
|
-
"license": "MIT",
|
|
12867
|
-
"optional": true,
|
|
12868
|
-
"os": [
|
|
12869
|
-
"linux"
|
|
12870
|
-
],
|
|
12871
|
-
"peer": true
|
|
12872
|
-
},
|
|
12873
|
-
"node_modules/vite/node_modules/@rollup/rollup-linux-loongarch64-gnu": {
|
|
12874
|
-
"version": "4.40.1",
|
|
12875
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.40.1.tgz",
|
|
12876
|
-
"integrity": "sha512-ySyWikVhNzv+BV/IDCsrraOAZ3UaC8SZB67FZlqVwXwnFhPihOso9rPOxzZbjp81suB1O2Topw+6Ug3JNegejQ==",
|
|
12877
|
-
"cpu": [
|
|
12878
|
-
"loong64"
|
|
12879
|
-
],
|
|
12880
|
-
"license": "MIT",
|
|
12881
|
-
"optional": true,
|
|
12882
|
-
"os": [
|
|
12883
|
-
"linux"
|
|
12884
|
-
],
|
|
12885
|
-
"peer": true
|
|
12886
|
-
},
|
|
12887
|
-
"node_modules/vite/node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
|
|
12888
|
-
"version": "4.40.1",
|
|
12889
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.40.1.tgz",
|
|
12890
|
-
"integrity": "sha512-BvvA64QxZlh7WZWqDPPdt0GH4bznuL6uOO1pmgPnnv86rpUpc8ZxgZwcEgXvo02GRIZX1hQ0j0pAnhwkhwPqWg==",
|
|
12891
|
-
"cpu": [
|
|
12892
|
-
"ppc64"
|
|
12893
|
-
],
|
|
12894
|
-
"license": "MIT",
|
|
12895
|
-
"optional": true,
|
|
12896
|
-
"os": [
|
|
12897
|
-
"linux"
|
|
12898
|
-
],
|
|
12899
|
-
"peer": true
|
|
12900
|
-
},
|
|
12901
|
-
"node_modules/vite/node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
12902
|
-
"version": "4.40.1",
|
|
12903
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.40.1.tgz",
|
|
12904
|
-
"integrity": "sha512-EQSP+8+1VuSulm9RKSMKitTav89fKbHymTf25n5+Yr6gAPZxYWpj3DzAsQqoaHAk9YX2lwEyAf9S4W8F4l3VBQ==",
|
|
12905
|
-
"cpu": [
|
|
12906
|
-
"riscv64"
|
|
12907
|
-
],
|
|
12908
|
-
"license": "MIT",
|
|
12909
|
-
"optional": true,
|
|
12910
|
-
"os": [
|
|
12911
|
-
"linux"
|
|
12912
|
-
],
|
|
12913
|
-
"peer": true
|
|
12914
|
-
},
|
|
12915
|
-
"node_modules/vite/node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
12916
|
-
"version": "4.40.1",
|
|
12917
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.40.1.tgz",
|
|
12918
|
-
"integrity": "sha512-h8d28xzYb98fMQKUz0w2fMc1XuGzLLjdyxVIbhbil4ELfk5/orZlSTpF/xdI9C8K0I8lCkq+1En2RJsawZekkg==",
|
|
12919
|
-
"cpu": [
|
|
12920
|
-
"s390x"
|
|
12921
|
-
],
|
|
12922
|
-
"license": "MIT",
|
|
12923
|
-
"optional": true,
|
|
12924
|
-
"os": [
|
|
12925
|
-
"linux"
|
|
12926
|
-
],
|
|
12927
|
-
"peer": true
|
|
12928
|
-
},
|
|
12929
|
-
"node_modules/vite/node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
12930
|
-
"version": "4.40.1",
|
|
12931
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.40.1.tgz",
|
|
12932
|
-
"integrity": "sha512-XiK5z70PEFEFqcNj3/zRSz/qX4bp4QIraTy9QjwJAb/Z8GM7kVUsD0Uk8maIPeTyPCP03ChdI+VVmJriKYbRHQ==",
|
|
12933
|
-
"cpu": [
|
|
12934
|
-
"x64"
|
|
12935
|
-
],
|
|
12936
|
-
"license": "MIT",
|
|
12937
|
-
"optional": true,
|
|
12938
|
-
"os": [
|
|
12939
|
-
"linux"
|
|
12940
|
-
],
|
|
12941
|
-
"peer": true
|
|
12942
|
-
},
|
|
12943
|
-
"node_modules/vite/node_modules/@rollup/rollup-linux-x64-musl": {
|
|
12944
|
-
"version": "4.40.1",
|
|
12945
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.40.1.tgz",
|
|
12946
|
-
"integrity": "sha512-2BRORitq5rQ4Da9blVovzNCMaUlyKrzMSvkVR0D4qPuOy/+pMCrh1d7o01RATwVy+6Fa1WBw+da7QPeLWU/1mQ==",
|
|
12947
|
-
"cpu": [
|
|
12948
|
-
"x64"
|
|
12949
|
-
],
|
|
12950
|
-
"license": "MIT",
|
|
12951
|
-
"optional": true,
|
|
12952
|
-
"os": [
|
|
12953
|
-
"linux"
|
|
12954
|
-
],
|
|
12955
|
-
"peer": true
|
|
12956
|
-
},
|
|
12957
|
-
"node_modules/vite/node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
12958
|
-
"version": "4.40.1",
|
|
12959
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.40.1.tgz",
|
|
12960
|
-
"integrity": "sha512-b2bcNm9Kbde03H+q+Jjw9tSfhYkzrDUf2d5MAd1bOJuVplXvFhWz7tRtWvD8/ORZi7qSCy0idW6tf2HgxSXQSg==",
|
|
12961
|
-
"cpu": [
|
|
12962
|
-
"arm64"
|
|
12963
|
-
],
|
|
12964
|
-
"license": "MIT",
|
|
12965
|
-
"optional": true,
|
|
12966
|
-
"os": [
|
|
12967
|
-
"win32"
|
|
12968
|
-
],
|
|
12969
|
-
"peer": true
|
|
12970
|
-
},
|
|
12971
|
-
"node_modules/vite/node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
12972
|
-
"version": "4.40.1",
|
|
12973
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.40.1.tgz",
|
|
12974
|
-
"integrity": "sha512-DfcogW8N7Zg7llVEfpqWMZcaErKfsj9VvmfSyRjCyo4BI3wPEfrzTtJkZG6gKP/Z92wFm6rz2aDO7/JfiR/whA==",
|
|
12975
|
-
"cpu": [
|
|
12976
|
-
"ia32"
|
|
12977
|
-
],
|
|
12978
|
-
"license": "MIT",
|
|
12979
|
-
"optional": true,
|
|
12980
|
-
"os": [
|
|
12981
|
-
"win32"
|
|
12982
|
-
],
|
|
12983
|
-
"peer": true
|
|
12984
|
-
},
|
|
12985
|
-
"node_modules/vite/node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
12986
|
-
"version": "4.40.1",
|
|
12987
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.40.1.tgz",
|
|
12988
|
-
"integrity": "sha512-ECyOuDeH3C1I8jH2MK1RtBJW+YPMvSfT0a5NN0nHfQYnDSJ6tUiZH3gzwVP5/Kfh/+Tt7tpWVF9LXNTnhTJ3kA==",
|
|
12989
|
-
"cpu": [
|
|
12990
|
-
"x64"
|
|
12991
|
-
],
|
|
12992
|
-
"license": "MIT",
|
|
12993
|
-
"optional": true,
|
|
12994
|
-
"os": [
|
|
12995
|
-
"win32"
|
|
12996
|
-
],
|
|
12997
|
-
"peer": true
|
|
12998
|
-
},
|
|
12999
|
-
"node_modules/vite/node_modules/@types/estree": {
|
|
13000
|
-
"version": "1.0.7",
|
|
13001
|
-
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz",
|
|
13002
|
-
"integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==",
|
|
13003
|
-
"license": "MIT",
|
|
13004
|
-
"peer": true
|
|
13005
|
-
},
|
|
13006
13131
|
"node_modules/vite/node_modules/postcss": {
|
|
13007
|
-
"version": "8.5.
|
|
13008
|
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.
|
|
13009
|
-
"integrity": "sha512-
|
|
13132
|
+
"version": "8.5.6",
|
|
13133
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
|
|
13134
|
+
"integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
|
|
13010
13135
|
"funding": [
|
|
13011
13136
|
{
|
|
13012
13137
|
"type": "opencollective",
|
|
@@ -13024,7 +13149,7 @@
|
|
|
13024
13149
|
"license": "MIT",
|
|
13025
13150
|
"peer": true,
|
|
13026
13151
|
"dependencies": {
|
|
13027
|
-
"nanoid": "^3.3.
|
|
13152
|
+
"nanoid": "^3.3.11",
|
|
13028
13153
|
"picocolors": "^1.1.1",
|
|
13029
13154
|
"source-map-js": "^1.2.1"
|
|
13030
13155
|
},
|
|
@@ -13032,46 +13157,6 @@
|
|
|
13032
13157
|
"node": "^10 || ^12 || >=14"
|
|
13033
13158
|
}
|
|
13034
13159
|
},
|
|
13035
|
-
"node_modules/vite/node_modules/rollup": {
|
|
13036
|
-
"version": "4.40.1",
|
|
13037
|
-
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.40.1.tgz",
|
|
13038
|
-
"integrity": "sha512-C5VvvgCCyfyotVITIAv+4efVytl5F7wt+/I2i9q9GZcEXW9BP52YYOXC58igUi+LFZVHukErIIqQSWwv/M3WRw==",
|
|
13039
|
-
"license": "MIT",
|
|
13040
|
-
"peer": true,
|
|
13041
|
-
"dependencies": {
|
|
13042
|
-
"@types/estree": "1.0.7"
|
|
13043
|
-
},
|
|
13044
|
-
"bin": {
|
|
13045
|
-
"rollup": "dist/bin/rollup"
|
|
13046
|
-
},
|
|
13047
|
-
"engines": {
|
|
13048
|
-
"node": ">=18.0.0",
|
|
13049
|
-
"npm": ">=8.0.0"
|
|
13050
|
-
},
|
|
13051
|
-
"optionalDependencies": {
|
|
13052
|
-
"@rollup/rollup-android-arm-eabi": "4.40.1",
|
|
13053
|
-
"@rollup/rollup-android-arm64": "4.40.1",
|
|
13054
|
-
"@rollup/rollup-darwin-arm64": "4.40.1",
|
|
13055
|
-
"@rollup/rollup-darwin-x64": "4.40.1",
|
|
13056
|
-
"@rollup/rollup-freebsd-arm64": "4.40.1",
|
|
13057
|
-
"@rollup/rollup-freebsd-x64": "4.40.1",
|
|
13058
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.40.1",
|
|
13059
|
-
"@rollup/rollup-linux-arm-musleabihf": "4.40.1",
|
|
13060
|
-
"@rollup/rollup-linux-arm64-gnu": "4.40.1",
|
|
13061
|
-
"@rollup/rollup-linux-arm64-musl": "4.40.1",
|
|
13062
|
-
"@rollup/rollup-linux-loongarch64-gnu": "4.40.1",
|
|
13063
|
-
"@rollup/rollup-linux-powerpc64le-gnu": "4.40.1",
|
|
13064
|
-
"@rollup/rollup-linux-riscv64-gnu": "4.40.1",
|
|
13065
|
-
"@rollup/rollup-linux-riscv64-musl": "4.40.1",
|
|
13066
|
-
"@rollup/rollup-linux-s390x-gnu": "4.40.1",
|
|
13067
|
-
"@rollup/rollup-linux-x64-gnu": "4.40.1",
|
|
13068
|
-
"@rollup/rollup-linux-x64-musl": "4.40.1",
|
|
13069
|
-
"@rollup/rollup-win32-arm64-msvc": "4.40.1",
|
|
13070
|
-
"@rollup/rollup-win32-ia32-msvc": "4.40.1",
|
|
13071
|
-
"@rollup/rollup-win32-x64-msvc": "4.40.1",
|
|
13072
|
-
"fsevents": "~2.3.2"
|
|
13073
|
-
}
|
|
13074
|
-
},
|
|
13075
13160
|
"node_modules/watchpack": {
|
|
13076
13161
|
"version": "2.4.2",
|
|
13077
13162
|
"resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz",
|
|
@@ -13186,14 +13271,15 @@
|
|
|
13186
13271
|
}
|
|
13187
13272
|
},
|
|
13188
13273
|
"node_modules/webpack-dev-server": {
|
|
13189
|
-
"version": "5.2.
|
|
13190
|
-
"resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-5.2.
|
|
13191
|
-
"integrity": "sha512-
|
|
13274
|
+
"version": "5.2.2",
|
|
13275
|
+
"resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-5.2.2.tgz",
|
|
13276
|
+
"integrity": "sha512-QcQ72gh8a+7JO63TAx/6XZf/CWhgMzu5m0QirvPfGvptOusAxG12w2+aua1Jkjr7hzaWDnJ2n6JFeexMHI+Zjg==",
|
|
13192
13277
|
"license": "MIT",
|
|
13193
13278
|
"dependencies": {
|
|
13194
13279
|
"@types/bonjour": "^3.5.13",
|
|
13195
13280
|
"@types/connect-history-api-fallback": "^1.5.4",
|
|
13196
13281
|
"@types/express": "^4.17.21",
|
|
13282
|
+
"@types/express-serve-static-core": "^4.17.21",
|
|
13197
13283
|
"@types/serve-index": "^1.9.4",
|
|
13198
13284
|
"@types/serve-static": "^1.15.5",
|
|
13199
13285
|
"@types/sockjs": "^0.3.36",
|
|
@@ -13206,7 +13292,7 @@
|
|
|
13206
13292
|
"connect-history-api-fallback": "^2.0.0",
|
|
13207
13293
|
"express": "^4.21.2",
|
|
13208
13294
|
"graceful-fs": "^4.2.6",
|
|
13209
|
-
"http-proxy-middleware": "^2.0.
|
|
13295
|
+
"http-proxy-middleware": "^2.0.9",
|
|
13210
13296
|
"ipaddr.js": "^2.1.0",
|
|
13211
13297
|
"launch-editor": "^2.6.1",
|
|
13212
13298
|
"open": "^10.0.3",
|