@angular-wave/angular.ts 0.7.0-beta.1 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yml +58 -14
- package/.github/workflows/gh-pages.yml +75 -0
- package/@types/animations/animate.d.ts +11 -4
- package/@types/core/compile/attributes.d.ts +5 -2
- package/@types/core/compile/compile.d.ts +6 -6
- package/@types/core/di/injector.d.ts +1 -2
- package/@types/core/di/internal-injector.d.ts +10 -7
- package/@types/core/di/ng-module.d.ts +0 -1
- package/@types/core/error-handler.d.ts +1 -1
- package/@types/core/exception-handler.d.ts +1 -1
- package/@types/core/parse/interface.d.ts +3 -3
- package/@types/core/pubsub/pubsub.d.ts +21 -0
- package/@types/core/sce/sce.d.ts +2 -5
- package/@types/core/scope/scope.d.ts +23 -36
- package/@types/core/task-tracker-factory.d.ts +10 -5
- package/@types/directive/aria/aria.d.ts +4 -1
- package/@types/directive/include/include.d.ts +4 -18
- package/@types/directive/options/options.d.ts +1 -1
- package/@types/injection-tokens.d.ts +20 -0
- package/@types/interface.d.ts +4 -4
- package/@types/loader.d.ts +1 -0
- package/@types/public.d.ts +2 -2
- package/@types/router/directives/view-directive.d.ts +0 -2
- package/@types/router/params/param.d.ts +1 -1
- package/@types/router/state/interface.d.ts +3 -3
- package/@types/router/state/state-builder.d.ts +9 -2
- package/@types/router/transition/transition-service.d.ts +1 -0
- package/@types/services/anchor-scroll.d.ts +0 -1
- package/@types/shared/utils.d.ts +4 -14
- package/README.md +7 -9
- package/dist/angular-ts.esm.js +440 -304
- package/dist/angular-ts.umd.js +444 -309
- package/dist/angular-ts.umd.min.js +1 -1
- package/docs/.cspell.yml +2 -2
- package/docs/.github/dependabot.yml +12 -12
- package/docs/README.md +10 -7
- package/docs/assets/icons/logo.svg +1 -0
- package/docs/assets/scss/_variables_project.scss +1 -0
- package/docs/content/en/_index.md +5 -64
- package/docs/content/en/docs/_index.md +3 -4
- package/docs/docker-compose.yaml +1 -0
- package/docs/go.mod +1 -1
- package/docs/go.sum +6 -6
- package/docs/hugo-disabled.toml +6 -7
- package/docs/hugo.yaml +45 -64
- package/docs/layouts/404.html +2 -8
- package/docs/layouts/_markup/render-heading.html +1 -0
- package/docs/package-lock.json +2293 -0
- package/docs/package.json +18 -7
- package/index.html +1 -1
- package/package.json +1 -1
- package/src/animations/animate-children-directive.js +2 -1
- package/src/animations/animate-css.js +2 -2
- package/src/animations/animate-runner.js +3 -3
- package/src/animations/animate-swap.js +16 -19
- package/src/animations/animate.js +3 -1
- package/src/animations/shared.js +1 -1
- package/src/core/compile/attributes.js +4 -1
- package/src/core/compile/compile.js +29 -24
- package/src/core/compile/compile.spec.js +368 -371
- package/src/core/controller/controller.spec.js +27 -20
- package/src/core/di/injector.js +2 -5
- package/src/core/di/internal-injector.js +2 -0
- package/src/core/di/ng-module.js +19 -7
- package/src/core/di/ng-module.spec.js +16 -16
- package/src/core/error-handler.ts +1 -1
- package/src/core/exception-handler.js +1 -1
- package/src/core/filter/filter.js +0 -1
- package/src/core/parse/ast/ast.spec.js +1 -9
- package/src/core/parse/interface.ts +3 -3
- package/src/core/parse/parse.js +6 -6
- package/src/core/pubsub/pubsub.js +20 -0
- package/src/core/pubsub/pubsub.spec.js +14 -1
- package/src/core/sanitize/sanitize-uri.js +1 -0
- package/src/core/sce/sce.js +7 -15
- package/src/core/scope/scope.js +114 -117
- package/src/core/scope/scope.spec.js +11 -11
- package/src/core/task-tracker-factory.js +7 -0
- package/src/directive/aria/aria.js +11 -10
- package/src/directive/attrs/attrs.js +2 -1
- package/src/directive/bind/bind.js +2 -3
- package/src/directive/channel/channel.js +0 -1
- package/src/directive/class/class.js +0 -1
- package/src/directive/cloak/cloak.js +0 -1
- package/src/directive/include/include.js +22 -11
- package/src/directive/include/include.spec.js +1 -0
- package/src/directive/input/input-example.html +15 -0
- package/src/directive/input/input.js +8 -2
- package/src/directive/input/input.spec.js +12 -14
- package/src/directive/messages/messages.js +2 -2
- package/src/directive/non-bindable/non-bindable.js +0 -1
- package/src/directive/observe/test.html +1 -1
- package/src/directive/options/options-example.html +13 -0
- package/src/directive/options/options.js +33 -21
- package/src/directive/options/options.spec.js +207 -146
- package/src/directive/repeat/repeat.js +8 -7
- package/src/directive/select/select.spec.js +1 -1
- package/src/directive/setter/setter.js +1 -1
- package/src/directive/setter/setter.spec.js +5 -4
- package/src/directive/style/style.spec.js +1 -1
- package/src/directive/switch/switch.js +1 -2
- package/src/directive/transclude/transclude.js +0 -1
- package/src/directive/validators/validators.js +5 -5
- package/src/examples/counter.html +20 -0
- package/src/filters/order-by.js +2 -1
- package/src/filters/order-by.spec.js +4 -4
- package/src/index.spec.js +11 -0
- package/src/injection-tokens.js +71 -0
- package/src/interface.ts +4 -4
- package/src/loader.js +2 -0
- package/src/public.js +10 -3
- package/src/public.spec.js +1 -0
- package/src/router/directives/state-directives.js +1 -1
- package/src/router/directives/state-directives.spec.js +0 -2
- package/src/router/directives/view-directive.js +1 -2
- package/src/router/params/param.js +1 -1
- package/src/router/state/interface.ts +3 -3
- package/src/router/state/state-builder.js +4 -0
- package/src/router/state/state-builder.spec.js +21 -15
- package/src/router/state/state-registry.js +7 -6
- package/src/router/template-factory.spec.js +15 -9
- package/src/router/transition/transition-service.js +1 -0
- package/src/router/view/view.spec.js +1 -1
- package/src/router/view-scroll.spec.js +3 -4
- package/src/services/anchor-scroll.html +1 -1
- package/src/services/anchor-scroll.js +0 -4
- package/src/services/template-request.js +11 -7
- package/src/shared/noderef.js +1 -3
- package/src/shared/utils.js +5 -22
- package/src/src.html +2 -1
- package/typedoc/assets/hierarchy.js +1 -1
- package/typedoc/assets/navigation.js +1 -1
- package/typedoc/assets/search.js +1 -1
- package/typedoc/classes/animations_animate-cache.AnimateCacheProvider.html +4 -40
- package/typedoc/classes/animations_animate-css-driver.AnimateCssDriverProvider.html +4 -58
- package/typedoc/classes/animations_animate-css.AnimateCssProvider.html +4 -40
- package/typedoc/classes/animations_animate-js-driver.AnimateJsDriverProvider.html +4 -58
- package/typedoc/classes/animations_animate-js.AnimateJsProvider.html +4 -58
- package/typedoc/classes/animations_animate-queue.AnimateQueueProvider.html +4 -69
- package/typedoc/classes/animations_animate-runner.AnimateAsyncRunFactoryProvider.html +4 -40
- package/typedoc/classes/animations_animate-runner.AnimateRunner.html +4 -263
- package/typedoc/classes/animations_animate-runner.AnimateRunnerFactoryProvider.html +4 -40
- package/typedoc/classes/animations_animate.AnimateProvider.html +42 -108
- package/typedoc/classes/animations_animation.AnimationProvider.html +4 -51
- package/typedoc/classes/animations_raf-scheduler.RafSchedulerProvider.html +4 -115
- package/typedoc/classes/core_cache_cache-factory.TemplateCacheProvider.html +4 -29
- package/typedoc/classes/core_compile_attributes.Attributes.html +19 -227
- package/typedoc/classes/core_compile_compile.CompileProvider.html +52 -137
- package/typedoc/classes/core_controller_controller.ControllerProvider.html +4 -73
- package/typedoc/classes/core_di_internal-injector.InjectorService.html +7 -141
- package/typedoc/classes/core_di_internal-injector.ProviderInjector.html +7 -119
- package/typedoc/classes/core_di_ng-module.NgModule.html +4 -256
- package/typedoc/classes/core_exception-handler.ExceptionHandlerProvider.html +4 -69
- package/typedoc/classes/core_filter_filter.FilterProvider.html +4 -69
- package/typedoc/classes/core_interpolate_interpolate.InterpolateProvider.html +4 -84
- package/typedoc/classes/core_location_location.Location.html +5 -387
- package/typedoc/classes/core_location_location.LocationHashbangUrl.html +5 -340
- package/typedoc/classes/core_location_location.LocationHtml5Url.html +5 -340
- package/typedoc/classes/core_location_location.LocationProvider.html +4 -113
- package/typedoc/classes/core_parse_ast_ast.AST.html +4 -359
- package/typedoc/classes/core_parse_interpreter.ASTInterpreter.html +4 -315
- package/typedoc/classes/core_parse_lexer_lexer.Lexer.html +4 -238
- package/typedoc/classes/core_parse_parse.ParseProvider.html +4 -51
- package/typedoc/classes/core_parse_parser_parser.Parser.html +4 -73
- package/typedoc/classes/core_pubsub_pubsub.PubSub.html +4 -146
- package/typedoc/classes/core_pubsub_pubsub.PubSubProvider.html +576 -0
- package/typedoc/classes/core_sanitize_sanitize-uri.SanitizeUriProvider.html +4 -62
- package/typedoc/classes/core_sce_sce.SceDelegateProvider.html +4 -73
- package/typedoc/classes/core_sce_sce.SceProvider.html +10 -63
- package/typedoc/classes/core_scope_scope.RootScopeProvider.html +4 -51
- package/typedoc/classes/core_scope_scope.Scope.html +49 -1280
- package/typedoc/classes/core_task-tracker-factory.TaskTracker.html +4 -84
- package/typedoc/classes/core_task-tracker-factory.TaskTrackerFactoryProvider.html +23 -128
- package/typedoc/classes/directive_aria_aria.AriaProvider.html +4 -51
- package/typedoc/classes/directive_form_form.FormController.html +4 -429
- package/typedoc/classes/directive_model_model.NgModelController.html +4 -983
- package/typedoc/classes/loader.Angular.html +46 -179
- package/typedoc/classes/router_common_glob.Glob.html +4 -84
- package/typedoc/classes/router_common_queue.Queue.html +4 -161
- package/typedoc/classes/router_common_trace.Trace.html +4 -249
- package/typedoc/classes/router_globals.RouterGlobals.html +4 -117
- package/typedoc/classes/router_params_param-factory.ParamFactory.html +4 -73
- package/typedoc/classes/router_params_param-type.ParamType.html +4 -150
- package/typedoc/classes/router_params_param-types.ParamTypes.html +4 -95
- package/typedoc/classes/router_params_param.Param.html +4 -260
- package/typedoc/classes/router_params_state-params.StateParams.html +4 -40
- package/typedoc/classes/router_path_path-node.PathNode.html +4 -174
- package/typedoc/classes/router_path_path-utils.PathUtils.html +4 -128
- package/typedoc/classes/router_resolve_resolvable.Resolvable.html +4 -256
- package/typedoc/classes/router_resolve_resolve-context.ResolveContext.html +4 -150
- package/typedoc/classes/router_state-provider.StateProvider.html +4 -84
- package/typedoc/classes/router_state_state-builder.StateBuilder.html +4 -106
- package/typedoc/classes/router_state_state-matcher.StateMatcher.html +4 -73
- package/typedoc/classes/router_state_state-object.StateObject.html +4 -230
- package/typedoc/classes/router_state_state-queue-manager.StateQueueManager.html +4 -128
- package/typedoc/classes/router_state_state-registry.StateRegistryProvider.html +5 -246
- package/typedoc/classes/router_state_state-service.StateProvider.html +4 -322
- package/typedoc/classes/router_state_target-state.TargetState.html +4 -252
- package/typedoc/classes/router_state_views.ViewConfig.html +4 -161
- package/typedoc/classes/router_template-factory.TemplateFactoryProvider.html +4 -179
- package/typedoc/classes/router_transition_hook-builder.HookBuilder.html +4 -73
- package/typedoc/classes/router_transition_hook-registry.RegisteredHook.html +4 -201
- package/typedoc/classes/router_transition_reject-factory.Rejection.html +4 -183
- package/typedoc/classes/router_transition_transition-event-type.TransitionEventType.html +4 -117
- package/typedoc/classes/router_transition_transition-hook.TransitionHook.html +4 -280
- package/typedoc/classes/router_transition_transition-service.TransitionProvider.html +5 -238
- package/typedoc/classes/router_transition_transition.Transition.html +4 -648
- package/typedoc/classes/router_url_url-config.UrlConfigProvider.html +4 -149
- package/typedoc/classes/router_url_url-matcher.UrlMatcher.html +4 -274
- package/typedoc/classes/router_url_url-rule.BaseUrlRule.html +4 -95
- package/typedoc/classes/router_url_url-rule.UrlRuleFactory.html +4 -124
- package/typedoc/classes/router_url_url-rules.UrlRules.html +4 -222
- package/typedoc/classes/router_url_url-service.UrlService.html +4 -373
- package/typedoc/classes/router_view-scroll.ViewScrollProvider.html +4 -69
- package/typedoc/classes/router_view_view.ViewService.html +4 -223
- package/typedoc/classes/services_anchor-scroll.AnchorScrollProvider.html +4 -164
- package/typedoc/classes/services_browser.Browser.html +4 -276
- package/typedoc/classes/services_browser.BrowserProvider.html +4 -29
- package/typedoc/classes/services_http-backend_http-backend.HttpBackendProvider.html +4 -40
- package/typedoc/classes/services_http_http.HttpParamSerializerProvider.html +4 -40
- package/typedoc/classes/services_http_http.HttpProvider.html +4 -84
- package/typedoc/classes/services_log.LogProvider.html +4 -91
- package/typedoc/classes/services_template-request.TemplateRequestProvider.html +4 -51
- package/typedoc/classes/shared_noderef.NodeRef.html +4 -301
- package/typedoc/enums/core_parse_ast-type.ASTType.html +4 -212
- package/typedoc/enums/router_common_trace.Category.html +4 -80
- package/typedoc/enums/router_transition_interface.TransitionHookPhase.html +4 -73
- package/typedoc/enums/router_transition_interface.TransitionHookScope.html +4 -40
- package/typedoc/enums/router_transition_reject-factory.RejectType.html +4 -80
- package/typedoc/functions/animations_animate-cache.animateCache.html +4 -84
- package/typedoc/functions/animations_animate-children-directive.__AnimateChildrenDirective.html +4 -29
- package/typedoc/functions/animations_animate-swap.ngAnimateSwapDirective.html +4 -29
- package/typedoc/functions/animations_shared.applyAnimationClassesFactory.html +4 -18
- package/typedoc/functions/animations_shared.applyAnimationFromStyles.html +4 -18
- package/typedoc/functions/animations_shared.applyAnimationStyles.html +4 -18
- package/typedoc/functions/animations_shared.applyAnimationToStyles.html +4 -18
- package/typedoc/functions/animations_shared.applyGeneratedPreparationClasses.html +4 -18
- package/typedoc/functions/animations_shared.applyInlineStyle.html +4 -18
- package/typedoc/functions/animations_shared.assertArg.html +4 -18
- package/typedoc/functions/animations_shared.blockKeyframeAnimations.html +4 -18
- package/typedoc/functions/animations_shared.clearGeneratedClasses.html +4 -18
- package/typedoc/functions/animations_shared.concatWithSpace.html +4 -18
- package/typedoc/functions/animations_shared.extractElementNode.html +4 -18
- package/typedoc/functions/animations_shared.mergeAnimationDetails.html +4 -18
- package/typedoc/functions/animations_shared.mergeClasses.html +4 -18
- package/typedoc/functions/animations_shared.packageStyles.html +4 -18
- package/typedoc/functions/animations_shared.pendClasses.html +4 -18
- package/typedoc/functions/animations_shared.prepareAnimationOptions.html +4 -18
- package/typedoc/functions/animations_shared.removeFromArray.html +4 -18
- package/typedoc/functions/animations_shared.resolveElementClasses.html +4 -18
- package/typedoc/functions/animations_shared.stripCommentsFromElement.html +4 -18
- package/typedoc/functions/core_controller_controller.identifierForController.html +4 -18
- package/typedoc/functions/core_di_injector.annotate.html +4 -18
- package/typedoc/functions/core_di_injector.createInjector.html +4 -18
- package/typedoc/functions/core_location_location.serverBase.html +4 -18
- package/typedoc/functions/core_location_location.stripBaseUrl.html +4 -18
- package/typedoc/functions/core_location_location.stripFile.html +4 -18
- package/typedoc/functions/core_location_location.stripHash.html +4 -18
- package/typedoc/functions/core_parse_interpreter.isAssignable.html +4 -18
- package/typedoc/functions/core_parse_parse.constantWatchDelegate.html +4 -18
- package/typedoc/functions/core_sce_sce.adjustMatcher.html +4 -18
- package/typedoc/functions/core_sce_sce.escapeForRegexp.html +4 -18
- package/typedoc/functions/core_scope_scope.createScope.html +4 -18
- package/typedoc/functions/core_scope_scope.nextId.html +4 -18
- package/typedoc/functions/core_url-utils_url-utils.getBaseUrl.html +4 -18
- package/typedoc/functions/core_url-utils_url-utils.urlIsAllowedOriginFactory.html +4 -18
- package/typedoc/functions/core_url-utils_url-utils.urlIsSameOrigin.html +4 -18
- package/typedoc/functions/core_url-utils_url-utils.urlIsSameOriginAsBaseUrl.html +4 -18
- package/typedoc/functions/core_url-utils_url-utils.urlResolve.html +4 -18
- package/typedoc/functions/core_url-utils_url-utils.urlsAreSameOrigin.html +4 -18
- package/typedoc/functions/directive_aria_aria.ngCheckedAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngClickAriaDirective.html +6 -31
- package/typedoc/functions/directive_aria_aria.ngDblclickAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngDisabledAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngHideAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngMessagesAriaDirective.html +4 -18
- package/typedoc/functions/directive_aria_aria.ngModelAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngReadonlyAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngRequiredAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngShowAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngValueAriaDirective.html +4 -29
- package/typedoc/functions/directive_bind_bind.ngBindDirective.html +4 -18
- package/typedoc/functions/directive_bind_bind.ngBindHtmlDirective.html +4 -29
- package/typedoc/functions/directive_bind_bind.ngBindTemplateDirective.html +4 -18
- package/typedoc/functions/directive_channel_channel.ngChannelDirective.html +4 -18
- package/typedoc/functions/directive_cloak_cloak.ngCloakDirective.html +4 -18
- package/typedoc/functions/directive_controller_controller.ngControllerDirective.html +4 -18
- package/typedoc/functions/directive_events_events.createEventDirective.html +4 -18
- package/typedoc/functions/directive_form_form.setupValidity.html +4 -18
- package/typedoc/functions/directive_if_if.ngIfDirective.html +4 -29
- package/typedoc/functions/directive_include_include.ngIncludeDirective.html +33 -178
- package/typedoc/functions/directive_include_include.ngIncludeFillContentDirective.html +4 -29
- package/typedoc/functions/directive_init_init.ngInitDirective.html +4 -18
- package/typedoc/functions/directive_input_input.badInputChecker.html +4 -18
- package/typedoc/functions/directive_input_input.countDecimals.html +4 -18
- package/typedoc/functions/directive_input_input.createDateInputType.html +4 -18
- package/typedoc/functions/directive_input_input.createDateParser.html +4 -18
- package/typedoc/functions/directive_input_input.hiddenInputBrowserCacheDirective.html +4 -18
- package/typedoc/functions/directive_input_input.inputDirective.html +4 -29
- package/typedoc/functions/directive_input_input.isNumberInteger.html +4 -18
- package/typedoc/functions/directive_input_input.isValidForStep.html +4 -18
- package/typedoc/functions/directive_input_input.ngValueDirective.html +4 -18
- package/typedoc/functions/directive_input_input.numberFormatterParser.html +4 -18
- package/typedoc/functions/directive_input_input.numberInputType.html +4 -18
- package/typedoc/functions/directive_input_input.rangeInputType.html +4 -18
- package/typedoc/functions/directive_input_input.weekParser.html +4 -18
- package/typedoc/functions/directive_messages_messages.ngMessagesDirective.html +4 -29
- package/typedoc/functions/directive_messages_messages.ngMessagesIncludeDirective.html +4 -29
- package/typedoc/functions/directive_model-options_model-options.ngModelOptionsDirective.html +4 -18
- package/typedoc/functions/directive_model_model.ngModelDirective.html +4 -18
- package/typedoc/functions/directive_non-bindable_non-bindable.ngNonBindableDirective.html +4 -18
- package/typedoc/functions/directive_observe_observe.ngObserveDirective.html +4 -18
- package/typedoc/functions/directive_ref_ref.ngRefDirective.html +4 -29
- package/typedoc/functions/directive_repeat_repeat.ngRepeatDirective.html +4 -29
- package/typedoc/functions/directive_script_script.scriptDirective.html +4 -29
- package/typedoc/functions/directive_select_select.optionDirective.html +4 -29
- package/typedoc/functions/directive_select_select.selectDirective.html +4 -18
- package/typedoc/functions/directive_setter_setter.ngSetterDirective.html +4 -29
- package/typedoc/functions/directive_show-hide_show-hide.ngHideDirective.html +4 -29
- package/typedoc/functions/directive_show-hide_show-hide.ngShowDirective.html +4 -29
- package/typedoc/functions/directive_style_style.ngStyleDirective.html +4 -18
- package/typedoc/functions/directive_switch_switch.ngSwitchDefaultDirective.html +4 -18
- package/typedoc/functions/directive_switch_switch.ngSwitchDirective.html +4 -29
- package/typedoc/functions/directive_switch_switch.ngSwitchWhenDirective.html +4 -18
- package/typedoc/functions/filters_filter.filterFilter.html +4 -18
- package/typedoc/functions/filters_filters.formatNumber.html +4 -18
- package/typedoc/functions/filters_filters.jsonFilter.html +4 -18
- package/typedoc/functions/filters_limit-to.limitToFilter.html +4 -18
- package/typedoc/functions/filters_order-by.orderByFilter.html +4 -29
- package/typedoc/functions/public.publishExternalAPI.html +6 -24
- package/typedoc/functions/router_common_glob.hasGlobs.html +4 -18
- package/typedoc/functions/router_directives_state-directives._StateRefActiveDirective.html +4 -29
- package/typedoc/functions/router_directives_state-directives._StateRefDirective.html +4 -29
- package/typedoc/functions/router_directives_state-directives._StateRefDynamicDirective.html +4 -29
- package/typedoc/functions/router_directives_view-directive._ViewDirectiveFill.html +4 -39
- package/typedoc/functions/router_hooks_core-resolvables.registerAddCoreResolvables.html +4 -18
- package/typedoc/functions/router_hooks_core-resolvables.treeChangesCleanup.html +4 -18
- package/typedoc/functions/router_hooks_ignored-transition.registerIgnoredTransitionHook.html +4 -18
- package/typedoc/functions/router_hooks_invalid-transition.registerInvalidTransitionHook.html +4 -18
- package/typedoc/functions/router_hooks_lazy-load.lazyLoadState.html +4 -18
- package/typedoc/functions/router_hooks_lazy-load.registerLazyLoadHook.html +4 -18
- package/typedoc/functions/router_hooks_on-enter-exit-retain.registerOnEnterHook.html +4 -18
- package/typedoc/functions/router_hooks_on-enter-exit-retain.registerOnExitHook.html +4 -18
- package/typedoc/functions/router_hooks_on-enter-exit-retain.registerOnRetainHook.html +4 -18
- package/typedoc/functions/router_hooks_redirect-to.registerRedirectToHook.html +4 -18
- package/typedoc/functions/router_hooks_resolve.registerEagerResolvePath.html +4 -18
- package/typedoc/functions/router_hooks_resolve.registerLazyResolveState.html +4 -18
- package/typedoc/functions/router_hooks_resolve.registerResolveRemaining.html +4 -18
- package/typedoc/functions/router_hooks_update-globals.registerUpdateGlobalState.html +4 -18
- package/typedoc/functions/router_hooks_url.registerUpdateUrl.html +4 -18
- package/typedoc/functions/router_hooks_views.registerActivateViews.html +4 -18
- package/typedoc/functions/router_hooks_views.registerLoadEnteringViews.html +4 -18
- package/typedoc/functions/router_path_path-utils.makeTargetState.html +4 -18
- package/typedoc/functions/router_state-filters._IncludedByStateFilter.html +4 -29
- package/typedoc/functions/router_state-filters._IsStateFilter.html +4 -29
- package/typedoc/functions/router_state_state-builder.resolvablesBuilder.html +4 -18
- package/typedoc/functions/router_state_state-registry.getLocals.html +4 -18
- package/typedoc/functions/router_state_views.getViewConfigFactory.html +4 -18
- package/typedoc/functions/router_state_views.ng1ViewsBuilder.html +4 -18
- package/typedoc/functions/router_transition_hook-registry.makeEvent.html +4 -18
- package/typedoc/functions/router_transition_hook-registry.matchState.html +4 -18
- package/typedoc/functions/services_browser.trimEmptyHash.html +4 -18
- package/typedoc/functions/services_cookie-reader.getCookies.html +4 -18
- package/typedoc/functions/services_http-backend_http-backend.createHttpBackend.html +4 -18
- package/typedoc/functions/services_http_http.defaultHttpResponseTransform.html +4 -18
- package/typedoc/functions/shared_common._removeFrom.html +4 -18
- package/typedoc/functions/shared_common.allTrueR.html +4 -18
- package/typedoc/functions/shared_common.ancestors.html +4 -18
- package/typedoc/functions/shared_common.anyTrueR.html +4 -18
- package/typedoc/functions/shared_common.applyPairs.html +4 -18
- package/typedoc/functions/shared_common.arrayTuples.html +4 -18
- package/typedoc/functions/shared_common.assertFn.html +4 -18
- package/typedoc/functions/shared_common.copy.html +4 -18
- package/typedoc/functions/shared_common.createProxyFunctions.html +4 -18
- package/typedoc/functions/shared_common.defaults.html +4 -18
- package/typedoc/functions/shared_common.deregAll.html +4 -18
- package/typedoc/functions/shared_common.equals.html +4 -18
- package/typedoc/functions/shared_common.filter.html +4 -18
- package/typedoc/functions/shared_common.find.html +4 -18
- package/typedoc/functions/shared_common.flatten.html +4 -18
- package/typedoc/functions/shared_common.flattenR.html +4 -18
- package/typedoc/functions/shared_common.inherit.html +4 -18
- package/typedoc/functions/shared_common.map.html +4 -18
- package/typedoc/functions/shared_common.omit.html +4 -18
- package/typedoc/functions/shared_common.pairs.html +4 -18
- package/typedoc/functions/shared_common.pick.html +4 -18
- package/typedoc/functions/shared_common.pushR.html +4 -18
- package/typedoc/functions/shared_common.silenceUncaughtInPromise.html +4 -18
- package/typedoc/functions/shared_common.silentRejection.html +4 -18
- package/typedoc/functions/shared_common.tail.html +4 -18
- package/typedoc/functions/shared_common.uniqR.html +4 -18
- package/typedoc/functions/shared_common.unnest.html +4 -18
- package/typedoc/functions/shared_common.unnestR.html +4 -18
- package/typedoc/functions/shared_dom.appendNodesToElement.html +4 -18
- package/typedoc/functions/shared_dom.buildFragment.html +4 -18
- package/typedoc/functions/shared_dom.cleanElementData.html +4 -18
- package/typedoc/functions/shared_dom.createElementFromHTML.html +4 -18
- package/typedoc/functions/shared_dom.createNodelistFromHTML.html +4 -18
- package/typedoc/functions/shared_dom.dealoc.html +4 -18
- package/typedoc/functions/shared_dom.deleteCacheData.html +4 -18
- package/typedoc/functions/shared_dom.domInsert.html +4 -18
- package/typedoc/functions/shared_dom.emptyElement.html +4 -18
- package/typedoc/functions/shared_dom.getBlockNodes.html +4 -18
- package/typedoc/functions/shared_dom.getBooleanAttrName.html +4 -18
- package/typedoc/functions/shared_dom.getCacheData.html +4 -18
- package/typedoc/functions/shared_dom.getController.html +4 -18
- package/typedoc/functions/shared_dom.getExpando.html +4 -18
- package/typedoc/functions/shared_dom.getInheritedData.html +4 -18
- package/typedoc/functions/shared_dom.getInjector.html +4 -18
- package/typedoc/functions/shared_dom.getIsolateScope.html +4 -18
- package/typedoc/functions/shared_dom.getOrSetCacheData.html +4 -18
- package/typedoc/functions/shared_dom.getScope.html +4 -18
- package/typedoc/functions/shared_dom.isRoot.html +4 -18
- package/typedoc/functions/shared_dom.isTextNode.html +4 -18
- package/typedoc/functions/shared_dom.kebabToCamel.html +4 -18
- package/typedoc/functions/shared_dom.parseHtml.html +4 -18
- package/typedoc/functions/shared_dom.removeElement.html +4 -18
- package/typedoc/functions/shared_dom.removeElementData.html +4 -18
- package/typedoc/functions/shared_dom.setCacheData.html +4 -18
- package/typedoc/functions/shared_dom.setInheritedData.html +4 -18
- package/typedoc/functions/shared_dom.setIsolateScope.html +4 -18
- package/typedoc/functions/shared_dom.setScope.html +4 -18
- package/typedoc/functions/shared_dom.snakeToCamel.html +4 -18
- package/typedoc/functions/shared_dom.startingTag.html +4 -18
- package/typedoc/functions/shared_hof.all.html +4 -18
- package/typedoc/functions/shared_hof.compose.html +4 -18
- package/typedoc/functions/shared_hof.curry.html +4 -18
- package/typedoc/functions/shared_hof.is.html +4 -18
- package/typedoc/functions/shared_hof.or.html +4 -18
- package/typedoc/functions/shared_hof.parse.html +4 -18
- package/typedoc/functions/shared_hof.pattern.html +4 -18
- package/typedoc/functions/shared_hof.pipe.html +4 -18
- package/typedoc/functions/shared_hof.val.html +4 -18
- package/typedoc/functions/shared_predicates.isInjectable.html +4 -18
- package/typedoc/functions/shared_predicates.isPromise.html +4 -18
- package/typedoc/functions/shared_strings.beforeAfterSubstr.html +4 -18
- package/typedoc/functions/shared_strings.fnToString.html +4 -18
- package/typedoc/functions/shared_strings.functionToString.html +4 -18
- package/typedoc/functions/shared_strings.joinNeighborsR.html +4 -18
- package/typedoc/functions/shared_strings.kebobString.html +4 -18
- package/typedoc/functions/shared_strings.maxLength.html +4 -18
- package/typedoc/functions/shared_strings.padString.html +4 -18
- package/typedoc/functions/shared_strings.splitOnDelim.html +4 -18
- package/typedoc/functions/shared_strings.stringify.html +4 -18
- package/typedoc/functions/shared_strings.stripLastPathElement.html +4 -18
- package/typedoc/functions/shared_strings.trimHashVal.html +4 -18
- package/typedoc/functions/shared_test-utils.bootstrap.html +4 -18
- package/typedoc/functions/shared_test-utils.browserTrigger.html +4 -18
- package/typedoc/functions/shared_test-utils.wait.html +4 -18
- package/typedoc/functions/shared_utils.addDateMinutes.html +4 -18
- package/typedoc/functions/shared_utils.arrayRemove.html +4 -18
- package/typedoc/functions/shared_utils.assert.html +4 -18
- package/typedoc/functions/shared_utils.assertArg.html +4 -18
- package/typedoc/functions/shared_utils.assertArgFn.html +4 -18
- package/typedoc/functions/shared_utils.assertNotHasOwnProperty.html +4 -18
- package/typedoc/functions/shared_utils.baseExtend.html +4 -18
- package/typedoc/functions/shared_utils.bind.html +4 -18
- package/typedoc/functions/shared_utils.concat.html +4 -18
- package/typedoc/functions/shared_utils.convertTimezoneToLocal.html +4 -18
- package/typedoc/functions/shared_utils.csp.html +4 -18
- package/typedoc/functions/shared_utils.directiveNormalize.html +4 -18
- package/typedoc/functions/shared_utils.encodeUriQuery.html +4 -18
- package/typedoc/functions/shared_utils.encodeUriSegment.html +4 -18
- package/typedoc/functions/shared_utils.equals.html +4 -18
- package/typedoc/functions/shared_utils.errorHandlingConfig.html +4 -18
- package/typedoc/functions/shared_utils.extend.html +4 -18
- package/typedoc/functions/shared_utils.fromJson.html +4 -18
- package/typedoc/functions/shared_utils.getNgAttribute.html +4 -18
- package/typedoc/functions/shared_utils.getNodeName.html +4 -18
- package/typedoc/functions/shared_utils.hasAnimate.html +4 -18
- package/typedoc/functions/shared_utils.hasCustomToString.html +4 -18
- package/typedoc/functions/shared_utils.hasOwn.html +4 -18
- package/typedoc/functions/shared_utils.hashKey.html +4 -18
- package/typedoc/functions/shared_utils.includes.html +4 -18
- package/typedoc/functions/shared_utils.inherit.html +4 -18
- package/typedoc/functions/shared_utils.isArrayBuffer.html +4 -18
- package/typedoc/functions/shared_utils.isArrayLike.html +7 -18
- package/typedoc/functions/shared_utils.isBlankObject.html +8 -18
- package/typedoc/functions/shared_utils.isBlob.html +4 -18
- package/typedoc/functions/shared_utils.isBoolean.html +4 -18
- package/typedoc/functions/shared_utils.isDate.html +4 -18
- package/typedoc/functions/shared_utils.isDefined.html +4 -18
- package/typedoc/functions/shared_utils.isElement.html +4 -18
- package/typedoc/functions/shared_utils.isError.html +4 -18
- package/typedoc/functions/shared_utils.isFile.html +4 -18
- package/typedoc/functions/shared_utils.isFormData.html +4 -18
- package/typedoc/functions/shared_utils.isFunction.html +4 -18
- package/typedoc/functions/shared_utils.isNull.html +4 -18
- package/typedoc/functions/shared_utils.isNullOrUndefined.html +4 -18
- package/typedoc/functions/shared_utils.isNumber.html +4 -18
- package/typedoc/functions/shared_utils.isNumberNaN.html +4 -18
- package/typedoc/functions/shared_utils.isObject.html +4 -18
- package/typedoc/functions/shared_utils.isObjectEmpty.html +4 -18
- package/typedoc/functions/shared_utils.isPromiseLike.html +4 -18
- package/typedoc/functions/shared_utils.isProxy.html +4 -18
- package/typedoc/functions/shared_utils.isRegExp.html +4 -18
- package/typedoc/functions/shared_utils.isScope.html +4 -18
- package/typedoc/functions/shared_utils.isString.html +4 -18
- package/typedoc/functions/shared_utils.isTypedArray.html +4 -18
- package/typedoc/functions/shared_utils.isUndefined.html +4 -18
- package/typedoc/functions/shared_utils.isValidObjectMaxDepth.html +4 -18
- package/typedoc/functions/shared_utils.isWindow.html +4 -18
- package/typedoc/functions/shared_utils.lowercase.html +4 -18
- package/typedoc/functions/shared_utils.mergeClasses.html +4 -18
- package/typedoc/functions/shared_utils.minErr.html +4 -18
- package/typedoc/functions/shared_utils.nextUid.html +4 -18
- package/typedoc/functions/shared_utils.parseKeyValue.html +4 -18
- package/typedoc/functions/shared_utils.setHashKey.html +4 -18
- package/typedoc/functions/shared_utils.shallowCopy.html +4 -18
- package/typedoc/functions/shared_utils.simpleCompare.html +4 -18
- package/typedoc/functions/shared_utils.sliceArgs.html +4 -18
- package/typedoc/functions/shared_utils.snakeCase.html +4 -18
- package/typedoc/functions/shared_utils.stringify.html +4 -18
- package/typedoc/functions/shared_utils.timezoneToOffset.html +4 -18
- package/typedoc/functions/shared_utils.toDebugString.html +4 -18
- package/typedoc/functions/shared_utils.toInt.html +4 -18
- package/typedoc/functions/shared_utils.toJson.html +4 -18
- package/typedoc/functions/shared_utils.toKeyValue.html +4 -18
- package/typedoc/functions/shared_utils.trim.html +4 -18
- package/typedoc/functions/shared_utils.tryDecodeURIComponent.html +9 -19
- package/typedoc/functions/shared_utils.uppercase.html +4 -18
- package/typedoc/hierarchy.html +8 -11
- package/typedoc/index.html +5 -8
- package/typedoc/interfaces/animations_animate.AnimationOptions.html +4 -62
- package/typedoc/interfaces/animations_raf-scheduler.ServiceProvider.html +5 -30
- package/typedoc/interfaces/core_cache_cache.ExpandoStore.html +4 -51
- package/typedoc/interfaces/core_compile_compile.LinkFnMapping.html +4 -51
- package/typedoc/interfaces/core_compile_compile.NodeLinkFnCtx.html +4 -84
- package/typedoc/interfaces/core_compile_compile.SimpleChange.html +4 -40
- package/typedoc/interfaces/core_location_location.DefaultPorts.html +4 -51
- package/typedoc/interfaces/core_location_location.Html5Mode.html +4 -51
- package/typedoc/interfaces/core_parse_ast_ast.Token.html +4 -84
- package/typedoc/interfaces/core_parse_interface.CompiledExpressionHandlerMap.html +4 -73
- package/typedoc/interfaces/core_parse_interface.CompiledExpressionProps.html +5 -107
- package/typedoc/interfaces/core_parse_lexer_lexer.LexerOptions.html +4 -40
- package/typedoc/interfaces/core_parse_parser_parser.ParsedAST.html +4 -29
- package/typedoc/interfaces/core_sanitize_interface.SanitizerFn.html +4 -18
- package/typedoc/interfaces/core_scope_scope.AsyncQueueTask.html +4 -51
- package/typedoc/interfaces/core_scope_scope.Listener.html +4 -106
- package/typedoc/interfaces/directive_model-options_model-options.ModelOptionsConfig.html +4 -73
- package/typedoc/interfaces/interface.ChangesObject.html +4 -40
- package/typedoc/interfaces/interface.ComponentOptions.html +4 -95
- package/typedoc/interfaces/interface.Controller.html +5 -74
- package/typedoc/interfaces/interface.Directive.html +6 -207
- package/typedoc/interfaces/interface.DirectivePrePost.html +4 -40
- package/typedoc/interfaces/interface.NgModelController.html +4 -172
- package/typedoc/interfaces/interface.NgModelOptions.html +4 -95
- package/typedoc/interfaces/interface.Provider.html +4 -84
- package/typedoc/interfaces/interface.TranscludeFunctionObject.html +4 -51
- package/typedoc/interfaces/loader.AngularBootstrapConfig.html +4 -29
- package/typedoc/interfaces/router_params_interface.ParamDeclaration.html +4 -117
- package/typedoc/interfaces/router_params_interface.ParamTypeDefinition.html +4 -106
- package/typedoc/interfaces/router_params_interface.RawParams.html +4 -18
- package/typedoc/interfaces/router_params_interface.Replace.html +4 -40
- package/typedoc/interfaces/router_resolve_interface.CustomAsyncPolicy.html +4 -18
- package/typedoc/interfaces/router_resolve_interface.ProviderLike.html +4 -84
- package/typedoc/interfaces/router_resolve_interface.ResolvableLiteral.html +4 -73
- package/typedoc/interfaces/router_resolve_interface.ResolvePolicy.html +4 -40
- package/typedoc/interfaces/router_state_interface.HrefOptions.html +4 -62
- package/typedoc/interfaces/router_state_interface.LazyLoadResult.html +4 -29
- package/typedoc/interfaces/router_state_interface.StateDeclaration.html +11 -212
- package/typedoc/interfaces/router_state_interface.TargetStateDef.html +4 -51
- package/typedoc/interfaces/router_state_interface.TransitionPromise.html +5 -54
- package/typedoc/interfaces/router_state_interface.ViewDeclaration.html +4 -183
- package/typedoc/interfaces/router_template-factory.BindingTuple.html +4 -40
- package/typedoc/interfaces/router_transition_interface.HookMatchCriteria.html +4 -73
- package/typedoc/interfaces/router_transition_interface.HookRegOptions.html +4 -51
- package/typedoc/interfaces/router_transition_interface.IHookRegistry.html +4 -128
- package/typedoc/interfaces/router_transition_interface.IMatchingNodes.html +4 -73
- package/typedoc/interfaces/router_transition_interface.PathType.html +4 -40
- package/typedoc/interfaces/router_transition_interface.PathTypes.html +4 -73
- package/typedoc/interfaces/router_transition_interface.RegisteredHooks.html +4 -18
- package/typedoc/interfaces/router_transition_interface.TransitionCreateHookFn.html +4 -18
- package/typedoc/interfaces/router_transition_interface.TransitionHookFn.html +4 -18
- package/typedoc/interfaces/router_transition_interface.TransitionHookOptions.html +4 -95
- package/typedoc/interfaces/router_transition_interface.TransitionOptions.html +4 -139
- package/typedoc/interfaces/router_transition_interface.TransitionStateHookFn.html +4 -18
- package/typedoc/interfaces/router_transition_interface.TreeChanges.html +4 -84
- package/typedoc/interfaces/router_view_interface.ActiveUIView.html +4 -84
- package/typedoc/interfaces/router_view_interface.ViewConfig.html +4 -73
- package/typedoc/interfaces/router_view_interface.ViewContext.html +4 -40
- package/typedoc/interfaces/services_anchor-scroll.AnchorScrollObject.html +4 -29
- package/typedoc/interfaces/services_log.LogService.html +4 -80
- package/typedoc/interfaces/shared_interface.TypedMap.html +4 -18
- package/typedoc/interfaces/shared_utils.ErrorHandlingConfig.html +4 -40
- package/typedoc/modules/animations_animate-cache.html +4 -7
- package/typedoc/modules/animations_animate-children-directive.html +4 -9
- package/typedoc/modules/animations_animate-css-driver.html +4 -7
- package/typedoc/modules/animations_animate-css.html +4 -7
- package/typedoc/modules/animations_animate-js-driver.html +4 -7
- package/typedoc/modules/animations_animate-js.html +4 -7
- package/typedoc/modules/animations_animate-queue.html +4 -7
- package/typedoc/modules/animations_animate-runner.html +4 -7
- package/typedoc/modules/animations_animate-swap.html +4 -7
- package/typedoc/modules/animations_animate.html +4 -7
- package/typedoc/modules/animations_animation.html +4 -7
- package/typedoc/modules/animations_interface.html +4 -7
- package/typedoc/modules/animations_raf-scheduler.html +4 -7
- package/typedoc/modules/animations_shared.html +4 -7
- package/typedoc/modules/core_cache_cache-factory.html +4 -7
- package/typedoc/modules/core_cache_cache.html +4 -7
- package/typedoc/modules/core_compile_attributes.html +4 -7
- package/typedoc/modules/core_compile_compile.html +4 -7
- package/typedoc/modules/core_controller_controller.html +4 -7
- package/typedoc/modules/core_di_injector.html +4 -65
- package/typedoc/modules/core_di_internal-injector.html +4 -7
- package/typedoc/modules/core_di_ng-module.html +4 -34
- package/typedoc/modules/core_error-handler.html +4 -7
- package/typedoc/modules/core_exception-handler.html +4 -7
- package/typedoc/modules/core_filter_filter.html +4 -7
- package/typedoc/modules/core_interpolate_interpolate.html +4 -7
- package/typedoc/modules/core_location_location.html +4 -7
- package/typedoc/modules/core_parse_ast-type.html +4 -7
- package/typedoc/modules/core_parse_ast_ast-node.html +4 -7
- package/typedoc/modules/core_parse_ast_ast.html +4 -7
- package/typedoc/modules/core_parse_interface.html +4 -7
- package/typedoc/modules/core_parse_interpreter.html +4 -7
- package/typedoc/modules/core_parse_lexer_lexer.html +4 -7
- package/typedoc/modules/core_parse_lexer_token.html +4 -7
- package/typedoc/modules/core_parse_parse.html +4 -7
- package/typedoc/modules/core_parse_parser_parser.html +4 -7
- package/typedoc/modules/core_pubsub_pubsub.html +95 -7
- package/typedoc/modules/core_sanitize_interface.html +4 -7
- package/typedoc/modules/core_sanitize_sanitize-uri.html +4 -7
- package/typedoc/modules/core_sce_sce.html +4 -7
- package/typedoc/modules/core_scope_scope.html +4 -7
- package/typedoc/modules/core_task-tracker-factory.html +134 -7
- package/typedoc/modules/core_url-utils_url-utils.html +4 -7
- package/typedoc/modules/directive_aria_aria.html +4 -7
- package/typedoc/modules/directive_attrs_attrs.html +4 -7
- package/typedoc/modules/directive_bind_bind.html +4 -7
- package/typedoc/modules/directive_channel_channel.html +4 -7
- package/typedoc/modules/directive_class_class.html +4 -7
- package/typedoc/modules/directive_cloak_cloak.html +4 -7
- package/typedoc/modules/directive_controller_controller.html +4 -7
- package/typedoc/modules/directive_events_events.html +4 -7
- package/typedoc/modules/directive_form_form.html +4 -7
- package/typedoc/modules/directive_if_if.html +4 -7
- package/typedoc/modules/directive_include_include.html +4 -7
- package/typedoc/modules/directive_init_init.html +4 -7
- package/typedoc/modules/directive_input_input.html +4 -7
- package/typedoc/modules/directive_messages_messages.html +4 -7
- package/typedoc/modules/directive_model-options_model-options.html +4 -9
- package/typedoc/modules/directive_model_model.html +4 -7
- package/typedoc/modules/directive_non-bindable_non-bindable.html +4 -9
- package/typedoc/modules/directive_observe_observe.html +4 -7
- package/typedoc/modules/directive_options_options.html +4 -7
- package/typedoc/modules/directive_ref_ref.html +4 -7
- package/typedoc/modules/directive_repeat_repeat.html +4 -7
- package/typedoc/modules/directive_script_script.html +4 -7
- package/typedoc/modules/directive_select_select.html +4 -7
- package/typedoc/modules/directive_setter_setter.html +4 -7
- package/typedoc/modules/directive_show-hide_show-hide.html +4 -7
- package/typedoc/modules/directive_style_style.html +4 -7
- package/typedoc/modules/directive_switch_switch.html +4 -7
- package/typedoc/modules/directive_transclude_transclude.html +4 -7
- package/typedoc/modules/directive_validators_validators.html +4 -7
- package/typedoc/modules/filters_filter.html +4 -7
- package/typedoc/modules/filters_filters.html +4 -7
- package/typedoc/modules/filters_limit-to.html +4 -7
- package/typedoc/modules/filters_order-by.html +4 -7
- package/typedoc/modules/index.html +4 -84
- package/typedoc/{variables/index.angular.html → modules/injection-tokens.html} +84 -30
- package/typedoc/modules/interface.html +35 -36
- package/typedoc/modules/loader.html +4 -7
- package/typedoc/modules/public.html +4 -7
- package/typedoc/modules/router_common_glob.html +4 -7
- package/typedoc/modules/router_common_queue.html +4 -7
- package/typedoc/modules/router_common_trace.html +4 -7
- package/typedoc/modules/router_directives_state-directives.html +4 -7
- package/typedoc/modules/router_directives_view-directive.html +4 -7
- package/typedoc/modules/router_globals.html +4 -7
- package/typedoc/modules/router_hooks_core-resolvables.html +4 -7
- package/typedoc/modules/router_hooks_ignored-transition.html +4 -7
- package/typedoc/modules/router_hooks_invalid-transition.html +4 -7
- package/typedoc/modules/router_hooks_lazy-load.html +4 -7
- package/typedoc/modules/router_hooks_on-enter-exit-retain.html +4 -7
- package/typedoc/modules/router_hooks_redirect-to.html +4 -7
- package/typedoc/modules/router_hooks_resolve.html +4 -7
- package/typedoc/modules/router_hooks_update-globals.html +4 -7
- package/typedoc/modules/router_hooks_url.html +4 -7
- package/typedoc/modules/router_hooks_views.html +4 -7
- package/typedoc/modules/router_params_interface.html +4 -7
- package/typedoc/modules/router_params_param-factory.html +4 -7
- package/typedoc/modules/router_params_param-type.html +4 -7
- package/typedoc/modules/router_params_param-types.html +4 -7
- package/typedoc/modules/router_params_param.html +4 -7
- package/typedoc/modules/router_params_state-params.html +4 -7
- package/typedoc/modules/router_path_path-node.html +4 -7
- package/typedoc/modules/router_path_path-utils.html +4 -7
- package/typedoc/modules/router_resolve_interface.html +4 -7
- package/typedoc/modules/router_resolve_resolvable.html +4 -7
- package/typedoc/modules/router_resolve_resolve-context.html +4 -7
- package/typedoc/modules/router_state-filters.html +4 -7
- package/typedoc/modules/router_state-provider.html +4 -7
- package/typedoc/modules/router_state_interface.html +4 -7
- package/typedoc/modules/router_state_state-builder.html +4 -7
- package/typedoc/modules/router_state_state-matcher.html +4 -7
- package/typedoc/modules/router_state_state-object.html +4 -7
- package/typedoc/modules/router_state_state-queue-manager.html +4 -7
- package/typedoc/modules/router_state_state-registry.html +4 -7
- package/typedoc/modules/router_state_state-service.html +4 -7
- package/typedoc/modules/router_state_target-state.html +4 -7
- package/typedoc/modules/router_state_views.html +4 -7
- package/typedoc/modules/router_template-factory.html +4 -7
- package/typedoc/modules/router_transition_hook-builder.html +4 -7
- package/typedoc/modules/router_transition_hook-registry.html +4 -7
- package/typedoc/modules/router_transition_interface.html +4 -7
- package/typedoc/modules/router_transition_reject-factory.html +4 -7
- package/typedoc/modules/router_transition_transition-event-type.html +4 -9
- package/typedoc/modules/router_transition_transition-hook.html +4 -7
- package/typedoc/modules/router_transition_transition-service.html +4 -9
- package/typedoc/modules/router_transition_transition.html +4 -7
- package/typedoc/modules/router_url_url-config.html +4 -7
- package/typedoc/modules/router_url_url-matcher.html +4 -7
- package/typedoc/modules/router_url_url-rule.html +4 -7
- package/typedoc/modules/router_url_url-rules.html +4 -7
- package/typedoc/modules/router_url_url-service.html +4 -7
- package/typedoc/modules/router_view-scroll.html +4 -7
- package/typedoc/modules/router_view_interface.html +4 -7
- package/typedoc/modules/router_view_view.html +4 -7
- package/typedoc/modules/services_anchor-scroll.html +4 -7
- package/typedoc/modules/services_browser.html +4 -7
- package/typedoc/modules/services_cookie-reader.html +4 -7
- package/typedoc/modules/services_http-backend_http-backend.html +4 -7
- package/typedoc/modules/services_http_http.html +4 -7
- package/typedoc/modules/services_log.html +4 -7
- package/typedoc/modules/services_template-request.html +4 -7
- package/typedoc/modules/shared_common.html +4 -7
- package/typedoc/modules/shared_constants.html +4 -7
- package/typedoc/modules/shared_dom.html +4 -7
- package/typedoc/modules/shared_hof.html +4 -7
- package/typedoc/modules/shared_interface.html +4 -7
- package/typedoc/modules/shared_noderef.html +4 -7
- package/typedoc/modules/shared_predicates.html +4 -7
- package/typedoc/modules/shared_strings.html +4 -7
- package/typedoc/modules/shared_test-utils.html +4 -7
- package/typedoc/modules/shared_utils.html +4 -34
- package/typedoc/modules.html +31 -8
- package/typedoc/types/animations_animate.AnimationMethod.html +4 -18
- package/typedoc/types/animations_interface.RafScheduler.html +4 -40
- package/typedoc/types/core_cache_cache-factory.TemplateCache.html +4 -18
- package/typedoc/types/core_compile_compile.ApplyDirectivesToNodeFn.html +4 -18
- package/typedoc/types/core_compile_compile.BoundTranscludeFn.html +4 -18
- package/typedoc/types/core_compile_compile.CompileFn.html +4 -18
- package/typedoc/types/core_compile_compile.CompileNodesFn.html +4 -18
- package/typedoc/types/core_compile_compile.CompositeLinkFn.html +4 -18
- package/typedoc/types/core_compile_compile.NodeLinkFn.html +4 -18
- package/typedoc/types/core_compile_compile.PublicLinkFn.html +4 -18
- package/typedoc/types/core_compile_compile.TranscludeFn.html +4 -18
- package/typedoc/types/core_error-handler.ErrorHandler.html +4 -18
- package/typedoc/types/core_exception-handler.LogService.html +4 -18
- package/typedoc/types/core_parse_ast_ast-node.ASTNode.html +4 -293
- package/typedoc/types/core_parse_interface.CompiledExpression.html +4 -18
- package/typedoc/types/core_parse_interface.CompiledExpressionFunction.html +7 -20
- package/typedoc/types/core_parse_interface.ParseService.html +7 -20
- package/typedoc/types/core_parse_interpreter.DecoratedASTNode.html +4 -18
- package/typedoc/types/core_scope_scope.ListenerFunction.html +4 -18
- package/typedoc/types/{interface.AnnotatedFactory.html → core_task-tracker-factory.AnnotatedFactory.html} +9 -19
- package/typedoc/types/core_url-utils_url-utils.HttpProtocol.html +4 -18
- package/typedoc/types/interface.CloneAttachFunction.html +4 -18
- package/typedoc/types/interface.ControllerConstructor.html +5 -19
- package/typedoc/types/interface.DirectiveCompileFn.html +4 -18
- package/typedoc/types/interface.DirectiveController.html +4 -18
- package/typedoc/types/interface.DirectiveFactory.html +4 -18
- package/typedoc/types/interface.DirectiveLinkFn.html +4 -18
- package/typedoc/types/interface.Expression.html +4 -18
- package/typedoc/types/interface.FilterFactory.html +4 -18
- package/typedoc/types/interface.FilterFn.html +4 -18
- package/typedoc/types/interface.Injectable.html +5 -19
- package/typedoc/types/interface.InjectableFactory.html +5 -19
- package/typedoc/types/interface.OnChangesObject.html +4 -18
- package/typedoc/types/interface.TController.html +4 -18
- package/typedoc/types/router_resolve_interface.PolicyAsync.html +4 -18
- package/typedoc/types/router_resolve_interface.PolicyWhen.html +4 -18
- package/typedoc/types/router_state_interface.RedirectToResult.html +4 -18
- package/typedoc/types/router_state_interface.ResolveTypes.html +4 -18
- package/typedoc/types/router_state_interface.StateOrName.html +4 -18
- package/typedoc/types/router_state_interface._StateDeclaration.html +4 -18
- package/typedoc/types/router_transition_interface.HookFn.html +4 -18
- package/typedoc/types/router_transition_interface.HookMatchCriterion.html +4 -18
- package/typedoc/types/router_transition_interface.HookResult.html +4 -18
- package/typedoc/types/router_transition_interface.IHookRegistration.html +4 -18
- package/typedoc/types/router_transition_interface.IStateMatch.html +4 -18
- package/typedoc/types/services_anchor-scroll.AnchorScrollFunction.html +4 -18
- package/typedoc/types/services_anchor-scroll.AnchorScrollService.html +4 -18
- package/typedoc/types/services_browser.UrlChangeListener.html +4 -18
- package/typedoc/types/services_log.LogCall.html +4 -18
- package/typedoc/types/shared_interface.Mapper.html +4 -18
- package/typedoc/types/shared_interface.Predicate.html +4 -18
- package/typedoc/types/shared_interface.PredicateBinary.html +4 -18
- package/typedoc/variables/animations_shared.ACTIVE_CLASS_SUFFIX.html +4 -18
- package/typedoc/variables/animations_shared.ADD_CLASS_SUFFIX.html +4 -18
- package/typedoc/variables/animations_shared.ANIMATIONEND_EVENT.html +4 -18
- package/typedoc/variables/animations_shared.ANIMATION_DELAY_PROP.html +4 -18
- package/typedoc/variables/animations_shared.ANIMATION_DURATION_PROP.html +4 -18
- package/typedoc/variables/animations_shared.ANIMATION_ITERATION_COUNT_KEY.html +4 -18
- package/typedoc/variables/animations_shared.ANIMATION_PLAYSTATE_KEY.html +4 -18
- package/typedoc/variables/animations_shared.ANIMATION_PROP.html +4 -18
- package/typedoc/variables/animations_shared.CSS_PREFIX.html +4 -18
- package/typedoc/variables/animations_shared.DELAY_KEY.html +4 -18
- package/typedoc/variables/animations_shared.DURATION_KEY.html +4 -18
- package/typedoc/variables/animations_shared.EVENT_CLASS_PREFIX.html +4 -18
- package/typedoc/variables/animations_shared.NG_ANIMATE_CHILDREN_DATA.html +4 -18
- package/typedoc/variables/animations_shared.NG_ANIMATE_CLASSNAME.html +4 -18
- package/typedoc/variables/animations_shared.PREPARE_CLASS_SUFFIX.html +4 -18
- package/typedoc/variables/animations_shared.PROPERTY_KEY.html +4 -18
- package/typedoc/variables/animations_shared.REMOVE_CLASS_SUFFIX.html +4 -18
- package/typedoc/variables/animations_shared.SAFE_FAST_FORWARD_DURATION_VALUE.html +4 -18
- package/typedoc/variables/animations_shared.TIMING_KEY.html +4 -18
- package/typedoc/variables/animations_shared.TRANSITIONEND_EVENT.html +4 -18
- package/typedoc/variables/animations_shared.TRANSITION_DELAY_PROP.html +4 -18
- package/typedoc/variables/animations_shared.TRANSITION_DURATION_PROP.html +4 -18
- package/typedoc/variables/animations_shared.TRANSITION_PROP.html +4 -18
- package/typedoc/variables/animations_shared.ngMinErr.html +4 -18
- package/typedoc/variables/core_cache_cache.Cache.html +4 -18
- package/typedoc/variables/core_cache_cache.EXPANDO.html +4 -18
- package/typedoc/variables/core_cache_cache.ISOLATE_SCOPE_KEY.html +4 -18
- package/typedoc/variables/core_cache_cache.SCOPE_KEY.html +4 -18
- package/typedoc/variables/core_compile_compile.DirectiveSuffix.html +4 -18
- package/typedoc/variables/core_di_ng-module.ANIMATION_LITERAL.html +4 -18
- package/typedoc/variables/core_di_ng-module.COMPILE_LITERAL.html +4 -18
- package/typedoc/variables/core_di_ng-module.CONTROLLER_LITERAL.html +4 -18
- package/typedoc/variables/core_di_ng-module.FILTER_LITERAL.html +4 -18
- package/typedoc/variables/core_di_ng-module.INJECTOR_LITERAL.html +4 -18
- package/typedoc/variables/core_parse_interpreter.PURITY_ABSOLUTE.html +4 -18
- package/typedoc/variables/core_parse_interpreter.PURITY_RELATIVE.html +4 -18
- package/typedoc/variables/core_pubsub_pubsub.EventBus.html +4 -18
- package/typedoc/variables/core_sce_sce.SCE_CONTEXTS.html +4 -18
- package/typedoc/variables/core_scope_scope.NONSCOPE.html +4 -18
- package/typedoc/variables/core_scope_scope.__applyAsyncQueue.html +4 -18
- package/typedoc/variables/core_scope_scope._postUpdateQueue.html +4 -18
- package/typedoc/variables/directive_attrs_attrs.REGEX_STRING_REGEXP.html +4 -18
- package/typedoc/variables/directive_attrs_attrs.ngAttributeAliasDirectives.html +4 -18
- package/typedoc/variables/directive_class_class.ngClassDirective.html +4 -18
- package/typedoc/variables/directive_class_class.ngClassEvenDirective.html +4 -18
- package/typedoc/variables/directive_class_class.ngClassOddDirective.html +4 -18
- package/typedoc/variables/directive_events_events.ngEventDirectives.html +4 -18
- package/typedoc/variables/directive_form_form.PENDING_CLASS.html +4 -18
- package/typedoc/variables/directive_form_form.formDirective.html +4 -18
- package/typedoc/variables/directive_form_form.ngFormDirective.html +4 -18
- package/typedoc/variables/directive_form_form.nullFormCtrl.html +4 -18
- package/typedoc/variables/directive_input_input.EMAIL_REGEXP.html +4 -18
- package/typedoc/variables/directive_input_input.ISO_DATE_REGEXP.html +4 -18
- package/typedoc/variables/directive_input_input.URL_REGEXP.html +4 -18
- package/typedoc/variables/directive_input_input.VALIDITY_STATE_PROPERTY.html +4 -18
- package/typedoc/variables/directive_messages_messages.ngMessageDefaultDirective.html +4 -18
- package/typedoc/variables/directive_messages_messages.ngMessageDirective.html +4 -18
- package/typedoc/variables/directive_messages_messages.ngMessageExpDirective.html +4 -18
- package/typedoc/variables/directive_model-options_model-options.defaultModelOptions.html +4 -18
- package/typedoc/variables/directive_model_model.ngModelMinErr.html +4 -18
- package/typedoc/variables/directive_options_options.ngOptionsDirective.html +20 -22
- package/typedoc/variables/directive_transclude_transclude.ngTranscludeDirective.html +4 -18
- package/typedoc/variables/directive_validators_validators.maxlengthDirective.html +4 -18
- package/typedoc/variables/directive_validators_validators.minlengthDirective.html +4 -18
- package/typedoc/variables/directive_validators_validators.patternDirective.html +4 -18
- package/typedoc/variables/directive_validators_validators.requiredDirective.html +4 -18
- package/typedoc/variables/{core_di_injector.path.html → injection-tokens._injectTokens.html} +28 -24
- package/typedoc/variables/public.VERSION.html +4 -18
- package/typedoc/variables/router_common_trace.trace.html +4 -18
- package/typedoc/variables/router_directives_view-directive.ngView.html +4 -23
- package/typedoc/variables/router_hooks_resolve.RESOLVE_HOOK_PRIORITY.html +4 -18
- package/typedoc/variables/router_params_param.DefType.html +4 -18
- package/typedoc/variables/router_resolve_resolvable.defaultResolvePolicy.html +4 -18
- package/typedoc/variables/router_resolve_resolve-context.resolvePolicies.html +4 -18
- package/typedoc/variables/router_transition_transition-service.defaultTransOpts.html +4 -18
- package/typedoc/variables/services_log.LogService.html +4 -25
- package/typedoc/variables/shared_common.assertMap.html +4 -18
- package/typedoc/variables/shared_common.assertPredicate.html +4 -18
- package/typedoc/variables/shared_common.pushTo.html +4 -18
- package/typedoc/variables/shared_common.removeFrom.html +4 -18
- package/typedoc/variables/shared_constants.ALIASED_ATTR.html +4 -18
- package/typedoc/variables/shared_constants.DIRTY_CLASS.html +4 -18
- package/typedoc/variables/shared_constants.EMPTY_CLASS.html +4 -18
- package/typedoc/variables/shared_constants.INVALID_CLASS.html +4 -18
- package/typedoc/variables/shared_constants.NOT_EMPTY_CLASS.html +4 -18
- package/typedoc/variables/shared_constants.PREFIX_REGEXP.html +4 -18
- package/typedoc/variables/shared_constants.PRISTINE_CLASS.html +4 -18
- package/typedoc/variables/shared_constants.SPECIAL_CHARS_REGEXP.html +4 -18
- package/typedoc/variables/shared_constants.TOUCHED_CLASS.html +4 -18
- package/typedoc/variables/shared_constants.UNTOUCHED_CLASS.html +4 -18
- package/typedoc/variables/shared_constants.VALID_CLASS.html +4 -18
- package/typedoc/variables/shared_dom.BOOLEAN_ATTR.html +4 -18
- package/typedoc/variables/shared_hof.propEq.html +4 -18
- package/typedoc/variables/shared_strings.hostRegex.html +4 -18
- package/typedoc/variables/shared_strings.splitEqual.html +4 -18
- package/typedoc/variables/shared_strings.splitHash.html +4 -18
- package/typedoc/variables/shared_strings.splitQuery.html +4 -18
- package/typedoc/variables/shared_utils.isProxySymbol.html +4 -18
- package/typedoc/variables/shared_utils.ngAttrPrefixes.html +4 -18
- package/typedoc.json +3 -1
- package/SECURITY.md +0 -16
- package/TODO.md +0 -13
- package/docs/content/en/about/featured-background.jpg +0 -0
- package/docs/content/en/about/index.md +0 -37
- package/docs/content/en/blog/_index.md +0 -8
- package/docs/content/en/blog/news/_index.md +0 -4
- package/docs/content/en/blog/news/first-post/featured-sunset-get.png +0 -0
- package/docs/content/en/blog/news/first-post/index.md +0 -46
- package/docs/content/en/blog/news/second-post.md +0 -238
- package/docs/content/en/blog/releases/_index.md +0 -4
- package/docs/content/en/blog/releases/in-depth-monoliths-detailed-spec.md +0 -238
- package/docs/content/en/community/_index.md +0 -6
- package/docs/content/en/docs/concepts/_index.md +0 -14
- package/docs/content/en/docs/contribution-guidelines/_index.md +0 -77
- package/docs/content/en/docs/examples/_index.md +0 -13
- package/docs/content/en/docs/getting-started/_index.md +0 -35
- package/docs/content/en/docs/getting-started/example-page.md +0 -231
- package/docs/content/en/docs/overview/_index.md +0 -34
- package/docs/content/en/docs/reference/_index.md +0 -12
- package/docs/content/en/docs/reference/parameter-reference.md +0 -207
- package/docs/content/en/docs/tasks/Ponycopters/_index.md +0 -12
- package/docs/content/en/docs/tasks/Ponycopters/configuring-ponycopters.md +0 -230
- package/docs/content/en/docs/tasks/Ponycopters/launching-ponycopters.md +0 -230
- package/docs/content/en/docs/tasks/_index.md +0 -21
- package/docs/content/en/docs/tasks/beds.md +0 -230
- package/docs/content/en/docs/tasks/porridge.md +0 -230
- package/docs/content/en/docs/tasks/task.md +0 -230
- package/docs/content/en/docs/tutorials/_index.md +0 -12
- package/docs/content/en/docs/tutorials/multi-bear.md +0 -230
- package/docs/content/en/docs/tutorials/tutorial2.md +0 -230
- package/docs/content/en/featured-background.jpg +0 -0
- package/docs/content/en/search.md +0 -4
- package/docs/layouts/_default/_markup/render-heading.html +0 -1
- package/public/public/legacy.html +0 -13203
- package/typedoc/functions/shared_utils.replaceInline.html +0 -331
- package/typedoc/variables/core_di_ng-module.PROVIDE_LITERAL.html +0 -263
|
@@ -0,0 +1,2293 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "docsy-example-site",
|
|
3
|
+
"version": "0.12.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "docsy-example-site",
|
|
9
|
+
"version": "0.12.0",
|
|
10
|
+
"license": "Apache-2.0",
|
|
11
|
+
"devDependencies": {
|
|
12
|
+
"autoprefixer": "^10.4.21",
|
|
13
|
+
"cross-env": "^7.0.3",
|
|
14
|
+
"hugo-extended": "0.147.8",
|
|
15
|
+
"postcss": "^8.4.38",
|
|
16
|
+
"postcss-cli": "^11.0.1",
|
|
17
|
+
"rtlcss": "^4.3.0"
|
|
18
|
+
},
|
|
19
|
+
"optionalDependencies": {
|
|
20
|
+
"npm-check-updates": "^18.0.1"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"node_modules/@babel/code-frame": {
|
|
24
|
+
"version": "7.27.1",
|
|
25
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
|
|
26
|
+
"integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
|
|
27
|
+
"dev": true,
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@babel/helper-validator-identifier": "^7.27.1",
|
|
30
|
+
"js-tokens": "^4.0.0",
|
|
31
|
+
"picocolors": "^1.1.1"
|
|
32
|
+
},
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=6.9.0"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"node_modules/@babel/helper-validator-identifier": {
|
|
38
|
+
"version": "7.27.1",
|
|
39
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz",
|
|
40
|
+
"integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==",
|
|
41
|
+
"dev": true,
|
|
42
|
+
"engines": {
|
|
43
|
+
"node": ">=6.9.0"
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"node_modules/@sindresorhus/is": {
|
|
47
|
+
"version": "5.6.0",
|
|
48
|
+
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.6.0.tgz",
|
|
49
|
+
"integrity": "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==",
|
|
50
|
+
"dev": true,
|
|
51
|
+
"engines": {
|
|
52
|
+
"node": ">=14.16"
|
|
53
|
+
},
|
|
54
|
+
"funding": {
|
|
55
|
+
"url": "https://github.com/sindresorhus/is?sponsor=1"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"node_modules/@szmarczak/http-timer": {
|
|
59
|
+
"version": "5.0.1",
|
|
60
|
+
"resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz",
|
|
61
|
+
"integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==",
|
|
62
|
+
"dev": true,
|
|
63
|
+
"dependencies": {
|
|
64
|
+
"defer-to-connect": "^2.0.1"
|
|
65
|
+
},
|
|
66
|
+
"engines": {
|
|
67
|
+
"node": ">=14.16"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"node_modules/@types/http-cache-semantics": {
|
|
71
|
+
"version": "4.0.4",
|
|
72
|
+
"resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz",
|
|
73
|
+
"integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==",
|
|
74
|
+
"dev": true
|
|
75
|
+
},
|
|
76
|
+
"node_modules/@types/normalize-package-data": {
|
|
77
|
+
"version": "2.4.4",
|
|
78
|
+
"resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz",
|
|
79
|
+
"integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==",
|
|
80
|
+
"dev": true
|
|
81
|
+
},
|
|
82
|
+
"node_modules/ansi-regex": {
|
|
83
|
+
"version": "5.0.1",
|
|
84
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
85
|
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
86
|
+
"dev": true,
|
|
87
|
+
"engines": {
|
|
88
|
+
"node": ">=8"
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"node_modules/ansi-styles": {
|
|
92
|
+
"version": "4.3.0",
|
|
93
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
94
|
+
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
95
|
+
"dev": true,
|
|
96
|
+
"dependencies": {
|
|
97
|
+
"color-convert": "^2.0.1"
|
|
98
|
+
},
|
|
99
|
+
"engines": {
|
|
100
|
+
"node": ">=8"
|
|
101
|
+
},
|
|
102
|
+
"funding": {
|
|
103
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
"node_modules/anymatch": {
|
|
107
|
+
"version": "3.1.3",
|
|
108
|
+
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
|
|
109
|
+
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
|
|
110
|
+
"dev": true,
|
|
111
|
+
"dependencies": {
|
|
112
|
+
"normalize-path": "^3.0.0",
|
|
113
|
+
"picomatch": "^2.0.4"
|
|
114
|
+
},
|
|
115
|
+
"engines": {
|
|
116
|
+
"node": ">= 8"
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
"node_modules/autoprefixer": {
|
|
120
|
+
"version": "10.4.21",
|
|
121
|
+
"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.21.tgz",
|
|
122
|
+
"integrity": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==",
|
|
123
|
+
"dev": true,
|
|
124
|
+
"funding": [
|
|
125
|
+
{
|
|
126
|
+
"type": "opencollective",
|
|
127
|
+
"url": "https://opencollective.com/postcss/"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"type": "tidelift",
|
|
131
|
+
"url": "https://tidelift.com/funding/github/npm/autoprefixer"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"type": "github",
|
|
135
|
+
"url": "https://github.com/sponsors/ai"
|
|
136
|
+
}
|
|
137
|
+
],
|
|
138
|
+
"dependencies": {
|
|
139
|
+
"browserslist": "^4.24.4",
|
|
140
|
+
"caniuse-lite": "^1.0.30001702",
|
|
141
|
+
"fraction.js": "^4.3.7",
|
|
142
|
+
"normalize-range": "^0.1.2",
|
|
143
|
+
"picocolors": "^1.1.1",
|
|
144
|
+
"postcss-value-parser": "^4.2.0"
|
|
145
|
+
},
|
|
146
|
+
"bin": {
|
|
147
|
+
"autoprefixer": "bin/autoprefixer"
|
|
148
|
+
},
|
|
149
|
+
"engines": {
|
|
150
|
+
"node": "^10 || ^12 || >=14"
|
|
151
|
+
},
|
|
152
|
+
"peerDependencies": {
|
|
153
|
+
"postcss": "^8.1.0"
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"node_modules/base64-js": {
|
|
157
|
+
"version": "1.5.1",
|
|
158
|
+
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
|
|
159
|
+
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
|
|
160
|
+
"dev": true,
|
|
161
|
+
"funding": [
|
|
162
|
+
{
|
|
163
|
+
"type": "github",
|
|
164
|
+
"url": "https://github.com/sponsors/feross"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"type": "patreon",
|
|
168
|
+
"url": "https://www.patreon.com/feross"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"type": "consulting",
|
|
172
|
+
"url": "https://feross.org/support"
|
|
173
|
+
}
|
|
174
|
+
]
|
|
175
|
+
},
|
|
176
|
+
"node_modules/binary-extensions": {
|
|
177
|
+
"version": "2.3.0",
|
|
178
|
+
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
|
|
179
|
+
"integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
|
|
180
|
+
"dev": true,
|
|
181
|
+
"engines": {
|
|
182
|
+
"node": ">=8"
|
|
183
|
+
},
|
|
184
|
+
"funding": {
|
|
185
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
"node_modules/bl": {
|
|
189
|
+
"version": "1.2.3",
|
|
190
|
+
"resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz",
|
|
191
|
+
"integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==",
|
|
192
|
+
"dev": true,
|
|
193
|
+
"dependencies": {
|
|
194
|
+
"readable-stream": "^2.3.5",
|
|
195
|
+
"safe-buffer": "^5.1.1"
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
"node_modules/braces": {
|
|
199
|
+
"version": "3.0.3",
|
|
200
|
+
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
|
|
201
|
+
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
|
|
202
|
+
"dev": true,
|
|
203
|
+
"dependencies": {
|
|
204
|
+
"fill-range": "^7.1.1"
|
|
205
|
+
},
|
|
206
|
+
"engines": {
|
|
207
|
+
"node": ">=8"
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
"node_modules/browserslist": {
|
|
211
|
+
"version": "4.25.0",
|
|
212
|
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.0.tgz",
|
|
213
|
+
"integrity": "sha512-PJ8gYKeS5e/whHBh8xrwYK+dAvEj7JXtz6uTucnMRB8OiGTsKccFekoRrjajPBHV8oOY+2tI4uxeceSimKwMFA==",
|
|
214
|
+
"dev": true,
|
|
215
|
+
"funding": [
|
|
216
|
+
{
|
|
217
|
+
"type": "opencollective",
|
|
218
|
+
"url": "https://opencollective.com/browserslist"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"type": "tidelift",
|
|
222
|
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"type": "github",
|
|
226
|
+
"url": "https://github.com/sponsors/ai"
|
|
227
|
+
}
|
|
228
|
+
],
|
|
229
|
+
"dependencies": {
|
|
230
|
+
"caniuse-lite": "^1.0.30001718",
|
|
231
|
+
"electron-to-chromium": "^1.5.160",
|
|
232
|
+
"node-releases": "^2.0.19",
|
|
233
|
+
"update-browserslist-db": "^1.1.3"
|
|
234
|
+
},
|
|
235
|
+
"bin": {
|
|
236
|
+
"browserslist": "cli.js"
|
|
237
|
+
},
|
|
238
|
+
"engines": {
|
|
239
|
+
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
"node_modules/buffer": {
|
|
243
|
+
"version": "5.7.1",
|
|
244
|
+
"resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
|
|
245
|
+
"integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
|
|
246
|
+
"dev": true,
|
|
247
|
+
"funding": [
|
|
248
|
+
{
|
|
249
|
+
"type": "github",
|
|
250
|
+
"url": "https://github.com/sponsors/feross"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"type": "patreon",
|
|
254
|
+
"url": "https://www.patreon.com/feross"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"type": "consulting",
|
|
258
|
+
"url": "https://feross.org/support"
|
|
259
|
+
}
|
|
260
|
+
],
|
|
261
|
+
"dependencies": {
|
|
262
|
+
"base64-js": "^1.3.1",
|
|
263
|
+
"ieee754": "^1.1.13"
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
"node_modules/buffer-alloc": {
|
|
267
|
+
"version": "1.2.0",
|
|
268
|
+
"resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz",
|
|
269
|
+
"integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==",
|
|
270
|
+
"dev": true,
|
|
271
|
+
"dependencies": {
|
|
272
|
+
"buffer-alloc-unsafe": "^1.1.0",
|
|
273
|
+
"buffer-fill": "^1.0.0"
|
|
274
|
+
}
|
|
275
|
+
},
|
|
276
|
+
"node_modules/buffer-alloc-unsafe": {
|
|
277
|
+
"version": "1.1.0",
|
|
278
|
+
"resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz",
|
|
279
|
+
"integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==",
|
|
280
|
+
"dev": true
|
|
281
|
+
},
|
|
282
|
+
"node_modules/buffer-crc32": {
|
|
283
|
+
"version": "0.2.13",
|
|
284
|
+
"resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
|
|
285
|
+
"integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==",
|
|
286
|
+
"dev": true,
|
|
287
|
+
"engines": {
|
|
288
|
+
"node": "*"
|
|
289
|
+
}
|
|
290
|
+
},
|
|
291
|
+
"node_modules/buffer-fill": {
|
|
292
|
+
"version": "1.0.0",
|
|
293
|
+
"resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz",
|
|
294
|
+
"integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==",
|
|
295
|
+
"dev": true
|
|
296
|
+
},
|
|
297
|
+
"node_modules/cacheable-lookup": {
|
|
298
|
+
"version": "7.0.0",
|
|
299
|
+
"resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz",
|
|
300
|
+
"integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==",
|
|
301
|
+
"dev": true,
|
|
302
|
+
"engines": {
|
|
303
|
+
"node": ">=14.16"
|
|
304
|
+
}
|
|
305
|
+
},
|
|
306
|
+
"node_modules/cacheable-request": {
|
|
307
|
+
"version": "10.2.14",
|
|
308
|
+
"resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.14.tgz",
|
|
309
|
+
"integrity": "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==",
|
|
310
|
+
"dev": true,
|
|
311
|
+
"dependencies": {
|
|
312
|
+
"@types/http-cache-semantics": "^4.0.2",
|
|
313
|
+
"get-stream": "^6.0.1",
|
|
314
|
+
"http-cache-semantics": "^4.1.1",
|
|
315
|
+
"keyv": "^4.5.3",
|
|
316
|
+
"mimic-response": "^4.0.0",
|
|
317
|
+
"normalize-url": "^8.0.0",
|
|
318
|
+
"responselike": "^3.0.0"
|
|
319
|
+
},
|
|
320
|
+
"engines": {
|
|
321
|
+
"node": ">=14.16"
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
"node_modules/cacheable-request/node_modules/get-stream": {
|
|
325
|
+
"version": "6.0.1",
|
|
326
|
+
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
|
|
327
|
+
"integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
|
|
328
|
+
"dev": true,
|
|
329
|
+
"engines": {
|
|
330
|
+
"node": ">=10"
|
|
331
|
+
},
|
|
332
|
+
"funding": {
|
|
333
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
334
|
+
}
|
|
335
|
+
},
|
|
336
|
+
"node_modules/caniuse-lite": {
|
|
337
|
+
"version": "1.0.30001723",
|
|
338
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001723.tgz",
|
|
339
|
+
"integrity": "sha512-1R/elMjtehrFejxwmexeXAtae5UO9iSyFn6G/I806CYC/BLyyBk1EPhrKBkWhy6wM6Xnm47dSJQec+tLJ39WHw==",
|
|
340
|
+
"dev": true,
|
|
341
|
+
"funding": [
|
|
342
|
+
{
|
|
343
|
+
"type": "opencollective",
|
|
344
|
+
"url": "https://opencollective.com/browserslist"
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"type": "tidelift",
|
|
348
|
+
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"type": "github",
|
|
352
|
+
"url": "https://github.com/sponsors/ai"
|
|
353
|
+
}
|
|
354
|
+
]
|
|
355
|
+
},
|
|
356
|
+
"node_modules/careful-downloader": {
|
|
357
|
+
"version": "3.0.0",
|
|
358
|
+
"resolved": "https://registry.npmjs.org/careful-downloader/-/careful-downloader-3.0.0.tgz",
|
|
359
|
+
"integrity": "sha512-5KMIPa0Yoj+2tY6OK9ewdwcPebp+4XS0dMYvvF9/8fkFEfvnEpWmHWYs9JNcZ7RZUvY/v6oPzLpmmTzSIbroSA==",
|
|
360
|
+
"dev": true,
|
|
361
|
+
"dependencies": {
|
|
362
|
+
"debug": "^4.3.4",
|
|
363
|
+
"decompress": "^4.2.1",
|
|
364
|
+
"fs-extra": "^11.1.1",
|
|
365
|
+
"got": "^12.6.0",
|
|
366
|
+
"is-path-inside": "^4.0.0",
|
|
367
|
+
"tempy": "^3.0.0"
|
|
368
|
+
},
|
|
369
|
+
"engines": {
|
|
370
|
+
"node": ">=14.14"
|
|
371
|
+
}
|
|
372
|
+
},
|
|
373
|
+
"node_modules/chalk": {
|
|
374
|
+
"version": "5.4.1",
|
|
375
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz",
|
|
376
|
+
"integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==",
|
|
377
|
+
"dev": true,
|
|
378
|
+
"engines": {
|
|
379
|
+
"node": "^12.17.0 || ^14.13 || >=16.0.0"
|
|
380
|
+
},
|
|
381
|
+
"funding": {
|
|
382
|
+
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
383
|
+
}
|
|
384
|
+
},
|
|
385
|
+
"node_modules/chokidar": {
|
|
386
|
+
"version": "3.6.0",
|
|
387
|
+
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
|
|
388
|
+
"integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
|
|
389
|
+
"dev": true,
|
|
390
|
+
"dependencies": {
|
|
391
|
+
"anymatch": "~3.1.2",
|
|
392
|
+
"braces": "~3.0.2",
|
|
393
|
+
"glob-parent": "~5.1.2",
|
|
394
|
+
"is-binary-path": "~2.1.0",
|
|
395
|
+
"is-glob": "~4.0.1",
|
|
396
|
+
"normalize-path": "~3.0.0",
|
|
397
|
+
"readdirp": "~3.6.0"
|
|
398
|
+
},
|
|
399
|
+
"engines": {
|
|
400
|
+
"node": ">= 8.10.0"
|
|
401
|
+
},
|
|
402
|
+
"funding": {
|
|
403
|
+
"url": "https://paulmillr.com/funding/"
|
|
404
|
+
},
|
|
405
|
+
"optionalDependencies": {
|
|
406
|
+
"fsevents": "~2.3.2"
|
|
407
|
+
}
|
|
408
|
+
},
|
|
409
|
+
"node_modules/cliui": {
|
|
410
|
+
"version": "8.0.1",
|
|
411
|
+
"resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
|
|
412
|
+
"integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
|
|
413
|
+
"dev": true,
|
|
414
|
+
"dependencies": {
|
|
415
|
+
"string-width": "^4.2.0",
|
|
416
|
+
"strip-ansi": "^6.0.1",
|
|
417
|
+
"wrap-ansi": "^7.0.0"
|
|
418
|
+
},
|
|
419
|
+
"engines": {
|
|
420
|
+
"node": ">=12"
|
|
421
|
+
}
|
|
422
|
+
},
|
|
423
|
+
"node_modules/color-convert": {
|
|
424
|
+
"version": "2.0.1",
|
|
425
|
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
426
|
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
427
|
+
"dev": true,
|
|
428
|
+
"dependencies": {
|
|
429
|
+
"color-name": "~1.1.4"
|
|
430
|
+
},
|
|
431
|
+
"engines": {
|
|
432
|
+
"node": ">=7.0.0"
|
|
433
|
+
}
|
|
434
|
+
},
|
|
435
|
+
"node_modules/color-name": {
|
|
436
|
+
"version": "1.1.4",
|
|
437
|
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
438
|
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
439
|
+
"dev": true
|
|
440
|
+
},
|
|
441
|
+
"node_modules/commander": {
|
|
442
|
+
"version": "2.20.3",
|
|
443
|
+
"resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
|
|
444
|
+
"integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
|
|
445
|
+
"dev": true
|
|
446
|
+
},
|
|
447
|
+
"node_modules/core-util-is": {
|
|
448
|
+
"version": "1.0.3",
|
|
449
|
+
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
|
|
450
|
+
"integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
|
|
451
|
+
"dev": true
|
|
452
|
+
},
|
|
453
|
+
"node_modules/cross-env": {
|
|
454
|
+
"version": "7.0.3",
|
|
455
|
+
"resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz",
|
|
456
|
+
"integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==",
|
|
457
|
+
"dev": true,
|
|
458
|
+
"dependencies": {
|
|
459
|
+
"cross-spawn": "^7.0.1"
|
|
460
|
+
},
|
|
461
|
+
"bin": {
|
|
462
|
+
"cross-env": "src/bin/cross-env.js",
|
|
463
|
+
"cross-env-shell": "src/bin/cross-env-shell.js"
|
|
464
|
+
},
|
|
465
|
+
"engines": {
|
|
466
|
+
"node": ">=10.14",
|
|
467
|
+
"npm": ">=6",
|
|
468
|
+
"yarn": ">=1"
|
|
469
|
+
}
|
|
470
|
+
},
|
|
471
|
+
"node_modules/cross-spawn": {
|
|
472
|
+
"version": "7.0.6",
|
|
473
|
+
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
|
|
474
|
+
"integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
|
|
475
|
+
"dev": true,
|
|
476
|
+
"dependencies": {
|
|
477
|
+
"path-key": "^3.1.0",
|
|
478
|
+
"shebang-command": "^2.0.0",
|
|
479
|
+
"which": "^2.0.1"
|
|
480
|
+
},
|
|
481
|
+
"engines": {
|
|
482
|
+
"node": ">= 8"
|
|
483
|
+
}
|
|
484
|
+
},
|
|
485
|
+
"node_modules/crypto-random-string": {
|
|
486
|
+
"version": "4.0.0",
|
|
487
|
+
"resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz",
|
|
488
|
+
"integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==",
|
|
489
|
+
"dev": true,
|
|
490
|
+
"dependencies": {
|
|
491
|
+
"type-fest": "^1.0.1"
|
|
492
|
+
},
|
|
493
|
+
"engines": {
|
|
494
|
+
"node": ">=12"
|
|
495
|
+
},
|
|
496
|
+
"funding": {
|
|
497
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
498
|
+
}
|
|
499
|
+
},
|
|
500
|
+
"node_modules/crypto-random-string/node_modules/type-fest": {
|
|
501
|
+
"version": "1.4.0",
|
|
502
|
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz",
|
|
503
|
+
"integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==",
|
|
504
|
+
"dev": true,
|
|
505
|
+
"engines": {
|
|
506
|
+
"node": ">=10"
|
|
507
|
+
},
|
|
508
|
+
"funding": {
|
|
509
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
510
|
+
}
|
|
511
|
+
},
|
|
512
|
+
"node_modules/debug": {
|
|
513
|
+
"version": "4.4.1",
|
|
514
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz",
|
|
515
|
+
"integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==",
|
|
516
|
+
"dev": true,
|
|
517
|
+
"dependencies": {
|
|
518
|
+
"ms": "^2.1.3"
|
|
519
|
+
},
|
|
520
|
+
"engines": {
|
|
521
|
+
"node": ">=6.0"
|
|
522
|
+
},
|
|
523
|
+
"peerDependenciesMeta": {
|
|
524
|
+
"supports-color": {
|
|
525
|
+
"optional": true
|
|
526
|
+
}
|
|
527
|
+
}
|
|
528
|
+
},
|
|
529
|
+
"node_modules/decompress": {
|
|
530
|
+
"version": "4.2.1",
|
|
531
|
+
"resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz",
|
|
532
|
+
"integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==",
|
|
533
|
+
"dev": true,
|
|
534
|
+
"dependencies": {
|
|
535
|
+
"decompress-tar": "^4.0.0",
|
|
536
|
+
"decompress-tarbz2": "^4.0.0",
|
|
537
|
+
"decompress-targz": "^4.0.0",
|
|
538
|
+
"decompress-unzip": "^4.0.1",
|
|
539
|
+
"graceful-fs": "^4.1.10",
|
|
540
|
+
"make-dir": "^1.0.0",
|
|
541
|
+
"pify": "^2.3.0",
|
|
542
|
+
"strip-dirs": "^2.0.0"
|
|
543
|
+
},
|
|
544
|
+
"engines": {
|
|
545
|
+
"node": ">=4"
|
|
546
|
+
}
|
|
547
|
+
},
|
|
548
|
+
"node_modules/decompress-response": {
|
|
549
|
+
"version": "6.0.0",
|
|
550
|
+
"resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
|
|
551
|
+
"integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
|
|
552
|
+
"dev": true,
|
|
553
|
+
"dependencies": {
|
|
554
|
+
"mimic-response": "^3.1.0"
|
|
555
|
+
},
|
|
556
|
+
"engines": {
|
|
557
|
+
"node": ">=10"
|
|
558
|
+
},
|
|
559
|
+
"funding": {
|
|
560
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
561
|
+
}
|
|
562
|
+
},
|
|
563
|
+
"node_modules/decompress-response/node_modules/mimic-response": {
|
|
564
|
+
"version": "3.1.0",
|
|
565
|
+
"resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
|
|
566
|
+
"integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==",
|
|
567
|
+
"dev": true,
|
|
568
|
+
"engines": {
|
|
569
|
+
"node": ">=10"
|
|
570
|
+
},
|
|
571
|
+
"funding": {
|
|
572
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
573
|
+
}
|
|
574
|
+
},
|
|
575
|
+
"node_modules/decompress-tar": {
|
|
576
|
+
"version": "4.1.1",
|
|
577
|
+
"resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz",
|
|
578
|
+
"integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==",
|
|
579
|
+
"dev": true,
|
|
580
|
+
"dependencies": {
|
|
581
|
+
"file-type": "^5.2.0",
|
|
582
|
+
"is-stream": "^1.1.0",
|
|
583
|
+
"tar-stream": "^1.5.2"
|
|
584
|
+
},
|
|
585
|
+
"engines": {
|
|
586
|
+
"node": ">=4"
|
|
587
|
+
}
|
|
588
|
+
},
|
|
589
|
+
"node_modules/decompress-tarbz2": {
|
|
590
|
+
"version": "4.1.1",
|
|
591
|
+
"resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz",
|
|
592
|
+
"integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==",
|
|
593
|
+
"dev": true,
|
|
594
|
+
"dependencies": {
|
|
595
|
+
"decompress-tar": "^4.1.0",
|
|
596
|
+
"file-type": "^6.1.0",
|
|
597
|
+
"is-stream": "^1.1.0",
|
|
598
|
+
"seek-bzip": "^1.0.5",
|
|
599
|
+
"unbzip2-stream": "^1.0.9"
|
|
600
|
+
},
|
|
601
|
+
"engines": {
|
|
602
|
+
"node": ">=4"
|
|
603
|
+
}
|
|
604
|
+
},
|
|
605
|
+
"node_modules/decompress-tarbz2/node_modules/file-type": {
|
|
606
|
+
"version": "6.2.0",
|
|
607
|
+
"resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz",
|
|
608
|
+
"integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==",
|
|
609
|
+
"dev": true,
|
|
610
|
+
"engines": {
|
|
611
|
+
"node": ">=4"
|
|
612
|
+
}
|
|
613
|
+
},
|
|
614
|
+
"node_modules/decompress-targz": {
|
|
615
|
+
"version": "4.1.1",
|
|
616
|
+
"resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz",
|
|
617
|
+
"integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==",
|
|
618
|
+
"dev": true,
|
|
619
|
+
"dependencies": {
|
|
620
|
+
"decompress-tar": "^4.1.1",
|
|
621
|
+
"file-type": "^5.2.0",
|
|
622
|
+
"is-stream": "^1.1.0"
|
|
623
|
+
},
|
|
624
|
+
"engines": {
|
|
625
|
+
"node": ">=4"
|
|
626
|
+
}
|
|
627
|
+
},
|
|
628
|
+
"node_modules/decompress-unzip": {
|
|
629
|
+
"version": "4.0.1",
|
|
630
|
+
"resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz",
|
|
631
|
+
"integrity": "sha512-1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw==",
|
|
632
|
+
"dev": true,
|
|
633
|
+
"dependencies": {
|
|
634
|
+
"file-type": "^3.8.0",
|
|
635
|
+
"get-stream": "^2.2.0",
|
|
636
|
+
"pify": "^2.3.0",
|
|
637
|
+
"yauzl": "^2.4.2"
|
|
638
|
+
},
|
|
639
|
+
"engines": {
|
|
640
|
+
"node": ">=4"
|
|
641
|
+
}
|
|
642
|
+
},
|
|
643
|
+
"node_modules/decompress-unzip/node_modules/file-type": {
|
|
644
|
+
"version": "3.9.0",
|
|
645
|
+
"resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz",
|
|
646
|
+
"integrity": "sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==",
|
|
647
|
+
"dev": true,
|
|
648
|
+
"engines": {
|
|
649
|
+
"node": ">=0.10.0"
|
|
650
|
+
}
|
|
651
|
+
},
|
|
652
|
+
"node_modules/defer-to-connect": {
|
|
653
|
+
"version": "2.0.1",
|
|
654
|
+
"resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz",
|
|
655
|
+
"integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==",
|
|
656
|
+
"dev": true,
|
|
657
|
+
"engines": {
|
|
658
|
+
"node": ">=10"
|
|
659
|
+
}
|
|
660
|
+
},
|
|
661
|
+
"node_modules/dependency-graph": {
|
|
662
|
+
"version": "1.0.0",
|
|
663
|
+
"resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-1.0.0.tgz",
|
|
664
|
+
"integrity": "sha512-cW3gggJ28HZ/LExwxP2B++aiKxhJXMSIt9K48FOXQkm+vuG5gyatXnLsONRJdzO/7VfjDIiaOOa/bs4l464Lwg==",
|
|
665
|
+
"dev": true,
|
|
666
|
+
"engines": {
|
|
667
|
+
"node": ">=4"
|
|
668
|
+
}
|
|
669
|
+
},
|
|
670
|
+
"node_modules/electron-to-chromium": {
|
|
671
|
+
"version": "1.5.171",
|
|
672
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.171.tgz",
|
|
673
|
+
"integrity": "sha512-scWpzXEJEMrGJa4Y6m/tVotb0WuvNmasv3wWVzUAeCgKU0ToFOhUW6Z+xWnRQANMYGxN4ngJXIThgBJOqzVPCQ==",
|
|
674
|
+
"dev": true
|
|
675
|
+
},
|
|
676
|
+
"node_modules/emoji-regex": {
|
|
677
|
+
"version": "8.0.0",
|
|
678
|
+
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
|
679
|
+
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
680
|
+
"dev": true
|
|
681
|
+
},
|
|
682
|
+
"node_modules/end-of-stream": {
|
|
683
|
+
"version": "1.4.5",
|
|
684
|
+
"resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz",
|
|
685
|
+
"integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==",
|
|
686
|
+
"dev": true,
|
|
687
|
+
"dependencies": {
|
|
688
|
+
"once": "^1.4.0"
|
|
689
|
+
}
|
|
690
|
+
},
|
|
691
|
+
"node_modules/error-ex": {
|
|
692
|
+
"version": "1.3.2",
|
|
693
|
+
"resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
|
|
694
|
+
"integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
|
|
695
|
+
"dev": true,
|
|
696
|
+
"dependencies": {
|
|
697
|
+
"is-arrayish": "^0.2.1"
|
|
698
|
+
}
|
|
699
|
+
},
|
|
700
|
+
"node_modules/escalade": {
|
|
701
|
+
"version": "3.2.0",
|
|
702
|
+
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
|
|
703
|
+
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
|
|
704
|
+
"dev": true,
|
|
705
|
+
"engines": {
|
|
706
|
+
"node": ">=6"
|
|
707
|
+
}
|
|
708
|
+
},
|
|
709
|
+
"node_modules/fd-slicer": {
|
|
710
|
+
"version": "1.1.0",
|
|
711
|
+
"resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
|
|
712
|
+
"integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==",
|
|
713
|
+
"dev": true,
|
|
714
|
+
"dependencies": {
|
|
715
|
+
"pend": "~1.2.0"
|
|
716
|
+
}
|
|
717
|
+
},
|
|
718
|
+
"node_modules/file-type": {
|
|
719
|
+
"version": "5.2.0",
|
|
720
|
+
"resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz",
|
|
721
|
+
"integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==",
|
|
722
|
+
"dev": true,
|
|
723
|
+
"engines": {
|
|
724
|
+
"node": ">=4"
|
|
725
|
+
}
|
|
726
|
+
},
|
|
727
|
+
"node_modules/fill-range": {
|
|
728
|
+
"version": "7.1.1",
|
|
729
|
+
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
|
|
730
|
+
"integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
|
|
731
|
+
"dev": true,
|
|
732
|
+
"dependencies": {
|
|
733
|
+
"to-regex-range": "^5.0.1"
|
|
734
|
+
},
|
|
735
|
+
"engines": {
|
|
736
|
+
"node": ">=8"
|
|
737
|
+
}
|
|
738
|
+
},
|
|
739
|
+
"node_modules/find-up": {
|
|
740
|
+
"version": "6.3.0",
|
|
741
|
+
"resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz",
|
|
742
|
+
"integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==",
|
|
743
|
+
"dev": true,
|
|
744
|
+
"dependencies": {
|
|
745
|
+
"locate-path": "^7.1.0",
|
|
746
|
+
"path-exists": "^5.0.0"
|
|
747
|
+
},
|
|
748
|
+
"engines": {
|
|
749
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
750
|
+
},
|
|
751
|
+
"funding": {
|
|
752
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
753
|
+
}
|
|
754
|
+
},
|
|
755
|
+
"node_modules/form-data-encoder": {
|
|
756
|
+
"version": "2.1.4",
|
|
757
|
+
"resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.4.tgz",
|
|
758
|
+
"integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==",
|
|
759
|
+
"dev": true,
|
|
760
|
+
"engines": {
|
|
761
|
+
"node": ">= 14.17"
|
|
762
|
+
}
|
|
763
|
+
},
|
|
764
|
+
"node_modules/fraction.js": {
|
|
765
|
+
"version": "4.3.7",
|
|
766
|
+
"resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz",
|
|
767
|
+
"integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==",
|
|
768
|
+
"dev": true,
|
|
769
|
+
"engines": {
|
|
770
|
+
"node": "*"
|
|
771
|
+
},
|
|
772
|
+
"funding": {
|
|
773
|
+
"type": "patreon",
|
|
774
|
+
"url": "https://github.com/sponsors/rawify"
|
|
775
|
+
}
|
|
776
|
+
},
|
|
777
|
+
"node_modules/fs-constants": {
|
|
778
|
+
"version": "1.0.0",
|
|
779
|
+
"resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
|
|
780
|
+
"integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==",
|
|
781
|
+
"dev": true
|
|
782
|
+
},
|
|
783
|
+
"node_modules/fs-extra": {
|
|
784
|
+
"version": "11.3.0",
|
|
785
|
+
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.0.tgz",
|
|
786
|
+
"integrity": "sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==",
|
|
787
|
+
"dev": true,
|
|
788
|
+
"dependencies": {
|
|
789
|
+
"graceful-fs": "^4.2.0",
|
|
790
|
+
"jsonfile": "^6.0.1",
|
|
791
|
+
"universalify": "^2.0.0"
|
|
792
|
+
},
|
|
793
|
+
"engines": {
|
|
794
|
+
"node": ">=14.14"
|
|
795
|
+
}
|
|
796
|
+
},
|
|
797
|
+
"node_modules/function-bind": {
|
|
798
|
+
"version": "1.1.2",
|
|
799
|
+
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
|
800
|
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
|
801
|
+
"dev": true,
|
|
802
|
+
"funding": {
|
|
803
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
804
|
+
}
|
|
805
|
+
},
|
|
806
|
+
"node_modules/get-caller-file": {
|
|
807
|
+
"version": "2.0.5",
|
|
808
|
+
"resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
|
|
809
|
+
"integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
|
|
810
|
+
"dev": true,
|
|
811
|
+
"engines": {
|
|
812
|
+
"node": "6.* || 8.* || >= 10.*"
|
|
813
|
+
}
|
|
814
|
+
},
|
|
815
|
+
"node_modules/get-stream": {
|
|
816
|
+
"version": "2.3.1",
|
|
817
|
+
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz",
|
|
818
|
+
"integrity": "sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA==",
|
|
819
|
+
"dev": true,
|
|
820
|
+
"dependencies": {
|
|
821
|
+
"object-assign": "^4.0.1",
|
|
822
|
+
"pinkie-promise": "^2.0.0"
|
|
823
|
+
},
|
|
824
|
+
"engines": {
|
|
825
|
+
"node": ">=0.10.0"
|
|
826
|
+
}
|
|
827
|
+
},
|
|
828
|
+
"node_modules/glob-parent": {
|
|
829
|
+
"version": "5.1.2",
|
|
830
|
+
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
|
|
831
|
+
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
|
|
832
|
+
"dev": true,
|
|
833
|
+
"dependencies": {
|
|
834
|
+
"is-glob": "^4.0.1"
|
|
835
|
+
},
|
|
836
|
+
"engines": {
|
|
837
|
+
"node": ">= 6"
|
|
838
|
+
}
|
|
839
|
+
},
|
|
840
|
+
"node_modules/got": {
|
|
841
|
+
"version": "12.6.1",
|
|
842
|
+
"resolved": "https://registry.npmjs.org/got/-/got-12.6.1.tgz",
|
|
843
|
+
"integrity": "sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==",
|
|
844
|
+
"dev": true,
|
|
845
|
+
"dependencies": {
|
|
846
|
+
"@sindresorhus/is": "^5.2.0",
|
|
847
|
+
"@szmarczak/http-timer": "^5.0.1",
|
|
848
|
+
"cacheable-lookup": "^7.0.0",
|
|
849
|
+
"cacheable-request": "^10.2.8",
|
|
850
|
+
"decompress-response": "^6.0.0",
|
|
851
|
+
"form-data-encoder": "^2.1.2",
|
|
852
|
+
"get-stream": "^6.0.1",
|
|
853
|
+
"http2-wrapper": "^2.1.10",
|
|
854
|
+
"lowercase-keys": "^3.0.0",
|
|
855
|
+
"p-cancelable": "^3.0.0",
|
|
856
|
+
"responselike": "^3.0.0"
|
|
857
|
+
},
|
|
858
|
+
"engines": {
|
|
859
|
+
"node": ">=14.16"
|
|
860
|
+
},
|
|
861
|
+
"funding": {
|
|
862
|
+
"url": "https://github.com/sindresorhus/got?sponsor=1"
|
|
863
|
+
}
|
|
864
|
+
},
|
|
865
|
+
"node_modules/got/node_modules/get-stream": {
|
|
866
|
+
"version": "6.0.1",
|
|
867
|
+
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
|
|
868
|
+
"integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
|
|
869
|
+
"dev": true,
|
|
870
|
+
"engines": {
|
|
871
|
+
"node": ">=10"
|
|
872
|
+
},
|
|
873
|
+
"funding": {
|
|
874
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
875
|
+
}
|
|
876
|
+
},
|
|
877
|
+
"node_modules/graceful-fs": {
|
|
878
|
+
"version": "4.2.11",
|
|
879
|
+
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
|
|
880
|
+
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
|
881
|
+
"dev": true
|
|
882
|
+
},
|
|
883
|
+
"node_modules/hasown": {
|
|
884
|
+
"version": "2.0.2",
|
|
885
|
+
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
|
|
886
|
+
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
|
887
|
+
"dev": true,
|
|
888
|
+
"dependencies": {
|
|
889
|
+
"function-bind": "^1.1.2"
|
|
890
|
+
},
|
|
891
|
+
"engines": {
|
|
892
|
+
"node": ">= 0.4"
|
|
893
|
+
}
|
|
894
|
+
},
|
|
895
|
+
"node_modules/hosted-git-info": {
|
|
896
|
+
"version": "4.1.0",
|
|
897
|
+
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz",
|
|
898
|
+
"integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==",
|
|
899
|
+
"dev": true,
|
|
900
|
+
"dependencies": {
|
|
901
|
+
"lru-cache": "^6.0.0"
|
|
902
|
+
},
|
|
903
|
+
"engines": {
|
|
904
|
+
"node": ">=10"
|
|
905
|
+
}
|
|
906
|
+
},
|
|
907
|
+
"node_modules/http-cache-semantics": {
|
|
908
|
+
"version": "4.2.0",
|
|
909
|
+
"resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz",
|
|
910
|
+
"integrity": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==",
|
|
911
|
+
"dev": true
|
|
912
|
+
},
|
|
913
|
+
"node_modules/http2-wrapper": {
|
|
914
|
+
"version": "2.2.1",
|
|
915
|
+
"resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz",
|
|
916
|
+
"integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==",
|
|
917
|
+
"dev": true,
|
|
918
|
+
"dependencies": {
|
|
919
|
+
"quick-lru": "^5.1.1",
|
|
920
|
+
"resolve-alpn": "^1.2.0"
|
|
921
|
+
},
|
|
922
|
+
"engines": {
|
|
923
|
+
"node": ">=10.19.0"
|
|
924
|
+
}
|
|
925
|
+
},
|
|
926
|
+
"node_modules/hugo-extended": {
|
|
927
|
+
"version": "0.147.8",
|
|
928
|
+
"resolved": "https://registry.npmjs.org/hugo-extended/-/hugo-extended-0.147.8.tgz",
|
|
929
|
+
"integrity": "sha512-QCZ0S+CtS2W0wKTDL/d2vEmjt7RPjSt9GteFHcBu1YjG4cXrvSAIWmJYe1BlE8TxhABogc1PAouAPHVrH0oFcQ==",
|
|
930
|
+
"dev": true,
|
|
931
|
+
"hasInstallScript": true,
|
|
932
|
+
"dependencies": {
|
|
933
|
+
"careful-downloader": "^3.0.0",
|
|
934
|
+
"log-symbols": "^5.1.0",
|
|
935
|
+
"read-pkg-up": "^9.1.0"
|
|
936
|
+
},
|
|
937
|
+
"bin": {
|
|
938
|
+
"hugo": "lib/cli.js",
|
|
939
|
+
"hugo-extended": "lib/cli.js"
|
|
940
|
+
},
|
|
941
|
+
"engines": {
|
|
942
|
+
"node": ">=18.12"
|
|
943
|
+
}
|
|
944
|
+
},
|
|
945
|
+
"node_modules/ieee754": {
|
|
946
|
+
"version": "1.2.1",
|
|
947
|
+
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
|
|
948
|
+
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
|
|
949
|
+
"dev": true,
|
|
950
|
+
"funding": [
|
|
951
|
+
{
|
|
952
|
+
"type": "github",
|
|
953
|
+
"url": "https://github.com/sponsors/feross"
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
"type": "patreon",
|
|
957
|
+
"url": "https://www.patreon.com/feross"
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
"type": "consulting",
|
|
961
|
+
"url": "https://feross.org/support"
|
|
962
|
+
}
|
|
963
|
+
]
|
|
964
|
+
},
|
|
965
|
+
"node_modules/inherits": {
|
|
966
|
+
"version": "2.0.4",
|
|
967
|
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
|
968
|
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
|
|
969
|
+
"dev": true
|
|
970
|
+
},
|
|
971
|
+
"node_modules/is-arrayish": {
|
|
972
|
+
"version": "0.2.1",
|
|
973
|
+
"resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
|
|
974
|
+
"integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
|
|
975
|
+
"dev": true
|
|
976
|
+
},
|
|
977
|
+
"node_modules/is-binary-path": {
|
|
978
|
+
"version": "2.1.0",
|
|
979
|
+
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
|
|
980
|
+
"integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
|
|
981
|
+
"dev": true,
|
|
982
|
+
"dependencies": {
|
|
983
|
+
"binary-extensions": "^2.0.0"
|
|
984
|
+
},
|
|
985
|
+
"engines": {
|
|
986
|
+
"node": ">=8"
|
|
987
|
+
}
|
|
988
|
+
},
|
|
989
|
+
"node_modules/is-core-module": {
|
|
990
|
+
"version": "2.16.1",
|
|
991
|
+
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
|
|
992
|
+
"integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
|
|
993
|
+
"dev": true,
|
|
994
|
+
"dependencies": {
|
|
995
|
+
"hasown": "^2.0.2"
|
|
996
|
+
},
|
|
997
|
+
"engines": {
|
|
998
|
+
"node": ">= 0.4"
|
|
999
|
+
},
|
|
1000
|
+
"funding": {
|
|
1001
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1002
|
+
}
|
|
1003
|
+
},
|
|
1004
|
+
"node_modules/is-extglob": {
|
|
1005
|
+
"version": "2.1.1",
|
|
1006
|
+
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
|
1007
|
+
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
|
|
1008
|
+
"dev": true,
|
|
1009
|
+
"engines": {
|
|
1010
|
+
"node": ">=0.10.0"
|
|
1011
|
+
}
|
|
1012
|
+
},
|
|
1013
|
+
"node_modules/is-fullwidth-code-point": {
|
|
1014
|
+
"version": "3.0.0",
|
|
1015
|
+
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
|
1016
|
+
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
|
|
1017
|
+
"dev": true,
|
|
1018
|
+
"engines": {
|
|
1019
|
+
"node": ">=8"
|
|
1020
|
+
}
|
|
1021
|
+
},
|
|
1022
|
+
"node_modules/is-glob": {
|
|
1023
|
+
"version": "4.0.3",
|
|
1024
|
+
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
|
|
1025
|
+
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
|
|
1026
|
+
"dev": true,
|
|
1027
|
+
"dependencies": {
|
|
1028
|
+
"is-extglob": "^2.1.1"
|
|
1029
|
+
},
|
|
1030
|
+
"engines": {
|
|
1031
|
+
"node": ">=0.10.0"
|
|
1032
|
+
}
|
|
1033
|
+
},
|
|
1034
|
+
"node_modules/is-natural-number": {
|
|
1035
|
+
"version": "4.0.1",
|
|
1036
|
+
"resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz",
|
|
1037
|
+
"integrity": "sha512-Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ==",
|
|
1038
|
+
"dev": true
|
|
1039
|
+
},
|
|
1040
|
+
"node_modules/is-number": {
|
|
1041
|
+
"version": "7.0.0",
|
|
1042
|
+
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
|
1043
|
+
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
|
1044
|
+
"dev": true,
|
|
1045
|
+
"engines": {
|
|
1046
|
+
"node": ">=0.12.0"
|
|
1047
|
+
}
|
|
1048
|
+
},
|
|
1049
|
+
"node_modules/is-path-inside": {
|
|
1050
|
+
"version": "4.0.0",
|
|
1051
|
+
"resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-4.0.0.tgz",
|
|
1052
|
+
"integrity": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==",
|
|
1053
|
+
"dev": true,
|
|
1054
|
+
"engines": {
|
|
1055
|
+
"node": ">=12"
|
|
1056
|
+
},
|
|
1057
|
+
"funding": {
|
|
1058
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1059
|
+
}
|
|
1060
|
+
},
|
|
1061
|
+
"node_modules/is-stream": {
|
|
1062
|
+
"version": "1.1.0",
|
|
1063
|
+
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
|
|
1064
|
+
"integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==",
|
|
1065
|
+
"dev": true,
|
|
1066
|
+
"engines": {
|
|
1067
|
+
"node": ">=0.10.0"
|
|
1068
|
+
}
|
|
1069
|
+
},
|
|
1070
|
+
"node_modules/is-unicode-supported": {
|
|
1071
|
+
"version": "1.3.0",
|
|
1072
|
+
"resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz",
|
|
1073
|
+
"integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==",
|
|
1074
|
+
"dev": true,
|
|
1075
|
+
"engines": {
|
|
1076
|
+
"node": ">=12"
|
|
1077
|
+
},
|
|
1078
|
+
"funding": {
|
|
1079
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1080
|
+
}
|
|
1081
|
+
},
|
|
1082
|
+
"node_modules/isarray": {
|
|
1083
|
+
"version": "1.0.0",
|
|
1084
|
+
"resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
|
|
1085
|
+
"integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
|
|
1086
|
+
"dev": true
|
|
1087
|
+
},
|
|
1088
|
+
"node_modules/isexe": {
|
|
1089
|
+
"version": "2.0.0",
|
|
1090
|
+
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
|
|
1091
|
+
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
|
|
1092
|
+
"dev": true
|
|
1093
|
+
},
|
|
1094
|
+
"node_modules/js-tokens": {
|
|
1095
|
+
"version": "4.0.0",
|
|
1096
|
+
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
|
|
1097
|
+
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
|
|
1098
|
+
"dev": true
|
|
1099
|
+
},
|
|
1100
|
+
"node_modules/json-buffer": {
|
|
1101
|
+
"version": "3.0.1",
|
|
1102
|
+
"resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
|
|
1103
|
+
"integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
|
|
1104
|
+
"dev": true
|
|
1105
|
+
},
|
|
1106
|
+
"node_modules/json-parse-even-better-errors": {
|
|
1107
|
+
"version": "2.3.1",
|
|
1108
|
+
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
|
|
1109
|
+
"integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
|
|
1110
|
+
"dev": true
|
|
1111
|
+
},
|
|
1112
|
+
"node_modules/jsonfile": {
|
|
1113
|
+
"version": "6.1.0",
|
|
1114
|
+
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
|
|
1115
|
+
"integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
|
|
1116
|
+
"dev": true,
|
|
1117
|
+
"dependencies": {
|
|
1118
|
+
"universalify": "^2.0.0"
|
|
1119
|
+
},
|
|
1120
|
+
"optionalDependencies": {
|
|
1121
|
+
"graceful-fs": "^4.1.6"
|
|
1122
|
+
}
|
|
1123
|
+
},
|
|
1124
|
+
"node_modules/keyv": {
|
|
1125
|
+
"version": "4.5.4",
|
|
1126
|
+
"resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
|
|
1127
|
+
"integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
|
|
1128
|
+
"dev": true,
|
|
1129
|
+
"dependencies": {
|
|
1130
|
+
"json-buffer": "3.0.1"
|
|
1131
|
+
}
|
|
1132
|
+
},
|
|
1133
|
+
"node_modules/lilconfig": {
|
|
1134
|
+
"version": "3.1.3",
|
|
1135
|
+
"resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz",
|
|
1136
|
+
"integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==",
|
|
1137
|
+
"dev": true,
|
|
1138
|
+
"engines": {
|
|
1139
|
+
"node": ">=14"
|
|
1140
|
+
},
|
|
1141
|
+
"funding": {
|
|
1142
|
+
"url": "https://github.com/sponsors/antonk52"
|
|
1143
|
+
}
|
|
1144
|
+
},
|
|
1145
|
+
"node_modules/lines-and-columns": {
|
|
1146
|
+
"version": "1.2.4",
|
|
1147
|
+
"resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
|
|
1148
|
+
"integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
|
|
1149
|
+
"dev": true
|
|
1150
|
+
},
|
|
1151
|
+
"node_modules/locate-path": {
|
|
1152
|
+
"version": "7.2.0",
|
|
1153
|
+
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz",
|
|
1154
|
+
"integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==",
|
|
1155
|
+
"dev": true,
|
|
1156
|
+
"dependencies": {
|
|
1157
|
+
"p-locate": "^6.0.0"
|
|
1158
|
+
},
|
|
1159
|
+
"engines": {
|
|
1160
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
1161
|
+
},
|
|
1162
|
+
"funding": {
|
|
1163
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1164
|
+
}
|
|
1165
|
+
},
|
|
1166
|
+
"node_modules/log-symbols": {
|
|
1167
|
+
"version": "5.1.0",
|
|
1168
|
+
"resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-5.1.0.tgz",
|
|
1169
|
+
"integrity": "sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==",
|
|
1170
|
+
"dev": true,
|
|
1171
|
+
"dependencies": {
|
|
1172
|
+
"chalk": "^5.0.0",
|
|
1173
|
+
"is-unicode-supported": "^1.1.0"
|
|
1174
|
+
},
|
|
1175
|
+
"engines": {
|
|
1176
|
+
"node": ">=12"
|
|
1177
|
+
},
|
|
1178
|
+
"funding": {
|
|
1179
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1180
|
+
}
|
|
1181
|
+
},
|
|
1182
|
+
"node_modules/lowercase-keys": {
|
|
1183
|
+
"version": "3.0.0",
|
|
1184
|
+
"resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz",
|
|
1185
|
+
"integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==",
|
|
1186
|
+
"dev": true,
|
|
1187
|
+
"engines": {
|
|
1188
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
1189
|
+
},
|
|
1190
|
+
"funding": {
|
|
1191
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1192
|
+
}
|
|
1193
|
+
},
|
|
1194
|
+
"node_modules/lru-cache": {
|
|
1195
|
+
"version": "6.0.0",
|
|
1196
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
|
|
1197
|
+
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
|
|
1198
|
+
"dev": true,
|
|
1199
|
+
"dependencies": {
|
|
1200
|
+
"yallist": "^4.0.0"
|
|
1201
|
+
},
|
|
1202
|
+
"engines": {
|
|
1203
|
+
"node": ">=10"
|
|
1204
|
+
}
|
|
1205
|
+
},
|
|
1206
|
+
"node_modules/make-dir": {
|
|
1207
|
+
"version": "1.3.0",
|
|
1208
|
+
"resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz",
|
|
1209
|
+
"integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==",
|
|
1210
|
+
"dev": true,
|
|
1211
|
+
"dependencies": {
|
|
1212
|
+
"pify": "^3.0.0"
|
|
1213
|
+
},
|
|
1214
|
+
"engines": {
|
|
1215
|
+
"node": ">=4"
|
|
1216
|
+
}
|
|
1217
|
+
},
|
|
1218
|
+
"node_modules/make-dir/node_modules/pify": {
|
|
1219
|
+
"version": "3.0.0",
|
|
1220
|
+
"resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
|
|
1221
|
+
"integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==",
|
|
1222
|
+
"dev": true,
|
|
1223
|
+
"engines": {
|
|
1224
|
+
"node": ">=4"
|
|
1225
|
+
}
|
|
1226
|
+
},
|
|
1227
|
+
"node_modules/mimic-response": {
|
|
1228
|
+
"version": "4.0.0",
|
|
1229
|
+
"resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz",
|
|
1230
|
+
"integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==",
|
|
1231
|
+
"dev": true,
|
|
1232
|
+
"engines": {
|
|
1233
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
1234
|
+
},
|
|
1235
|
+
"funding": {
|
|
1236
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1237
|
+
}
|
|
1238
|
+
},
|
|
1239
|
+
"node_modules/ms": {
|
|
1240
|
+
"version": "2.1.3",
|
|
1241
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
1242
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
1243
|
+
"dev": true
|
|
1244
|
+
},
|
|
1245
|
+
"node_modules/nanoid": {
|
|
1246
|
+
"version": "3.3.11",
|
|
1247
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
|
|
1248
|
+
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
|
|
1249
|
+
"dev": true,
|
|
1250
|
+
"funding": [
|
|
1251
|
+
{
|
|
1252
|
+
"type": "github",
|
|
1253
|
+
"url": "https://github.com/sponsors/ai"
|
|
1254
|
+
}
|
|
1255
|
+
],
|
|
1256
|
+
"bin": {
|
|
1257
|
+
"nanoid": "bin/nanoid.cjs"
|
|
1258
|
+
},
|
|
1259
|
+
"engines": {
|
|
1260
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
1261
|
+
}
|
|
1262
|
+
},
|
|
1263
|
+
"node_modules/node-releases": {
|
|
1264
|
+
"version": "2.0.19",
|
|
1265
|
+
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz",
|
|
1266
|
+
"integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==",
|
|
1267
|
+
"dev": true
|
|
1268
|
+
},
|
|
1269
|
+
"node_modules/normalize-package-data": {
|
|
1270
|
+
"version": "3.0.3",
|
|
1271
|
+
"resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz",
|
|
1272
|
+
"integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==",
|
|
1273
|
+
"dev": true,
|
|
1274
|
+
"dependencies": {
|
|
1275
|
+
"hosted-git-info": "^4.0.1",
|
|
1276
|
+
"is-core-module": "^2.5.0",
|
|
1277
|
+
"semver": "^7.3.4",
|
|
1278
|
+
"validate-npm-package-license": "^3.0.1"
|
|
1279
|
+
},
|
|
1280
|
+
"engines": {
|
|
1281
|
+
"node": ">=10"
|
|
1282
|
+
}
|
|
1283
|
+
},
|
|
1284
|
+
"node_modules/normalize-path": {
|
|
1285
|
+
"version": "3.0.0",
|
|
1286
|
+
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
|
|
1287
|
+
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
|
|
1288
|
+
"dev": true,
|
|
1289
|
+
"engines": {
|
|
1290
|
+
"node": ">=0.10.0"
|
|
1291
|
+
}
|
|
1292
|
+
},
|
|
1293
|
+
"node_modules/normalize-range": {
|
|
1294
|
+
"version": "0.1.2",
|
|
1295
|
+
"resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
|
|
1296
|
+
"integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==",
|
|
1297
|
+
"dev": true,
|
|
1298
|
+
"engines": {
|
|
1299
|
+
"node": ">=0.10.0"
|
|
1300
|
+
}
|
|
1301
|
+
},
|
|
1302
|
+
"node_modules/normalize-url": {
|
|
1303
|
+
"version": "8.0.2",
|
|
1304
|
+
"resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.2.tgz",
|
|
1305
|
+
"integrity": "sha512-Ee/R3SyN4BuynXcnTaekmaVdbDAEiNrHqjQIA37mHU8G9pf7aaAD4ZX3XjBLo6rsdcxA/gtkcNYZLt30ACgynw==",
|
|
1306
|
+
"dev": true,
|
|
1307
|
+
"engines": {
|
|
1308
|
+
"node": ">=14.16"
|
|
1309
|
+
},
|
|
1310
|
+
"funding": {
|
|
1311
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1312
|
+
}
|
|
1313
|
+
},
|
|
1314
|
+
"node_modules/npm-check-updates": {
|
|
1315
|
+
"version": "18.0.1",
|
|
1316
|
+
"resolved": "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-18.0.1.tgz",
|
|
1317
|
+
"integrity": "sha512-MO7mLp/8nm6kZNLLyPgz4gHmr9tLoU+pWPLdXuGAx+oZydBHkHWN0ibTonsrfwC2WEQNIQxuZagYwB67JQpAuw==",
|
|
1318
|
+
"optional": true,
|
|
1319
|
+
"bin": {
|
|
1320
|
+
"ncu": "build/cli.js",
|
|
1321
|
+
"npm-check-updates": "build/cli.js"
|
|
1322
|
+
},
|
|
1323
|
+
"engines": {
|
|
1324
|
+
"node": "^18.18.0 || >=20.0.0",
|
|
1325
|
+
"npm": ">=8.12.1"
|
|
1326
|
+
}
|
|
1327
|
+
},
|
|
1328
|
+
"node_modules/object-assign": {
|
|
1329
|
+
"version": "4.1.1",
|
|
1330
|
+
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
|
1331
|
+
"integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
|
|
1332
|
+
"dev": true,
|
|
1333
|
+
"engines": {
|
|
1334
|
+
"node": ">=0.10.0"
|
|
1335
|
+
}
|
|
1336
|
+
},
|
|
1337
|
+
"node_modules/once": {
|
|
1338
|
+
"version": "1.4.0",
|
|
1339
|
+
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
|
1340
|
+
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
|
|
1341
|
+
"dev": true,
|
|
1342
|
+
"dependencies": {
|
|
1343
|
+
"wrappy": "1"
|
|
1344
|
+
}
|
|
1345
|
+
},
|
|
1346
|
+
"node_modules/p-cancelable": {
|
|
1347
|
+
"version": "3.0.0",
|
|
1348
|
+
"resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz",
|
|
1349
|
+
"integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==",
|
|
1350
|
+
"dev": true,
|
|
1351
|
+
"engines": {
|
|
1352
|
+
"node": ">=12.20"
|
|
1353
|
+
}
|
|
1354
|
+
},
|
|
1355
|
+
"node_modules/p-limit": {
|
|
1356
|
+
"version": "4.0.0",
|
|
1357
|
+
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz",
|
|
1358
|
+
"integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==",
|
|
1359
|
+
"dev": true,
|
|
1360
|
+
"dependencies": {
|
|
1361
|
+
"yocto-queue": "^1.0.0"
|
|
1362
|
+
},
|
|
1363
|
+
"engines": {
|
|
1364
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
1365
|
+
},
|
|
1366
|
+
"funding": {
|
|
1367
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1368
|
+
}
|
|
1369
|
+
},
|
|
1370
|
+
"node_modules/p-locate": {
|
|
1371
|
+
"version": "6.0.0",
|
|
1372
|
+
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz",
|
|
1373
|
+
"integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==",
|
|
1374
|
+
"dev": true,
|
|
1375
|
+
"dependencies": {
|
|
1376
|
+
"p-limit": "^4.0.0"
|
|
1377
|
+
},
|
|
1378
|
+
"engines": {
|
|
1379
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
1380
|
+
},
|
|
1381
|
+
"funding": {
|
|
1382
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1383
|
+
}
|
|
1384
|
+
},
|
|
1385
|
+
"node_modules/parse-json": {
|
|
1386
|
+
"version": "5.2.0",
|
|
1387
|
+
"resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
|
|
1388
|
+
"integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
|
|
1389
|
+
"dev": true,
|
|
1390
|
+
"dependencies": {
|
|
1391
|
+
"@babel/code-frame": "^7.0.0",
|
|
1392
|
+
"error-ex": "^1.3.1",
|
|
1393
|
+
"json-parse-even-better-errors": "^2.3.0",
|
|
1394
|
+
"lines-and-columns": "^1.1.6"
|
|
1395
|
+
},
|
|
1396
|
+
"engines": {
|
|
1397
|
+
"node": ">=8"
|
|
1398
|
+
},
|
|
1399
|
+
"funding": {
|
|
1400
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1401
|
+
}
|
|
1402
|
+
},
|
|
1403
|
+
"node_modules/path-exists": {
|
|
1404
|
+
"version": "5.0.0",
|
|
1405
|
+
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz",
|
|
1406
|
+
"integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==",
|
|
1407
|
+
"dev": true,
|
|
1408
|
+
"engines": {
|
|
1409
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
1410
|
+
}
|
|
1411
|
+
},
|
|
1412
|
+
"node_modules/path-key": {
|
|
1413
|
+
"version": "3.1.1",
|
|
1414
|
+
"resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
|
|
1415
|
+
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
|
|
1416
|
+
"dev": true,
|
|
1417
|
+
"engines": {
|
|
1418
|
+
"node": ">=8"
|
|
1419
|
+
}
|
|
1420
|
+
},
|
|
1421
|
+
"node_modules/pend": {
|
|
1422
|
+
"version": "1.2.0",
|
|
1423
|
+
"resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
|
|
1424
|
+
"integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==",
|
|
1425
|
+
"dev": true
|
|
1426
|
+
},
|
|
1427
|
+
"node_modules/picocolors": {
|
|
1428
|
+
"version": "1.1.1",
|
|
1429
|
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
1430
|
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
1431
|
+
"dev": true
|
|
1432
|
+
},
|
|
1433
|
+
"node_modules/picomatch": {
|
|
1434
|
+
"version": "2.3.1",
|
|
1435
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
|
1436
|
+
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
|
1437
|
+
"dev": true,
|
|
1438
|
+
"engines": {
|
|
1439
|
+
"node": ">=8.6"
|
|
1440
|
+
},
|
|
1441
|
+
"funding": {
|
|
1442
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
1443
|
+
}
|
|
1444
|
+
},
|
|
1445
|
+
"node_modules/pify": {
|
|
1446
|
+
"version": "2.3.0",
|
|
1447
|
+
"resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
|
|
1448
|
+
"integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
|
|
1449
|
+
"dev": true,
|
|
1450
|
+
"engines": {
|
|
1451
|
+
"node": ">=0.10.0"
|
|
1452
|
+
}
|
|
1453
|
+
},
|
|
1454
|
+
"node_modules/pinkie": {
|
|
1455
|
+
"version": "2.0.4",
|
|
1456
|
+
"resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz",
|
|
1457
|
+
"integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==",
|
|
1458
|
+
"dev": true,
|
|
1459
|
+
"engines": {
|
|
1460
|
+
"node": ">=0.10.0"
|
|
1461
|
+
}
|
|
1462
|
+
},
|
|
1463
|
+
"node_modules/pinkie-promise": {
|
|
1464
|
+
"version": "2.0.1",
|
|
1465
|
+
"resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
|
|
1466
|
+
"integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==",
|
|
1467
|
+
"dev": true,
|
|
1468
|
+
"dependencies": {
|
|
1469
|
+
"pinkie": "^2.0.0"
|
|
1470
|
+
},
|
|
1471
|
+
"engines": {
|
|
1472
|
+
"node": ">=0.10.0"
|
|
1473
|
+
}
|
|
1474
|
+
},
|
|
1475
|
+
"node_modules/postcss": {
|
|
1476
|
+
"version": "8.5.6",
|
|
1477
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
|
|
1478
|
+
"integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
|
|
1479
|
+
"dev": true,
|
|
1480
|
+
"funding": [
|
|
1481
|
+
{
|
|
1482
|
+
"type": "opencollective",
|
|
1483
|
+
"url": "https://opencollective.com/postcss/"
|
|
1484
|
+
},
|
|
1485
|
+
{
|
|
1486
|
+
"type": "tidelift",
|
|
1487
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
1488
|
+
},
|
|
1489
|
+
{
|
|
1490
|
+
"type": "github",
|
|
1491
|
+
"url": "https://github.com/sponsors/ai"
|
|
1492
|
+
}
|
|
1493
|
+
],
|
|
1494
|
+
"dependencies": {
|
|
1495
|
+
"nanoid": "^3.3.11",
|
|
1496
|
+
"picocolors": "^1.1.1",
|
|
1497
|
+
"source-map-js": "^1.2.1"
|
|
1498
|
+
},
|
|
1499
|
+
"engines": {
|
|
1500
|
+
"node": "^10 || ^12 || >=14"
|
|
1501
|
+
}
|
|
1502
|
+
},
|
|
1503
|
+
"node_modules/postcss-cli": {
|
|
1504
|
+
"version": "11.0.1",
|
|
1505
|
+
"resolved": "https://registry.npmjs.org/postcss-cli/-/postcss-cli-11.0.1.tgz",
|
|
1506
|
+
"integrity": "sha512-0UnkNPSayHKRe/tc2YGW6XnSqqOA9eqpiRMgRlV1S6HdGi16vwJBx7lviARzbV1HpQHqLLRH3o8vTcB0cLc+5g==",
|
|
1507
|
+
"dev": true,
|
|
1508
|
+
"dependencies": {
|
|
1509
|
+
"chokidar": "^3.3.0",
|
|
1510
|
+
"dependency-graph": "^1.0.0",
|
|
1511
|
+
"fs-extra": "^11.0.0",
|
|
1512
|
+
"picocolors": "^1.0.0",
|
|
1513
|
+
"postcss-load-config": "^5.0.0",
|
|
1514
|
+
"postcss-reporter": "^7.0.0",
|
|
1515
|
+
"pretty-hrtime": "^1.0.3",
|
|
1516
|
+
"read-cache": "^1.0.0",
|
|
1517
|
+
"slash": "^5.0.0",
|
|
1518
|
+
"tinyglobby": "^0.2.12",
|
|
1519
|
+
"yargs": "^17.0.0"
|
|
1520
|
+
},
|
|
1521
|
+
"bin": {
|
|
1522
|
+
"postcss": "index.js"
|
|
1523
|
+
},
|
|
1524
|
+
"engines": {
|
|
1525
|
+
"node": ">=18"
|
|
1526
|
+
},
|
|
1527
|
+
"peerDependencies": {
|
|
1528
|
+
"postcss": "^8.0.0"
|
|
1529
|
+
}
|
|
1530
|
+
},
|
|
1531
|
+
"node_modules/postcss-load-config": {
|
|
1532
|
+
"version": "5.1.0",
|
|
1533
|
+
"resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-5.1.0.tgz",
|
|
1534
|
+
"integrity": "sha512-G5AJ+IX0aD0dygOE0yFZQ/huFFMSNneyfp0e3/bT05a8OfPC5FUoZRPfGijUdGOJNMewJiwzcHJXFafFzeKFVA==",
|
|
1535
|
+
"dev": true,
|
|
1536
|
+
"funding": [
|
|
1537
|
+
{
|
|
1538
|
+
"type": "opencollective",
|
|
1539
|
+
"url": "https://opencollective.com/postcss/"
|
|
1540
|
+
},
|
|
1541
|
+
{
|
|
1542
|
+
"type": "github",
|
|
1543
|
+
"url": "https://github.com/sponsors/ai"
|
|
1544
|
+
}
|
|
1545
|
+
],
|
|
1546
|
+
"dependencies": {
|
|
1547
|
+
"lilconfig": "^3.1.1",
|
|
1548
|
+
"yaml": "^2.4.2"
|
|
1549
|
+
},
|
|
1550
|
+
"engines": {
|
|
1551
|
+
"node": ">= 18"
|
|
1552
|
+
},
|
|
1553
|
+
"peerDependencies": {
|
|
1554
|
+
"jiti": ">=1.21.0",
|
|
1555
|
+
"postcss": ">=8.0.9",
|
|
1556
|
+
"tsx": "^4.8.1"
|
|
1557
|
+
},
|
|
1558
|
+
"peerDependenciesMeta": {
|
|
1559
|
+
"jiti": {
|
|
1560
|
+
"optional": true
|
|
1561
|
+
},
|
|
1562
|
+
"postcss": {
|
|
1563
|
+
"optional": true
|
|
1564
|
+
},
|
|
1565
|
+
"tsx": {
|
|
1566
|
+
"optional": true
|
|
1567
|
+
}
|
|
1568
|
+
}
|
|
1569
|
+
},
|
|
1570
|
+
"node_modules/postcss-reporter": {
|
|
1571
|
+
"version": "7.1.0",
|
|
1572
|
+
"resolved": "https://registry.npmjs.org/postcss-reporter/-/postcss-reporter-7.1.0.tgz",
|
|
1573
|
+
"integrity": "sha512-/eoEylGWyy6/DOiMP5lmFRdmDKThqgn7D6hP2dXKJI/0rJSO1ADFNngZfDzxL0YAxFvws+Rtpuji1YIHj4mySA==",
|
|
1574
|
+
"dev": true,
|
|
1575
|
+
"funding": [
|
|
1576
|
+
{
|
|
1577
|
+
"type": "opencollective",
|
|
1578
|
+
"url": "https://opencollective.com/postcss/"
|
|
1579
|
+
},
|
|
1580
|
+
{
|
|
1581
|
+
"type": "github",
|
|
1582
|
+
"url": "https://github.com/sponsors/ai"
|
|
1583
|
+
}
|
|
1584
|
+
],
|
|
1585
|
+
"dependencies": {
|
|
1586
|
+
"picocolors": "^1.0.0",
|
|
1587
|
+
"thenby": "^1.3.4"
|
|
1588
|
+
},
|
|
1589
|
+
"engines": {
|
|
1590
|
+
"node": ">=10"
|
|
1591
|
+
},
|
|
1592
|
+
"peerDependencies": {
|
|
1593
|
+
"postcss": "^8.1.0"
|
|
1594
|
+
}
|
|
1595
|
+
},
|
|
1596
|
+
"node_modules/postcss-value-parser": {
|
|
1597
|
+
"version": "4.2.0",
|
|
1598
|
+
"resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
|
|
1599
|
+
"integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
|
|
1600
|
+
"dev": true
|
|
1601
|
+
},
|
|
1602
|
+
"node_modules/pretty-hrtime": {
|
|
1603
|
+
"version": "1.0.3",
|
|
1604
|
+
"resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz",
|
|
1605
|
+
"integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==",
|
|
1606
|
+
"dev": true,
|
|
1607
|
+
"engines": {
|
|
1608
|
+
"node": ">= 0.8"
|
|
1609
|
+
}
|
|
1610
|
+
},
|
|
1611
|
+
"node_modules/process-nextick-args": {
|
|
1612
|
+
"version": "2.0.1",
|
|
1613
|
+
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
|
|
1614
|
+
"integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
|
|
1615
|
+
"dev": true
|
|
1616
|
+
},
|
|
1617
|
+
"node_modules/quick-lru": {
|
|
1618
|
+
"version": "5.1.1",
|
|
1619
|
+
"resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz",
|
|
1620
|
+
"integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==",
|
|
1621
|
+
"dev": true,
|
|
1622
|
+
"engines": {
|
|
1623
|
+
"node": ">=10"
|
|
1624
|
+
},
|
|
1625
|
+
"funding": {
|
|
1626
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1627
|
+
}
|
|
1628
|
+
},
|
|
1629
|
+
"node_modules/read-cache": {
|
|
1630
|
+
"version": "1.0.0",
|
|
1631
|
+
"resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz",
|
|
1632
|
+
"integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
|
|
1633
|
+
"dev": true,
|
|
1634
|
+
"dependencies": {
|
|
1635
|
+
"pify": "^2.3.0"
|
|
1636
|
+
}
|
|
1637
|
+
},
|
|
1638
|
+
"node_modules/read-pkg": {
|
|
1639
|
+
"version": "7.1.0",
|
|
1640
|
+
"resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-7.1.0.tgz",
|
|
1641
|
+
"integrity": "sha512-5iOehe+WF75IccPc30bWTbpdDQLOCc3Uu8bi3Dte3Eueij81yx1Mrufk8qBx/YAbR4uL1FdUr+7BKXDwEtisXg==",
|
|
1642
|
+
"dev": true,
|
|
1643
|
+
"dependencies": {
|
|
1644
|
+
"@types/normalize-package-data": "^2.4.1",
|
|
1645
|
+
"normalize-package-data": "^3.0.2",
|
|
1646
|
+
"parse-json": "^5.2.0",
|
|
1647
|
+
"type-fest": "^2.0.0"
|
|
1648
|
+
},
|
|
1649
|
+
"engines": {
|
|
1650
|
+
"node": ">=12.20"
|
|
1651
|
+
},
|
|
1652
|
+
"funding": {
|
|
1653
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1654
|
+
}
|
|
1655
|
+
},
|
|
1656
|
+
"node_modules/read-pkg-up": {
|
|
1657
|
+
"version": "9.1.0",
|
|
1658
|
+
"resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-9.1.0.tgz",
|
|
1659
|
+
"integrity": "sha512-vaMRR1AC1nrd5CQM0PhlRsO5oc2AAigqr7cCrZ/MW/Rsaflz4RlgzkpL4qoU/z1F6wrbd85iFv1OQj/y5RdGvg==",
|
|
1660
|
+
"dev": true,
|
|
1661
|
+
"dependencies": {
|
|
1662
|
+
"find-up": "^6.3.0",
|
|
1663
|
+
"read-pkg": "^7.1.0",
|
|
1664
|
+
"type-fest": "^2.5.0"
|
|
1665
|
+
},
|
|
1666
|
+
"engines": {
|
|
1667
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
1668
|
+
},
|
|
1669
|
+
"funding": {
|
|
1670
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1671
|
+
}
|
|
1672
|
+
},
|
|
1673
|
+
"node_modules/readable-stream": {
|
|
1674
|
+
"version": "2.3.8",
|
|
1675
|
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
|
|
1676
|
+
"integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
|
|
1677
|
+
"dev": true,
|
|
1678
|
+
"dependencies": {
|
|
1679
|
+
"core-util-is": "~1.0.0",
|
|
1680
|
+
"inherits": "~2.0.3",
|
|
1681
|
+
"isarray": "~1.0.0",
|
|
1682
|
+
"process-nextick-args": "~2.0.0",
|
|
1683
|
+
"safe-buffer": "~5.1.1",
|
|
1684
|
+
"string_decoder": "~1.1.1",
|
|
1685
|
+
"util-deprecate": "~1.0.1"
|
|
1686
|
+
}
|
|
1687
|
+
},
|
|
1688
|
+
"node_modules/readable-stream/node_modules/safe-buffer": {
|
|
1689
|
+
"version": "5.1.2",
|
|
1690
|
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
1691
|
+
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
1692
|
+
"dev": true
|
|
1693
|
+
},
|
|
1694
|
+
"node_modules/readdirp": {
|
|
1695
|
+
"version": "3.6.0",
|
|
1696
|
+
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
|
|
1697
|
+
"integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
|
|
1698
|
+
"dev": true,
|
|
1699
|
+
"dependencies": {
|
|
1700
|
+
"picomatch": "^2.2.1"
|
|
1701
|
+
},
|
|
1702
|
+
"engines": {
|
|
1703
|
+
"node": ">=8.10.0"
|
|
1704
|
+
}
|
|
1705
|
+
},
|
|
1706
|
+
"node_modules/require-directory": {
|
|
1707
|
+
"version": "2.1.1",
|
|
1708
|
+
"resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
|
|
1709
|
+
"integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
|
|
1710
|
+
"dev": true,
|
|
1711
|
+
"engines": {
|
|
1712
|
+
"node": ">=0.10.0"
|
|
1713
|
+
}
|
|
1714
|
+
},
|
|
1715
|
+
"node_modules/resolve-alpn": {
|
|
1716
|
+
"version": "1.2.1",
|
|
1717
|
+
"resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz",
|
|
1718
|
+
"integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==",
|
|
1719
|
+
"dev": true
|
|
1720
|
+
},
|
|
1721
|
+
"node_modules/responselike": {
|
|
1722
|
+
"version": "3.0.0",
|
|
1723
|
+
"resolved": "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz",
|
|
1724
|
+
"integrity": "sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==",
|
|
1725
|
+
"dev": true,
|
|
1726
|
+
"dependencies": {
|
|
1727
|
+
"lowercase-keys": "^3.0.0"
|
|
1728
|
+
},
|
|
1729
|
+
"engines": {
|
|
1730
|
+
"node": ">=14.16"
|
|
1731
|
+
},
|
|
1732
|
+
"funding": {
|
|
1733
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1734
|
+
}
|
|
1735
|
+
},
|
|
1736
|
+
"node_modules/rtlcss": {
|
|
1737
|
+
"version": "4.3.0",
|
|
1738
|
+
"resolved": "https://registry.npmjs.org/rtlcss/-/rtlcss-4.3.0.tgz",
|
|
1739
|
+
"integrity": "sha512-FI+pHEn7Wc4NqKXMXFM+VAYKEj/mRIcW4h24YVwVtyjI+EqGrLc2Hx/Ny0lrZ21cBWU2goLy36eqMcNj3AQJig==",
|
|
1740
|
+
"dev": true,
|
|
1741
|
+
"dependencies": {
|
|
1742
|
+
"escalade": "^3.1.1",
|
|
1743
|
+
"picocolors": "^1.0.0",
|
|
1744
|
+
"postcss": "^8.4.21",
|
|
1745
|
+
"strip-json-comments": "^3.1.1"
|
|
1746
|
+
},
|
|
1747
|
+
"bin": {
|
|
1748
|
+
"rtlcss": "bin/rtlcss.js"
|
|
1749
|
+
},
|
|
1750
|
+
"engines": {
|
|
1751
|
+
"node": ">=12.0.0"
|
|
1752
|
+
}
|
|
1753
|
+
},
|
|
1754
|
+
"node_modules/safe-buffer": {
|
|
1755
|
+
"version": "5.2.1",
|
|
1756
|
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
|
1757
|
+
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
|
|
1758
|
+
"dev": true,
|
|
1759
|
+
"funding": [
|
|
1760
|
+
{
|
|
1761
|
+
"type": "github",
|
|
1762
|
+
"url": "https://github.com/sponsors/feross"
|
|
1763
|
+
},
|
|
1764
|
+
{
|
|
1765
|
+
"type": "patreon",
|
|
1766
|
+
"url": "https://www.patreon.com/feross"
|
|
1767
|
+
},
|
|
1768
|
+
{
|
|
1769
|
+
"type": "consulting",
|
|
1770
|
+
"url": "https://feross.org/support"
|
|
1771
|
+
}
|
|
1772
|
+
]
|
|
1773
|
+
},
|
|
1774
|
+
"node_modules/seek-bzip": {
|
|
1775
|
+
"version": "1.0.6",
|
|
1776
|
+
"resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz",
|
|
1777
|
+
"integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==",
|
|
1778
|
+
"dev": true,
|
|
1779
|
+
"dependencies": {
|
|
1780
|
+
"commander": "^2.8.1"
|
|
1781
|
+
},
|
|
1782
|
+
"bin": {
|
|
1783
|
+
"seek-bunzip": "bin/seek-bunzip",
|
|
1784
|
+
"seek-table": "bin/seek-bzip-table"
|
|
1785
|
+
}
|
|
1786
|
+
},
|
|
1787
|
+
"node_modules/semver": {
|
|
1788
|
+
"version": "7.7.2",
|
|
1789
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz",
|
|
1790
|
+
"integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==",
|
|
1791
|
+
"dev": true,
|
|
1792
|
+
"bin": {
|
|
1793
|
+
"semver": "bin/semver.js"
|
|
1794
|
+
},
|
|
1795
|
+
"engines": {
|
|
1796
|
+
"node": ">=10"
|
|
1797
|
+
}
|
|
1798
|
+
},
|
|
1799
|
+
"node_modules/shebang-command": {
|
|
1800
|
+
"version": "2.0.0",
|
|
1801
|
+
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
|
|
1802
|
+
"integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
|
|
1803
|
+
"dev": true,
|
|
1804
|
+
"dependencies": {
|
|
1805
|
+
"shebang-regex": "^3.0.0"
|
|
1806
|
+
},
|
|
1807
|
+
"engines": {
|
|
1808
|
+
"node": ">=8"
|
|
1809
|
+
}
|
|
1810
|
+
},
|
|
1811
|
+
"node_modules/shebang-regex": {
|
|
1812
|
+
"version": "3.0.0",
|
|
1813
|
+
"resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
|
|
1814
|
+
"integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
|
|
1815
|
+
"dev": true,
|
|
1816
|
+
"engines": {
|
|
1817
|
+
"node": ">=8"
|
|
1818
|
+
}
|
|
1819
|
+
},
|
|
1820
|
+
"node_modules/slash": {
|
|
1821
|
+
"version": "5.1.0",
|
|
1822
|
+
"resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz",
|
|
1823
|
+
"integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==",
|
|
1824
|
+
"dev": true,
|
|
1825
|
+
"engines": {
|
|
1826
|
+
"node": ">=14.16"
|
|
1827
|
+
},
|
|
1828
|
+
"funding": {
|
|
1829
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1830
|
+
}
|
|
1831
|
+
},
|
|
1832
|
+
"node_modules/source-map-js": {
|
|
1833
|
+
"version": "1.2.1",
|
|
1834
|
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
1835
|
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
1836
|
+
"dev": true,
|
|
1837
|
+
"engines": {
|
|
1838
|
+
"node": ">=0.10.0"
|
|
1839
|
+
}
|
|
1840
|
+
},
|
|
1841
|
+
"node_modules/spdx-correct": {
|
|
1842
|
+
"version": "3.2.0",
|
|
1843
|
+
"resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz",
|
|
1844
|
+
"integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==",
|
|
1845
|
+
"dev": true,
|
|
1846
|
+
"dependencies": {
|
|
1847
|
+
"spdx-expression-parse": "^3.0.0",
|
|
1848
|
+
"spdx-license-ids": "^3.0.0"
|
|
1849
|
+
}
|
|
1850
|
+
},
|
|
1851
|
+
"node_modules/spdx-exceptions": {
|
|
1852
|
+
"version": "2.5.0",
|
|
1853
|
+
"resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz",
|
|
1854
|
+
"integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==",
|
|
1855
|
+
"dev": true
|
|
1856
|
+
},
|
|
1857
|
+
"node_modules/spdx-expression-parse": {
|
|
1858
|
+
"version": "3.0.1",
|
|
1859
|
+
"resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
|
|
1860
|
+
"integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
|
|
1861
|
+
"dev": true,
|
|
1862
|
+
"dependencies": {
|
|
1863
|
+
"spdx-exceptions": "^2.1.0",
|
|
1864
|
+
"spdx-license-ids": "^3.0.0"
|
|
1865
|
+
}
|
|
1866
|
+
},
|
|
1867
|
+
"node_modules/spdx-license-ids": {
|
|
1868
|
+
"version": "3.0.21",
|
|
1869
|
+
"resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.21.tgz",
|
|
1870
|
+
"integrity": "sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==",
|
|
1871
|
+
"dev": true
|
|
1872
|
+
},
|
|
1873
|
+
"node_modules/string_decoder": {
|
|
1874
|
+
"version": "1.1.1",
|
|
1875
|
+
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
|
1876
|
+
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
|
1877
|
+
"dev": true,
|
|
1878
|
+
"dependencies": {
|
|
1879
|
+
"safe-buffer": "~5.1.0"
|
|
1880
|
+
}
|
|
1881
|
+
},
|
|
1882
|
+
"node_modules/string_decoder/node_modules/safe-buffer": {
|
|
1883
|
+
"version": "5.1.2",
|
|
1884
|
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
1885
|
+
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
1886
|
+
"dev": true
|
|
1887
|
+
},
|
|
1888
|
+
"node_modules/string-width": {
|
|
1889
|
+
"version": "4.2.3",
|
|
1890
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
1891
|
+
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
1892
|
+
"dev": true,
|
|
1893
|
+
"dependencies": {
|
|
1894
|
+
"emoji-regex": "^8.0.0",
|
|
1895
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
1896
|
+
"strip-ansi": "^6.0.1"
|
|
1897
|
+
},
|
|
1898
|
+
"engines": {
|
|
1899
|
+
"node": ">=8"
|
|
1900
|
+
}
|
|
1901
|
+
},
|
|
1902
|
+
"node_modules/strip-ansi": {
|
|
1903
|
+
"version": "6.0.1",
|
|
1904
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
1905
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
1906
|
+
"dev": true,
|
|
1907
|
+
"dependencies": {
|
|
1908
|
+
"ansi-regex": "^5.0.1"
|
|
1909
|
+
},
|
|
1910
|
+
"engines": {
|
|
1911
|
+
"node": ">=8"
|
|
1912
|
+
}
|
|
1913
|
+
},
|
|
1914
|
+
"node_modules/strip-dirs": {
|
|
1915
|
+
"version": "2.1.0",
|
|
1916
|
+
"resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz",
|
|
1917
|
+
"integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==",
|
|
1918
|
+
"dev": true,
|
|
1919
|
+
"dependencies": {
|
|
1920
|
+
"is-natural-number": "^4.0.1"
|
|
1921
|
+
}
|
|
1922
|
+
},
|
|
1923
|
+
"node_modules/strip-json-comments": {
|
|
1924
|
+
"version": "3.1.1",
|
|
1925
|
+
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
|
|
1926
|
+
"integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
|
|
1927
|
+
"dev": true,
|
|
1928
|
+
"engines": {
|
|
1929
|
+
"node": ">=8"
|
|
1930
|
+
},
|
|
1931
|
+
"funding": {
|
|
1932
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1933
|
+
}
|
|
1934
|
+
},
|
|
1935
|
+
"node_modules/tar-stream": {
|
|
1936
|
+
"version": "1.6.2",
|
|
1937
|
+
"resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz",
|
|
1938
|
+
"integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==",
|
|
1939
|
+
"dev": true,
|
|
1940
|
+
"dependencies": {
|
|
1941
|
+
"bl": "^1.0.0",
|
|
1942
|
+
"buffer-alloc": "^1.2.0",
|
|
1943
|
+
"end-of-stream": "^1.0.0",
|
|
1944
|
+
"fs-constants": "^1.0.0",
|
|
1945
|
+
"readable-stream": "^2.3.0",
|
|
1946
|
+
"to-buffer": "^1.1.1",
|
|
1947
|
+
"xtend": "^4.0.0"
|
|
1948
|
+
},
|
|
1949
|
+
"engines": {
|
|
1950
|
+
"node": ">= 0.8.0"
|
|
1951
|
+
}
|
|
1952
|
+
},
|
|
1953
|
+
"node_modules/temp-dir": {
|
|
1954
|
+
"version": "3.0.0",
|
|
1955
|
+
"resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz",
|
|
1956
|
+
"integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==",
|
|
1957
|
+
"dev": true,
|
|
1958
|
+
"engines": {
|
|
1959
|
+
"node": ">=14.16"
|
|
1960
|
+
}
|
|
1961
|
+
},
|
|
1962
|
+
"node_modules/tempy": {
|
|
1963
|
+
"version": "3.1.0",
|
|
1964
|
+
"resolved": "https://registry.npmjs.org/tempy/-/tempy-3.1.0.tgz",
|
|
1965
|
+
"integrity": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==",
|
|
1966
|
+
"dev": true,
|
|
1967
|
+
"dependencies": {
|
|
1968
|
+
"is-stream": "^3.0.0",
|
|
1969
|
+
"temp-dir": "^3.0.0",
|
|
1970
|
+
"type-fest": "^2.12.2",
|
|
1971
|
+
"unique-string": "^3.0.0"
|
|
1972
|
+
},
|
|
1973
|
+
"engines": {
|
|
1974
|
+
"node": ">=14.16"
|
|
1975
|
+
},
|
|
1976
|
+
"funding": {
|
|
1977
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1978
|
+
}
|
|
1979
|
+
},
|
|
1980
|
+
"node_modules/tempy/node_modules/is-stream": {
|
|
1981
|
+
"version": "3.0.0",
|
|
1982
|
+
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz",
|
|
1983
|
+
"integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==",
|
|
1984
|
+
"dev": true,
|
|
1985
|
+
"engines": {
|
|
1986
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
1987
|
+
},
|
|
1988
|
+
"funding": {
|
|
1989
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1990
|
+
}
|
|
1991
|
+
},
|
|
1992
|
+
"node_modules/thenby": {
|
|
1993
|
+
"version": "1.3.4",
|
|
1994
|
+
"resolved": "https://registry.npmjs.org/thenby/-/thenby-1.3.4.tgz",
|
|
1995
|
+
"integrity": "sha512-89Gi5raiWA3QZ4b2ePcEwswC3me9JIg+ToSgtE0JWeCynLnLxNr/f9G+xfo9K+Oj4AFdom8YNJjibIARTJmapQ==",
|
|
1996
|
+
"dev": true
|
|
1997
|
+
},
|
|
1998
|
+
"node_modules/through": {
|
|
1999
|
+
"version": "2.3.8",
|
|
2000
|
+
"resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
|
|
2001
|
+
"integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==",
|
|
2002
|
+
"dev": true
|
|
2003
|
+
},
|
|
2004
|
+
"node_modules/tinyglobby": {
|
|
2005
|
+
"version": "0.2.14",
|
|
2006
|
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz",
|
|
2007
|
+
"integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==",
|
|
2008
|
+
"dev": true,
|
|
2009
|
+
"dependencies": {
|
|
2010
|
+
"fdir": "^6.4.4",
|
|
2011
|
+
"picomatch": "^4.0.2"
|
|
2012
|
+
},
|
|
2013
|
+
"engines": {
|
|
2014
|
+
"node": ">=12.0.0"
|
|
2015
|
+
},
|
|
2016
|
+
"funding": {
|
|
2017
|
+
"url": "https://github.com/sponsors/SuperchupuDev"
|
|
2018
|
+
}
|
|
2019
|
+
},
|
|
2020
|
+
"node_modules/tinyglobby/node_modules/fdir": {
|
|
2021
|
+
"version": "6.4.6",
|
|
2022
|
+
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.6.tgz",
|
|
2023
|
+
"integrity": "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==",
|
|
2024
|
+
"dev": true,
|
|
2025
|
+
"peerDependencies": {
|
|
2026
|
+
"picomatch": "^3 || ^4"
|
|
2027
|
+
},
|
|
2028
|
+
"peerDependenciesMeta": {
|
|
2029
|
+
"picomatch": {
|
|
2030
|
+
"optional": true
|
|
2031
|
+
}
|
|
2032
|
+
}
|
|
2033
|
+
},
|
|
2034
|
+
"node_modules/tinyglobby/node_modules/picomatch": {
|
|
2035
|
+
"version": "4.0.2",
|
|
2036
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz",
|
|
2037
|
+
"integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==",
|
|
2038
|
+
"dev": true,
|
|
2039
|
+
"engines": {
|
|
2040
|
+
"node": ">=12"
|
|
2041
|
+
},
|
|
2042
|
+
"funding": {
|
|
2043
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
2044
|
+
}
|
|
2045
|
+
},
|
|
2046
|
+
"node_modules/to-buffer": {
|
|
2047
|
+
"version": "1.2.0",
|
|
2048
|
+
"resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.2.0.tgz",
|
|
2049
|
+
"integrity": "sha512-uM2Zapt+GfaxYhCxKtUn7ktNOjAHL8nthQIQVhvNCjGLe8t+ULQ5i5hyFpMzuRxHkg2nrKNFTQpYDLhzxC3Jew==",
|
|
2050
|
+
"dev": true,
|
|
2051
|
+
"dependencies": {
|
|
2052
|
+
"isarray": "^2.0.5",
|
|
2053
|
+
"safe-buffer": "^5.2.1"
|
|
2054
|
+
},
|
|
2055
|
+
"engines": {
|
|
2056
|
+
"node": ">= 0.4"
|
|
2057
|
+
}
|
|
2058
|
+
},
|
|
2059
|
+
"node_modules/to-buffer/node_modules/isarray": {
|
|
2060
|
+
"version": "2.0.5",
|
|
2061
|
+
"resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
|
|
2062
|
+
"integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==",
|
|
2063
|
+
"dev": true
|
|
2064
|
+
},
|
|
2065
|
+
"node_modules/to-regex-range": {
|
|
2066
|
+
"version": "5.0.1",
|
|
2067
|
+
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
|
2068
|
+
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
|
2069
|
+
"dev": true,
|
|
2070
|
+
"dependencies": {
|
|
2071
|
+
"is-number": "^7.0.0"
|
|
2072
|
+
},
|
|
2073
|
+
"engines": {
|
|
2074
|
+
"node": ">=8.0"
|
|
2075
|
+
}
|
|
2076
|
+
},
|
|
2077
|
+
"node_modules/type-fest": {
|
|
2078
|
+
"version": "2.19.0",
|
|
2079
|
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz",
|
|
2080
|
+
"integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==",
|
|
2081
|
+
"dev": true,
|
|
2082
|
+
"engines": {
|
|
2083
|
+
"node": ">=12.20"
|
|
2084
|
+
},
|
|
2085
|
+
"funding": {
|
|
2086
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
2087
|
+
}
|
|
2088
|
+
},
|
|
2089
|
+
"node_modules/unbzip2-stream": {
|
|
2090
|
+
"version": "1.4.3",
|
|
2091
|
+
"resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz",
|
|
2092
|
+
"integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==",
|
|
2093
|
+
"dev": true,
|
|
2094
|
+
"dependencies": {
|
|
2095
|
+
"buffer": "^5.2.1",
|
|
2096
|
+
"through": "^2.3.8"
|
|
2097
|
+
}
|
|
2098
|
+
},
|
|
2099
|
+
"node_modules/unique-string": {
|
|
2100
|
+
"version": "3.0.0",
|
|
2101
|
+
"resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz",
|
|
2102
|
+
"integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==",
|
|
2103
|
+
"dev": true,
|
|
2104
|
+
"dependencies": {
|
|
2105
|
+
"crypto-random-string": "^4.0.0"
|
|
2106
|
+
},
|
|
2107
|
+
"engines": {
|
|
2108
|
+
"node": ">=12"
|
|
2109
|
+
},
|
|
2110
|
+
"funding": {
|
|
2111
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
2112
|
+
}
|
|
2113
|
+
},
|
|
2114
|
+
"node_modules/universalify": {
|
|
2115
|
+
"version": "2.0.1",
|
|
2116
|
+
"resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
|
|
2117
|
+
"integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
|
|
2118
|
+
"dev": true,
|
|
2119
|
+
"engines": {
|
|
2120
|
+
"node": ">= 10.0.0"
|
|
2121
|
+
}
|
|
2122
|
+
},
|
|
2123
|
+
"node_modules/update-browserslist-db": {
|
|
2124
|
+
"version": "1.1.3",
|
|
2125
|
+
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz",
|
|
2126
|
+
"integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==",
|
|
2127
|
+
"dev": true,
|
|
2128
|
+
"funding": [
|
|
2129
|
+
{
|
|
2130
|
+
"type": "opencollective",
|
|
2131
|
+
"url": "https://opencollective.com/browserslist"
|
|
2132
|
+
},
|
|
2133
|
+
{
|
|
2134
|
+
"type": "tidelift",
|
|
2135
|
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
|
2136
|
+
},
|
|
2137
|
+
{
|
|
2138
|
+
"type": "github",
|
|
2139
|
+
"url": "https://github.com/sponsors/ai"
|
|
2140
|
+
}
|
|
2141
|
+
],
|
|
2142
|
+
"dependencies": {
|
|
2143
|
+
"escalade": "^3.2.0",
|
|
2144
|
+
"picocolors": "^1.1.1"
|
|
2145
|
+
},
|
|
2146
|
+
"bin": {
|
|
2147
|
+
"update-browserslist-db": "cli.js"
|
|
2148
|
+
},
|
|
2149
|
+
"peerDependencies": {
|
|
2150
|
+
"browserslist": ">= 4.21.0"
|
|
2151
|
+
}
|
|
2152
|
+
},
|
|
2153
|
+
"node_modules/util-deprecate": {
|
|
2154
|
+
"version": "1.0.2",
|
|
2155
|
+
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
|
2156
|
+
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
|
|
2157
|
+
"dev": true
|
|
2158
|
+
},
|
|
2159
|
+
"node_modules/validate-npm-package-license": {
|
|
2160
|
+
"version": "3.0.4",
|
|
2161
|
+
"resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
|
|
2162
|
+
"integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
|
|
2163
|
+
"dev": true,
|
|
2164
|
+
"dependencies": {
|
|
2165
|
+
"spdx-correct": "^3.0.0",
|
|
2166
|
+
"spdx-expression-parse": "^3.0.0"
|
|
2167
|
+
}
|
|
2168
|
+
},
|
|
2169
|
+
"node_modules/which": {
|
|
2170
|
+
"version": "2.0.2",
|
|
2171
|
+
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
|
|
2172
|
+
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
|
|
2173
|
+
"dev": true,
|
|
2174
|
+
"dependencies": {
|
|
2175
|
+
"isexe": "^2.0.0"
|
|
2176
|
+
},
|
|
2177
|
+
"bin": {
|
|
2178
|
+
"node-which": "bin/node-which"
|
|
2179
|
+
},
|
|
2180
|
+
"engines": {
|
|
2181
|
+
"node": ">= 8"
|
|
2182
|
+
}
|
|
2183
|
+
},
|
|
2184
|
+
"node_modules/wrap-ansi": {
|
|
2185
|
+
"version": "7.0.0",
|
|
2186
|
+
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
|
|
2187
|
+
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
2188
|
+
"dev": true,
|
|
2189
|
+
"dependencies": {
|
|
2190
|
+
"ansi-styles": "^4.0.0",
|
|
2191
|
+
"string-width": "^4.1.0",
|
|
2192
|
+
"strip-ansi": "^6.0.0"
|
|
2193
|
+
},
|
|
2194
|
+
"engines": {
|
|
2195
|
+
"node": ">=10"
|
|
2196
|
+
},
|
|
2197
|
+
"funding": {
|
|
2198
|
+
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
2199
|
+
}
|
|
2200
|
+
},
|
|
2201
|
+
"node_modules/wrappy": {
|
|
2202
|
+
"version": "1.0.2",
|
|
2203
|
+
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
|
|
2204
|
+
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
|
|
2205
|
+
"dev": true
|
|
2206
|
+
},
|
|
2207
|
+
"node_modules/xtend": {
|
|
2208
|
+
"version": "4.0.2",
|
|
2209
|
+
"resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
|
|
2210
|
+
"integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
|
|
2211
|
+
"dev": true,
|
|
2212
|
+
"engines": {
|
|
2213
|
+
"node": ">=0.4"
|
|
2214
|
+
}
|
|
2215
|
+
},
|
|
2216
|
+
"node_modules/y18n": {
|
|
2217
|
+
"version": "5.0.8",
|
|
2218
|
+
"resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
|
|
2219
|
+
"integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
|
|
2220
|
+
"dev": true,
|
|
2221
|
+
"engines": {
|
|
2222
|
+
"node": ">=10"
|
|
2223
|
+
}
|
|
2224
|
+
},
|
|
2225
|
+
"node_modules/yallist": {
|
|
2226
|
+
"version": "4.0.0",
|
|
2227
|
+
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
|
|
2228
|
+
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
|
|
2229
|
+
"dev": true
|
|
2230
|
+
},
|
|
2231
|
+
"node_modules/yaml": {
|
|
2232
|
+
"version": "2.8.0",
|
|
2233
|
+
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.0.tgz",
|
|
2234
|
+
"integrity": "sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==",
|
|
2235
|
+
"dev": true,
|
|
2236
|
+
"bin": {
|
|
2237
|
+
"yaml": "bin.mjs"
|
|
2238
|
+
},
|
|
2239
|
+
"engines": {
|
|
2240
|
+
"node": ">= 14.6"
|
|
2241
|
+
}
|
|
2242
|
+
},
|
|
2243
|
+
"node_modules/yargs": {
|
|
2244
|
+
"version": "17.7.2",
|
|
2245
|
+
"resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
|
|
2246
|
+
"integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
|
|
2247
|
+
"dev": true,
|
|
2248
|
+
"dependencies": {
|
|
2249
|
+
"cliui": "^8.0.1",
|
|
2250
|
+
"escalade": "^3.1.1",
|
|
2251
|
+
"get-caller-file": "^2.0.5",
|
|
2252
|
+
"require-directory": "^2.1.1",
|
|
2253
|
+
"string-width": "^4.2.3",
|
|
2254
|
+
"y18n": "^5.0.5",
|
|
2255
|
+
"yargs-parser": "^21.1.1"
|
|
2256
|
+
},
|
|
2257
|
+
"engines": {
|
|
2258
|
+
"node": ">=12"
|
|
2259
|
+
}
|
|
2260
|
+
},
|
|
2261
|
+
"node_modules/yargs-parser": {
|
|
2262
|
+
"version": "21.1.1",
|
|
2263
|
+
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
|
|
2264
|
+
"integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
|
|
2265
|
+
"dev": true,
|
|
2266
|
+
"engines": {
|
|
2267
|
+
"node": ">=12"
|
|
2268
|
+
}
|
|
2269
|
+
},
|
|
2270
|
+
"node_modules/yauzl": {
|
|
2271
|
+
"version": "2.10.0",
|
|
2272
|
+
"resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz",
|
|
2273
|
+
"integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==",
|
|
2274
|
+
"dev": true,
|
|
2275
|
+
"dependencies": {
|
|
2276
|
+
"buffer-crc32": "~0.2.3",
|
|
2277
|
+
"fd-slicer": "~1.1.0"
|
|
2278
|
+
}
|
|
2279
|
+
},
|
|
2280
|
+
"node_modules/yocto-queue": {
|
|
2281
|
+
"version": "1.2.1",
|
|
2282
|
+
"resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.1.tgz",
|
|
2283
|
+
"integrity": "sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==",
|
|
2284
|
+
"dev": true,
|
|
2285
|
+
"engines": {
|
|
2286
|
+
"node": ">=12.20"
|
|
2287
|
+
},
|
|
2288
|
+
"funding": {
|
|
2289
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
2290
|
+
}
|
|
2291
|
+
}
|
|
2292
|
+
}
|
|
2293
|
+
}
|