Compare commits
9 commits
e5989f7df6
...
05baad8fdd
| Author | SHA1 | Date | |
|---|---|---|---|
| 05baad8fdd | |||
| 1a3a431b34 | |||
| 21a1828144 | |||
| fdb6aaa7e9 | |||
| 4720c46ff8 | |||
| 0553ca9923 | |||
| 3c936ad0cc | |||
| effef3fedf | |||
| 6daa0c44e1 |
223 changed files with 1865 additions and 1654 deletions
7
.gitignore
vendored
7
.gitignore
vendored
|
|
@ -5,8 +5,9 @@ web/app/mu-plugins/*/
|
|||
web/app/themes/twentytwentyfour/
|
||||
web/app/upgrade
|
||||
web/app/cache/*
|
||||
web/app/languages/plugins/
|
||||
web/app/languages/
|
||||
web/app/object-cache.php
|
||||
web/app/themes/haiku-atelier-2024/assets/js/*
|
||||
|
||||
# WordPress
|
||||
web/wp
|
||||
|
|
@ -59,3 +60,7 @@ containers/conf/angie/modules-available
|
|||
containers/conf/angie/modules-enabled
|
||||
containers/conf/angie/scripts
|
||||
containers/conf/angie/snippets
|
||||
|
||||
# Formateurs
|
||||
.php-cs-fixer.cache
|
||||
.twig-cs-fixer.cache
|
||||
|
|
|
|||
|
|
@ -1,8 +1,261 @@
|
|||
<?php
|
||||
<?php declare(strict_types=1);
|
||||
|
||||
use PhpCsFixer\Config;
|
||||
use PhpCsFixer\Finder;
|
||||
use PhpCsFixer\Runner;
|
||||
|
||||
$finder = (new Finder())->in(__DIR__)->exclude(['vendor', 'web/vendor', 'web/wp', 'web/app/languages', 'web/app/plugins', 'web/app/mu-plugins']);
|
||||
$finder = new Finder()->in(__DIR__)->exclude([
|
||||
'vendor',
|
||||
'web/vendor',
|
||||
'web/wp',
|
||||
'web/app/languages',
|
||||
'web/app/plugins',
|
||||
'web/app/mu-plugins',
|
||||
]);
|
||||
|
||||
return (new Config())->setRules(['@PhpCsFixer' => true])->setFinder($finder);
|
||||
return new Config()
|
||||
->setRiskyAllowed(true)
|
||||
->setRules([
|
||||
'array_syntax' => ['syntax' => 'short'],
|
||||
'assign_null_coalescing_to_coalesce_equal' => true,
|
||||
'attribute_empty_parentheses' => ['use_parentheses' => true],
|
||||
'blank_line_after_namespace' => true,
|
||||
'blank_lines_before_namespace' => ['min_line_breaks' => 1, 'max_line_breaks' => 2],
|
||||
'cast_spaces' => true,
|
||||
'class_attributes_separation' => ['elements' => [
|
||||
'case' => 'none',
|
||||
'const' => 'none',
|
||||
'method' => 'one',
|
||||
'property' => 'one',
|
||||
'trait_import' => 'none',
|
||||
]],
|
||||
'class_reference_name_casing' => true,
|
||||
'clean_namespace' => true,
|
||||
'combine_consecutive_issets' => true,
|
||||
'combine_consecutive_unsets' => true,
|
||||
'combine_nested_dirname' => true,
|
||||
'comment_to_phpdoc' => true,
|
||||
'constant_case' => true,
|
||||
'date_time_immutable' => true,
|
||||
'declare_equal_normalize' => true,
|
||||
'declare_parentheses' => true,
|
||||
'declare_strict_types' => true,
|
||||
'dir_constant' => true,
|
||||
'echo_tag_syntax' => true,
|
||||
'encoding' => true,
|
||||
'ereg_to_preg' => true,
|
||||
'error_suppression' => true,
|
||||
'explicit_indirect_variable' => true,
|
||||
'explicit_string_variable' => true,
|
||||
'final_class' => true,
|
||||
'final_internal_class' => true,
|
||||
'full_opening_tag' => true,
|
||||
'fully_qualified_strict_types' => ['import_symbols' => true],
|
||||
'function_to_constant' => true,
|
||||
'global_namespace_import' => ['import_classes' => true, 'import_constants' => true, 'import_functions' => true],
|
||||
'heredoc_to_nowdoc' => true,
|
||||
'integer_literal_case' => true,
|
||||
'lambda_not_used_import' => true,
|
||||
'list_syntax' => true,
|
||||
'logical_operators' => true,
|
||||
'long_to_shorthand_operator' => true,
|
||||
'lowercase_cast' => true,
|
||||
'lowercase_keywords' => true,
|
||||
'lowercase_static_reference' => true,
|
||||
'magic_constant_casing' => true,
|
||||
'magic_method_casing' => true,
|
||||
'mb_str_functions' => true,
|
||||
'modernize_strpos' => ['modernize_stripos' => true],
|
||||
'modernize_types_casting' => true,
|
||||
'modifier_keywords' => true,
|
||||
'multiline_comment_opening_closing' => true,
|
||||
'native_constant_invocation' => true,
|
||||
'native_function_casing' => true,
|
||||
'native_function_invocation' => [
|
||||
'include' => ['@compiler_optimized'],
|
||||
'scope' => 'namespaced',
|
||||
'strict' => true,
|
||||
],
|
||||
'native_type_declaration_casing' => true,
|
||||
'new_expression_parentheses' => true,
|
||||
'no_alias_functions' => ['sets' => ['@all']],
|
||||
'no_alias_language_construct_call' => true,
|
||||
'no_alternative_syntax' => true,
|
||||
'no_binary_string' => true,
|
||||
'no_closing_tag' => true,
|
||||
'no_empty_comment' => true,
|
||||
'no_homoglyph_names' => true,
|
||||
'no_leading_import_slash' => true,
|
||||
'no_mixed_echo_print' => ['use' => 'echo'],
|
||||
'no_multiline_whitespace_around_double_arrow' => true,
|
||||
'no_multiple_statements_per_line' => true,
|
||||
'no_null_property_initialization' => true,
|
||||
'no_php4_constructor' => true,
|
||||
'no_short_bool_cast' => true,
|
||||
'no_trailing_comma_in_singleline' => true,
|
||||
'no_trailing_whitespace_in_comment' => true,
|
||||
'no_unneeded_braces' => ['namespaces' => true],
|
||||
'no_unneeded_control_parentheses' => ['statements' => [
|
||||
'break',
|
||||
'clone',
|
||||
'continue',
|
||||
'echo_print',
|
||||
'negative_instanceof',
|
||||
'others',
|
||||
'return',
|
||||
'switch_case',
|
||||
'yield',
|
||||
'yield_from',
|
||||
]],
|
||||
'no_unneeded_final_method' => true,
|
||||
'no_unneeded_import_alias' => true,
|
||||
'no_unreachable_default_argument_value' => true,
|
||||
'no_unset_cast' => true,
|
||||
'no_unset_on_property' => true,
|
||||
'no_unused_imports' => true,
|
||||
'no_useless_concat_operator' => true,
|
||||
'no_useless_nullsafe_operator' => true,
|
||||
'no_useless_printf' => true,
|
||||
'no_useless_return' => true,
|
||||
'no_useless_sprintf' => true,
|
||||
'no_whitespace_before_comma_in_array' => ['after_heredoc' => true],
|
||||
'non_printable_character' => true,
|
||||
'normalize_index_brace' => true,
|
||||
'nullable_type_declaration' => ['syntax' => 'union'],
|
||||
'nullable_type_declaration_for_default_null_value' => true,
|
||||
'numeric_literal_separator' => ['override_existing' => true, 'strategy' => 'use_separator'],
|
||||
'ordered_attributes' => true,
|
||||
'ordered_class_elements' => ['case_sensitive' => false, 'sort_algorithm' => 'alpha'],
|
||||
'ordered_imports' => ['case_sensitive' => true],
|
||||
'ordered_interfaces' => true,
|
||||
'ordered_traits' => true,
|
||||
'ordered_types' => ['null_adjustment' => 'always_last'],
|
||||
'phpdoc_readonly_class_comment_to_keyword' => true,
|
||||
'phpdoc_to_param_type' => true,
|
||||
'phpdoc_to_property_type' => true,
|
||||
'phpdoc_to_return_type' => true,
|
||||
'pow_to_exponentiation' => true,
|
||||
'protected_to_private' => true,
|
||||
'psr_autoloading' => true,
|
||||
'random_api_migration' => ['replacements' => [
|
||||
'getrandmax' => 'mt_getrandmax',
|
||||
'rand' => 'mt_rand',
|
||||
'srand' => 'mt_srand',
|
||||
]],
|
||||
'return_assignment' => true,
|
||||
'self_accessor' => true,
|
||||
'self_static_accessor' => true,
|
||||
'set_type_to_cast' => true,
|
||||
'short_scalar_cast' => true,
|
||||
'simple_to_complex_string_variable' => true,
|
||||
'simplified_null_return' => true,
|
||||
'single_class_element_per_statement' => true,
|
||||
'single_import_per_statement' => true,
|
||||
'single_line_after_imports' => true,
|
||||
'single_line_comment_spacing' => true,
|
||||
'single_line_comment_style' => true,
|
||||
'single_line_empty_body' => true,
|
||||
'single_trait_insert_per_statement' => true,
|
||||
'standardize_not_equals' => true,
|
||||
'static_lambda' => true,
|
||||
'strict_comparison' => true,
|
||||
'strict_param' => true,
|
||||
'string_implicit_backslashes' => true,
|
||||
'string_length_to_empty' => true,
|
||||
'switch_continue_to_break' => true,
|
||||
'ternary_to_null_coalescing' => true,
|
||||
'trim_array_spaces' => true,
|
||||
'use_arrow_functions' => true,
|
||||
'void_return' => true,
|
||||
'whitespace_after_comma_in_array' => ['ensure_single_space' => true],
|
||||
// ---
|
||||
// Each line of multi-line DocComments must have an asterisk [PSR-5] and must be aligned with the first one.
|
||||
'align_multiline_comment' => ['comment_type' => 'all_multiline'],
|
||||
// There should not be blank lines between docblock and the documented element.
|
||||
'no_blank_lines_after_phpdoc' => true,
|
||||
// There should not be empty PHPDoc blocks.
|
||||
'no_empty_phpdoc' => true,
|
||||
// Removes @param, @return and @var tags that don't provide any useful information.
|
||||
'no_superfluous_phpdoc_tags' => [
|
||||
'allow_hidden_params' => false,
|
||||
'allow_mixed' => false,
|
||||
'allow_unused_params' => false,
|
||||
],
|
||||
// PHPDoc should contain @param for all params.
|
||||
'phpdoc_add_missing_param_annotation' => ['only_untyped' => false],
|
||||
// All items of the given PHPDoc tags must be either left-aligned or (by default) aligned vertically.
|
||||
'phpdoc_align' => true,
|
||||
// PHPDoc annotation descriptions should not be a sentence.
|
||||
'phpdoc_annotation_without_dot' => true,
|
||||
// PHPDoc array<T> type must be used instead of T[].
|
||||
'phpdoc_array_type' => true,
|
||||
// Docblocks should have the same indentation as the documented subject.
|
||||
'phpdoc_indent' => true,
|
||||
// Fixes PHPDoc inline tags.
|
||||
'phpdoc_inline_tag_normalizer' => true,
|
||||
// Changes doc blocks from single to multi line, or reversed. Works for class constants, properties and methods only.
|
||||
'phpdoc_line_span' => ['const' => 'single', 'method' => 'multi', 'property' => 'single'],
|
||||
// PHPDoc list type must be used instead of array without a key.
|
||||
'phpdoc_list_type' => false,
|
||||
// @access annotations must be removed from PHPDoc.
|
||||
'phpdoc_no_access' => true,
|
||||
// No alias PHPDoc tags should be used.
|
||||
'phpdoc_no_alias_tag' => true,
|
||||
// @return void and @return null annotations must be removed from PHPDoc.
|
||||
'phpdoc_no_empty_return' => false,
|
||||
// @package and @subpackage annotations must be removed from PHPDoc.
|
||||
'phpdoc_no_package' => true,
|
||||
// Classy that does not inherit must not have @inheritdoc tags.
|
||||
'phpdoc_no_useless_inheritdoc' => true,
|
||||
// Annotations in PHPDoc should be ordered in defined sequence.
|
||||
'phpdoc_order' => true,
|
||||
// Order PHPDoc tags by value.
|
||||
'phpdoc_order_by_value' => true,
|
||||
// Orders all @param annotations in DocBlocks according to method signature.
|
||||
'phpdoc_param_order' => true,
|
||||
// The type of @return annotations of methods returning a reference to itself must the configured one.
|
||||
'phpdoc_return_self_reference' => true,
|
||||
// Scalar types should always be written in the same form. int not integer, bool not boolean, float not real or double.
|
||||
'phpdoc_scalar' => ['types' => [
|
||||
'boolean',
|
||||
'callback',
|
||||
'double',
|
||||
'integer',
|
||||
'never-return',
|
||||
'never-returns',
|
||||
'no-return',
|
||||
'real',
|
||||
'str',
|
||||
]],
|
||||
// Annotations in PHPDoc should be grouped together so that annotations of the same type immediately follow each other. Annotations of a different type are separated by a single blank line.
|
||||
'phpdoc_separation' => [
|
||||
'groups' => [
|
||||
['Annotation', 'NamedArgumentConstructor', 'Target'],
|
||||
['author', 'copyright', 'license'],
|
||||
['category', 'package', 'subpackage'],
|
||||
['property', 'property-read', 'property-write'],
|
||||
['deprecated', 'link', 'see', 'since'],
|
||||
],
|
||||
'skip_unlisted_annotations' => false,
|
||||
],
|
||||
// Single line @var PHPDoc should have proper spacing.
|
||||
'phpdoc_single_line_var_spacing' => true,
|
||||
// PHPDoc summary should end in either a full stop, exclamation mark, or question mark.
|
||||
'phpdoc_summary' => true,
|
||||
// Docblocks should only be used on structural elements.
|
||||
'phpdoc_to_comment' => false,
|
||||
// PHPDoc should start and end with content, excluding the very first and last line of the docblocks.
|
||||
'phpdoc_trim' => true,
|
||||
// Removes extra blank lines after summary and after description in PHPDoc.
|
||||
'phpdoc_trim_consecutive_blank_line_separation' => true,
|
||||
// The correct case must be used for standard PHP types in PHPDoc.
|
||||
'phpdoc_types' => true,
|
||||
// Sorts PHPDoc types.
|
||||
'phpdoc_types_order' => ['null_adjustment' => 'always_last'],
|
||||
// @var and @type annotations must have type and name in the correct order.
|
||||
'phpdoc_var_annotation_correct_order' => true,
|
||||
// @var and @type annotations of classy properties should not contain the name.
|
||||
'phpdoc_var_without_name' => true,
|
||||
])
|
||||
->setFinder($finder)
|
||||
->setParallelConfig(Runner\Parallel\ParallelConfigFactory::detect());
|
||||
|
|
|
|||
|
|
@ -1,6 +1,19 @@
|
|||
{
|
||||
"$schema": "/opt/phpactor/phpactor.schema.json",
|
||||
"language_server_php_cs_fixer.enabled": false,
|
||||
"language_server_phpstan.enabled": false,
|
||||
"php_code_sniffer.enabled": false
|
||||
"$schema": "./phpactor.schema.json",
|
||||
"indexer.exclude_patterns": [
|
||||
"/vendor/**/Tests/**/*",
|
||||
"/vendor/**/tests/**/*",
|
||||
"/var/cache/**/*",
|
||||
"/vendor/composer/**/*"
|
||||
],
|
||||
"language_server.diagnostic_outsource_timeout": 5,
|
||||
"language_server.diagnostics_on_update": false,
|
||||
"language_server.diagnostics_on_save": true,
|
||||
"language_server_highlight.enabled": true,
|
||||
"language_server_php_cs_fixer.enabled": true,
|
||||
"language_server_phpstan.config": "phpstan.neon",
|
||||
"language_server_phpstan.enabled": true,
|
||||
"language_server_psalm.enabled": false,
|
||||
"language_server_reference_finder.soft_timeout": 10,
|
||||
"language_server_reference_reference_finder.reference_timeout": 10
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
{"php_version":"8.4.11","fixer_version":"866af065fd09980b6390ee5c69e45b08053101e8","rules":{"TwigCsFixer\\Rules\\Delimiter\\DelimiterSpacingRule":{"skipIfNewLine":true},"TwigCsFixer\\Rules\\Function\\NamedArgumentSeparatorRule":null,"TwigCsFixer\\Rules\\Function\\NamedArgumentSpacingRule":null,"TwigCsFixer\\Rules\\Operator\\OperatorNameSpacingRule":null,"TwigCsFixer\\Rules\\Operator\\OperatorSpacingRule":null,"TwigCsFixer\\Rules\\Punctuation\\PunctuationSpacingRule":{"before":{")":0,"]":0,"}":0,":":0,".":0,",":0,"|":0,"?:":0},"after":{"(":0,"[":0,"{":0,".":0,"|":0,":":1,",":1,"?:":1}},"TwigCsFixer\\Rules\\Whitespace\\BlankEOFRule":null,"TwigCsFixer\\Rules\\Delimiter\\BlockNameSpacingRule":null,"TwigCsFixer\\Rules\\Whitespace\\EmptyLinesRule":null,"TwigCsFixer\\Rules\\Literal\\CompactHashRule":{"compact":false},"TwigCsFixer\\Rules\\Literal\\HashQuoteRule":{"useQuote":false},"TwigCsFixer\\Rules\\Function\\IncludeFunctionRule":null,"TwigCsFixer\\Rules\\Whitespace\\IndentRule":{"spaceRatio":4,"useTab":false},"TwigCsFixer\\Rules\\Literal\\SingleQuoteRule":{"skipStringContainingSingleQuote":true},"TwigCsFixer\\Rules\\Punctuation\\TrailingCommaMultiLineRule":{"comma":true},"TwigCsFixer\\Rules\\Punctuation\\TrailingCommaSingleLineRule":null,"TwigCsFixer\\Rules\\Whitespace\\TrailingSpaceRule":null},"hashes":{"web\/app\/themes\/haiku-atelier-2024\/views\/parts\/pages\/shop\/grille-produits.twig":"ef4ff046636044e452eeb3fe9edefaeb","web\/app\/themes\/haiku-atelier-2024\/views\/parts\/pages\/produit\/grille-produits-similaires.twig":"eadf1a78a51084677aaaa56dafb1e708","web\/app\/themes\/haiku-atelier-2024\/views\/parts\/pages\/produit\/informations-produit.twig":"4b7c756b4aa0f88942857e6c4969b354","web\/app\/themes\/haiku-atelier-2024\/views\/parts\/pages\/produit\/photos-produit.twig":"5654c0382c5ef553a0b96a09194d909a","web\/app\/themes\/haiku-atelier-2024\/views\/parts\/pages\/produit\/produits-similaires.twig":"695492c5926dfeeb69c37eb6227e1f18","web\/app\/themes\/haiku-atelier-2024\/views\/parts\/pages\/panier\/panneau-informations-client.twig":"095a41b6e4142d7c2d9ebe18e4ac24d0","web\/app\/themes\/haiku-atelier-2024\/views\/parts\/pages\/panier\/panneau-panier.twig":"0b84a3113ceceaac82ee96aea753c8aa","web\/app\/themes\/haiku-atelier-2024\/views\/parts\/pied-de-page.twig":"d5f5afaa90db1db6590ea0ed0584c216","web\/app\/themes\/haiku-atelier-2024\/views\/parts\/bandeau.twig":"1164a4e9baafbb15be2a4dc98c32ced1","web\/app\/themes\/haiku-atelier-2024\/views\/parts\/en-tete.twig":"1cf26fa4e64cdc7c6ed29b4e5627841a","web\/app\/themes\/haiku-atelier-2024\/views\/parts\/html-head.twig":"691202d8b7719de34f604e42a74932af","web\/app\/themes\/haiku-atelier-2024\/views\/parts\/menu-categories-produits.twig":"e132a6035820545f704075ab9e89d119","web\/app\/themes\/haiku-atelier-2024\/views\/macros\/images.twig":"4beca7e03e55ef0e46828befcc779677","web\/app\/themes\/haiku-atelier-2024\/views\/404.twig":"75335b023fcc6f5c83197e8c126384e1","web\/app\/themes\/haiku-atelier-2024\/views\/a-propos.twig":"b5bdf0962e089bc93d33f5d23b97f64c","web\/app\/themes\/haiku-atelier-2024\/views\/accueil.twig":"beb4b2270ea3a1bcdbf8cd9e69f83ee7","web\/app\/themes\/haiku-atelier-2024\/views\/base.twig":"3e3ed592fb1c4bc8405be3b52f403725","web\/app\/themes\/haiku-atelier-2024\/views\/boutique.twig":"10449e7c29289282366d754ec3360589","web\/app\/themes\/haiku-atelier-2024\/views\/cgv.twig":"97984ba4344e2dcf8c3237796203c614","web\/app\/themes\/haiku-atelier-2024\/views\/contact.twig":"5d9dcae3e990c671404a8200b6c9815a","web\/app\/themes\/haiku-atelier-2024\/views\/echec-commande.twig":"9cf475c2c19664e9ef92a71e670b2880","web\/app\/themes\/haiku-atelier-2024\/views\/produit.twig":"43bf608a266e8b8652a8f878fbe4580e","web\/app\/themes\/haiku-atelier-2024\/views\/succes-commande.twig":"712e54c1866a66988ccb1a79cbae53d6","web\/app\/themes\/haiku-atelier-2024\/views\/panier.twig":"d008509105bb53253214344429163558","web\/app\/themes\/haiku-atelier-2024\/woocommerce\/emails\/views\/email-commande-envoyee.twig":"e4e3bbc92a40eeae8925085b560dcb0d","web\/app\/themes\/haiku-atelier-2024\/woocommerce\/emails\/views\/email-base.twig":"7ef70033248d96d208f965dc4d885d9f","web\/app\/themes\/haiku-atelier-2024\/woocommerce\/emails\/views\/email-commande-recue.twig":"0b09e4586dd8eb4ca9513b9ae38e307b"}}
|
||||
16
biome.json
16
biome.json
|
|
@ -28,21 +28,21 @@
|
|||
"options": { "attributes": ["class"], "functions": [""] }
|
||||
}
|
||||
},
|
||||
"recommended": true,
|
||||
"style": {
|
||||
"recommended": true,
|
||||
"noInferrableTypes": "error",
|
||||
"noNonNullAssertion": "off",
|
||||
"noParameterAssign": "error",
|
||||
"noUnusedTemplateLiteral": "error",
|
||||
"noUselessElse": "error",
|
||||
"recommended": true,
|
||||
"useAsConstAssertion": "error",
|
||||
"useDefaultParameterLast": "error",
|
||||
"useEnumInitializers": "error",
|
||||
"useSelfClosingElements": "error",
|
||||
"useSingleVarDeclarator": "error",
|
||||
"noUnusedTemplateLiteral": "error",
|
||||
"useNumberNamespace": "error",
|
||||
"noInferrableTypes": "error",
|
||||
"noUselessElse": "error"
|
||||
},
|
||||
"recommended": true
|
||||
"useSelfClosingElements": "error",
|
||||
"useSingleVarDeclarator": "error"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
263
bun.lock
263
bun.lock
|
|
@ -44,7 +44,7 @@
|
|||
"oxlint": "^1.31.0",
|
||||
"picomatch": "^4.0.3",
|
||||
"playwright": "^1.57.0",
|
||||
"prettier": "^3.7.4",
|
||||
"prettier": "^4.0.0-alpha.13",
|
||||
"prettier-plugin-pkg": "^0.21.2",
|
||||
"prettier-plugin-sh": "^0.18.0",
|
||||
"sass-embedded": "^1.93.3",
|
||||
|
|
@ -57,9 +57,6 @@
|
|||
"typescript": "5.9.3",
|
||||
"typescript-eslint": "^8.48.1",
|
||||
"vite": "^7.2.6",
|
||||
"vite-plugin-compression2": "^2.3.1",
|
||||
"vite-plugin-manifest-sri": "^0.2.0",
|
||||
"vite-plugin-node-polyfills": "^0.24.0",
|
||||
"vite-plugin-valibot-env": "^1.0.1",
|
||||
"vite-tsconfig-paths": "^5.1.4",
|
||||
"wp-types": "^4.69.0",
|
||||
|
|
@ -533,10 +530,6 @@
|
|||
|
||||
"@reteps/dockerfmt": ["@reteps/dockerfmt@0.3.6", "", {}, "sha512-Tb5wIMvBf/nLejTQ61krK644/CEMB/cpiaIFXqGApfGqO3GwcR3qnI0DbmkFVCl2OyEp8LnLX3EkucoL0+tbFg=="],
|
||||
|
||||
"@rollup/plugin-inject": ["@rollup/plugin-inject@5.0.5", "", { "dependencies": { "@rollup/pluginutils": "^5.0.1", "estree-walker": "^2.0.2", "magic-string": "^0.30.3" }, "peerDependencies": { "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" }, "optionalPeers": ["rollup"] }, "sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg=="],
|
||||
|
||||
"@rollup/pluginutils": ["@rollup/pluginutils@5.3.0", "", { "dependencies": { "@types/estree": "^1.0.0", "estree-walker": "^2.0.2", "picomatch": "^4.0.2" }, "peerDependencies": { "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" }, "optionalPeers": ["rollup"] }, "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q=="],
|
||||
|
||||
"@rollup/rollup-android-arm-eabi": ["@rollup/rollup-android-arm-eabi@4.53.3", "", { "os": "android", "cpu": "arm" }, "sha512-mRSi+4cBjrRLoaal2PnqH82Wqyb+d3HsPUN/W+WslCXsZsyHa9ZeQQX/pQsZaVIWDkPcpV6jJ+3KLbTbgnwv8w=="],
|
||||
|
||||
"@rollup/rollup-android-arm64": ["@rollup/rollup-android-arm64@4.53.3", "", { "os": "android", "cpu": "arm64" }, "sha512-CbDGaMpdE9sh7sCmTrTUyllhrg65t6SwhjlMJsLr+J8YjFuPmCEjbBSx4Z/e4SmDyH3aB5hGaJUP2ltV/vcs4w=="],
|
||||
|
|
@ -743,14 +736,8 @@
|
|||
|
||||
"array-union": ["array-union@2.1.0", "", {}, "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="],
|
||||
|
||||
"asn1.js": ["asn1.js@4.10.1", "", { "dependencies": { "bn.js": "^4.0.0", "inherits": "^2.0.1", "minimalistic-assert": "^1.0.0" } }, "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw=="],
|
||||
|
||||
"assert": ["assert@2.1.0", "", { "dependencies": { "call-bind": "^1.0.2", "is-nan": "^1.3.2", "object-is": "^1.1.5", "object.assign": "^4.1.4", "util": "^0.12.5" } }, "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw=="],
|
||||
|
||||
"astral-regex": ["astral-regex@2.0.0", "", {}, "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ=="],
|
||||
|
||||
"available-typed-arrays": ["available-typed-arrays@1.0.7", "", { "dependencies": { "possible-typed-array-names": "^1.0.0" } }, "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ=="],
|
||||
|
||||
"b4a": ["b4a@1.7.3", "", { "peerDependencies": { "react-native-b4a": "*" }, "optionalPeers": ["react-native-b4a"] }, "sha512-5Q2mfq2WfGuFp3uS//0s6baOJLMoVduPYVeNmDYxu5OUA1/cBfvr2RIS7vi62LdNj/urk1hfmj867I3qt6uZ7Q=="],
|
||||
|
||||
"babel-plugin-polyfill-corejs2": ["babel-plugin-polyfill-corejs2@0.4.14", "", { "dependencies": { "@babel/compat-data": "^7.27.7", "@babel/helper-define-polyfill-provider": "^0.6.5", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg=="],
|
||||
|
|
@ -773,28 +760,10 @@
|
|||
|
||||
"bin-version-check": ["bin-version-check@5.1.0", "", { "dependencies": { "bin-version": "^6.0.0", "semver": "^7.5.3", "semver-truncate": "^3.0.0" } }, "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g=="],
|
||||
|
||||
"bn.js": ["bn.js@5.2.2", "", {}, "sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw=="],
|
||||
|
||||
"brace-expansion": ["brace-expansion@2.0.2", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="],
|
||||
|
||||
"braces": ["braces@3.0.3", "", { "dependencies": { "fill-range": "^7.1.1" } }, "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA=="],
|
||||
|
||||
"brorand": ["brorand@1.1.0", "", {}, "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w=="],
|
||||
|
||||
"browser-resolve": ["browser-resolve@2.0.0", "", { "dependencies": { "resolve": "^1.17.0" } }, "sha512-7sWsQlYL2rGLy2IWm8WL8DCTJvYLc/qlOnsakDac87SOoCd16WLsaAMdCiAqsTNHIe+SXfaqyxyo6THoWqs8WQ=="],
|
||||
|
||||
"browserify-aes": ["browserify-aes@1.2.0", "", { "dependencies": { "buffer-xor": "^1.0.3", "cipher-base": "^1.0.0", "create-hash": "^1.1.0", "evp_bytestokey": "^1.0.3", "inherits": "^2.0.1", "safe-buffer": "^5.0.1" } }, "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA=="],
|
||||
|
||||
"browserify-cipher": ["browserify-cipher@1.0.1", "", { "dependencies": { "browserify-aes": "^1.0.4", "browserify-des": "^1.0.0", "evp_bytestokey": "^1.0.0" } }, "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w=="],
|
||||
|
||||
"browserify-des": ["browserify-des@1.0.2", "", { "dependencies": { "cipher-base": "^1.0.1", "des.js": "^1.0.0", "inherits": "^2.0.1", "safe-buffer": "^5.1.2" } }, "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A=="],
|
||||
|
||||
"browserify-rsa": ["browserify-rsa@4.1.1", "", { "dependencies": { "bn.js": "^5.2.1", "randombytes": "^2.1.0", "safe-buffer": "^5.2.1" } }, "sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ=="],
|
||||
|
||||
"browserify-sign": ["browserify-sign@4.2.5", "", { "dependencies": { "bn.js": "^5.2.2", "browserify-rsa": "^4.1.1", "create-hash": "^1.2.0", "create-hmac": "^1.1.7", "elliptic": "^6.6.1", "inherits": "^2.0.4", "parse-asn1": "^5.1.9", "readable-stream": "^2.3.8", "safe-buffer": "^5.2.1" } }, "sha512-C2AUdAJg6rlM2W5QMp2Q4KGQMVBwR1lIimTsUnutJ8bMpW5B52pGpR2gEnNBNwijumDo5FojQ0L9JrXA8m4YEw=="],
|
||||
|
||||
"browserify-zlib": ["browserify-zlib@0.2.0", "", { "dependencies": { "pako": "~1.0.5" } }, "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA=="],
|
||||
|
||||
"browserslist": ["browserslist@4.28.1", "http://localhost:4873/browserslist/-/browserslist-4.28.1.tgz", { "dependencies": { "baseline-browser-mapping": "^2.9.0", "caniuse-lite": "^1.0.30001759", "electron-to-chromium": "^1.5.263", "node-releases": "^2.0.27", "update-browserslist-db": "^1.2.0" }, "bin": { "browserslist": "cli.js" } }, "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA=="],
|
||||
|
||||
"browserslist-to-esbuild": ["browserslist-to-esbuild@2.1.1", "", { "dependencies": { "meow": "^13.0.0" }, "peerDependencies": { "browserslist": "*" }, "bin": { "browserslist-to-esbuild": "cli/index.js" } }, "sha512-KN+mty6C3e9AN8Z5dI1xeN15ExcRNeISoC3g7V0Kax/MMF9MSoYA2G7lkTTcVUFntiEjkpI0HNgqJC1NjdyNUw=="],
|
||||
|
|
@ -807,22 +776,12 @@
|
|||
|
||||
"buffer-from": ["buffer-from@1.1.2", "", {}, "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="],
|
||||
|
||||
"buffer-xor": ["buffer-xor@1.0.3", "", {}, "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ=="],
|
||||
|
||||
"builtin-status-codes": ["builtin-status-codes@3.0.0", "", {}, "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ=="],
|
||||
|
||||
"cacheable": ["cacheable@2.3.0", "", { "dependencies": { "@cacheable/memory": "^2.0.6", "@cacheable/utils": "^2.3.2", "hookified": "^1.13.0", "keyv": "^5.5.4", "qified": "^0.5.2" } }, "sha512-HHiAvOBmlcR2f3SQ7kdlYD8+AUJG+wlFZ/Ze8tl1Vzvz0MdOh8IYA/EFU4ve8t1/sZ0j4MGi7ST5MoTwHessQA=="],
|
||||
|
||||
"cacheable-lookup": ["cacheable-lookup@7.0.0", "", {}, "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w=="],
|
||||
|
||||
"cacheable-request": ["cacheable-request@10.2.14", "", { "dependencies": { "@types/http-cache-semantics": "^4.0.2", "get-stream": "^6.0.1", "http-cache-semantics": "^4.1.1", "keyv": "^4.5.3", "mimic-response": "^4.0.0", "normalize-url": "^8.0.0", "responselike": "^3.0.0" } }, "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ=="],
|
||||
|
||||
"call-bind": ["call-bind@1.0.8", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", "get-intrinsic": "^1.2.4", "set-function-length": "^1.2.2" } }, "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww=="],
|
||||
|
||||
"call-bind-apply-helpers": ["call-bind-apply-helpers@1.0.2", "", { "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2" } }, "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ=="],
|
||||
|
||||
"call-bound": ["call-bound@1.0.4", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "get-intrinsic": "^1.3.0" } }, "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg=="],
|
||||
|
||||
"callsites": ["callsites@3.1.0", "", {}, "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="],
|
||||
|
||||
"caniuse-lite": ["caniuse-lite@1.0.30001759", "", {}, "sha512-Pzfx9fOKoKvevQf8oCXoyNRQ5QyxJj+3O0Rqx2V5oxT61KGx8+n6hV/IUyJeifUci2clnmmKVpvtiqRzgiWjSw=="],
|
||||
|
|
@ -833,8 +792,6 @@
|
|||
|
||||
"chokidar": ["chokidar@4.0.3", "", { "dependencies": { "readdirp": "^4.0.1" } }, "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA=="],
|
||||
|
||||
"cipher-base": ["cipher-base@1.0.7", "", { "dependencies": { "inherits": "^2.0.4", "safe-buffer": "^5.2.1", "to-buffer": "^1.2.2" } }, "sha512-Mz9QMT5fJe7bKI7MH31UilT5cEK5EHHRCccw/YRFsRY47AuNgaV6HY3rscp0/I4Q+tTW/5zoqpSeRRI54TkDWA=="],
|
||||
|
||||
"color-convert": ["color-convert@2.0.1", "", { "dependencies": { "color-name": "~1.1.4" } }, "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="],
|
||||
|
||||
"color-name": ["color-name@1.1.4", "", {}, "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="],
|
||||
|
|
@ -847,10 +804,6 @@
|
|||
|
||||
"concat-map": ["concat-map@0.0.1", "", {}, "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="],
|
||||
|
||||
"console-browserify": ["console-browserify@1.2.0", "", {}, "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA=="],
|
||||
|
||||
"constants-browserify": ["constants-browserify@1.0.0", "", {}, "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ=="],
|
||||
|
||||
"content-disposition": ["content-disposition@0.5.4", "", { "dependencies": { "safe-buffer": "5.2.1" } }, "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ=="],
|
||||
|
||||
"convert-source-map": ["convert-source-map@2.0.0", "", {}, "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="],
|
||||
|
|
@ -859,22 +812,10 @@
|
|||
|
||||
"core-js-compat": ["core-js-compat@3.47.0", "", { "dependencies": { "browserslist": "^4.28.0" } }, "sha512-IGfuznZ/n7Kp9+nypamBhvwdwLsW6KC8IOaURw2doAK5e98AG3acVLdh0woOnEqCfUtS+Vu882JE4k/DAm3ItQ=="],
|
||||
|
||||
"core-util-is": ["core-util-is@1.0.3", "", {}, "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="],
|
||||
|
||||
"cosmiconfig": ["cosmiconfig@9.0.0", "", { "dependencies": { "env-paths": "^2.2.1", "import-fresh": "^3.3.0", "js-yaml": "^4.1.0", "parse-json": "^5.2.0" }, "peerDependencies": { "typescript": ">=4.9.5" }, "optionalPeers": ["typescript"] }, "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg=="],
|
||||
|
||||
"create-ecdh": ["create-ecdh@4.0.4", "", { "dependencies": { "bn.js": "^4.1.0", "elliptic": "^6.5.3" } }, "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A=="],
|
||||
|
||||
"create-hash": ["create-hash@1.2.0", "", { "dependencies": { "cipher-base": "^1.0.1", "inherits": "^2.0.1", "md5.js": "^1.3.4", "ripemd160": "^2.0.1", "sha.js": "^2.4.0" } }, "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg=="],
|
||||
|
||||
"create-hmac": ["create-hmac@1.1.7", "", { "dependencies": { "cipher-base": "^1.0.3", "create-hash": "^1.1.0", "inherits": "^2.0.1", "ripemd160": "^2.0.0", "safe-buffer": "^5.0.1", "sha.js": "^2.4.8" } }, "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg=="],
|
||||
|
||||
"create-require": ["create-require@1.1.1", "", {}, "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ=="],
|
||||
|
||||
"cross-spawn": ["cross-spawn@7.0.6", "", { "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" } }, "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA=="],
|
||||
|
||||
"crypto-browserify": ["crypto-browserify@3.12.1", "", { "dependencies": { "browserify-cipher": "^1.0.1", "browserify-sign": "^4.2.3", "create-ecdh": "^4.0.4", "create-hash": "^1.2.0", "create-hmac": "^1.1.7", "diffie-hellman": "^5.0.3", "hash-base": "~3.0.4", "inherits": "^2.0.4", "pbkdf2": "^3.1.2", "public-encrypt": "^4.0.3", "randombytes": "^2.1.0", "randomfill": "^1.0.4" } }, "sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ=="],
|
||||
|
||||
"css-functions-list": ["css-functions-list@3.2.3", "", {}, "sha512-IQOkD3hbR5KrN93MtcYuad6YPuTSUhntLHDuLEbFWE+ff2/XSZNdZG+LcbbIW5AXKg/WFIfYItIzVoHngHXZzA=="],
|
||||
|
||||
"css-tree": ["css-tree@3.1.0", "", { "dependencies": { "mdn-data": "2.12.2", "source-map-js": "^1.0.1" } }, "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w=="],
|
||||
|
|
@ -891,40 +832,20 @@
|
|||
|
||||
"defer-to-connect": ["defer-to-connect@2.0.1", "", {}, "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg=="],
|
||||
|
||||
"define-data-property": ["define-data-property@1.1.4", "", { "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", "gopd": "^1.0.1" } }, "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A=="],
|
||||
|
||||
"define-properties": ["define-properties@1.2.1", "", { "dependencies": { "define-data-property": "^1.0.1", "has-property-descriptors": "^1.0.0", "object-keys": "^1.1.1" } }, "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg=="],
|
||||
|
||||
"des.js": ["des.js@1.1.0", "", { "dependencies": { "inherits": "^2.0.1", "minimalistic-assert": "^1.0.0" } }, "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg=="],
|
||||
|
||||
"detect-libc": ["detect-libc@2.1.2", "", {}, "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ=="],
|
||||
|
||||
"diffie-hellman": ["diffie-hellman@5.0.3", "", { "dependencies": { "bn.js": "^4.1.0", "miller-rabin": "^4.0.0", "randombytes": "^2.0.0" } }, "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg=="],
|
||||
|
||||
"dir-glob": ["dir-glob@3.0.1", "", { "dependencies": { "path-type": "^4.0.0" } }, "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA=="],
|
||||
|
||||
"domain-browser": ["domain-browser@4.22.0", "", {}, "sha512-IGBwjF7tNk3cwypFNH/7bfzBcgSCbaMOD3GsaY1AU/JRrnHnYgEM0+9kQt52iZxjNsjBtJYtao146V+f8jFZNw=="],
|
||||
|
||||
"dunder-proto": ["dunder-proto@1.0.1", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.1", "es-errors": "^1.3.0", "gopd": "^1.2.0" } }, "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A=="],
|
||||
|
||||
"effect": ["effect@3.19.9", "http://localhost:4873/effect/-/effect-3.19.9.tgz", { "dependencies": { "@standard-schema/spec": "^1.0.0", "fast-check": "^3.23.1" } }, "sha512-taMXnfG/p+j7AmMOHHQaCHvjqwu9QBO3cxuZqL2dMG/yWcEMw0ZHruHe9B49OxtfKH/vKKDDKRhZ+1GJ2p5R5w=="],
|
||||
|
||||
"electron-to-chromium": ["electron-to-chromium@1.5.263", "", {}, "sha512-DrqJ11Knd+lo+dv+lltvfMDLU27g14LMdH2b0O3Pio4uk0x+z7OR+JrmyacTPN2M8w3BrZ7/RTwG3R9B7irPlg=="],
|
||||
|
||||
"elliptic": ["elliptic@6.6.1", "", { "dependencies": { "bn.js": "^4.11.9", "brorand": "^1.1.0", "hash.js": "^1.0.0", "hmac-drbg": "^1.0.1", "inherits": "^2.0.4", "minimalistic-assert": "^1.0.1", "minimalistic-crypto-utils": "^1.0.1" } }, "sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g=="],
|
||||
|
||||
"emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="],
|
||||
|
||||
"env-paths": ["env-paths@2.2.1", "", {}, "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A=="],
|
||||
|
||||
"error-ex": ["error-ex@1.3.4", "", { "dependencies": { "is-arrayish": "^0.2.1" } }, "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ=="],
|
||||
|
||||
"es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="],
|
||||
|
||||
"es-errors": ["es-errors@1.3.0", "", {}, "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw=="],
|
||||
|
||||
"es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="],
|
||||
|
||||
"esbuild": ["esbuild@0.25.12", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.25.12", "@esbuild/android-arm": "0.25.12", "@esbuild/android-arm64": "0.25.12", "@esbuild/android-x64": "0.25.12", "@esbuild/darwin-arm64": "0.25.12", "@esbuild/darwin-x64": "0.25.12", "@esbuild/freebsd-arm64": "0.25.12", "@esbuild/freebsd-x64": "0.25.12", "@esbuild/linux-arm": "0.25.12", "@esbuild/linux-arm64": "0.25.12", "@esbuild/linux-ia32": "0.25.12", "@esbuild/linux-loong64": "0.25.12", "@esbuild/linux-mips64el": "0.25.12", "@esbuild/linux-ppc64": "0.25.12", "@esbuild/linux-riscv64": "0.25.12", "@esbuild/linux-s390x": "0.25.12", "@esbuild/linux-x64": "0.25.12", "@esbuild/netbsd-arm64": "0.25.12", "@esbuild/netbsd-x64": "0.25.12", "@esbuild/openbsd-arm64": "0.25.12", "@esbuild/openbsd-x64": "0.25.12", "@esbuild/openharmony-arm64": "0.25.12", "@esbuild/sunos-x64": "0.25.12", "@esbuild/win32-arm64": "0.25.12", "@esbuild/win32-ia32": "0.25.12", "@esbuild/win32-x64": "0.25.12" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg=="],
|
||||
|
||||
"escalade": ["escalade@3.2.0", "", {}, "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA=="],
|
||||
|
|
@ -949,16 +870,10 @@
|
|||
|
||||
"estraverse": ["estraverse@5.3.0", "", {}, "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="],
|
||||
|
||||
"estree-walker": ["estree-walker@2.0.2", "", {}, "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="],
|
||||
|
||||
"esutils": ["esutils@2.0.3", "", {}, "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="],
|
||||
|
||||
"events": ["events@3.3.0", "", {}, "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q=="],
|
||||
|
||||
"events-universal": ["events-universal@1.0.1", "", { "dependencies": { "bare-events": "^2.7.0" } }, "sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw=="],
|
||||
|
||||
"evp_bytestokey": ["evp_bytestokey@1.0.3", "", { "dependencies": { "md5.js": "^1.3.4", "safe-buffer": "^5.1.1" } }, "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA=="],
|
||||
|
||||
"execa": ["execa@5.1.1", "", { "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.0", "human-signals": "^2.1.0", "is-stream": "^2.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^4.0.1", "onetime": "^5.1.2", "signal-exit": "^3.0.3", "strip-final-newline": "^2.0.0" } }, "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg=="],
|
||||
|
||||
"ext-list": ["ext-list@2.2.2", "", { "dependencies": { "mime-db": "^1.28.0" } }, "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA=="],
|
||||
|
|
@ -1009,8 +924,6 @@
|
|||
|
||||
"focusable-selectors": ["focusable-selectors@0.8.4", "", {}, "sha512-0XxbkD0KhOnX10qmnfF9U8DkDD8N/e4M77wMYw2Itoi4vdcoRjSkqXLZFIzkrLIOxzmzCGy88fNG1EbeXMD/zw=="],
|
||||
|
||||
"for-each": ["for-each@0.3.5", "", { "dependencies": { "is-callable": "^1.2.7" } }, "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg=="],
|
||||
|
||||
"form-data-encoder": ["form-data-encoder@2.1.4", "", {}, "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw=="],
|
||||
|
||||
"formatly": ["formatly@0.3.0", "", { "dependencies": { "fd-package-json": "^2.0.0" }, "bin": { "formatly": "bin/index.mjs" } }, "sha512-9XNj/o4wrRFyhSMJOvsuyMwy8aUfBaZ1VrqHVfohyXf0Sw0e+yfKG+xZaY3arGCOMdwFsqObtzVOc1gU9KiT9w=="],
|
||||
|
|
@ -1019,14 +932,8 @@
|
|||
|
||||
"function-bind": ["function-bind@1.1.2", "", {}, "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="],
|
||||
|
||||
"generator-function": ["generator-function@2.0.1", "", {}, "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g=="],
|
||||
|
||||
"gensync": ["gensync@1.0.0-beta.2", "", {}, "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg=="],
|
||||
|
||||
"get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="],
|
||||
|
||||
"get-proto": ["get-proto@1.0.1", "", { "dependencies": { "dunder-proto": "^1.0.1", "es-object-atoms": "^1.0.0" } }, "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g=="],
|
||||
|
||||
"get-stream": ["get-stream@6.0.1", "", {}, "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg=="],
|
||||
|
||||
"glob-parent": ["glob-parent@6.0.2", "", { "dependencies": { "is-glob": "^4.0.3" } }, "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A=="],
|
||||
|
|
@ -1043,8 +950,6 @@
|
|||
|
||||
"globrex": ["globrex@0.1.2", "", {}, "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg=="],
|
||||
|
||||
"gopd": ["gopd@1.2.0", "", {}, "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg=="],
|
||||
|
||||
"got": ["got@13.0.0", "", { "dependencies": { "@sindresorhus/is": "^5.2.0", "@szmarczak/http-timer": "^5.0.1", "cacheable-lookup": "^7.0.0", "cacheable-request": "^10.2.8", "decompress-response": "^6.0.0", "form-data-encoder": "^2.1.2", "get-stream": "^6.0.1", "http2-wrapper": "^2.1.10", "lowercase-keys": "^3.0.0", "p-cancelable": "^3.0.0", "responselike": "^3.0.0" } }, "sha512-XfBk1CxOOScDcMr9O1yKkNaQyy865NbYs+F7dr4H0LZMVgCj2Le59k6PqbNHoL5ToeaEQUYh6c6yMfVcc6SJxA=="],
|
||||
|
||||
"graceful-fs": ["graceful-fs@4.2.11", "", {}, "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="],
|
||||
|
|
@ -1053,22 +958,10 @@
|
|||
|
||||
"has-flag": ["has-flag@4.0.0", "", {}, "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="],
|
||||
|
||||
"has-property-descriptors": ["has-property-descriptors@1.0.2", "", { "dependencies": { "es-define-property": "^1.0.0" } }, "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg=="],
|
||||
|
||||
"has-symbols": ["has-symbols@1.1.0", "", {}, "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ=="],
|
||||
|
||||
"has-tostringtag": ["has-tostringtag@1.0.2", "", { "dependencies": { "has-symbols": "^1.0.3" } }, "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw=="],
|
||||
|
||||
"hash-base": ["hash-base@3.0.5", "", { "dependencies": { "inherits": "^2.0.4", "safe-buffer": "^5.2.1" } }, "sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg=="],
|
||||
|
||||
"hash.js": ["hash.js@1.1.7", "", { "dependencies": { "inherits": "^2.0.3", "minimalistic-assert": "^1.0.1" } }, "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA=="],
|
||||
|
||||
"hashery": ["hashery@1.3.0", "", { "dependencies": { "hookified": "^1.13.0" } }, "sha512-fWltioiy5zsSAs9ouEnvhsVJeAXRybGCNNv0lvzpzNOSDbULXRy7ivFWwCCv4I5Am6kSo75hmbsCduOoc2/K4w=="],
|
||||
|
||||
"hasown": ["hasown@2.0.2", "", { "dependencies": { "function-bind": "^1.1.2" } }, "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ=="],
|
||||
|
||||
"hmac-drbg": ["hmac-drbg@1.0.1", "", { "dependencies": { "hash.js": "^1.0.3", "minimalistic-assert": "^1.0.0", "minimalistic-crypto-utils": "^1.0.1" } }, "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg=="],
|
||||
|
||||
"hookified": ["hookified@1.13.0", "", {}, "sha512-6sPYUY8olshgM/1LDNW4QZQN0IqgKhtl/1C8koNZBJrKLBk3AZl6chQtNwpNztvfiApHMEwMHek5rv993PRbWw=="],
|
||||
|
||||
"html-tags": ["html-tags@3.3.1", "", {}, "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ=="],
|
||||
|
|
@ -1077,8 +970,6 @@
|
|||
|
||||
"http2-wrapper": ["http2-wrapper@2.2.1", "", { "dependencies": { "quick-lru": "^5.1.1", "resolve-alpn": "^1.2.0" } }, "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ=="],
|
||||
|
||||
"https-browserify": ["https-browserify@1.0.0", "", {}, "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg=="],
|
||||
|
||||
"human-signals": ["human-signals@2.1.0", "", {}, "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw=="],
|
||||
|
||||
"ieee754": ["ieee754@1.2.1", "", {}, "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="],
|
||||
|
|
@ -1091,50 +982,32 @@
|
|||
|
||||
"imurmurhash": ["imurmurhash@0.1.4", "", {}, "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="],
|
||||
|
||||
"inherits": ["inherits@2.0.4", "", {}, "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="],
|
||||
|
||||
"ini": ["ini@1.3.8", "", {}, "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="],
|
||||
|
||||
"inspect-with-kind": ["inspect-with-kind@1.0.5", "", { "dependencies": { "kind-of": "^6.0.2" } }, "sha512-MAQUJuIo7Xqk8EVNP+6d3CKq9c80hi4tjIbIAT6lmGW9W6WzlHiu9PS8uSuUYU+Do+j1baiFp3H25XEVxDIG2g=="],
|
||||
|
||||
"is-arguments": ["is-arguments@1.2.0", "", { "dependencies": { "call-bound": "^1.0.2", "has-tostringtag": "^1.0.2" } }, "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA=="],
|
||||
|
||||
"is-arrayish": ["is-arrayish@0.2.1", "", {}, "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="],
|
||||
|
||||
"is-callable": ["is-callable@1.2.7", "", {}, "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA=="],
|
||||
|
||||
"is-core-module": ["is-core-module@2.16.1", "", { "dependencies": { "hasown": "^2.0.2" } }, "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w=="],
|
||||
|
||||
"is-extglob": ["is-extglob@2.1.1", "", {}, "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="],
|
||||
|
||||
"is-fullwidth-code-point": ["is-fullwidth-code-point@3.0.0", "", {}, "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="],
|
||||
|
||||
"is-generator-function": ["is-generator-function@1.1.2", "", { "dependencies": { "call-bound": "^1.0.4", "generator-function": "^2.0.0", "get-proto": "^1.0.1", "has-tostringtag": "^1.0.2", "safe-regex-test": "^1.1.0" } }, "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA=="],
|
||||
|
||||
"is-glob": ["is-glob@4.0.3", "", { "dependencies": { "is-extglob": "^2.1.1" } }, "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="],
|
||||
|
||||
"is-nan": ["is-nan@1.3.2", "", { "dependencies": { "call-bind": "^1.0.0", "define-properties": "^1.1.3" } }, "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w=="],
|
||||
|
||||
"is-number": ["is-number@7.0.0", "", {}, "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="],
|
||||
|
||||
"is-plain-obj": ["is-plain-obj@1.1.0", "", {}, "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg=="],
|
||||
|
||||
"is-plain-object": ["is-plain-object@5.0.0", "", {}, "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q=="],
|
||||
|
||||
"is-regex": ["is-regex@1.2.1", "", { "dependencies": { "call-bound": "^1.0.2", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" } }, "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g=="],
|
||||
|
||||
"is-stream": ["is-stream@2.0.1", "", {}, "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="],
|
||||
|
||||
"is-typed-array": ["is-typed-array@1.1.15", "", { "dependencies": { "which-typed-array": "^1.1.16" } }, "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ=="],
|
||||
|
||||
"is-unicode-supported": ["is-unicode-supported@2.1.0", "", {}, "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ=="],
|
||||
|
||||
"isarray": ["isarray@1.0.0", "", {}, "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="],
|
||||
|
||||
"isexe": ["isexe@2.0.0", "", {}, "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="],
|
||||
|
||||
"isomorphic-timers-promises": ["isomorphic-timers-promises@1.0.1", "", {}, "sha512-u4sej9B1LPSxTGKB/HiuzvEQnXH0ECYkSVQU39koSwmFAxhlEAFl9RdTvLv4TOTQUgBS5O3O5fwUxk6byBZ+IQ=="],
|
||||
|
||||
"jiti": ["jiti@2.6.1", "", { "bin": { "jiti": "lib/jiti-cli.mjs" } }, "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ=="],
|
||||
|
||||
"js-tokens": ["js-tokens@4.0.0", "", {}, "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="],
|
||||
|
|
@ -1211,12 +1084,8 @@
|
|||
|
||||
"magic-string": ["magic-string@0.30.21", "", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.5.5" } }, "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ=="],
|
||||
|
||||
"math-intrinsics": ["math-intrinsics@1.1.0", "", {}, "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g=="],
|
||||
|
||||
"mathml-tag-names": ["mathml-tag-names@2.1.3", "", {}, "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg=="],
|
||||
|
||||
"md5.js": ["md5.js@1.3.5", "", { "dependencies": { "hash-base": "^3.0.0", "inherits": "^2.0.1", "safe-buffer": "^5.1.2" } }, "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg=="],
|
||||
|
||||
"mdn-data": ["mdn-data@2.12.2", "", {}, "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA=="],
|
||||
|
||||
"meow": ["meow@13.2.0", "", {}, "sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA=="],
|
||||
|
|
@ -1227,18 +1096,12 @@
|
|||
|
||||
"micromatch": ["micromatch@4.0.8", "", { "dependencies": { "braces": "^3.0.3", "picomatch": "^2.3.1" } }, "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA=="],
|
||||
|
||||
"miller-rabin": ["miller-rabin@4.0.1", "", { "dependencies": { "bn.js": "^4.0.0", "brorand": "^1.0.1" }, "bin": { "miller-rabin": "bin/miller-rabin" } }, "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA=="],
|
||||
|
||||
"mime-db": ["mime-db@1.54.0", "", {}, "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ=="],
|
||||
|
||||
"mimic-fn": ["mimic-fn@2.1.0", "", {}, "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="],
|
||||
|
||||
"mimic-response": ["mimic-response@4.0.0", "", {}, "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg=="],
|
||||
|
||||
"minimalistic-assert": ["minimalistic-assert@1.0.1", "", {}, "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A=="],
|
||||
|
||||
"minimalistic-crypto-utils": ["minimalistic-crypto-utils@1.0.1", "", {}, "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg=="],
|
||||
|
||||
"minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="],
|
||||
|
||||
"minimist": ["minimist@1.2.8", "", {}, "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="],
|
||||
|
|
@ -1255,30 +1118,18 @@
|
|||
|
||||
"node-releases": ["node-releases@2.0.27", "", {}, "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA=="],
|
||||
|
||||
"node-stdlib-browser": ["node-stdlib-browser@1.3.1", "", { "dependencies": { "assert": "^2.0.0", "browser-resolve": "^2.0.0", "browserify-zlib": "^0.2.0", "buffer": "^5.7.1", "console-browserify": "^1.1.0", "constants-browserify": "^1.0.0", "create-require": "^1.1.1", "crypto-browserify": "^3.12.1", "domain-browser": "4.22.0", "events": "^3.0.0", "https-browserify": "^1.0.0", "isomorphic-timers-promises": "^1.0.1", "os-browserify": "^0.3.0", "path-browserify": "^1.0.1", "pkg-dir": "^5.0.0", "process": "^0.11.10", "punycode": "^1.4.1", "querystring-es3": "^0.2.1", "readable-stream": "^3.6.0", "stream-browserify": "^3.0.0", "stream-http": "^3.2.0", "string_decoder": "^1.0.0", "timers-browserify": "^2.0.4", "tty-browserify": "0.0.1", "url": "^0.11.4", "util": "^0.12.4", "vm-browserify": "^1.0.1" } }, "sha512-X75ZN8DCLftGM5iKwoYLA3rjnrAEs97MkzvSd4q2746Tgpg8b8XWiBGiBG4ZpgcAqBgtgPHTiAc8ZMCvZuikDw=="],
|
||||
|
||||
"normalize-path": ["normalize-path@3.0.0", "", {}, "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="],
|
||||
|
||||
"normalize-url": ["normalize-url@8.1.0", "", {}, "sha512-X06Mfd/5aKsRHc0O0J5CUedwnPmnDtLF2+nq+KN9KSDlJHkPuh0JUviWjEWMe0SW/9TDdSLVPuk7L5gGTIA1/w=="],
|
||||
|
||||
"npm-run-path": ["npm-run-path@4.0.1", "", { "dependencies": { "path-key": "^3.0.0" } }, "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw=="],
|
||||
|
||||
"object-inspect": ["object-inspect@1.13.4", "", {}, "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew=="],
|
||||
|
||||
"object-is": ["object-is@1.1.6", "", { "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1" } }, "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q=="],
|
||||
|
||||
"object-keys": ["object-keys@1.1.1", "", {}, "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="],
|
||||
|
||||
"object.assign": ["object.assign@4.1.7", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0", "has-symbols": "^1.1.0", "object-keys": "^1.1.1" } }, "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw=="],
|
||||
|
||||
"onetime": ["onetime@5.1.2", "", { "dependencies": { "mimic-fn": "^2.1.0" } }, "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="],
|
||||
|
||||
"optics-ts": ["optics-ts@2.4.1", "", {}, "sha512-HaYzMHvC80r7U/LqAd4hQyopDezC60PO2qF5GuIwALut2cl5rK1VWHsqTp0oqoJJWjiv6uXKqsO+Q2OO0C3MmQ=="],
|
||||
|
||||
"optionator": ["optionator@0.9.4", "", { "dependencies": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", "type-check": "^0.4.0", "word-wrap": "^1.2.5" } }, "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g=="],
|
||||
|
||||
"os-browserify": ["os-browserify@0.3.0", "", {}, "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A=="],
|
||||
|
||||
"oxc-resolver": ["oxc-resolver@11.14.2", "", { "optionalDependencies": { "@oxc-resolver/binding-android-arm-eabi": "11.14.2", "@oxc-resolver/binding-android-arm64": "11.14.2", "@oxc-resolver/binding-darwin-arm64": "11.14.2", "@oxc-resolver/binding-darwin-x64": "11.14.2", "@oxc-resolver/binding-freebsd-x64": "11.14.2", "@oxc-resolver/binding-linux-arm-gnueabihf": "11.14.2", "@oxc-resolver/binding-linux-arm-musleabihf": "11.14.2", "@oxc-resolver/binding-linux-arm64-gnu": "11.14.2", "@oxc-resolver/binding-linux-arm64-musl": "11.14.2", "@oxc-resolver/binding-linux-ppc64-gnu": "11.14.2", "@oxc-resolver/binding-linux-riscv64-gnu": "11.14.2", "@oxc-resolver/binding-linux-riscv64-musl": "11.14.2", "@oxc-resolver/binding-linux-s390x-gnu": "11.14.2", "@oxc-resolver/binding-linux-x64-gnu": "11.14.2", "@oxc-resolver/binding-linux-x64-musl": "11.14.2", "@oxc-resolver/binding-openharmony-arm64": "11.14.2", "@oxc-resolver/binding-wasm32-wasi": "11.14.2", "@oxc-resolver/binding-win32-arm64-msvc": "11.14.2", "@oxc-resolver/binding-win32-ia32-msvc": "11.14.2", "@oxc-resolver/binding-win32-x64-msvc": "11.14.2" } }, "sha512-M5fERQKcrCngMZNnk1gRaBbYcqpqXLgMcoqAo7Wpty+KH0I18i03oiy2peUsGJwFaKAEbmo+CtAyhXh08RZ1RA=="],
|
||||
|
||||
"oxlint": ["oxlint@1.31.0", "", { "optionalDependencies": { "@oxlint/darwin-arm64": "1.31.0", "@oxlint/darwin-x64": "1.31.0", "@oxlint/linux-arm64-gnu": "1.31.0", "@oxlint/linux-arm64-musl": "1.31.0", "@oxlint/linux-x64-gnu": "1.31.0", "@oxlint/linux-x64-musl": "1.31.0", "@oxlint/win32-arm64": "1.31.0", "@oxlint/win32-x64": "1.31.0" }, "peerDependencies": { "oxlint-tsgolint": ">=0.8.1" }, "optionalPeers": ["oxlint-tsgolint"], "bin": { "oxlint": "bin/oxlint", "oxc_language_server": "bin/oxc_language_server" } }, "sha512-U+Z3VShi1zuLF2Hz/pm4vWJUBm5sDHjwSzj340tz4tS2yXg9H5PTipsZv+Yu/alg6Z7EM2cZPKGNBZAvmdfkQg=="],
|
||||
|
|
@ -1289,16 +1140,10 @@
|
|||
|
||||
"p-locate": ["p-locate@5.0.0", "", { "dependencies": { "p-limit": "^3.0.2" } }, "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw=="],
|
||||
|
||||
"pako": ["pako@1.0.11", "", {}, "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw=="],
|
||||
|
||||
"parent-module": ["parent-module@1.0.1", "", { "dependencies": { "callsites": "^3.0.0" } }, "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="],
|
||||
|
||||
"parse-asn1": ["parse-asn1@5.1.9", "", { "dependencies": { "asn1.js": "^4.10.1", "browserify-aes": "^1.2.0", "evp_bytestokey": "^1.0.3", "pbkdf2": "^3.1.5", "safe-buffer": "^5.2.1" } }, "sha512-fIYNuZ/HastSb80baGOuPRo1O9cf4baWw5WsAp7dBuUzeTD/BoaG8sVTdlPFksBE2lF21dN+A1AnrpIjSWqHHg=="],
|
||||
|
||||
"parse-json": ["parse-json@5.2.0", "", { "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" } }, "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="],
|
||||
|
||||
"path-browserify": ["path-browserify@1.0.1", "", {}, "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g=="],
|
||||
|
||||
"path-exists": ["path-exists@4.0.0", "", {}, "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="],
|
||||
|
||||
"path-key": ["path-key@3.1.1", "", {}, "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="],
|
||||
|
|
@ -1307,8 +1152,6 @@
|
|||
|
||||
"path-type": ["path-type@4.0.0", "", {}, "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="],
|
||||
|
||||
"pbkdf2": ["pbkdf2@3.1.5", "", { "dependencies": { "create-hash": "^1.2.0", "create-hmac": "^1.1.7", "ripemd160": "^2.0.3", "safe-buffer": "^5.2.1", "sha.js": "^2.4.12", "to-buffer": "^1.2.1" } }, "sha512-Q3CG/cYvCO1ye4QKkuH7EXxs3VC/rI1/trd+qX2+PolbaKG0H+bgcZzrTt96mMyRtejk+JMCiLUn3y29W8qmFQ=="],
|
||||
|
||||
"pend": ["pend@1.2.0", "", {}, "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg=="],
|
||||
|
||||
"picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="],
|
||||
|
|
@ -1317,14 +1160,10 @@
|
|||
|
||||
"piscina": ["piscina@4.9.2", "", { "optionalDependencies": { "@napi-rs/nice": "^1.0.1" } }, "sha512-Fq0FERJWFEUpB4eSY59wSNwXD4RYqR+nR/WiEVcZW8IWfVBxJJafcgTEZDQo8k3w0sUarJ8RyVbbUF4GQ2LGbQ=="],
|
||||
|
||||
"pkg-dir": ["pkg-dir@5.0.0", "", { "dependencies": { "find-up": "^5.0.0" } }, "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA=="],
|
||||
|
||||
"playwright": ["playwright@1.57.0", "", { "dependencies": { "playwright-core": "1.57.0" }, "optionalDependencies": { "fsevents": "2.3.2" }, "bin": { "playwright": "cli.js" } }, "sha512-ilYQj1s8sr2ppEJ2YVadYBN0Mb3mdo9J0wQ+UuDhzYqURwSoW4n1Xs5vs7ORwgDGmyEh33tRMeS8KhdkMoLXQw=="],
|
||||
|
||||
"playwright-core": ["playwright-core@1.57.0", "", { "bin": { "playwright-core": "cli.js" } }, "sha512-agTcKlMw/mjBWOnD6kFZttAAGHgi/Nw0CZ2o6JqWSbMlI219lAFLZZCyqByTsvVAJq5XA5H8cA6PrvBRpBWEuQ=="],
|
||||
|
||||
"possible-typed-array-names": ["possible-typed-array-names@1.1.0", "", {}, "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg=="],
|
||||
|
||||
"postcss": ["postcss@8.5.6", "", { "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg=="],
|
||||
|
||||
"postcss-media-query-parser": ["postcss-media-query-parser@0.2.3", "", {}, "sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig=="],
|
||||
|
|
@ -1343,19 +1182,13 @@
|
|||
|
||||
"prelude-ls": ["prelude-ls@1.2.1", "", {}, "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="],
|
||||
|
||||
"prettier": ["prettier@3.7.4", "", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-v6UNi1+3hSlVvv8fSaoUbggEM5VErKmmpGA7Pl3HF8V6uKY7rvClBOJlH6yNwQtfTueNkGVpOv/mtWL9L4bgRA=="],
|
||||
"prettier": ["prettier@4.0.0-alpha.13", "http://localhost:4873/prettier/-/prettier-4.0.0-alpha.13.tgz", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-177K/2S5iYDKtvZkDC2ZMqpyXtoiiVQBVQZpcQsRs+ZIIUQxsXomWIjquAlwt2pXpio9riz5IgtaUEnoZH44tg=="],
|
||||
|
||||
"prettier-plugin-pkg": ["prettier-plugin-pkg@0.21.2", "", { "peerDependencies": { "prettier": "^3.0.3" } }, "sha512-CSlM5+51B7yTKcoRWT4M3ImcdFHD5NUz0Xu2t8J03B761zu6J3BjSo/XleKp2kB0tH49K7oG5Uuqn6ldI5LRLg=="],
|
||||
|
||||
"prettier-plugin-sh": ["prettier-plugin-sh@0.18.0", "", { "dependencies": { "@reteps/dockerfmt": "^0.3.6", "sh-syntax": "^0.5.8" }, "peerDependencies": { "prettier": "^3.6.0" } }, "sha512-cW1XL27FOJQ/qGHOW6IHwdCiNWQsAgK+feA8V6+xUTaH0cD3Mh+tFAtBvEEWvuY6hTDzRV943Fzeii+qMOh7nQ=="],
|
||||
|
||||
"process": ["process@0.11.10", "", {}, "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A=="],
|
||||
|
||||
"process-nextick-args": ["process-nextick-args@2.0.1", "", {}, "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="],
|
||||
|
||||
"public-encrypt": ["public-encrypt@4.0.3", "", { "dependencies": { "bn.js": "^4.1.0", "browserify-rsa": "^4.0.0", "create-hash": "^1.1.0", "parse-asn1": "^5.0.0", "randombytes": "^2.0.1", "safe-buffer": "^5.1.2" } }, "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q=="],
|
||||
|
||||
"punycode": ["punycode@1.4.1", "", {}, "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ=="],
|
||||
"punycode": ["punycode@2.3.1", "", {}, "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg=="],
|
||||
|
||||
"pure-rand": ["pure-rand@6.1.0", "", {}, "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA=="],
|
||||
|
||||
|
|
@ -1363,20 +1196,10 @@
|
|||
|
||||
"qified": ["qified@0.5.2", "", { "dependencies": { "hookified": "^1.13.0" } }, "sha512-7gJ6mxcQb9vUBOtbKm5mDevbe2uRcOEVp1g4gb/Q+oLntB3HY8eBhOYRxFI2mlDFlY1e4DOSCptzxarXRvzxCA=="],
|
||||
|
||||
"qs": ["qs@6.14.0", "", { "dependencies": { "side-channel": "^1.1.0" } }, "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w=="],
|
||||
|
||||
"querystring-es3": ["querystring-es3@0.2.1", "", {}, "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA=="],
|
||||
|
||||
"queue-microtask": ["queue-microtask@1.2.3", "", {}, "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="],
|
||||
|
||||
"quick-lru": ["quick-lru@5.1.1", "", {}, "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA=="],
|
||||
|
||||
"randombytes": ["randombytes@2.1.0", "", { "dependencies": { "safe-buffer": "^5.1.0" } }, "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ=="],
|
||||
|
||||
"randomfill": ["randomfill@1.0.4", "", { "dependencies": { "randombytes": "^2.0.5", "safe-buffer": "^5.1.0" } }, "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw=="],
|
||||
|
||||
"readable-stream": ["readable-stream@3.6.2", "", { "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" } }, "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA=="],
|
||||
|
||||
"readdirp": ["readdirp@4.1.2", "", {}, "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg=="],
|
||||
|
||||
"regenerate": ["regenerate@1.4.2", "", {}, "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="],
|
||||
|
|
@ -1405,8 +1228,6 @@
|
|||
|
||||
"reusify": ["reusify@1.1.0", "", {}, "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw=="],
|
||||
|
||||
"ripemd160": ["ripemd160@2.0.3", "", { "dependencies": { "hash-base": "^3.1.2", "inherits": "^2.0.4" } }, "sha512-5Di9UC0+8h1L6ZD2d7awM7E/T4uA1fJRlx6zk/NvdCCVEoAnFqvHmCuNeIKoCeIixBX/q8uM+6ycDvF8woqosA=="],
|
||||
|
||||
"rollup": ["rollup@4.53.3", "", { "dependencies": { "@types/estree": "1.0.8" }, "optionalDependencies": { "@rollup/rollup-android-arm-eabi": "4.53.3", "@rollup/rollup-android-arm64": "4.53.3", "@rollup/rollup-darwin-arm64": "4.53.3", "@rollup/rollup-darwin-x64": "4.53.3", "@rollup/rollup-freebsd-arm64": "4.53.3", "@rollup/rollup-freebsd-x64": "4.53.3", "@rollup/rollup-linux-arm-gnueabihf": "4.53.3", "@rollup/rollup-linux-arm-musleabihf": "4.53.3", "@rollup/rollup-linux-arm64-gnu": "4.53.3", "@rollup/rollup-linux-arm64-musl": "4.53.3", "@rollup/rollup-linux-loong64-gnu": "4.53.3", "@rollup/rollup-linux-ppc64-gnu": "4.53.3", "@rollup/rollup-linux-riscv64-gnu": "4.53.3", "@rollup/rollup-linux-riscv64-musl": "4.53.3", "@rollup/rollup-linux-s390x-gnu": "4.53.3", "@rollup/rollup-linux-x64-gnu": "4.53.3", "@rollup/rollup-linux-x64-musl": "4.53.3", "@rollup/rollup-openharmony-arm64": "4.53.3", "@rollup/rollup-win32-arm64-msvc": "4.53.3", "@rollup/rollup-win32-ia32-msvc": "4.53.3", "@rollup/rollup-win32-x64-gnu": "4.53.3", "@rollup/rollup-win32-x64-msvc": "4.53.3", "fsevents": "~2.3.2" }, "bin": { "rollup": "dist/bin/rollup" } }, "sha512-w8GmOxZfBmKknvdXU1sdM9NHcoQejwF/4mNgj2JuEEdRaHwwF12K7e9eXn1nLZ07ad+du76mkVsyeb2rKGllsA=="],
|
||||
|
||||
"run-parallel": ["run-parallel@1.2.0", "", { "dependencies": { "queue-microtask": "^1.2.2" } }, "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="],
|
||||
|
|
@ -1415,8 +1236,6 @@
|
|||
|
||||
"safe-buffer": ["safe-buffer@5.2.1", "", {}, "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="],
|
||||
|
||||
"safe-regex-test": ["safe-regex-test@1.1.0", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "is-regex": "^1.2.1" } }, "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw=="],
|
||||
|
||||
"sass": ["sass@1.93.3", "", { "dependencies": { "chokidar": "^4.0.0", "immutable": "^5.0.2", "source-map-js": ">=0.6.2 <2.0.0" }, "optionalDependencies": { "@parcel/watcher": "^2.4.1" }, "bin": { "sass": "sass.js" } }, "sha512-elOcIZRTM76dvxNAjqYrucTSI0teAF/L2Lv0s6f6b7FOwcwIuA357bIE871580AjHJuSvLIRUosgV+lIWx6Rgg=="],
|
||||
|
||||
"sass-embedded": ["sass-embedded@1.93.3", "", { "dependencies": { "@bufbuild/protobuf": "^2.5.0", "buffer-builder": "^0.2.0", "colorjs.io": "^0.5.0", "immutable": "^5.0.2", "rxjs": "^7.4.0", "supports-color": "^8.1.1", "sync-child-process": "^1.0.2", "varint": "^6.0.0" }, "optionalDependencies": { "sass-embedded-all-unknown": "1.93.3", "sass-embedded-android-arm": "1.93.3", "sass-embedded-android-arm64": "1.93.3", "sass-embedded-android-riscv64": "1.93.3", "sass-embedded-android-x64": "1.93.3", "sass-embedded-darwin-arm64": "1.93.3", "sass-embedded-darwin-x64": "1.93.3", "sass-embedded-linux-arm": "1.93.3", "sass-embedded-linux-arm64": "1.93.3", "sass-embedded-linux-musl-arm": "1.93.3", "sass-embedded-linux-musl-arm64": "1.93.3", "sass-embedded-linux-musl-riscv64": "1.93.3", "sass-embedded-linux-musl-x64": "1.93.3", "sass-embedded-linux-riscv64": "1.93.3", "sass-embedded-linux-x64": "1.93.3", "sass-embedded-unknown-all": "1.93.3", "sass-embedded-win32-arm64": "1.93.3", "sass-embedded-win32-x64": "1.93.3" }, "bin": { "sass": "dist/bin/sass.js" } }, "sha512-+VUy01yfDqNmIVMd/LLKl2TTtY0ovZN0rTonh+FhKr65mFwIYgU9WzgIZKS7U9/SPCQvWTsTGx9jyt+qRm/XFw=="],
|
||||
|
|
@ -1465,26 +1284,12 @@
|
|||
|
||||
"semver-truncate": ["semver-truncate@3.0.0", "", { "dependencies": { "semver": "^7.3.5" } }, "sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg=="],
|
||||
|
||||
"set-function-length": ["set-function-length@1.2.2", "", { "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", "function-bind": "^1.1.2", "get-intrinsic": "^1.2.4", "gopd": "^1.0.1", "has-property-descriptors": "^1.0.2" } }, "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg=="],
|
||||
|
||||
"setimmediate": ["setimmediate@1.0.5", "", {}, "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA=="],
|
||||
|
||||
"sh-syntax": ["sh-syntax@0.5.8", "", { "dependencies": { "tslib": "^2.8.1" } }, "sha512-JfVoxf4FxQI5qpsPbkHhZo+n6N9YMJobyl4oGEUBb/31oQYlgTjkXQD8PBiafS2UbWoxrTO0Z5PJUBXEPAG1Zw=="],
|
||||
|
||||
"sha.js": ["sha.js@2.4.12", "", { "dependencies": { "inherits": "^2.0.4", "safe-buffer": "^5.2.1", "to-buffer": "^1.2.0" }, "bin": { "sha.js": "bin.js" } }, "sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w=="],
|
||||
|
||||
"shebang-command": ["shebang-command@2.0.0", "", { "dependencies": { "shebang-regex": "^3.0.0" } }, "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA=="],
|
||||
|
||||
"shebang-regex": ["shebang-regex@3.0.0", "", {}, "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="],
|
||||
|
||||
"side-channel": ["side-channel@1.1.0", "", { "dependencies": { "es-errors": "^1.3.0", "object-inspect": "^1.13.3", "side-channel-list": "^1.0.0", "side-channel-map": "^1.0.1", "side-channel-weakmap": "^1.0.2" } }, "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw=="],
|
||||
|
||||
"side-channel-list": ["side-channel-list@1.0.0", "", { "dependencies": { "es-errors": "^1.3.0", "object-inspect": "^1.13.3" } }, "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA=="],
|
||||
|
||||
"side-channel-map": ["side-channel-map@1.0.1", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.5", "object-inspect": "^1.13.3" } }, "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA=="],
|
||||
|
||||
"side-channel-weakmap": ["side-channel-weakmap@1.0.2", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.5", "object-inspect": "^1.13.3", "side-channel-map": "^1.0.1" } }, "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A=="],
|
||||
|
||||
"signal-exit": ["signal-exit@4.1.0", "", {}, "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw=="],
|
||||
|
||||
"slash": ["slash@3.0.0", "", {}, "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="],
|
||||
|
|
@ -1503,16 +1308,10 @@
|
|||
|
||||
"source-map-support": ["source-map-support@0.5.21", "", { "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" } }, "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w=="],
|
||||
|
||||
"stream-browserify": ["stream-browserify@3.0.0", "", { "dependencies": { "inherits": "~2.0.4", "readable-stream": "^3.5.0" } }, "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA=="],
|
||||
|
||||
"stream-http": ["stream-http@3.2.0", "", { "dependencies": { "builtin-status-codes": "^3.0.0", "inherits": "^2.0.4", "readable-stream": "^3.6.0", "xtend": "^4.0.2" } }, "sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A=="],
|
||||
|
||||
"streamx": ["streamx@2.23.0", "", { "dependencies": { "events-universal": "^1.0.0", "fast-fifo": "^1.3.2", "text-decoder": "^1.1.0" } }, "sha512-kn+e44esVfn2Fa/O0CPFcex27fjIL6MkVae0Mm6q+E6f0hWv578YCERbv+4m02cjxvDsPKLnmxral/rR6lBMAg=="],
|
||||
|
||||
"string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="],
|
||||
|
||||
"string_decoder": ["string_decoder@1.3.0", "", { "dependencies": { "safe-buffer": "~5.2.0" } }, "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="],
|
||||
|
||||
"strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="],
|
||||
|
||||
"strip-dirs": ["strip-dirs@3.0.0", "", { "dependencies": { "inspect-with-kind": "^1.0.5", "is-plain-obj": "^1.1.0" } }, "sha512-I0sdgcFTfKQlUPZyAqPJmSG3HLO9rWDFnxonnIbskYNM3DwFOeTNB5KzVq3dA1GdRAc/25b5Y7UO2TQfKWw4aQ=="],
|
||||
|
|
@ -1563,8 +1362,6 @@
|
|||
|
||||
"table": ["table@6.9.0", "", { "dependencies": { "ajv": "^8.0.1", "lodash.truncate": "^4.4.2", "slice-ansi": "^4.0.0", "string-width": "^4.2.3", "strip-ansi": "^6.0.1" } }, "sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A=="],
|
||||
|
||||
"tar-mini": ["tar-mini@0.2.0", "", {}, "sha512-+qfUHz700DWnRutdUsxRRVZ38G1Qr27OetwaMYTdg8hcPxf46U0S1Zf76dQMWRBmusOt2ZCK5kbIaiLkoGO7WQ=="],
|
||||
|
||||
"tar-stream": ["tar-stream@3.1.7", "", { "dependencies": { "b4a": "^1.6.4", "fast-fifo": "^1.2.0", "streamx": "^2.15.0" } }, "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ=="],
|
||||
|
||||
"terser": ["terser@5.44.1", "", { "dependencies": { "@jridgewell/source-map": "^0.3.3", "acorn": "^8.15.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, "bin": { "terser": "bin/terser" } }, "sha512-t/R3R/n0MSwnnazuPpPNVO60LX0SKL45pyl9YlvxIdkH0Of7D5qM2EVe+yASRIlY5pZ73nclYJfNANGWPwFDZw=="],
|
||||
|
|
@ -1573,12 +1370,8 @@
|
|||
|
||||
"through": ["through@2.3.8", "", {}, "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg=="],
|
||||
|
||||
"timers-browserify": ["timers-browserify@2.0.12", "", { "dependencies": { "setimmediate": "^1.0.4" } }, "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ=="],
|
||||
|
||||
"tinyglobby": ["tinyglobby@0.2.15", "", { "dependencies": { "fdir": "^6.5.0", "picomatch": "^4.0.3" } }, "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ=="],
|
||||
|
||||
"to-buffer": ["to-buffer@1.2.2", "", { "dependencies": { "isarray": "^2.0.5", "safe-buffer": "^5.2.1", "typed-array-buffer": "^1.0.3" } }, "sha512-db0E3UJjcFhpDhAF4tLo03oli3pwl3dbnzXOUIlRKrp+ldk/VUxzpWYZENsw2SZiuBjHAk7DfB0VU7NKdpb6sw=="],
|
||||
|
||||
"to-regex-range": ["to-regex-range@5.0.1", "", { "dependencies": { "is-number": "^7.0.0" } }, "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="],
|
||||
|
||||
"token-types": ["token-types@6.1.1", "", { "dependencies": { "@borewit/text-codec": "^0.1.0", "@tokenizer/token": "^0.3.0", "ieee754": "^1.2.1" } }, "sha512-kh9LVIWH5CnL63Ipf0jhlBIy0UsrMj/NJDfpsy1SqOXlLKEVyXXYrnFxFT1yOOYVGBSApeVnjPw/sBz5BfEjAQ=="],
|
||||
|
|
@ -1591,12 +1384,8 @@
|
|||
|
||||
"tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="],
|
||||
|
||||
"tty-browserify": ["tty-browserify@0.0.1", "", {}, "sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw=="],
|
||||
|
||||
"type-check": ["type-check@0.4.0", "", { "dependencies": { "prelude-ls": "^1.2.1" } }, "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="],
|
||||
|
||||
"typed-array-buffer": ["typed-array-buffer@1.0.3", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-typed-array": "^1.1.14" } }, "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw=="],
|
||||
|
||||
"typescript": ["typescript@5.9.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="],
|
||||
|
||||
"typescript-eslint": ["typescript-eslint@8.48.1", "", { "dependencies": { "@typescript-eslint/eslint-plugin": "8.48.1", "@typescript-eslint/parser": "8.48.1", "@typescript-eslint/typescript-estree": "8.48.1", "@typescript-eslint/utils": "8.48.1" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-FbOKN1fqNoXp1hIl5KYpObVrp0mCn+CLgn479nmu2IsRMrx2vyv74MmsBLVlhg8qVwNFGbXSp8fh1zp8pEoC2A=="],
|
||||
|
|
@ -1619,10 +1408,6 @@
|
|||
|
||||
"uri-js": ["uri-js@4.4.1", "", { "dependencies": { "punycode": "^2.1.0" } }, "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="],
|
||||
|
||||
"url": ["url@0.11.4", "", { "dependencies": { "punycode": "^1.4.1", "qs": "^6.12.3" } }, "sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg=="],
|
||||
|
||||
"util": ["util@0.12.5", "", { "dependencies": { "inherits": "^2.0.3", "is-arguments": "^1.0.4", "is-generator-function": "^1.0.7", "is-typed-array": "^1.1.3", "which-typed-array": "^1.1.2" } }, "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA=="],
|
||||
|
||||
"util-deprecate": ["util-deprecate@1.0.2", "", {}, "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="],
|
||||
|
||||
"valibot": ["valibot@1.1.0", "", { "peerDependencies": { "typescript": ">=5" }, "optionalPeers": ["typescript"] }, "sha512-Nk8lX30Qhu+9txPYTwM0cFlWLdPFsFr6LblzqIySfbZph9+BFsAHsNvHOymEviUepeIW6KFHzpX8TKhbptBXXw=="],
|
||||
|
|
@ -1631,32 +1416,20 @@
|
|||
|
||||
"vite": ["vite@7.2.6", "", { "dependencies": { "esbuild": "^0.25.0", "fdir": "^6.5.0", "picomatch": "^4.0.3", "postcss": "^8.5.6", "rollup": "^4.43.0", "tinyglobby": "^0.2.15" }, "optionalDependencies": { "fsevents": "~2.3.3" }, "peerDependencies": { "@types/node": "^20.19.0 || >=22.12.0", "jiti": ">=1.21.0", "less": "^4.0.0", "lightningcss": "^1.21.0", "sass": "^1.70.0", "sass-embedded": "^1.70.0", "stylus": ">=0.54.8", "sugarss": "^5.0.0", "terser": "^5.16.0", "tsx": "^4.8.1", "yaml": "^2.4.2" }, "optionalPeers": ["@types/node", "jiti", "less", "lightningcss", "sass", "sass-embedded", "stylus", "sugarss", "terser", "tsx", "yaml"], "bin": { "vite": "bin/vite.js" } }, "sha512-tI2l/nFHC5rLh7+5+o7QjKjSR04ivXDF4jcgV0f/bTQ+OJiITy5S6gaynVsEM+7RqzufMnVbIon6Sr5x1SDYaQ=="],
|
||||
|
||||
"vite-plugin-compression2": ["vite-plugin-compression2@2.3.1", "", { "dependencies": { "@rollup/pluginutils": "^5.1.0", "tar-mini": "^0.2.0" } }, "sha512-bnhLTsurtvOiiP6EMISIKVsOMCeTAjE6FJbyqQus3W4mtAxF7pCuC4puUIAiCgNs98tOCpqo6GIXJXTLufzIaw=="],
|
||||
|
||||
"vite-plugin-manifest-sri": ["vite-plugin-manifest-sri@0.2.0", "", {}, "sha512-Zt5jt19xTIJ91LOuQTCtNG7rTFc5OziAjBz2H5NdCGqaOD1nxrWExLhcKW+W4/q8/jOPCg/n5ncYEQmqCxiGQQ=="],
|
||||
|
||||
"vite-plugin-node-polyfills": ["vite-plugin-node-polyfills@0.24.0", "", { "dependencies": { "@rollup/plugin-inject": "^5.0.5", "node-stdlib-browser": "^1.2.0" }, "peerDependencies": { "vite": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0" } }, "sha512-GA9QKLH+vIM8NPaGA+o2t8PDfFUl32J8rUp1zQfMKVJQiNkOX4unE51tR6ppl6iKw5yOrDAdSH7r/UIFLCVhLw=="],
|
||||
|
||||
"vite-plugin-valibot-env": ["vite-plugin-valibot-env@1.0.1", "", { "dependencies": { "is-unicode-supported": "^2.1.0" }, "peerDependencies": { "valibot": ">=1.0.0", "vite": "^5.0.0 || ^6.0.0 || >=7.0.0" } }, "sha512-u/X+iHKrvilvJrP1UiQHzaeLYDuDa3pu6i3rJxW22Tj0+LvQMENK4piLfBO6NmcopnVmD4K36Ngk08NNrmIjVw=="],
|
||||
|
||||
"vite-tsconfig-paths": ["vite-tsconfig-paths@5.1.4", "", { "dependencies": { "debug": "^4.1.1", "globrex": "^0.1.2", "tsconfck": "^3.0.3" }, "peerDependencies": { "vite": "*" }, "optionalPeers": ["vite"] }, "sha512-cYj0LRuLV2c2sMqhqhGpaO3LretdtMn/BVX4cPLanIZuwwrkVl+lK84E/miEXkCHWXuq65rhNN4rXsBcOB3S4w=="],
|
||||
|
||||
"vm-browserify": ["vm-browserify@1.1.2", "", {}, "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ=="],
|
||||
|
||||
"walk-up-path": ["walk-up-path@4.0.0", "", {}, "sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A=="],
|
||||
|
||||
"which": ["which@2.0.2", "", { "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "./bin/node-which" } }, "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="],
|
||||
|
||||
"which-typed-array": ["which-typed-array@1.1.19", "", { "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "call-bound": "^1.0.4", "for-each": "^0.3.5", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2" } }, "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw=="],
|
||||
|
||||
"word-wrap": ["word-wrap@1.2.5", "", {}, "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA=="],
|
||||
|
||||
"wp-types": ["wp-types@4.69.0", "http://localhost:4873/wp-types/-/wp-types-4.69.0.tgz", { "dependencies": { "typescript": ">=4" } }, "sha512-2w0i2ygylpbYpqFskg1NlvH/1DM8thZuhxjihFRHdvjgFkmzJ2cHl2kq9cBnxYWHyLHzRiLI2TupKbq3yl2STQ=="],
|
||||
|
||||
"write-file-atomic": ["write-file-atomic@5.0.1", "", { "dependencies": { "imurmurhash": "^0.1.4", "signal-exit": "^4.0.1" } }, "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw=="],
|
||||
|
||||
"xtend": ["xtend@4.0.2", "", {}, "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="],
|
||||
|
||||
"yallist": ["yallist@3.1.1", "", {}, "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="],
|
||||
|
||||
"yauzl": ["yauzl@3.2.0", "", { "dependencies": { "buffer-crc32": "~0.2.3", "pend": "~1.2.0" } }, "sha512-Ow9nuGZE+qp1u4JIPvg+uCiUr7xGQWdff7JQSk5VGYTAZMDe2q8lxJ10ygv10qmSj031Ty/6FNJpLO4o1Sgc+w=="],
|
||||
|
|
@ -1703,26 +1476,16 @@
|
|||
|
||||
"@vitejs/plugin-legacy/browserslist": ["browserslist@4.28.0", "", { "dependencies": { "baseline-browser-mapping": "^2.8.25", "caniuse-lite": "^1.0.30001754", "electron-to-chromium": "^1.5.249", "node-releases": "^2.0.27", "update-browserslist-db": "^1.1.4" }, "bin": { "browserslist": "cli.js" } }, "sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ=="],
|
||||
|
||||
"asn1.js/bn.js": ["bn.js@4.12.2", "", {}, "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw=="],
|
||||
|
||||
"babel-plugin-polyfill-corejs2/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="],
|
||||
|
||||
"brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
|
||||
|
||||
"browserify-sign/readable-stream": ["readable-stream@2.3.8", "", { "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", "process-nextick-args": "~2.0.0", "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" } }, "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA=="],
|
||||
|
||||
"cacheable/keyv": ["keyv@5.5.4", "", { "dependencies": { "@keyv/serialize": "^1.1.1" } }, "sha512-eohl3hKTiVyD1ilYdw9T0OiB4hnjef89e3dMYKz+mVKDzj+5IteTseASUsOB+EU9Tf6VNTCjDePcP6wkDGmLKQ=="],
|
||||
|
||||
"core-js-compat/browserslist": ["browserslist@4.28.0", "", { "dependencies": { "baseline-browser-mapping": "^2.8.25", "caniuse-lite": "^1.0.30001754", "electron-to-chromium": "^1.5.249", "node-releases": "^2.0.27", "update-browserslist-db": "^1.1.4" }, "bin": { "browserslist": "cli.js" } }, "sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ=="],
|
||||
|
||||
"create-ecdh/bn.js": ["bn.js@4.12.2", "", {}, "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw=="],
|
||||
|
||||
"decompress-response/mimic-response": ["mimic-response@3.1.0", "", {}, "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ=="],
|
||||
|
||||
"diffie-hellman/bn.js": ["bn.js@4.12.2", "", {}, "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw=="],
|
||||
|
||||
"elliptic/bn.js": ["bn.js@4.12.2", "", {}, "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw=="],
|
||||
|
||||
"eslint/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
|
||||
|
||||
"eslint/minimatch": ["minimatch@3.1.2", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="],
|
||||
|
|
@ -1737,12 +1500,6 @@
|
|||
|
||||
"micromatch/picomatch": ["picomatch@2.3.1", "", {}, "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="],
|
||||
|
||||
"miller-rabin/bn.js": ["bn.js@4.12.2", "", {}, "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw=="],
|
||||
|
||||
"public-encrypt/bn.js": ["bn.js@4.12.2", "", {}, "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw=="],
|
||||
|
||||
"ripemd160/hash-base": ["hash-base@3.1.2", "", { "dependencies": { "inherits": "^2.0.4", "readable-stream": "^2.3.8", "safe-buffer": "^5.2.1", "to-buffer": "^1.2.1" } }, "sha512-Bb33KbowVTIj5s7Ked1OsqHUeCpz//tPwR+E2zJgJKo9Z5XolZ9b6bdUgjmYlwnWhoOQKoTd1TYToZGn5mAYOg=="],
|
||||
|
||||
"rollup/fsevents": ["fsevents@2.3.3", "", { "os": "darwin" }, "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="],
|
||||
|
||||
"seek-bzip/commander": ["commander@6.2.1", "", {}, "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA=="],
|
||||
|
|
@ -1763,10 +1520,6 @@
|
|||
|
||||
"terser/commander": ["commander@2.20.3", "", {}, "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="],
|
||||
|
||||
"to-buffer/isarray": ["isarray@2.0.5", "", {}, "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw=="],
|
||||
|
||||
"uri-js/punycode": ["punycode@2.3.1", "", {}, "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg=="],
|
||||
|
||||
"vite/fsevents": ["fsevents@2.3.3", "", { "os": "darwin" }, "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="],
|
||||
|
||||
"@babel/helper-compilation-targets/browserslist/baseline-browser-mapping": ["baseline-browser-mapping@2.8.32", "", { "bin": { "baseline-browser-mapping": "dist/cli.js" } }, "sha512-OPz5aBThlyLFgxyhdwf/s2+8ab3OvT7AdTNvKHBwpXomIYeXqpUUuT8LrdtxZSsWJ4R4CU1un4XGh5Ez3nlTpw=="],
|
||||
|
|
@ -1781,10 +1534,6 @@
|
|||
|
||||
"@vitejs/plugin-legacy/browserslist/update-browserslist-db": ["update-browserslist-db@1.1.4", "", { "dependencies": { "escalade": "^3.2.0", "picocolors": "^1.1.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A=="],
|
||||
|
||||
"browserify-sign/readable-stream/safe-buffer": ["safe-buffer@5.1.2", "", {}, "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="],
|
||||
|
||||
"browserify-sign/readable-stream/string_decoder": ["string_decoder@1.1.1", "", { "dependencies": { "safe-buffer": "~5.1.0" } }, "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="],
|
||||
|
||||
"core-js-compat/browserslist/baseline-browser-mapping": ["baseline-browser-mapping@2.8.32", "", { "bin": { "baseline-browser-mapping": "dist/cli.js" } }, "sha512-OPz5aBThlyLFgxyhdwf/s2+8ab3OvT7AdTNvKHBwpXomIYeXqpUUuT8LrdtxZSsWJ4R4CU1un4XGh5Ez3nlTpw=="],
|
||||
|
||||
"core-js-compat/browserslist/update-browserslist-db": ["update-browserslist-db@1.1.4", "", { "dependencies": { "escalade": "^3.2.0", "picocolors": "^1.1.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A=="],
|
||||
|
|
@ -1793,8 +1542,6 @@
|
|||
|
||||
"eslint/minimatch/brace-expansion": ["brace-expansion@1.1.12", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="],
|
||||
|
||||
"ripemd160/hash-base/readable-stream": ["readable-stream@2.3.8", "", { "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", "process-nextick-args": "~2.0.0", "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" } }, "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA=="],
|
||||
|
||||
"stylelint/file-entry-cache/flat-cache": ["flat-cache@6.1.19", "", { "dependencies": { "cacheable": "^2.2.0", "flatted": "^3.3.3", "hookified": "^1.13.0" } }, "sha512-l/K33newPTZMTGAnnzaiqSl6NnH7Namh8jBNjrgjprWxGmZUuxx/sJNIRaijOh3n7q7ESbhNZC+pvVZMFdeU4A=="],
|
||||
|
||||
"table/ajv/json-schema-traverse": ["json-schema-traverse@1.0.0", "", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="],
|
||||
|
|
@ -1804,9 +1551,5 @@
|
|||
"@eslint/eslintrc/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
|
||||
|
||||
"eslint/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
|
||||
|
||||
"ripemd160/hash-base/readable-stream/safe-buffer": ["safe-buffer@5.1.2", "", {}, "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="],
|
||||
|
||||
"ripemd160/hash-base/readable-stream/string_decoder": ["string_decoder@1.1.1", "", { "dependencies": { "safe-buffer": "~5.1.0" } }, "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="],
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
name: "haikuatelier.fr"
|
||||
networks:
|
||||
haiku-network:
|
||||
haiku-network: null
|
||||
services:
|
||||
db:
|
||||
container_name: "haikuatelier.fr-db"
|
||||
|
|
@ -74,7 +74,7 @@ services:
|
|||
- "./containers/conf/angie:/etc/angie:rw"
|
||||
- "./containers/data/certs:/etc/angie/ssl:ro"
|
||||
- "./containers/data/angie/logs:/var/log/angie:rw"
|
||||
- "./:/var/www/wordpress:ro"
|
||||
- "./:/var/www/wordpress:rw"
|
||||
traefik:
|
||||
container_name: "haikuatelier.fr-traefik"
|
||||
env_file:
|
||||
|
|
@ -118,7 +118,7 @@ services:
|
|||
- "CMD-SHELL"
|
||||
- "valkey-cli ping | grep PONG"
|
||||
timeout: "5s"
|
||||
image: "docker.io/valkey/valkey:8-alpine"
|
||||
image: "docker.io/valkey/valkey:9-alpine"
|
||||
restart: "unless-stopped"
|
||||
sysctls:
|
||||
- "net.core.somaxconn=512"
|
||||
|
|
|
|||
|
|
@ -1,40 +1,59 @@
|
|||
{
|
||||
"name": "roots/bedrock",
|
||||
"type": "project",
|
||||
"license": "MIT",
|
||||
"description": "WordPress boilerplate with Composer, easier configuration, and an improved folder structure",
|
||||
"homepage": "https://roots.io/bedrock/",
|
||||
"autoload": { "psr-4": { "HaikuAtelier\\": "web/app/themes/haiku-atelier-2024/src/inc/" } },
|
||||
"authors": [
|
||||
{ "name": "Scott Walkinshaw", "email": "scott.walkinshaw@gmail.com", "homepage": "https://github.com/swalkinshaw" },
|
||||
{ "name": "Ben Word", "email": "ben@benword.com", "homepage": "https://github.com/retlehs" }
|
||||
{ "email": "scott.walkinshaw@gmail.com", "homepage": "https://github.com/swalkinshaw", "name": "Scott Walkinshaw" },
|
||||
{ "email": "ben@benword.com", "homepage": "https://github.com/retlehs", "name": "Ben Word" }
|
||||
],
|
||||
"keywords": ["bedrock", "composer", "roots", "wordpress", "wp", "wp-config"],
|
||||
"support": {
|
||||
"issues": "https://github.com/roots/bedrock/issues",
|
||||
"forum": "https://discourse.roots.io/category/bedrock"
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
"carthage-software/mago": true,
|
||||
"composer/installers": true,
|
||||
"mnsami/composer-custom-directory-installer": true,
|
||||
"phpstan/extension-installer": true,
|
||||
"roots/wordpress-core-installer": true
|
||||
},
|
||||
"optimize-autoloader": true,
|
||||
"preferred-install": "dist",
|
||||
"sort-packages": true
|
||||
},
|
||||
"description": "WordPress boilerplate with Composer, easier configuration, and an improved folder structure",
|
||||
"extra": {
|
||||
"installer-paths": {
|
||||
"web/app/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
|
||||
"web/app/plugins/{$name}/": ["type:wordpress-plugin"],
|
||||
"web/app/themes/{$name}/": ["type:wordpress-theme"],
|
||||
"web/vendor/{$vendor}/{$name}": ["htmlburger/carbon-fields"]
|
||||
},
|
||||
"wordpress-install-dir": "web/wp"
|
||||
},
|
||||
"homepage": "https://roots.io/bedrock/",
|
||||
"keywords": ["bedrock", "composer", "roots", "wordpress", "wp", "wp-config"],
|
||||
"license": "MIT",
|
||||
"minimum-stability": "dev",
|
||||
"name": "roots/bedrock",
|
||||
"prefer-stable": true,
|
||||
"repositories": [
|
||||
{ "type": "composer", "url": "https://wpackagist.org", "only": ["wpackagist-plugin/*", "wpackagist-theme/*"] }
|
||||
{ "only": ["wpackagist-plugin/*", "wpackagist-theme/*"], "type": "composer", "url": "https://wpackagist.org" }
|
||||
],
|
||||
"require": {
|
||||
"php": ">=8.4",
|
||||
"php": ">=8.5",
|
||||
"azjezz/psl": "^4.2",
|
||||
"composer/installers": "^2.3",
|
||||
"crell/fp": "^1.0",
|
||||
"htmlburger/carbon-fields": "^3.6",
|
||||
"illuminate/support": "^12.18",
|
||||
"illuminate/support": "^12.43",
|
||||
"laravel/helpers": "^1.7.1",
|
||||
"log1x/wp-smtp": "^1.0.2",
|
||||
"lstrojny/functional-php": "^1.17",
|
||||
"mnsami/composer-custom-directory-installer": "^2.0",
|
||||
"nesbot/carbon": "^3.8.2",
|
||||
"oscarotero/env": "^2.1.1",
|
||||
"ramsey/uuid": "^4.7.6",
|
||||
"roots/bedrock-autoloader": "^1.0.4",
|
||||
"roots/bedrock-disallow-indexing": "^2.0",
|
||||
"roots/wordpress": "^6.8.1",
|
||||
"roots/wp-config": "^1.0",
|
||||
"stripe/stripe-php": "^16.3",
|
||||
"symfony/uid": "^7.2.0",
|
||||
"symfony/uid": "^8",
|
||||
"timber/timber": "^2.3",
|
||||
"vlucas/phpdotenv": "^5.6.1",
|
||||
"wpackagist-plugin/falcon": "^2.8.4",
|
||||
|
|
@ -51,34 +70,17 @@
|
|||
},
|
||||
"require-dev": {
|
||||
"friendsofphp/php-cs-fixer": "^3.89",
|
||||
"php-standard-library/phpstan-extension": "^2.0",
|
||||
"phpstan/extension-installer": "^1.4.3",
|
||||
"phpstan/phpstan": "^2.0.3",
|
||||
"rector/rector": "^2.2",
|
||||
"roave/security-advisories": "dev-latest",
|
||||
"squizlabs/php_codesniffer": "^4.0",
|
||||
"szepeviktor/phpstan-wordpress": "2.x-dev",
|
||||
"vincentlanglet/twig-cs-fixer": "^3.10"
|
||||
},
|
||||
"config": {
|
||||
"optimize-autoloader": true,
|
||||
"preferred-install": "dist",
|
||||
"allow-plugins": {
|
||||
"carthage-software/mago": true,
|
||||
"composer/installers": true,
|
||||
"mnsami/composer-custom-directory-installer": true,
|
||||
"phpstan/extension-installer": true,
|
||||
"roots/wordpress-core-installer": true
|
||||
},
|
||||
"sort-packages": true
|
||||
"support": {
|
||||
"forum": "https://discourse.roots.io/category/bedrock",
|
||||
"issues": "https://github.com/roots/bedrock/issues"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true,
|
||||
"extra": {
|
||||
"installer-paths": {
|
||||
"web/vendor/{$vendor}/{$name}": ["htmlburger/carbon-fields"],
|
||||
"web/app/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
|
||||
"web/app/plugins/{$name}/": ["type:wordpress-plugin"],
|
||||
"web/app/themes/{$name}/": ["type:wordpress-theme"]
|
||||
},
|
||||
"wordpress-install-dir": "web/wp"
|
||||
}
|
||||
"type": "project"
|
||||
}
|
||||
|
|
|
|||
503
composer.lock
generated
503
composer.lock
generated
|
|
@ -4,67 +4,83 @@
|
|||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "057633bed4b4268abf63c2c0c77d2c40",
|
||||
"content-hash": "656fefb6a4e896ee0c5f5d87f36db997",
|
||||
"packages": [
|
||||
{
|
||||
"name": "brick/math",
|
||||
"version": "0.14.1",
|
||||
"name": "azjezz/psl",
|
||||
"version": "4.2.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/brick/math.git",
|
||||
"reference": "f05858549e5f9d7bb45875a75583240a38a281d0"
|
||||
"url": "https://github.com/azjezz/psl.git",
|
||||
"reference": "15153a64c9824335ce11654522e7d88de762d39e"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/brick/math/zipball/f05858549e5f9d7bb45875a75583240a38a281d0",
|
||||
"reference": "f05858549e5f9d7bb45875a75583240a38a281d0",
|
||||
"url": "https://api.github.com/repos/azjezz/psl/zipball/15153a64c9824335ce11654522e7d88de762d39e",
|
||||
"reference": "15153a64c9824335ce11654522e7d88de762d39e",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": "^8.2"
|
||||
"ext-bcmath": "*",
|
||||
"ext-intl": "*",
|
||||
"ext-json": "*",
|
||||
"ext-mbstring": "*",
|
||||
"ext-sodium": "*",
|
||||
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
|
||||
"revolt/event-loop": "^1.0.7"
|
||||
},
|
||||
"require-dev": {
|
||||
"php-coveralls/php-coveralls": "^2.2",
|
||||
"phpstan/phpstan": "2.1.22",
|
||||
"phpunit/phpunit": "^11.5"
|
||||
"carthage-software/mago": "^1.0.0-beta.32",
|
||||
"infection/infection": "^0.31.2",
|
||||
"php-coveralls/php-coveralls": "^2.7.0",
|
||||
"phpbench/phpbench": "^1.4.0",
|
||||
"phpunit/phpunit": "^9.6.22"
|
||||
},
|
||||
"suggest": {
|
||||
"php-standard-library/phpstan-extension": "PHPStan integration",
|
||||
"php-standard-library/psalm-plugin": "Psalm integration"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"thanks": {
|
||||
"url": "https://github.com/hhvm/hsl",
|
||||
"name": "hhvm/hsl"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"files": [
|
||||
"src/bootstrap.php"
|
||||
],
|
||||
"psr-4": {
|
||||
"Brick\\Math\\": "src/"
|
||||
"Psl\\": "src/Psl"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"description": "Arbitrary-precision arithmetic library",
|
||||
"keywords": [
|
||||
"Arbitrary-precision",
|
||||
"BigInteger",
|
||||
"BigRational",
|
||||
"arithmetic",
|
||||
"bigdecimal",
|
||||
"bignum",
|
||||
"bignumber",
|
||||
"brick",
|
||||
"decimal",
|
||||
"integer",
|
||||
"math",
|
||||
"mathematics",
|
||||
"rational"
|
||||
"authors": [
|
||||
{
|
||||
"name": "azjezz",
|
||||
"email": "azjezz@protonmail.com"
|
||||
}
|
||||
],
|
||||
"description": "PHP Standard Library",
|
||||
"support": {
|
||||
"issues": "https://github.com/brick/math/issues",
|
||||
"source": "https://github.com/brick/math/tree/0.14.1"
|
||||
"issues": "https://github.com/azjezz/psl/issues",
|
||||
"source": "https://github.com/azjezz/psl/tree/4.2.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://github.com/BenMorel",
|
||||
"url": "https://github.com/azjezz",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/veewee",
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2025-11-24T14:40:29+00:00"
|
||||
"time": "2025-10-25T08:31:40+00:00"
|
||||
},
|
||||
{
|
||||
"name": "carbonphp/carbon-doctrine-types",
|
||||
|
|
@ -645,7 +661,7 @@
|
|||
},
|
||||
{
|
||||
"name": "illuminate/collections",
|
||||
"version": "v12.42.0",
|
||||
"version": "v12.43.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/illuminate/collections.git",
|
||||
|
|
@ -704,7 +720,7 @@
|
|||
},
|
||||
{
|
||||
"name": "illuminate/conditionable",
|
||||
"version": "v12.42.0",
|
||||
"version": "v12.43.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/illuminate/conditionable.git",
|
||||
|
|
@ -750,7 +766,7 @@
|
|||
},
|
||||
{
|
||||
"name": "illuminate/contracts",
|
||||
"version": "v12.42.0",
|
||||
"version": "v12.43.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/illuminate/contracts.git",
|
||||
|
|
@ -798,7 +814,7 @@
|
|||
},
|
||||
{
|
||||
"name": "illuminate/macroable",
|
||||
"version": "v12.42.0",
|
||||
"version": "v12.43.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/illuminate/macroable.git",
|
||||
|
|
@ -844,7 +860,7 @@
|
|||
},
|
||||
{
|
||||
"name": "illuminate/reflection",
|
||||
"version": "v12.42.0",
|
||||
"version": "v12.43.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/illuminate/reflection.git",
|
||||
|
|
@ -895,16 +911,16 @@
|
|||
},
|
||||
{
|
||||
"name": "illuminate/support",
|
||||
"version": "v12.42.0",
|
||||
"version": "v12.43.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/illuminate/support.git",
|
||||
"reference": "d35411be5657e0b5560a5885f3c9140e4cbe0be5"
|
||||
"reference": "20014564c32e2e8c6a57e03d065bcf8706a458e7"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/illuminate/support/zipball/d35411be5657e0b5560a5885f3c9140e4cbe0be5",
|
||||
"reference": "d35411be5657e0b5560a5885f3c9140e4cbe0be5",
|
||||
"url": "https://api.github.com/repos/illuminate/support/zipball/20014564c32e2e8c6a57e03d065bcf8706a458e7",
|
||||
"reference": "20014564c32e2e8c6a57e03d065bcf8706a458e7",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
|
|
@ -971,7 +987,7 @@
|
|||
"issues": "https://github.com/laravel/framework/issues",
|
||||
"source": "https://github.com/laravel/framework"
|
||||
},
|
||||
"time": "2025-12-09T15:26:52+00:00"
|
||||
"time": "2025-12-14T15:58:12+00:00"
|
||||
},
|
||||
{
|
||||
"name": "laravel/helpers",
|
||||
|
|
@ -1665,53 +1681,37 @@
|
|||
"time": "2021-10-29T13:26:27+00:00"
|
||||
},
|
||||
{
|
||||
"name": "ramsey/collection",
|
||||
"version": "2.1.1",
|
||||
"name": "revolt/event-loop",
|
||||
"version": "v1.0.8",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/ramsey/collection.git",
|
||||
"reference": "344572933ad0181accbf4ba763e85a0306a8c5e2"
|
||||
"url": "https://github.com/revoltphp/event-loop.git",
|
||||
"reference": "b6fc06dce8e9b523c9946138fa5e62181934f91c"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2",
|
||||
"reference": "344572933ad0181accbf4ba763e85a0306a8c5e2",
|
||||
"url": "https://api.github.com/repos/revoltphp/event-loop/zipball/b6fc06dce8e9b523c9946138fa5e62181934f91c",
|
||||
"reference": "b6fc06dce8e9b523c9946138fa5e62181934f91c",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": "^8.1"
|
||||
"php": ">=8.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"captainhook/plugin-composer": "^5.3",
|
||||
"ergebnis/composer-normalize": "^2.45",
|
||||
"fakerphp/faker": "^1.24",
|
||||
"hamcrest/hamcrest-php": "^2.0",
|
||||
"jangregor/phpstan-prophecy": "^2.1",
|
||||
"mockery/mockery": "^1.6",
|
||||
"php-parallel-lint/php-console-highlighter": "^1.0",
|
||||
"php-parallel-lint/php-parallel-lint": "^1.4",
|
||||
"phpspec/prophecy-phpunit": "^2.3",
|
||||
"phpstan/extension-installer": "^1.4",
|
||||
"phpstan/phpstan": "^2.1",
|
||||
"phpstan/phpstan-mockery": "^2.0",
|
||||
"phpstan/phpstan-phpunit": "^2.0",
|
||||
"phpunit/phpunit": "^10.5",
|
||||
"ramsey/coding-standard": "^2.3",
|
||||
"ramsey/conventional-commits": "^1.6",
|
||||
"roave/security-advisories": "dev-latest"
|
||||
"ext-json": "*",
|
||||
"jetbrains/phpstorm-stubs": "^2019.3",
|
||||
"phpunit/phpunit": "^9",
|
||||
"psalm/phar": "^5.15"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"captainhook": {
|
||||
"force-install": true
|
||||
},
|
||||
"ramsey/conventional-commits": {
|
||||
"configFile": "conventional-commits.json"
|
||||
"branch-alias": {
|
||||
"dev-main": "1.x-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Ramsey\\Collection\\": "src/"
|
||||
"Revolt\\": "src"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
|
|
@ -1720,103 +1720,37 @@
|
|||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Ben Ramsey",
|
||||
"email": "ben@benramsey.com",
|
||||
"homepage": "https://benramsey.com"
|
||||
"name": "Aaron Piotrowski",
|
||||
"email": "aaron@trowski.com"
|
||||
},
|
||||
{
|
||||
"name": "Cees-Jan Kiewiet",
|
||||
"email": "ceesjank@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Christian Lück",
|
||||
"email": "christian@clue.engineering"
|
||||
},
|
||||
{
|
||||
"name": "Niklas Keller",
|
||||
"email": "me@kelunik.com"
|
||||
}
|
||||
],
|
||||
"description": "A PHP library for representing and manipulating collections.",
|
||||
"description": "Rock-solid event loop for concurrent PHP applications.",
|
||||
"keywords": [
|
||||
"array",
|
||||
"collection",
|
||||
"hash",
|
||||
"map",
|
||||
"queue",
|
||||
"set"
|
||||
"async",
|
||||
"asynchronous",
|
||||
"concurrency",
|
||||
"event",
|
||||
"event-loop",
|
||||
"non-blocking",
|
||||
"scheduler"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/ramsey/collection/issues",
|
||||
"source": "https://github.com/ramsey/collection/tree/2.1.1"
|
||||
"issues": "https://github.com/revoltphp/event-loop/issues",
|
||||
"source": "https://github.com/revoltphp/event-loop/tree/v1.0.8"
|
||||
},
|
||||
"time": "2025-03-22T05:38:12+00:00"
|
||||
},
|
||||
{
|
||||
"name": "ramsey/uuid",
|
||||
"version": "4.9.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/ramsey/uuid.git",
|
||||
"reference": "81f941f6f729b1e3ceea61d9d014f8b6c6800440"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/ramsey/uuid/zipball/81f941f6f729b1e3ceea61d9d014f8b6c6800440",
|
||||
"reference": "81f941f6f729b1e3ceea61d9d014f8b6c6800440",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13 || ^0.14",
|
||||
"php": "^8.0",
|
||||
"ramsey/collection": "^1.2 || ^2.0"
|
||||
},
|
||||
"replace": {
|
||||
"rhumsaa/uuid": "self.version"
|
||||
},
|
||||
"require-dev": {
|
||||
"captainhook/captainhook": "^5.25",
|
||||
"captainhook/plugin-composer": "^5.3",
|
||||
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
|
||||
"ergebnis/composer-normalize": "^2.47",
|
||||
"mockery/mockery": "^1.6",
|
||||
"paragonie/random-lib": "^2",
|
||||
"php-mock/php-mock": "^2.6",
|
||||
"php-mock/php-mock-mockery": "^1.5",
|
||||
"php-parallel-lint/php-parallel-lint": "^1.4.0",
|
||||
"phpbench/phpbench": "^1.2.14",
|
||||
"phpstan/extension-installer": "^1.4",
|
||||
"phpstan/phpstan": "^2.1",
|
||||
"phpstan/phpstan-mockery": "^2.0",
|
||||
"phpstan/phpstan-phpunit": "^2.0",
|
||||
"phpunit/phpunit": "^9.6",
|
||||
"slevomat/coding-standard": "^8.18",
|
||||
"squizlabs/php_codesniffer": "^3.13"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
|
||||
"ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
|
||||
"ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
|
||||
"paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
|
||||
"ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"captainhook": {
|
||||
"force-install": true
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"files": [
|
||||
"src/functions.php"
|
||||
],
|
||||
"psr-4": {
|
||||
"Ramsey\\Uuid\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
|
||||
"keywords": [
|
||||
"guid",
|
||||
"identifier",
|
||||
"uuid"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/ramsey/uuid/issues",
|
||||
"source": "https://github.com/ramsey/uuid/tree/4.9.1"
|
||||
},
|
||||
"time": "2025-09-04T20:59:21+00:00"
|
||||
"time": "2025-08-27T21:33:23+00:00"
|
||||
},
|
||||
{
|
||||
"name": "roots/bedrock-autoloader",
|
||||
|
|
@ -3134,24 +3068,24 @@
|
|||
},
|
||||
{
|
||||
"name": "symfony/uid",
|
||||
"version": "v7.4.0",
|
||||
"version": "v8.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/uid.git",
|
||||
"reference": "2498e9f81b7baa206f44de583f2f48350b90142c"
|
||||
"reference": "8395a2cc2ed49aa68f602c5c489f60ab853893df"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/uid/zipball/2498e9f81b7baa206f44de583f2f48350b90142c",
|
||||
"reference": "2498e9f81b7baa206f44de583f2f48350b90142c",
|
||||
"url": "https://api.github.com/repos/symfony/uid/zipball/8395a2cc2ed49aa68f602c5c489f60ab853893df",
|
||||
"reference": "8395a2cc2ed49aa68f602c5c489f60ab853893df",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=8.2",
|
||||
"php": ">=8.4",
|
||||
"symfony/polyfill-uuid": "^1.15"
|
||||
},
|
||||
"require-dev": {
|
||||
"symfony/console": "^6.4|^7.0|^8.0"
|
||||
"symfony/console": "^7.4|^8.0"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
|
|
@ -3188,7 +3122,7 @@
|
|||
"uuid"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/uid/tree/v7.4.0"
|
||||
"source": "https://github.com/symfony/uid/tree/v8.0.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
|
|
@ -3208,7 +3142,7 @@
|
|||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2025-09-25T11:02:55+00:00"
|
||||
"time": "2025-09-26T07:52:19+00:00"
|
||||
},
|
||||
{
|
||||
"name": "timber/timber",
|
||||
|
|
@ -3313,16 +3247,16 @@
|
|||
},
|
||||
{
|
||||
"name": "twig/twig",
|
||||
"version": "v3.22.1",
|
||||
"version": "v3.22.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/twigphp/Twig.git",
|
||||
"reference": "1de2ec1fc43ab58a4b7e80b214b96bfc895750f3"
|
||||
"reference": "946ddeafa3c9f4ce279d1f34051af041db0e16f2"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/twigphp/Twig/zipball/1de2ec1fc43ab58a4b7e80b214b96bfc895750f3",
|
||||
"reference": "1de2ec1fc43ab58a4b7e80b214b96bfc895750f3",
|
||||
"url": "https://api.github.com/repos/twigphp/Twig/zipball/946ddeafa3c9f4ce279d1f34051af041db0e16f2",
|
||||
"reference": "946ddeafa3c9f4ce279d1f34051af041db0e16f2",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
|
|
@ -3376,7 +3310,7 @@
|
|||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/twigphp/Twig/issues",
|
||||
"source": "https://github.com/twigphp/Twig/tree/v3.22.1"
|
||||
"source": "https://github.com/twigphp/Twig/tree/v3.22.2"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
|
|
@ -3388,7 +3322,7 @@
|
|||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2025-11-16T16:01:12+00:00"
|
||||
"time": "2025-12-14T11:28:47+00:00"
|
||||
},
|
||||
{
|
||||
"name": "vlucas/phpdotenv",
|
||||
|
|
@ -4144,16 +4078,16 @@
|
|||
},
|
||||
{
|
||||
"name": "friendsofphp/php-cs-fixer",
|
||||
"version": "v3.92.0",
|
||||
"version": "v3.92.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
|
||||
"reference": "5646c2cd99b7cb4b658ff681fe27069ba86c7280"
|
||||
"reference": "64fab3553dce507ce247f7d1a7d65f74ef658c3f"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/5646c2cd99b7cb4b658ff681fe27069ba86c7280",
|
||||
"reference": "5646c2cd99b7cb4b658ff681fe27069ba86c7280",
|
||||
"url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/64fab3553dce507ce247f7d1a7d65f74ef658c3f",
|
||||
"reference": "64fab3553dce507ce247f7d1a7d65f74ef658c3f",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
|
|
@ -4193,6 +4127,7 @@
|
|||
"php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.6",
|
||||
"php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.6",
|
||||
"phpunit/phpunit": "^9.6.25 || ^10.5.53 || ^11.5.34",
|
||||
"symfony/polyfill-php85": "^1.33",
|
||||
"symfony/var-dumper": "^5.4.48 || ^6.4.24 || ^7.3.2 || ^8.0",
|
||||
"symfony/yaml": "^5.4.45 || ^6.4.24 || ^7.3.2 || ^8.0"
|
||||
},
|
||||
|
|
@ -4235,7 +4170,7 @@
|
|||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
|
||||
"source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.92.0"
|
||||
"source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.92.2"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
|
|
@ -4243,7 +4178,61 @@
|
|||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2025-12-12T10:29:19+00:00"
|
||||
"time": "2025-12-17T00:04:16+00:00"
|
||||
},
|
||||
{
|
||||
"name": "php-standard-library/phpstan-extension",
|
||||
"version": "2.0.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/php-standard-library/phpstan-extension.git",
|
||||
"reference": "eaf787ddf91f1b22b3a4da052f42294e0a75836e"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/php-standard-library/phpstan-extension/zipball/eaf787ddf91f1b22b3a4da052f42294e0a75836e",
|
||||
"reference": "eaf787ddf91f1b22b3a4da052f42294e0a75836e",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.4 || ^8.0",
|
||||
"phpstan/phpstan": "^2.0"
|
||||
},
|
||||
"conflict": {
|
||||
"azjezz/psl": "<1.6||>=5.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"azjezz/psl": "^1.6||^2.0||^3.0||^4.0",
|
||||
"composer/semver": "^3.3",
|
||||
"nikic/php-parser": "^4.14.0",
|
||||
"php-parallel-lint/php-parallel-lint": "^1.2",
|
||||
"phpstan/phpstan-phpunit": "^2.0",
|
||||
"phpstan/phpstan-strict-rules": "^2.0",
|
||||
"phpunit/phpunit": "^9.6"
|
||||
},
|
||||
"type": "phpstan-extension",
|
||||
"extra": {
|
||||
"phpstan": {
|
||||
"includes": [
|
||||
"extension.neon"
|
||||
]
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Psl\\PHPStan\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"description": "PHPStan PSL extension",
|
||||
"support": {
|
||||
"issues": "https://github.com/php-standard-library/phpstan-extension/issues",
|
||||
"source": "https://github.com/php-standard-library/phpstan-extension/tree/2.0.2"
|
||||
},
|
||||
"time": "2025-11-30T13:33:52+00:00"
|
||||
},
|
||||
{
|
||||
"name": "php-stubs/wordpress-stubs",
|
||||
|
|
@ -5023,18 +5012,78 @@
|
|||
],
|
||||
"time": "2024-06-11T12:45:25+00:00"
|
||||
},
|
||||
{
|
||||
"name": "rector/rector",
|
||||
"version": "2.2.14",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/rectorphp/rector.git",
|
||||
"reference": "6d56bb0e94d4df4f57a78610550ac76ab403657d"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/rectorphp/rector/zipball/6d56bb0e94d4df4f57a78610550ac76ab403657d",
|
||||
"reference": "6d56bb0e94d4df4f57a78610550ac76ab403657d",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.4|^8.0",
|
||||
"phpstan/phpstan": "^2.1.33"
|
||||
},
|
||||
"conflict": {
|
||||
"rector/rector-doctrine": "*",
|
||||
"rector/rector-downgrade-php": "*",
|
||||
"rector/rector-phpunit": "*",
|
||||
"rector/rector-symfony": "*"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-dom": "To manipulate phpunit.xml via the custom-rule command"
|
||||
},
|
||||
"bin": [
|
||||
"bin/rector"
|
||||
],
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"files": [
|
||||
"bootstrap.php"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"description": "Instant Upgrade and Automated Refactoring of any PHP code",
|
||||
"homepage": "https://getrector.com/",
|
||||
"keywords": [
|
||||
"automation",
|
||||
"dev",
|
||||
"migration",
|
||||
"refactoring"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/rectorphp/rector/issues",
|
||||
"source": "https://github.com/rectorphp/rector/tree/2.2.14"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://github.com/tomasvotruba",
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2025-12-09T10:57:55+00:00"
|
||||
},
|
||||
{
|
||||
"name": "roave/security-advisories",
|
||||
"version": "dev-latest",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Roave/SecurityAdvisories.git",
|
||||
"reference": "1553067758ae7f3df13df7c7e232c62d928e1d23"
|
||||
"reference": "df7a11b7df806e493d3047bf9cf9736645bbdf84"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/1553067758ae7f3df13df7c7e232c62d928e1d23",
|
||||
"reference": "1553067758ae7f3df13df7c7e232c62d928e1d23",
|
||||
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/df7a11b7df806e493d3047bf9cf9736645bbdf84",
|
||||
"reference": "df7a11b7df806e493d3047bf9cf9736645bbdf84",
|
||||
"shasum": ""
|
||||
},
|
||||
"conflict": {
|
||||
|
|
@ -5056,6 +5105,7 @@
|
|||
"alextselegidis/easyappointments": "<1.5.2.0-beta1",
|
||||
"alexusmai/laravel-file-manager": "<=3.3.1",
|
||||
"alt-design/alt-redirect": "<1.6.4",
|
||||
"altcha-org/altcha": "<1.3.1",
|
||||
"alterphp/easyadmin-extension-bundle": ">=1.2,<1.2.11|>=1.3,<1.3.1",
|
||||
"amazing/media2click": ">=1,<1.3.3",
|
||||
"ameos/ameos_tarteaucitron": "<1.2.23",
|
||||
|
|
@ -6025,7 +6075,7 @@
|
|||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2025-12-12T23:06:01+00:00"
|
||||
"time": "2025-12-16T01:34:46+00:00"
|
||||
},
|
||||
{
|
||||
"name": "sebastian/diff",
|
||||
|
|
@ -6094,85 +6144,6 @@
|
|||
],
|
||||
"time": "2025-02-07T04:55:46+00:00"
|
||||
},
|
||||
{
|
||||
"name": "squizlabs/php_codesniffer",
|
||||
"version": "4.0.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
|
||||
"reference": "0525c73950de35ded110cffafb9892946d7771b5"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/0525c73950de35ded110cffafb9892946d7771b5",
|
||||
"reference": "0525c73950de35ded110cffafb9892946d7771b5",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"ext-simplexml": "*",
|
||||
"ext-tokenizer": "*",
|
||||
"ext-xmlwriter": "*",
|
||||
"php": ">=7.2.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^8.4.0 || ^9.3.4 || ^10.5.32 || 11.3.3 - 11.5.28 || ^11.5.31"
|
||||
},
|
||||
"bin": [
|
||||
"bin/phpcbf",
|
||||
"bin/phpcs"
|
||||
],
|
||||
"type": "library",
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"BSD-3-Clause"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Greg Sherwood",
|
||||
"role": "Former lead"
|
||||
},
|
||||
{
|
||||
"name": "Juliette Reinders Folmer",
|
||||
"role": "Current lead"
|
||||
},
|
||||
{
|
||||
"name": "Contributors",
|
||||
"homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors"
|
||||
}
|
||||
],
|
||||
"description": "PHP_CodeSniffer tokenizes PHP files and detects violations of a defined set of coding standards.",
|
||||
"homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
|
||||
"keywords": [
|
||||
"phpcs",
|
||||
"standards",
|
||||
"static analysis"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues",
|
||||
"security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy",
|
||||
"source": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
|
||||
"wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://github.com/PHPCSStandards",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/jrfnl",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://opencollective.com/php_codesniffer",
|
||||
"type": "open_collective"
|
||||
},
|
||||
{
|
||||
"url": "https://thanks.dev/u/gh/phpcsstandards",
|
||||
"type": "thanks_dev"
|
||||
}
|
||||
],
|
||||
"time": "2025-11-10T16:43:36+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/console",
|
||||
"version": "v8.0.1",
|
||||
|
|
@ -7397,7 +7368,7 @@
|
|||
"prefer-stable": true,
|
||||
"prefer-lowest": false,
|
||||
"platform": {
|
||||
"php": ">=8.4"
|
||||
"php": ">=8.5"
|
||||
},
|
||||
"platform-dev": {},
|
||||
"plugin-api-version": "2.6.0"
|
||||
|
|
|
|||
|
|
@ -11,21 +11,21 @@
|
|||
|
||||
declare(strict_types=1);
|
||||
|
||||
use Roots\WPConfig\Config;
|
||||
|
||||
use function Env\env;
|
||||
|
||||
use Roots\WPConfig\Config;
|
||||
|
||||
// USE_ENV_ARRAY + CONVERT_* + STRIP_QUOTES
|
||||
Env\Env::$options = 31;
|
||||
|
||||
/*
|
||||
/**
|
||||
* Directory containing all of the site's files.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
$root_dir = dirname(__DIR__);
|
||||
|
||||
/*
|
||||
/**
|
||||
* Document Root.
|
||||
*
|
||||
* @var string
|
||||
|
|
@ -59,7 +59,7 @@ if (file_exists($root_dir.'/.env')) {
|
|||
define('WP_ENV', env('WP_ENV') ?: 'production');
|
||||
|
||||
// Infer WP_ENVIRONMENT_TYPE based on WP_ENV
|
||||
if (!env('WP_ENVIRONMENT_TYPE') && in_array(WP_ENV, ['production', 'staging', 'development', 'local'])) {
|
||||
if (!env('WP_ENVIRONMENT_TYPE') && in_array(WP_ENV, ['production', 'staging', 'development', 'local'], true)) {
|
||||
Config::define('WP_ENVIRONMENT_TYPE', WP_ENV);
|
||||
}
|
||||
|
||||
|
|
@ -74,7 +74,7 @@ Config::define('WP_CONTENT_URL', Config::get('WP_HOME').Config::get('CONTENT_DIR
|
|||
|
||||
// DB settings
|
||||
if (env('DB_SSL')) {
|
||||
Config::define('MYSQL_CLIENT_FLAGS', MYSQLI_CLIENT_SSL);
|
||||
Config::define('MYSQL_CLIENT_FLAGS', \MYSQLI_CLIENT_SSL);
|
||||
}
|
||||
|
||||
Config::define('DB_NAME', env('DB_NAME'));
|
||||
|
|
@ -88,9 +88,9 @@ $table_prefix = env('DB_PREFIX') ?: 'wp_';
|
|||
if (env('DATABASE_URL')) {
|
||||
$dsn = (object) parse_url(env('DATABASE_URL'));
|
||||
|
||||
Config::define('DB_NAME', substr($dsn->path, 1));
|
||||
Config::define('DB_NAME', mb_substr($dsn->path, 1));
|
||||
Config::define('DB_USER', $dsn->user);
|
||||
Config::define('DB_PASSWORD', isset($dsn->pass) ? $dsn->pass : null);
|
||||
Config::define('DB_PASSWORD', $dsn->pass ?? null);
|
||||
Config::define('DB_HOST', isset($dsn->port) ? "{$dsn->host}:{$dsn->port}" : $dsn->host);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -6,13 +6,13 @@
|
|||
|
||||
declare(strict_types=1);
|
||||
|
||||
use Roots\WPConfig\Config;
|
||||
|
||||
use function Env\env;
|
||||
|
||||
use Roots\WPConfig\Config;
|
||||
|
||||
Config::define('SAVEQUERIES', true);
|
||||
Config::define('WP_DEBUG', true);
|
||||
Config::define('WP_DEBUG_DISPLAY', false);
|
||||
Config::define('WP_DEBUG_DISPLAY', true);
|
||||
Config::define('WP_DEBUG_LOG', env('WP_DEBUG_LOG') ?? true);
|
||||
Config::define('WP_DISABLE_FATAL_ERROR_HANDLER', true);
|
||||
Config::define('SCRIPT_DEBUG', true);
|
||||
|
|
|
|||
|
|
@ -6,10 +6,10 @@
|
|||
|
||||
declare(strict_types=1);
|
||||
|
||||
use Roots\WPConfig\Config;
|
||||
|
||||
use function Env\env;
|
||||
|
||||
use Roots\WPConfig\Config;
|
||||
|
||||
Config::define('WP_DEBUG', true);
|
||||
Config::define('WP_DEBUG_DISPLAY', false);
|
||||
Config::define('WP_DEBUG_LOG', env('WP_DEBUG_LOG') ?? true);
|
||||
|
|
|
|||
|
|
@ -6,10 +6,10 @@
|
|||
|
||||
declare(strict_types=1);
|
||||
|
||||
use Roots\WPConfig\Config;
|
||||
|
||||
use function Env\env;
|
||||
|
||||
use Roots\WPConfig\Config;
|
||||
|
||||
Config::define('DISALLOW_INDEXING', true);
|
||||
Config::define('WOOCOMMERCE_API_CONSUMER_KEY', env('WOOCOMMERCE_API_CONSUMER_KEY'));
|
||||
Config::define('WOOCOMMERCE_API_CONSUMER_SECRET', env('WOOCOMMERCE_API_CONSUMER_SECRET'));
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ RUN set -eux && apk add --no-cache \
|
|||
# Récupère les fichiers du site pour la branche « Production ».
|
||||
RUN git clone --branch production --depth 1 http://git.gcch.fr/gcch/haiku-atelier-2024.git "/tmp/repo"
|
||||
|
||||
FROM docker.io/library/wordpress:php8.4-fpm-alpine AS php
|
||||
FROM docker.io/library/wordpress:php8.5-fpm-alpine AS php
|
||||
ENTRYPOINT []
|
||||
|
||||
LABEL org.opencontainers.image.title=wordpress-haiku-atelier \
|
||||
|
|
|
|||
|
|
@ -11,6 +11,11 @@ server {
|
|||
# Remove X-Powered-By, which is an information leak
|
||||
fastcgi_hide_header X-Powered-By;
|
||||
|
||||
# Pour éviter des erreurs liés à des requêtes trop lourdes.
|
||||
fastcgi_buffers 16 32k;
|
||||
fastcgi_buffer_size 64k;
|
||||
fastcgi_busy_buffers_size 64k;
|
||||
|
||||
# Point d'accès pour vérifier la santé du conteneur Angie.
|
||||
location = /health {
|
||||
access_log off;
|
||||
|
|
|
|||
47
cspell.json
47
cspell.json
|
|
@ -1,26 +1,5 @@
|
|||
{
|
||||
"dictionaries": [
|
||||
"fr-fr",
|
||||
"en-gb"
|
||||
],
|
||||
"words": [
|
||||
"GLITCHTIP",
|
||||
"Vali",
|
||||
"fdir",
|
||||
"mobily",
|
||||
"oxlint",
|
||||
"valibot",
|
||||
"zstandard",
|
||||
"Eles",
|
||||
"logtape",
|
||||
"wpackagist",
|
||||
"phpdotenv",
|
||||
"friendsofphp",
|
||||
"htmlburger",
|
||||
"Crell",
|
||||
"wpdb",
|
||||
"classlike"
|
||||
],
|
||||
"dictionaries": ["fr-fr", "en-gb"],
|
||||
"userWords": [
|
||||
"lightningcss",
|
||||
"haikuatelier",
|
||||
|
|
@ -44,6 +23,26 @@
|
|||
"multishipping",
|
||||
"multiformats",
|
||||
"curryfication",
|
||||
"giftcard"
|
||||
"giftcard",
|
||||
"taplo",
|
||||
"phpactor"
|
||||
],
|
||||
"words": [
|
||||
"GLITCHTIP",
|
||||
"Vali",
|
||||
"fdir",
|
||||
"mobily",
|
||||
"oxlint",
|
||||
"valibot",
|
||||
"zstandard",
|
||||
"Eles",
|
||||
"logtape",
|
||||
"wpackagist",
|
||||
"phpdotenv",
|
||||
"friendsofphp",
|
||||
"htmlburger",
|
||||
"Crell",
|
||||
"wpdb",
|
||||
"classlike"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -76,12 +76,12 @@
|
|||
},
|
||||
"newLineKind": "lf",
|
||||
"plugins": [
|
||||
"https://plugins.dprint.dev/typescript-0.95.12.wasm",
|
||||
"https://plugins.dprint.dev/typescript-0.95.13.wasm",
|
||||
"https://plugins.dprint.dev/json-0.21.0.wasm",
|
||||
"https://plugins.dprint.dev/markdown-0.20.0.wasm",
|
||||
"https://plugins.dprint.dev/toml-0.7.0.wasm",
|
||||
"https://plugins.dprint.dev/g-plane/malva-v0.15.0.wasm",
|
||||
"https://plugins.dprint.dev/g-plane/markup_fmt-v0.24.0.wasm",
|
||||
"https://plugins.dprint.dev/g-plane/malva-v0.15.1.wasm",
|
||||
"https://plugins.dprint.dev/g-plane/markup_fmt-v0.25.3.wasm",
|
||||
"https://plugins.dprint.dev/g-plane/pretty_yaml-v0.5.1.wasm",
|
||||
"https://plugins.dprint.dev/exec-0.6.0.json@a054130d458f124f9b5c91484833828950723a5af3f8ff2bd1523bd47b83b364"
|
||||
],
|
||||
|
|
|
|||
7
justfile
7
justfile
|
|
@ -21,18 +21,21 @@ update:
|
|||
# Formatte avec Prettier et dprint.
|
||||
[group('qualité')]
|
||||
format:
|
||||
@echo "Formatage de l'ensemble du code avec Prettier et dprint."
|
||||
bun prettier \
|
||||
--cache \
|
||||
--cache-location "{{ cacheFolder }}/{{ prettierCacheFile }}" \
|
||||
--ignore-unknown \
|
||||
--parallel-workers 8 \
|
||||
--write \
|
||||
.
|
||||
-dprint fmt
|
||||
dprint fmt
|
||||
# TwigCsFixher
|
||||
-vendor/bin/twig-cs-fixer fix web/app/themes/haiku-atelier-2024/
|
||||
# Mago
|
||||
mago fmt
|
||||
# PhpCsFixer
|
||||
-vendor/bin/php-cs-fixer fix --allow-risky yes
|
||||
fish scripts/format-sort-files.fish
|
||||
|
||||
# Compile, minifie et optimise Sass vers CSS.
|
||||
[group('css')]
|
||||
|
|
|
|||
|
|
@ -1,10 +1,12 @@
|
|||
php-version = "8.4.0"
|
||||
php-version = "8.5"
|
||||
stack-size = 8388608
|
||||
threads = 8
|
||||
|
||||
[source]
|
||||
excludes = ["web/wp/wp-admin/includes/noop.php"]
|
||||
extensions = ["php"]
|
||||
includes = ["config", "vendor", "web/app/plugins", "web/vendor", "web/wp"]
|
||||
paths = ["web/app/themes/haiku-atelier-2024/"]
|
||||
paths = ["web/app/themes/haiku-atelier-2024"]
|
||||
|
||||
[formatter]
|
||||
# Brace style for classes, traits, etc.
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@
|
|||
"oxlint": "^1.31.0",
|
||||
"picomatch": "^4.0.3",
|
||||
"playwright": "^1.57.0",
|
||||
"prettier": "^3.7.4",
|
||||
"prettier": "^4.0.0-alpha.13",
|
||||
"prettier-plugin-pkg": "^0.21.2",
|
||||
"prettier-plugin-sh": "^0.18.0",
|
||||
"sass-embedded": "^1.93.3",
|
||||
|
|
@ -61,9 +61,6 @@
|
|||
"typescript": "5.9.3",
|
||||
"typescript-eslint": "^8.48.1",
|
||||
"vite": "^7.2.6",
|
||||
"vite-plugin-compression2": "^2.3.1",
|
||||
"vite-plugin-manifest-sri": "^0.2.0",
|
||||
"vite-plugin-node-polyfills": "^0.24.0",
|
||||
"vite-plugin-valibot-env": "^1.0.1",
|
||||
"vite-tsconfig-paths": "^5.1.4",
|
||||
"wp-types": "^4.69.0"
|
||||
|
|
|
|||
492
phpactor.schema.json
Normal file
492
phpactor.schema.json
Normal file
|
|
@ -0,0 +1,492 @@
|
|||
{
|
||||
"$schema": "https:\/\/json-schema.org\/draft-07\/schema",
|
||||
"title": "Phpactor Configuration Schema",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"$schema": {
|
||||
"description": "Path to JSON schema, which can be used for config autocompletion, use phpactor config:initialize to update",
|
||||
"default": ""
|
||||
},
|
||||
"console_dumper_default": {
|
||||
"description": "Name of the \"dumper\" (renderer) to use for some CLI commands",
|
||||
"default": "indented"
|
||||
},
|
||||
"xdebug_disable": { "description": "If XDebug should be automatically disabled", "default": true },
|
||||
"command": { "description": "Internal use only - name of the command which was executed" },
|
||||
"core.min_memory_limit": {
|
||||
"description": "Ensure that PHP has a memory_limit of at least this amount in bytes",
|
||||
"default": 1610612736
|
||||
},
|
||||
"class_to_file.project_root": {
|
||||
"description": "Root path of the project (e.g. where composer.json is)",
|
||||
"default": "%project_root%"
|
||||
},
|
||||
"class_to_file.brute_force_conversion": {
|
||||
"description": "If composer not found, fallback to scanning all files (very time consuming depending on project size)",
|
||||
"default": true
|
||||
},
|
||||
"code_transform.class_new.variants": {
|
||||
"description": "Variants which should be suggested when class-create is invoked",
|
||||
"default": []
|
||||
},
|
||||
"code_transform.template_paths": {
|
||||
"description": "Paths in which to look for code templates",
|
||||
"default": ["%project_config%\/templates", "%config%\/templates"]
|
||||
},
|
||||
"code_transform.indentation": {
|
||||
"description": "Indentation chars to use in code generation and transformation",
|
||||
"default": " "
|
||||
},
|
||||
"code_transform.refactor.generate_accessor.prefix": {
|
||||
"description": "Prefix to use for generated accessors",
|
||||
"default": ""
|
||||
},
|
||||
"code_transform.refactor.generate_accessor.upper_case_first": {
|
||||
"description": "If the first letter of a generated accessor should be made uppercase",
|
||||
"default": false
|
||||
},
|
||||
"code_transform.refactor.generate_mutator.prefix": {
|
||||
"description": "Prefix to use for generated mutators",
|
||||
"default": "set"
|
||||
},
|
||||
"code_transform.refactor.generate_mutator.upper_case_first": {
|
||||
"description": "If the first letter of a generated mutator should be made uppercase",
|
||||
"default": true
|
||||
},
|
||||
"code_transform.refactor.generate_mutator.fluent": {
|
||||
"description": "If the mutator should be fluent",
|
||||
"default": false
|
||||
},
|
||||
"code_transform.import_globals": {
|
||||
"description": "Import functions even if they are in the global namespace",
|
||||
"default": false
|
||||
},
|
||||
"code_transform.refactor.object_fill.hint": {
|
||||
"description": "Object fill refactoring: show hint as a comment",
|
||||
"default": true
|
||||
},
|
||||
"code_transform.refactor.object_fill.named_parameters": {
|
||||
"description": "Object fill refactoring: use named parameters",
|
||||
"default": true
|
||||
},
|
||||
"completion_worse.completor.doctrine_annotation.enabled": {
|
||||
"description": "Enable or disable the ``doctrine_annotation`` completor.\n\nCompletion for annotations provided by the Doctrine annotation library.",
|
||||
"default": true
|
||||
},
|
||||
"completion_worse.completor.imported_names.enabled": {
|
||||
"description": "Enable or disable the ``imported_names`` completor.\n\nCompletion for names imported into the current namespace.",
|
||||
"default": true
|
||||
},
|
||||
"completion_worse.completor.worse_parameter.enabled": {
|
||||
"description": "Enable or disable the ``worse_parameter`` completor.\n\nCompletion for method or function parameters.",
|
||||
"default": true
|
||||
},
|
||||
"completion_worse.completor.named_parameter.enabled": {
|
||||
"description": "Enable or disable the ``named_parameter`` completor.\n\nCompletion for named parameters.",
|
||||
"default": true
|
||||
},
|
||||
"completion_worse.completor.constructor.enabled": {
|
||||
"description": "Enable or disable the ``constructor`` completor.\n\nCompletion for constructors.",
|
||||
"default": true
|
||||
},
|
||||
"completion_worse.completor.class_member.enabled": {
|
||||
"description": "Enable or disable the ``class_member`` completor.\n\nCompletion for class members.",
|
||||
"default": true
|
||||
},
|
||||
"completion_worse.completor.scf_class.enabled": {
|
||||
"description": "Enable or disable the ``scf_class`` completor.\n\nBrute force completion for class names (not recommended).",
|
||||
"default": true
|
||||
},
|
||||
"completion_worse.completor.local_variable.enabled": {
|
||||
"description": "Enable or disable the ``local_variable`` completor.\n\nCompletion for local variables.",
|
||||
"default": true
|
||||
},
|
||||
"completion_worse.completor.subscript.enabled": {
|
||||
"description": "Enable or disable the ``subscript`` completor.\n\nCompletion for subscript (array access from array shapes).",
|
||||
"default": true
|
||||
},
|
||||
"completion_worse.completor.declared_function.enabled": {
|
||||
"description": "Enable or disable the ``declared_function`` completor.\n\nCompletion for functions defined in the Phpactor runtime.",
|
||||
"default": true
|
||||
},
|
||||
"completion_worse.completor.declared_constant.enabled": {
|
||||
"description": "Enable or disable the ``declared_constant`` completor.\n\nCompletion for constants defined in the Phpactor runtime.",
|
||||
"default": true
|
||||
},
|
||||
"completion_worse.completor.declared_class.enabled": {
|
||||
"description": "Enable or disable the ``declared_class`` completor.\n\nCompletion for classes defined in the Phpactor runtime.",
|
||||
"default": true
|
||||
},
|
||||
"completion_worse.completor.expression_name_search.enabled": {
|
||||
"description": "Enable or disable the ``expression_name_search`` completor.\n\nCompletion for class names, constants and functions at expression positions that are located in the index.",
|
||||
"default": true
|
||||
},
|
||||
"completion_worse.completor.use.enabled": {
|
||||
"description": "Enable or disable the ``use`` completor.\n\nCompletion for use imports.",
|
||||
"default": true
|
||||
},
|
||||
"completion_worse.completor.attribute.enabled": {
|
||||
"description": "Enable or disable the ``attribute`` completor.\n\nCompletion for attribute class names.",
|
||||
"default": true
|
||||
},
|
||||
"completion_worse.completor.class_like.enabled": {
|
||||
"description": "Enable or disable the ``class_like`` completor.\n\nCompletion for class like contexts.",
|
||||
"default": true
|
||||
},
|
||||
"completion_worse.completor.type.enabled": {
|
||||
"description": "Enable or disable the ``type`` completor.\n\nCompletion for scalar types.",
|
||||
"default": true
|
||||
},
|
||||
"completion_worse.completor.keyword.enabled": {
|
||||
"description": "Enable or disable the ``keyword`` completor.\n\nCompletion for keywords (not very accurate).",
|
||||
"default": true
|
||||
},
|
||||
"completion_worse.completor.docblock.enabled": {
|
||||
"description": "Enable or disable the ``docblock`` completor.\n\nDocblock completion.",
|
||||
"default": true
|
||||
},
|
||||
"completion_worse.completor.constant.enabled": { "description": null, "default": false },
|
||||
"completion_worse.completor.class.limit": {
|
||||
"description": "Suggestion limit for the filesystem based SCF class_completor",
|
||||
"default": 100
|
||||
},
|
||||
"completion_worse.name_completion_priority": {
|
||||
"description": "Strategy to use when ordering completion results for classes and functions:\n\n- `proximity`: Classes and functions will be ordered by their proximity to the text document being edited.\n- `none`: No ordering will be applied.",
|
||||
"default": "proximity"
|
||||
},
|
||||
"completion_worse.snippets": { "description": "Enable or disable completion snippets", "default": true },
|
||||
"completion_worse.experimantal": { "description": "Enable experimental functionality", "default": false },
|
||||
"completion_worse.debug": { "description": "Include debug info in completion results", "default": false },
|
||||
"completion.dedupe": { "description": "If results should be de-duplicated", "default": true },
|
||||
"completion.dedupe_match_fqn": {
|
||||
"description": "If ``completion.dedupe``, consider the class FQN in addition to the completion suggestion",
|
||||
"default": true
|
||||
},
|
||||
"completion.limit": { "description": "Sets a limit on the number of completion suggestions for any request" },
|
||||
"completion.label_formatter": {
|
||||
"description": "Definition of how to format entries in the completion list",
|
||||
"default": "helpful",
|
||||
"enum": ["helpful", "fqn"]
|
||||
},
|
||||
"navigator.destinations": { "description": null, "default": [] },
|
||||
"navigator.autocreate": { "description": null, "default": [] },
|
||||
"rpc.store_replay": { "description": "Should replays be stored?", "default": false },
|
||||
"rpc.replay_path": { "description": "Path where the replays should be stored", "default": "%cache%\/replay.json" },
|
||||
"source_code_filesystem.project_root": { "description": null, "default": "%project_root%" },
|
||||
"language_server_code_transform.import_globals": {
|
||||
"description": "Show hints for non-imported global classes and functions",
|
||||
"default": false
|
||||
},
|
||||
"worse_reflection.enable_cache": { "description": "If reflection caching should be enabled", "default": true },
|
||||
"worse_reflection.cache_lifetime": {
|
||||
"description": "If caching is enabled, limit the amount of time a cache entry can stay alive",
|
||||
"default": 1
|
||||
},
|
||||
"worse_reflection.enable_context_location": {
|
||||
"description": "If source code is passed to a ``Reflector`` then temporarily make it available as a\nsource location. Note this should NOT be enabled if the source code can be\nlocated in another (e.g. when running a Language Server)",
|
||||
"default": true
|
||||
},
|
||||
"worse_reflection.cache_dir": {
|
||||
"description": "Cache directory for stubs",
|
||||
"default": "%cache%\/worse-reflection"
|
||||
},
|
||||
"worse_reflection.stub_dir": {
|
||||
"description": "Location of the core PHP stubs - these will be scanned and cached on the first request",
|
||||
"default": "%application_root%\/vendor\/jetbrains\/phpstorm-stubs"
|
||||
},
|
||||
"worse_reflection.diagnostics.undefined_variable.suggestion_levenshtein_disatance": {
|
||||
"description": "Levenshtein distance to use when suggesting corrections for variable names",
|
||||
"type": ["integer"],
|
||||
"default": 4
|
||||
},
|
||||
"file_path_resolver.project_root": { "description": null, "default": "\/opt\/phpactor" },
|
||||
"file_path_resolver.app_name": { "description": null, "default": "phpactor" },
|
||||
"file_path_resolver.application_root": { "description": null },
|
||||
"file_path_resolver.enable_cache": { "description": null, "default": true },
|
||||
"file_path_resolver.enable_logging": { "description": null, "default": true },
|
||||
"logging.enabled": { "description": null, "type": ["boolean"], "default": false },
|
||||
"logging.fingers_crossed": { "description": null, "type": ["boolean"], "default": false },
|
||||
"logging.path": { "description": null, "type": ["string"], "default": "application.log" },
|
||||
"logging.level": {
|
||||
"description": null,
|
||||
"type": ["string"],
|
||||
"default": "warning",
|
||||
"enum": ["emergency", "alert", "critical", "error", "warning", "notice", "info", "debug"]
|
||||
},
|
||||
"logger.name": { "description": null, "type": ["string"], "default": "logger" },
|
||||
"logging.formatter": { "description": null },
|
||||
"composer.enable": {
|
||||
"description": "Include of the projects autoloader to facilitate class location. Note that when including an autoloader code _may_ be executed. This option may be disabled when using the indexer",
|
||||
"default": true
|
||||
},
|
||||
"composer.autoloader_path": {
|
||||
"description": "Path to project's autoloader, can be an array",
|
||||
"default": "%project_root%\/vendor\/autoload.php"
|
||||
},
|
||||
"composer.autoload_deregister": {
|
||||
"description": "Immediately de-register the autoloader once it has been included (prevent conflicts with Phpactor's autoloader). Some platforms may require this to be disabled",
|
||||
"default": true
|
||||
},
|
||||
"composer.class_maps_only": {
|
||||
"description": "Register the composer class maps only, do not register the autoloader - RECOMMENDED",
|
||||
"default": true
|
||||
},
|
||||
"console.verbosity": { "description": "Verbosity level", "default": 32, "enum": [16, 32, 64, 128, 256] },
|
||||
"console.decorated": {
|
||||
"description": "Whether to decorate messages (null for auto-guessing)",
|
||||
"enum": [true, false, null]
|
||||
},
|
||||
"php.version": {
|
||||
"description": "Consider this value to be the project\\'s version of PHP (e.g. `7.4`). If omitted\nit will check `composer.json` (by the configured platform then the PHP requirement) before\nfalling back to the PHP version of the current process."
|
||||
},
|
||||
"language_server.catch_errors": { "description": null, "default": true },
|
||||
"language_server.enable_workspace": {
|
||||
"description": "If workspace management \/ text synchronization should be enabled (this isn't required for some language server implementations, e.g. static analyzers)",
|
||||
"default": true
|
||||
},
|
||||
"language_server.session_parameters": {
|
||||
"description": "Phpactor parameters (config) that apply only to the language server session",
|
||||
"default": []
|
||||
},
|
||||
"language_server.method_alias_map": {
|
||||
"description": "Allow method names to be re-mapped. Useful for maintaining backwards compatibility",
|
||||
"default": []
|
||||
},
|
||||
"language_server.diagnostic_sleep_time": {
|
||||
"description": "Amount of time to wait before analyzing the code again for diagnostics",
|
||||
"default": 1000
|
||||
},
|
||||
"language_server.diagnostics_on_update": {
|
||||
"description": "Perform diagnostics when the text document is updated",
|
||||
"default": true
|
||||
},
|
||||
"language_server.diagnostics_on_save": {
|
||||
"description": "Perform diagnostics when the text document is saved",
|
||||
"default": true
|
||||
},
|
||||
"language_server.diagnostics_on_open": {
|
||||
"description": "Perform diagnostics when opening a text document",
|
||||
"default": true
|
||||
},
|
||||
"language_server.diagnostic_providers": {
|
||||
"description": "Specify which diagnostic providers should be active (default to all)"
|
||||
},
|
||||
"language_server.diagnostic_outsource": {
|
||||
"description": "If applicable diagnostics should be \"outsourced\" to a different process",
|
||||
"default": true
|
||||
},
|
||||
"language_server.diagnostic_exclude_paths": {
|
||||
"description": "List of paths to exclude from diagnostics, e.g. `vendor\/**\/*`",
|
||||
"default": []
|
||||
},
|
||||
"language_server.file_events": { "description": "Register to receive file events", "default": true },
|
||||
"language_server.file_event_globs": { "description": null, "default": ["**\/*.php"] },
|
||||
"language_server.profile": { "description": "Logs timing information for incoming LSP requests", "default": false },
|
||||
"language_server.trace": {
|
||||
"description": "Log incoming and outgoing messages (needs log formatter to be set to ``json``)",
|
||||
"default": false
|
||||
},
|
||||
"language_server.shutdown_grace_period": {
|
||||
"description": "Amount of time (in milliseconds) to wait before responding to a shutdown notification",
|
||||
"default": 200
|
||||
},
|
||||
"language_server.phpactor_bin": {
|
||||
"description": "Internal use only - name path to Phpactor binary",
|
||||
"default": "\/opt\/phpactor\/lib\/Extension\/LanguageServer\/..\/..\/..\/bin\/phpactor"
|
||||
},
|
||||
"language_server.self_destruct_timeout": {
|
||||
"description": "Wait this amount of time (in milliseconds) after a shutdown request before self-destructing",
|
||||
"default": 2500
|
||||
},
|
||||
"language_server.diagnostic_outsource_timeout": {
|
||||
"description": "Kill the diagnostics process if it outlives this timeout",
|
||||
"default": 5
|
||||
},
|
||||
"language_server_completion.trim_leading_dollar": {
|
||||
"description": "If the leading dollar should be trimmed for variable completion suggestions",
|
||||
"default": false
|
||||
},
|
||||
"language_server_reference_reference_finder.reference_timeout": {
|
||||
"description": "Stop searching for references after this time (in seconds) has expired",
|
||||
"default": 60
|
||||
},
|
||||
"language_server_worse_reflection.workspace_index.update_interval": {
|
||||
"description": "Minimum interval to update the workspace index as documents are updated (in milliseconds)",
|
||||
"default": 100
|
||||
},
|
||||
"language_server_worse_reflection.inlay_hints.enable": {
|
||||
"description": "Enable inlay hints (experimental)",
|
||||
"default": false
|
||||
},
|
||||
"language_server_worse_reflection.inlay_hints.types": {
|
||||
"description": "Show inlay type hints for variables",
|
||||
"default": false
|
||||
},
|
||||
"language_server_worse_reflection.inlay_hints.params": {
|
||||
"description": "Show inlay hints for parameters",
|
||||
"default": true
|
||||
},
|
||||
"language_server_worse_reflection.diagnostics.enable": { "description": "Enable diagnostics", "default": true },
|
||||
"language_server_indexer.workspace_symbol_search_limit": { "description": null, "default": 250 },
|
||||
"language_server_indexer.reindex_timeout": {
|
||||
"description": "Unconditionally reindex modified files every N seconds",
|
||||
"default": 300
|
||||
},
|
||||
"language_server_code_transform.import_name.report_non_existing_names": {
|
||||
"description": "Show an error if a diagnostic name cannot be resolved - can produce false positives",
|
||||
"default": true
|
||||
},
|
||||
"language_server_configuration.auto_config": {
|
||||
"description": "Prompt to enable extensions which apply to your project on language server start",
|
||||
"type": ["boolean"],
|
||||
"default": true
|
||||
},
|
||||
"indexer.enabled_watchers": {
|
||||
"description": "List of allowed watchers. The first watcher that supports the current system will be used",
|
||||
"type": ["object"],
|
||||
"default": ["inotify", "watchman", "find", "php"]
|
||||
},
|
||||
"indexer.index_path": {
|
||||
"description": "Path where the index should be saved",
|
||||
"type": ["string"],
|
||||
"default": "%cache%\/index\/%project_id%"
|
||||
},
|
||||
"indexer.include_patterns": {
|
||||
"description": "Glob patterns to include while indexing",
|
||||
"type": ["object"],
|
||||
"default": ["\/**\/*.php", "\/**\/*.phar"]
|
||||
},
|
||||
"indexer.exclude_patterns": {
|
||||
"description": "Glob patterns to exclude while indexing",
|
||||
"type": ["object"],
|
||||
"default": ["\/vendor\/**\/Tests\/**\/*", "\/vendor\/**\/tests\/**\/*", "\/vendor\/composer\/**\/*"]
|
||||
},
|
||||
"indexer.stub_paths": {
|
||||
"description": "Paths to external folders to index. They will be indexed only once, if you want to take any changes into account you will have to reindex your project manually.",
|
||||
"type": ["object"],
|
||||
"default": []
|
||||
},
|
||||
"indexer.poll_time": {
|
||||
"description": "For polling indexers only: the time, in milliseconds, between polls (e.g. filesystem scans)",
|
||||
"type": ["integer"],
|
||||
"default": 5000
|
||||
},
|
||||
"indexer.buffer_time": {
|
||||
"description": "For real-time indexers only: the time, in milliseconds, to buffer the results",
|
||||
"type": ["integer"],
|
||||
"default": 500
|
||||
},
|
||||
"indexer.follow_symlinks": {
|
||||
"description": "To allow indexer to follow symlinks",
|
||||
"type": ["boolean"],
|
||||
"default": false
|
||||
},
|
||||
"indexer.project_root": {
|
||||
"description": "The root path to use for scanning the index",
|
||||
"type": ["string"],
|
||||
"default": "%project_root%"
|
||||
},
|
||||
"indexer.reference_finder.deep": {
|
||||
"description": "Recurse over class implementations to resolve all references",
|
||||
"type": ["boolean"],
|
||||
"default": true
|
||||
},
|
||||
"indexer.implementation_finder.deep": {
|
||||
"description": "Recurse over class implementations to resolve all class implementations (not just the classes directly implementing the subject)",
|
||||
"type": ["boolean"],
|
||||
"default": true
|
||||
},
|
||||
"indexer.supported_extensions": {
|
||||
"description": "File extensions (e.g. `php`) for files that should be indexed",
|
||||
"type": ["object"],
|
||||
"default": ["php", "phar"]
|
||||
},
|
||||
"object_renderer.template_paths.markdown": {
|
||||
"description": "Paths in which to look for templates for hover information.",
|
||||
"default": ["%project_config%\/templates\/markdown", "%config%\/templates\/markdown"]
|
||||
},
|
||||
"language_server_phpstan.bin": {
|
||||
"description": "Path to the PHPStan executable",
|
||||
"default": "%project_root%\/vendor\/bin\/phpstan"
|
||||
},
|
||||
"language_server_phpstan.level": { "description": "Override the PHPStan level" },
|
||||
"language_server_phpstan.config": { "description": "Override the PHPStan configuration file" },
|
||||
"language_server_phpstan.mem_limit": { "description": "Override the PHPStan memory limit" },
|
||||
"language_server_psalm.bin": {
|
||||
"description": "Path to psalm if different from vendor\/bin\/psalm",
|
||||
"type": ["string"],
|
||||
"default": "%project_root%\/vendor\/bin\/psalm"
|
||||
},
|
||||
"language_server_psalm.show_info": {
|
||||
"description": "If infos from psalm should be displayed",
|
||||
"type": ["boolean"],
|
||||
"default": true
|
||||
},
|
||||
"language_server_psalm.use_cache": {
|
||||
"description": "If the Psalm cache should be used (see the `--no-cache` option)",
|
||||
"type": ["boolean"],
|
||||
"default": true
|
||||
},
|
||||
"language_server_psalm.error_level": {
|
||||
"description": "Override level at which Psalm should report errors (lower => more errors)"
|
||||
},
|
||||
"language_server_psalm.threads": {
|
||||
"description": "Set the number of threads Psalm should use. Warning: NULL will use as many as possible and may crash your computer",
|
||||
"type": ["integer"],
|
||||
"default": 1
|
||||
},
|
||||
"language_server_psalm.timeout": {
|
||||
"description": "Kill the psalm process after this number of seconds",
|
||||
"type": ["integer"],
|
||||
"default": 15
|
||||
},
|
||||
"language_server_php_cs_fixer.bin": {
|
||||
"description": "Path to the php-cs-fixer executable",
|
||||
"default": "%project_root%\/vendor\/bin\/php-cs-fixer"
|
||||
},
|
||||
"language_server_php_cs_fixer.env": {
|
||||
"description": "Environment for PHP CS Fixer (e.g. to set PHP_CS_FIXER_IGNORE_ENV)",
|
||||
"default": { "XDEBUG_MODE": "off", "PHP_CS_FIXER_IGNORE_ENV": true }
|
||||
},
|
||||
"language_server_php_cs_fixer.show_diagnostics": {
|
||||
"description": "Whether PHP CS Fixer diagnostics are shown",
|
||||
"default": true
|
||||
},
|
||||
"language_server_php_cs_fixer.config": {
|
||||
"description": "Set custom PHP CS config path. Ex., %project_root%\/.php-cs-fixer.php"
|
||||
},
|
||||
"php_code_sniffer.bin": {
|
||||
"description": "Path to the phpcs executable",
|
||||
"default": "%project_root%\/vendor\/bin\/phpcs"
|
||||
},
|
||||
"php_code_sniffer.env": {
|
||||
"description": "Environment for PHP_CodeSniffer (e.g. to set XDEBUG_MODE)",
|
||||
"default": { "XDEBUG_MODE": "off" }
|
||||
},
|
||||
"php_code_sniffer.show_diagnostics": {
|
||||
"description": "Whether PHP_CodeSniffer diagnostics are shown",
|
||||
"default": true
|
||||
},
|
||||
"php_code_sniffer.args": { "description": "Additional arguments to pass to the PHPCS process", "default": [] },
|
||||
"php_code_sniffer.cwd": { "description": "Working directory for PHPCS" },
|
||||
"behat.config_path": {
|
||||
"description": "Path to the main behat.yml (including the filename behat.yml)",
|
||||
"default": "%project_root%\/behat.yml"
|
||||
},
|
||||
"behat.symfony.di_xml_path": {
|
||||
"description": "If using Symfony, set this path to the XML container dump to find contexts which are defined as services"
|
||||
},
|
||||
"symfony.xml_path": {
|
||||
"description": "Path to the Symfony container XML dump file",
|
||||
"default": "%project_root%\/var\/cache\/dev\/App_KernelDevDebugContainer.xml"
|
||||
},
|
||||
"completion_worse.completor.symfony.enabled": {
|
||||
"description": "Enable\/disable the Symfony completor - depends on Symfony extension being enabled",
|
||||
"default": true
|
||||
},
|
||||
"public_services_only": {
|
||||
"description": "Only consider public services when providing analysis for the service locator",
|
||||
"default": false
|
||||
}
|
||||
}
|
||||
}
|
||||
29
phpcs.xml
29
phpcs.xml
|
|
@ -1,29 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<ruleset name="Roots">
|
||||
<description>Roots Coding Standards</description>
|
||||
|
||||
<!-- Scan all files in directory -->
|
||||
<file>.</file>
|
||||
|
||||
<!-- Scan only PHP files -->
|
||||
<arg
|
||||
name="extensions"
|
||||
value="php"
|
||||
/>
|
||||
|
||||
<!-- Ignore WordPress and Composer dependencies -->
|
||||
<exclude-pattern>vendor/</exclude-pattern>
|
||||
<exclude-pattern>web/app/languages/</exclude-pattern>
|
||||
<exclude-pattern>web/app/mu-plugins/</exclude-pattern>
|
||||
<exclude-pattern>web/app/plugins/</exclude-pattern>
|
||||
<exclude-pattern>web/app/themes/twentytwentyfour/</exclude-pattern>
|
||||
<exclude-pattern>web/wp</exclude-pattern>
|
||||
|
||||
<!-- Show colors in console -->
|
||||
<arg value="-colors" />
|
||||
|
||||
<!-- Show sniff codes in all reports -->
|
||||
<arg value="ns" />
|
||||
|
||||
<rule ref="Squiz" />
|
||||
</ruleset>
|
||||
69
phpstan.neon
69
phpstan.neon
|
|
@ -1,22 +1,51 @@
|
|||
parameters:
|
||||
parallel:
|
||||
maximumNumberOfProcesses: 8
|
||||
level: 6
|
||||
paths:
|
||||
- web/app/themes/haiku-atelier-2024
|
||||
scanDirectories:
|
||||
- vendor
|
||||
- web/app
|
||||
- web/vendor
|
||||
- web/wp
|
||||
scanFiles:
|
||||
- .php-cs-fixer.dist.php
|
||||
- web/index.php
|
||||
- web/wp-config.php
|
||||
# Utilise la version de développement de PHPStan
|
||||
includes:
|
||||
- phar://phpstan.phar/conf/bleedingEdge.neon
|
||||
|
||||
excludePaths:
|
||||
analyse:
|
||||
- web/app/themes/la-fille-davril/vendor
|
||||
analyseAndScan:
|
||||
- web/app/themes/twentytwentyfour
|
||||
parameters:
|
||||
# When set to true, it reports use of dynamic properties as undefined.
|
||||
checkDynamicProperties: true
|
||||
checkExplicitMixedMissingReturn: true
|
||||
# When set to true, it reports function and method calls with incorrect name case.
|
||||
checkFunctionNameCase: true
|
||||
# When set to true, it reports references to built-in classes with incorrect name case.
|
||||
checkInternalClassCaseSensitivity: true
|
||||
# When set to true, it reports return typehints that could be narrowed down because some of the listed types are never returned from a public or protected method.
|
||||
checkTooWideReturnTypesInProtectedAndPublicMethods: true
|
||||
# When set to true, it reports properties with native types that weren’t initialized in the class constructor.
|
||||
checkUninitializedProperties: false
|
||||
reportUnmatchedIgnoredErrors: false
|
||||
# When set to true, it reports violations of parameter type contravariance and return type covariance.
|
||||
reportMaybesInMethodSignatures: true
|
||||
# By default PHPStan reports wrong type in @var tag only for native types on the right side of =. With reportWrongPhpDocTypeInVarTag set to true it will consider PHPDoc types too.
|
||||
reportWrongPhpDocTypeInVarTag: true
|
||||
# Setting treatPhpDocTypesAsCertain to false relaxes some of the rules around type-checking.
|
||||
treatPhpDocTypesAsCertain: true
|
||||
|
||||
parallel:
|
||||
jobSize: 20
|
||||
maximumNumberOfProcesses: 32
|
||||
minimumNumberOfJobsPerProcess: 2
|
||||
|
||||
level: max
|
||||
|
||||
scanDirectories:
|
||||
- config
|
||||
- vendor
|
||||
- web/app
|
||||
- web/vendor
|
||||
- web/wp
|
||||
|
||||
scanFiles:
|
||||
- .php-cs-fixer.dist.php
|
||||
- web/index.php
|
||||
- web/wp-config.php
|
||||
|
||||
paths:
|
||||
- web/app/themes/haiku-atelier-2024
|
||||
|
||||
excludePaths:
|
||||
analyseAndScan:
|
||||
- web/app/db.php (?)
|
||||
- web/app/languages
|
||||
- web/app/themes/twentytwentyfour
|
||||
|
|
|
|||
24
rector.php
Normal file
24
rector.php
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<?php declare(strict_types=1);
|
||||
|
||||
use Rector\Config\RectorConfig;
|
||||
|
||||
return RectorConfig::configure()
|
||||
->withPaths([__DIR__ . '/web/app/themes/haiku-atelier-2024'])
|
||||
->withSkip([__DIR__ . '/vendor', __DIR__ . '/node_modules'])
|
||||
->withPhpSets(php85: true)
|
||||
->withCodeQualityLevel(10)
|
||||
->withCodingStyleLevel(10)
|
||||
->withDeadCodeLevel(10)
|
||||
->withTypeCoverageDocblockLevel(10)
|
||||
->withTypeCoverageLevel(10)
|
||||
->withImportNames(
|
||||
importDocBlockNames: true,
|
||||
importNames: true,
|
||||
importShortClasses: true,
|
||||
removeUnusedImports: true,
|
||||
)
|
||||
->withPreparedSets(
|
||||
carbon: true,
|
||||
instanceOf: true,
|
||||
privatization: true,
|
||||
);
|
||||
5
scripts/format-sort-files.fish
Normal file
5
scripts/format-sort-files.fish
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
set -f fichiers_toml (fd --glob "*.toml")
|
||||
|
||||
for toml in $fichiers_toml
|
||||
taplo format "$toml"
|
||||
end
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
<?php
|
||||
<?php declare(strict_types=1);
|
||||
|
||||
require_once 'web/wp/wp-load.php';
|
||||
|
||||
ini_set('max_execution_time', 3600);
|
||||
set_time_limit(3600);
|
||||
ini_set('max_execution_time', 3_600);
|
||||
set_time_limit(3_600);
|
||||
|
||||
$pdo = new PDO('mysql:dbname=haiku_atelier;host=localhost', 'haiku_utilisateur', 'spNFx5EAYwvF7o7XFMjiHpNPYJimDtmKWv');
|
||||
|
||||
|
|
|
|||
|
|
@ -1,12 +1,7 @@
|
|||
import legacy from "@vitejs/plugin-legacy";
|
||||
import { fdir, PathsOutput } from "fdir";
|
||||
import { resolve } from "node:path";
|
||||
import process from "node:process";
|
||||
import * as v from "valibot";
|
||||
import { defineConfig, loadEnv } from "vite";
|
||||
import { compression } from "vite-plugin-compression2";
|
||||
import manifestSRI from "vite-plugin-manifest-sri";
|
||||
import { nodePolyfills } from "vite-plugin-node-polyfills";
|
||||
import valibot from "vite-plugin-valibot-env";
|
||||
|
||||
const SLUG_THEME = "haiku-atelier-2024";
|
||||
|
|
@ -16,6 +11,7 @@ const SRC_TYPESCRIPT_PATHS: Promise<PathsOutput> = new fdir()
|
|||
.withMaxDepth(0)
|
||||
.crawl(`web/app/themes/${SLUG_THEME}/src/scripts`)
|
||||
.withPromise();
|
||||
const PATHS = await SRC_TYPESCRIPT_PATHS;
|
||||
|
||||
// Voir le fichier vite.env.d.ts.
|
||||
const SCHEMA_ENVIRONNEMENT = v.object({
|
||||
|
|
@ -27,31 +23,9 @@ const SCHEMA_ENVIRONNEMENT = v.object({
|
|||
const basePlugins = [
|
||||
// Permet de valider les variables d'environnements définies à partir d'un schéma Valibot
|
||||
valibot(SCHEMA_ENVIRONNEMENT),
|
||||
manifestSRI({ algorithms: ["sha512"] }),
|
||||
nodePolyfills({
|
||||
include: [],
|
||||
protocolImports: true,
|
||||
}),
|
||||
];
|
||||
// Les extensions activées en production.
|
||||
const prodPlugins = [
|
||||
legacy({
|
||||
modernPolyfills: true,
|
||||
modernTargets:
|
||||
"chrome >0 and last 3 years, edge >0 and last 3 years, safari >0 and last 3 years, firefox >0 and last 3 years, and_chr >0 and last 3 years, and_ff >0 and last 3 years, ios >0 and last 3 years",
|
||||
renderLegacyChunks: true,
|
||||
}),
|
||||
compression({
|
||||
algorithms: [
|
||||
"brotliCompress",
|
||||
"gzip",
|
||||
"zstandard",
|
||||
],
|
||||
threshold: 1000,
|
||||
}),
|
||||
];
|
||||
|
||||
export default defineConfig(async ({ mode }) => {
|
||||
export default defineConfig(({ mode }) => {
|
||||
const env = loadEnv(mode, process.cwd(), "VITE");
|
||||
console.debug(env);
|
||||
|
||||
|
|
@ -59,21 +33,17 @@ export default defineConfig(async ({ mode }) => {
|
|||
base: "/",
|
||||
build: {
|
||||
assetsDir: ".",
|
||||
cssMinify: "lightningcss",
|
||||
emptyOutDir: true,
|
||||
// Génère un fichier manifeste dans outDir.
|
||||
manifest: true,
|
||||
minify: env["VITE_MODE"] === "production",
|
||||
outDir: resolve("./web/app/themes/haiku-atelier-2024/assets/js"),
|
||||
outDir: "./web/app/themes/haiku-atelier-2024/assets/js",
|
||||
reportCompressedSize: true,
|
||||
rollupOptions: {
|
||||
input: await SRC_TYPESCRIPT_PATHS,
|
||||
experimental: {
|
||||
incrementalBuild: true,
|
||||
nativeMagicString: true,
|
||||
},
|
||||
input: PATHS,
|
||||
output: {
|
||||
assetFileNames: "[name].[hash].[extname]",
|
||||
chunkFileNames: "[name].[hash].js",
|
||||
assetFileNames: "[hash].[extname]",
|
||||
chunkFileNames: "[hash].js",
|
||||
entryFileNames: "[name].js",
|
||||
minify: env["VITE_MODE"] === "production",
|
||||
},
|
||||
|
|
@ -83,7 +53,11 @@ export default defineConfig(async ({ mode }) => {
|
|||
target: "es2020",
|
||||
write: true,
|
||||
},
|
||||
css: {
|
||||
devSourcemap: true,
|
||||
transformer: "lightningcss",
|
||||
},
|
||||
mode: env["VITE_MODE"] ?? "production",
|
||||
plugins: env["VITE_MODE"] === "production" ? [...basePlugins, ...prodPlugins] : [...basePlugins],
|
||||
plugins: [...basePlugins],
|
||||
};
|
||||
});
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
/var/www/wordpress/web/app/plugins/query-monitor/wp-content/db.php
|
||||
|
|
@ -14,7 +14,7 @@ require_once __DIR__ . '/src/inc/TraitementInformations.php';
|
|||
$contexte = Timber::context();
|
||||
$modeles = ['boutique.twig'];
|
||||
|
||||
/** @var array<WC_Product> $informations_produits Les informations brutes des Produits. */
|
||||
/** @var list<WC_Product> $informations_produits Les informations brutes des Produits. */
|
||||
$informations_produits = wc_get_products([
|
||||
'limit' => 12,
|
||||
'order' => 'DESC',
|
||||
|
|
@ -22,9 +22,9 @@ $informations_produits = wc_get_products([
|
|||
'status' => 'publish',
|
||||
]);
|
||||
|
||||
/** @var InformationsProduitShop $produits Les informations strictement nécessaires pour la grille des Produits. */
|
||||
/** @var mixed $produits Les informations strictement nécessaires pour la grille des Produits. */
|
||||
$produits = array_map(
|
||||
callback: 'recupere_informations_produit_shop',
|
||||
callback: recupere_informations_produit_shop(...),
|
||||
array: $informations_produits,
|
||||
);
|
||||
$contexte['produits'] = $produits;
|
||||
|
|
|
|||
|
|
@ -1168,16 +1168,19 @@ body:has(#menu-mobile:not([aria-hidden=true])) {
|
|||
.resume-produit .selecteur-produit__nom {
|
||||
font-size: var(--resume-police-nom-taille);
|
||||
}
|
||||
.resume-produit .selecteur-produit__selection-variation {
|
||||
.resume-produit .selecteur-produit__attribut-variation {
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
gap: var(--espace-m) var(--espace-l);
|
||||
font-size: var(--resume-police-selecteur-taille);
|
||||
font-weight: var(--resume-police-selecteur-graisse);
|
||||
text-transform: lowercase;
|
||||
/* Texte du sélecteur */
|
||||
}
|
||||
.resume-produit .selecteur-produit__selection-variation label {
|
||||
.resume-produit .selecteur-produit__attribut-variation label {
|
||||
margin-right: var(--espace-s);
|
||||
}
|
||||
.resume-produit .selecteur-produit__selection-variation select {
|
||||
.resume-produit .selecteur-produit__attribut-variation select {
|
||||
position: relative;
|
||||
padding: var(--espace-xs) var(--espace-l);
|
||||
border: 1px solid var(--couleur-noir);
|
||||
|
|
@ -1187,25 +1190,25 @@ body:has(#menu-mobile:not([aria-hidden=true])) {
|
|||
background: var(--couleur-fond);
|
||||
}
|
||||
@supports selector(:user-valid) {
|
||||
.resume-produit .selecteur-produit__selection-variation select:user-valid {
|
||||
.resume-produit .selecteur-produit__attribut-variation select:user-valid {
|
||||
background: var(--couleur-jaune-fond);
|
||||
}
|
||||
}
|
||||
.resume-produit .selecteur-produit__selection-variation option {
|
||||
.resume-produit .selecteur-produit__attribut-variation option {
|
||||
background: var(--couleur-fond);
|
||||
}
|
||||
.resume-produit .selecteur-produit__selection-variation {
|
||||
.resume-produit .selecteur-produit__attribut-variation {
|
||||
/* Conteneur des sélecteurs */
|
||||
}
|
||||
.resume-produit .selecteur-produit__selection-variation__selecteurs {
|
||||
.resume-produit .selecteur-produit__attribut-variation__selecteurs {
|
||||
position: relative;
|
||||
/* Icône de flèche descendante */
|
||||
}
|
||||
.resume-produit .selecteur-produit__selection-variation__selecteurs::after {
|
||||
.resume-produit .selecteur-produit__attribut-variation__selecteurs::after {
|
||||
pointer-events: none;
|
||||
content: " ";
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
top: 7px;
|
||||
right: 0.4rem;
|
||||
display: inline-block;
|
||||
width: 0.9rem;
|
||||
|
|
@ -1217,13 +1220,13 @@ body:has(#menu-mobile:not([aria-hidden=true])) {
|
|||
transition: opacity 0.2s, visibility 0.2s;
|
||||
}
|
||||
@supports not selector(:user-valid) {
|
||||
.resume-produit .selecteur-produit__selection-variation__selecteurs:has(select:valid)::after {
|
||||
.resume-produit .selecteur-produit__attribut-variation__selecteurs:has(select:valid)::after {
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@supports selector(:user-valid) {
|
||||
.resume-produit .selecteur-produit__selection-variation__selecteurs:has(select:user-valid)::after {
|
||||
.resume-produit .selecteur-produit__attribut-variation__selecteurs:has(select:user-valid)::after {
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
}
|
||||
|
|
@ -1246,11 +1249,11 @@ body:has(#menu-mobile:not([aria-hidden=true])) {
|
|||
}
|
||||
}
|
||||
@media (width <= 500px) {
|
||||
.resume-produit .selecteur-produit__selection-variation {
|
||||
.resume-produit .selecteur-produit__selection-variation-attribut {
|
||||
flex-flow: column nowrap;
|
||||
row-gap: var(--espace-inter-colonne);
|
||||
}
|
||||
.resume-produit .selecteur-produit__selection-variation h3 {
|
||||
.resume-produit .selecteur-produit__selection-variation-attribut h3 {
|
||||
flex-basis: 100%;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1,472 +0,0 @@
|
|||
{
|
||||
"_api-legacy.BVjX3txO.js": {
|
||||
"file": "api-legacy.BVjX3txO.js",
|
||||
"name": "api",
|
||||
"integrity": "sha512-IGngKifPb0uZiSpvJVoB3B9ooJmDWNqht0DJf0ONbl4f4s1kp2jvvpLVapbckkJu+2sWgV69CWoe42dlQTIgrQ=="
|
||||
},
|
||||
"_api.BWtmxolt.js": {
|
||||
"file": "api.BWtmxolt.js",
|
||||
"name": "api",
|
||||
"integrity": "sha512-A5mnWBY5TKhj+Y3nzUyJCS0HERVR3Ix41ykN5F5YMjLeyH5QMjpe4tMNgJOm4oKEWsd79/DISAxSGVn79XpLNw=="
|
||||
},
|
||||
"_dom-legacy.BaBbaRa_.js": {
|
||||
"file": "dom-legacy.BaBbaRa_.js",
|
||||
"name": "dom",
|
||||
"imports": [
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/journalisation-legacy.ts",
|
||||
"_exports-legacy.CUaFfB0_.js"
|
||||
],
|
||||
"integrity": "sha512-XPat7q4Zii0UQyUcY+c/8QA985GjMmWj8/0LoxSrf8NwWgmv6EWb3zh4dYXqMdUawmLIbIuoFVdLjZevUgBXGA=="
|
||||
},
|
||||
"_dom.BBcFv3WT.js": {
|
||||
"file": "dom.BBcFv3WT.js",
|
||||
"name": "dom",
|
||||
"imports": [
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/journalisation.ts",
|
||||
"_exports.JV8YQBqW.js"
|
||||
],
|
||||
"integrity": "sha512-zDuLbiIYYX2zraxwzBPuIAEFiUyCgN4rg+q7ZRRiVlk7CUjN6Vc3NPFExnXFIf1EVjvNt6XDoKqpoK9VqgvK/w=="
|
||||
},
|
||||
"_exports-legacy.CUaFfB0_.js": {
|
||||
"file": "exports-legacy.CUaFfB0_.js",
|
||||
"name": "exports",
|
||||
"integrity": "sha512-r71ewNRczzx/OA9oJj1J7++ZXTS2+B5oYfbuSQMMc95sHE6mJIbofXOcXLaVALGFwHK6M7vjOnBJmwjoGWEYUw=="
|
||||
},
|
||||
"_exports.JV8YQBqW.js": {
|
||||
"file": "exports.JV8YQBqW.js",
|
||||
"name": "exports",
|
||||
"integrity": "sha512-eoiwzzBgNxq/xRJ1kK5y7v0ASSx9/eYf4rsPmVR0xH4U7zeggxSVGZdWDtia83aqdJwmfU7SFgLJzWu43y8SMQ=="
|
||||
},
|
||||
"_gardes-legacy.KKtp3xCq.js": {
|
||||
"file": "gardes-legacy.KKtp3xCq.js",
|
||||
"name": "gardes",
|
||||
"imports": [
|
||||
"_dom-legacy.BaBbaRa_.js"
|
||||
],
|
||||
"integrity": "sha512-gYgHwCvLy5XEMsMAa3B9zDGrFMb6Fw4hsp3mr1hvuYc2n5WPmWubZLl5QqU7U6TFfNpJi11CkTdK5lQ/ZhddCw=="
|
||||
},
|
||||
"_gardes.-KvoYkXU.js": {
|
||||
"file": "gardes.-KvoYkXU.js",
|
||||
"name": "gardes",
|
||||
"imports": [
|
||||
"_dom.BBcFv3WT.js"
|
||||
],
|
||||
"integrity": "sha512-1b3ZolW4nf+yxWFRAFSAhI/7rTc9OYAnCs1cfTO1KbMulC81j95EDfN2zsn7z6elR4kCJrC7fdceP5vR3D6JYQ=="
|
||||
},
|
||||
"_index-c1cc4c86-legacy.C-8fWPTk.js": {
|
||||
"file": "index-c1cc4c86-legacy.C-8fWPTk.js",
|
||||
"name": "index-c1cc4c86",
|
||||
"imports": [
|
||||
"_dom-legacy.BaBbaRa_.js"
|
||||
],
|
||||
"integrity": "sha512-9ligLfS0/mKHVSSBhItHKmTMYyoG5H2jGFF09/o59IbrdOjnFrbZwAw0H8w8FC6F0UH2vtT/q6qhGYXuWcfj1Q=="
|
||||
},
|
||||
"_index-c1cc4c86.DUxuguYh.js": {
|
||||
"file": "index-c1cc4c86.DUxuguYh.js",
|
||||
"name": "index-c1cc4c86",
|
||||
"imports": [
|
||||
"_dom.BBcFv3WT.js"
|
||||
],
|
||||
"integrity": "sha512-R4lyMOQl9NveICP4AqNyIvzFPO9RdYeAjIFqK5RtGhzT5KRinsonFZ9z6Z2EeSpjlEhm9CLNv9q1l/wx7aG6iA=="
|
||||
},
|
||||
"_index-legacy.BZucyBbQ.js": {
|
||||
"file": "index-legacy.BZucyBbQ.js",
|
||||
"name": "index",
|
||||
"integrity": "sha512-MF2cli38DuubppX0OXCdDhJ8a2fZoRrMwU5wHD4Gi20j6HsH3Q+ysyQYvbPerSYzueuecRq2QhH9qfDAPLuOug=="
|
||||
},
|
||||
"_index.BiLbLflF.js": {
|
||||
"file": "index.BiLbLflF.js",
|
||||
"name": "index",
|
||||
"integrity": "sha512-8Ahn0UQBmspOKB4t6c6vnipgMD6h0aJqIYgM5/ZMcNCV6FPkn325zBxIPTjNWU8bXKMl2Sb2uSFUq4LdUbrSyw=="
|
||||
},
|
||||
"_messages-legacy.PVpnHWo9.js": {
|
||||
"file": "messages-legacy.PVpnHWo9.js",
|
||||
"name": "messages",
|
||||
"imports": [
|
||||
"_dom-legacy.BaBbaRa_.js",
|
||||
"_validation-legacy.C-7tMwb9.js",
|
||||
"_exports-legacy.CUaFfB0_.js"
|
||||
],
|
||||
"integrity": "sha512-GJsoJ9FzSAcpp2wStt8jktxN/kQt6RojkM6ccw5aS/67H5C9ujuo1Ua3Hyvq4RtfScx1+1rICIXZSNm/UCyx7w=="
|
||||
},
|
||||
"_messages.B9cwwdUT.js": {
|
||||
"file": "messages.B9cwwdUT.js",
|
||||
"name": "messages",
|
||||
"imports": [
|
||||
"_dom.BBcFv3WT.js",
|
||||
"_validation.DpnMPnCH.js",
|
||||
"_exports.JV8YQBqW.js"
|
||||
],
|
||||
"integrity": "sha512-ggjos3tBMApWbiVuAtKFAjijv8RdM+dJ1hJRdRj4Xl3SiQdZhTtZpkRdyQGjYM3aL6RmV27QXi6pHsCBIffW3A=="
|
||||
},
|
||||
"_nombres-legacy.BZrbZkuk.js": {
|
||||
"file": "nombres-legacy.BZrbZkuk.js",
|
||||
"name": "nombres",
|
||||
"imports": [
|
||||
"_exports-legacy.CUaFfB0_.js"
|
||||
],
|
||||
"integrity": "sha512-5GbnhKTUDYVU3IPaVLgA6ojKSYg8nre/hRRrZbmnDgcPvslW0G1xvZQqpW2N7RH+jBJUNpjYsXCS6+yCvn8i6g=="
|
||||
},
|
||||
"_nombres.C1uiwPb_.js": {
|
||||
"file": "nombres.C1uiwPb_.js",
|
||||
"name": "nombres",
|
||||
"imports": [
|
||||
"_exports.JV8YQBqW.js"
|
||||
],
|
||||
"integrity": "sha512-Lg+EYkU54Bwvk3ZuI3ZN8LhJzqI+XzSmK1+Likp3pwVTBNVSsD3nuVfAOBeENVZ1c7Hh9xZcZzaBDancMUMjdQ=="
|
||||
},
|
||||
"_reseau-legacy.dBQarsl0.js": {
|
||||
"file": "reseau-legacy.dBQarsl0.js",
|
||||
"name": "reseau",
|
||||
"imports": [
|
||||
"_index-legacy.BZucyBbQ.js",
|
||||
"_api-legacy.BVjX3txO.js",
|
||||
"_dom-legacy.BaBbaRa_.js"
|
||||
],
|
||||
"integrity": "sha512-g655rQaBapN+quEZfR98HP4mKKEfNVpSwVVLQr2ub7Z7tsmnWuZzEAQeFBuSBt3Q4D0jr4S352DS9Hf4A5SgHg=="
|
||||
},
|
||||
"_reseau.CUz9kCSO.js": {
|
||||
"file": "reseau.CUz9kCSO.js",
|
||||
"name": "reseau",
|
||||
"imports": [
|
||||
"_index.BiLbLflF.js",
|
||||
"_api.BWtmxolt.js",
|
||||
"_dom.BBcFv3WT.js"
|
||||
],
|
||||
"integrity": "sha512-ySuk73CMIp4O2si8mxym4/QtvabuZiAkp1DCh7oNYgpyflh6Ngb7nhuhKtLiodCjDKAOqC6ZwfZ6wCUJVCakMQ=="
|
||||
},
|
||||
"_validation-legacy.C-7tMwb9.js": {
|
||||
"file": "validation-legacy.C-7tMwb9.js",
|
||||
"name": "validation",
|
||||
"imports": [
|
||||
"_dom-legacy.BaBbaRa_.js"
|
||||
],
|
||||
"integrity": "sha512-DdQPd4wap6BE3b1hpFdg+3BlB6m5VhEheBWEN63q/1bLrjvf0zQzg01RnIvzazRL8NVgXFgu9TSKre95wECEfA=="
|
||||
},
|
||||
"_validation.DpnMPnCH.js": {
|
||||
"file": "validation.DpnMPnCH.js",
|
||||
"name": "validation",
|
||||
"imports": [
|
||||
"_dom.BBcFv3WT.js"
|
||||
],
|
||||
"integrity": "sha512-5UaIb7Y2zZgPawB8ILWPMjpeqVqeWsZqfnFXFcNynKKl/RmgKx0VOBd/zBMQn8NvN0UguK+sppPp+CUT/MBxNw=="
|
||||
},
|
||||
"vite/legacy-polyfills": {
|
||||
"file": "polyfills.js",
|
||||
"name": "polyfills",
|
||||
"src": "vite/legacy-polyfills",
|
||||
"isEntry": true,
|
||||
"integrity": "sha512-BeNLlpp3pU0nt0YFbnNGCXh8owF+1dS+ke2BWu9AthproMkVjFAXiAVtDj9gE4lF+MMvdyi4TI6skGXiiaxQ2Q=="
|
||||
},
|
||||
"vite/legacy-polyfills-legacy": {
|
||||
"file": "polyfills-legacy.js",
|
||||
"name": "polyfills",
|
||||
"src": "vite/legacy-polyfills-legacy",
|
||||
"isEntry": true,
|
||||
"integrity": "sha512-lvg6F+ctNaZrzPdIm0/3M5HhEfwm3f2Ocyjiqj0J1KV9kt62QQK4wDvGOvAQxCb72A1ZzrJ5LtRMcRdageRK1Q=="
|
||||
},
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/gaffe-legacy.ts": {
|
||||
"file": "gaffe-legacy.js",
|
||||
"name": "gaffe",
|
||||
"src": "web/app/themes/haiku-atelier-2024/src/scripts/gaffe-legacy.ts",
|
||||
"isEntry": true,
|
||||
"imports": [
|
||||
"_api-legacy.BVjX3txO.js",
|
||||
"_exports-legacy.CUaFfB0_.js"
|
||||
],
|
||||
"integrity": "sha512-dMZ0O0f24d66d34PXkUpBbTu4uumVQueRteO80WIsyrUmr/xivOptNMHUIXct27d/ask007AwASdu1tediwiyA=="
|
||||
},
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/gaffe.ts": {
|
||||
"file": "gaffe.js",
|
||||
"name": "gaffe",
|
||||
"src": "web/app/themes/haiku-atelier-2024/src/scripts/gaffe.ts",
|
||||
"isEntry": true,
|
||||
"imports": [
|
||||
"_api.BWtmxolt.js",
|
||||
"_exports.JV8YQBqW.js"
|
||||
],
|
||||
"integrity": "sha512-tsngJXdxKbVt+ts8fjn951dWDkB0NmQKxQu4RG78N5gOXezWvm5GDzJM+fX8TzVJHdE624TRNons6SpQkI8cPw=="
|
||||
},
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/journalisation-legacy.ts": {
|
||||
"file": "journalisation-legacy.js",
|
||||
"name": "journalisation",
|
||||
"src": "web/app/themes/haiku-atelier-2024/src/scripts/journalisation-legacy.ts",
|
||||
"isEntry": true,
|
||||
"integrity": "sha512-hvXEMsmNUY4E2gxiadZkLqHnlVZyIp2cCQ3W84sGJgnt/XPvAVHp/2qW2haSdJCaf8ZPC+JJTUi0oWzGIkSi4g=="
|
||||
},
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/journalisation.ts": {
|
||||
"file": "journalisation.js",
|
||||
"name": "journalisation",
|
||||
"src": "web/app/themes/haiku-atelier-2024/src/scripts/journalisation.ts",
|
||||
"isEntry": true,
|
||||
"integrity": "sha512-re9Hg5+pyFRB+rvb7XyWQ3sRdKYTXD2RagZgFkCCzjVz2ZJyB+cDmpkUx5CVcIUkBKRpEeK+DNDu3P2fop6YCQ=="
|
||||
},
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/scripts-bouton-panier-legacy.ts": {
|
||||
"file": "scripts-bouton-panier-legacy.js",
|
||||
"name": "scripts-bouton-panier",
|
||||
"src": "web/app/themes/haiku-atelier-2024/src/scripts/scripts-bouton-panier-legacy.ts",
|
||||
"isEntry": true,
|
||||
"imports": [
|
||||
"_dom-legacy.BaBbaRa_.js",
|
||||
"_messages-legacy.PVpnHWo9.js",
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/journalisation-legacy.ts",
|
||||
"_exports-legacy.CUaFfB0_.js",
|
||||
"_validation-legacy.C-7tMwb9.js"
|
||||
],
|
||||
"integrity": "sha512-3D9WifzghTWPibZUi93ZO35JDshhCleeJzKjXZP1eIlcnh+WR47KoQ1h7S5uKMGkS0SS5rhC3gh0hKxpwuJvfw=="
|
||||
},
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/scripts-bouton-panier.ts": {
|
||||
"file": "scripts-bouton-panier.js",
|
||||
"name": "scripts-bouton-panier",
|
||||
"src": "web/app/themes/haiku-atelier-2024/src/scripts/scripts-bouton-panier.ts",
|
||||
"isEntry": true,
|
||||
"imports": [
|
||||
"_dom.BBcFv3WT.js",
|
||||
"_messages.B9cwwdUT.js",
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/journalisation.ts",
|
||||
"_exports.JV8YQBqW.js",
|
||||
"_validation.DpnMPnCH.js"
|
||||
],
|
||||
"integrity": "sha512-3WAdjplY+TOHdPCWbH7g5sowrTVtYUFBKvDlaTCV0NSHF8+o/28U/re0JkofIXdJzKd36P7NXLQAbcPGOJiZUQ=="
|
||||
},
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/scripts-bouton-retour-sommet-legacy.ts": {
|
||||
"file": "scripts-bouton-retour-sommet-legacy.js",
|
||||
"name": "scripts-bouton-retour-sommet",
|
||||
"src": "web/app/themes/haiku-atelier-2024/src/scripts/scripts-bouton-retour-sommet-legacy.ts",
|
||||
"isEntry": true,
|
||||
"imports": [
|
||||
"_dom-legacy.BaBbaRa_.js",
|
||||
"_exports-legacy.CUaFfB0_.js",
|
||||
"_index-c1cc4c86-legacy.C-8fWPTk.js",
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/journalisation-legacy.ts"
|
||||
],
|
||||
"integrity": "sha512-/WgxfGF1Zznd/tpN+0WxQeVuWyBXVUidtmBKeIaXpNrrWpRGa5trbytAuDCNpv2DXLFb7VJ6PyQGXU6pBM6esg=="
|
||||
},
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/scripts-bouton-retour-sommet.ts": {
|
||||
"file": "scripts-bouton-retour-sommet.js",
|
||||
"name": "scripts-bouton-retour-sommet",
|
||||
"src": "web/app/themes/haiku-atelier-2024/src/scripts/scripts-bouton-retour-sommet.ts",
|
||||
"isEntry": true,
|
||||
"imports": [
|
||||
"_dom.BBcFv3WT.js",
|
||||
"_exports.JV8YQBqW.js",
|
||||
"_index-c1cc4c86.DUxuguYh.js",
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/journalisation.ts"
|
||||
],
|
||||
"integrity": "sha512-OJFhpdBd3Y2UMtCUy7C4dZ0ToHnuHgZu+Ng62No6/40W5VtDLXg/zrLkbMmsf7sloQd7pHGf3ICvselnKrSUkw=="
|
||||
},
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/scripts-menu-categories-legacy.ts": {
|
||||
"file": "scripts-menu-categories-legacy.js",
|
||||
"name": "scripts-menu-categories",
|
||||
"src": "web/app/themes/haiku-atelier-2024/src/scripts/scripts-menu-categories-legacy.ts",
|
||||
"isEntry": true,
|
||||
"imports": [
|
||||
"_index-legacy.BZucyBbQ.js",
|
||||
"_dom-legacy.BaBbaRa_.js",
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/journalisation-legacy.ts",
|
||||
"_exports-legacy.CUaFfB0_.js"
|
||||
],
|
||||
"integrity": "sha512-cmYlB899jHpGBXcBn53JO6OtALmQbTTRtkkyfyJ0nVYTEqgiziPaIU2WKyq+XcZwFQGxRBbagFjdp1E7ThTuOg=="
|
||||
},
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/scripts-menu-categories.ts": {
|
||||
"file": "scripts-menu-categories.js",
|
||||
"name": "scripts-menu-categories",
|
||||
"src": "web/app/themes/haiku-atelier-2024/src/scripts/scripts-menu-categories.ts",
|
||||
"isEntry": true,
|
||||
"imports": [
|
||||
"_index.BiLbLflF.js",
|
||||
"_dom.BBcFv3WT.js",
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/journalisation.ts",
|
||||
"_exports.JV8YQBqW.js"
|
||||
],
|
||||
"integrity": "sha512-dLc1VQ4H6gqOg4M3eCLd91O8rOqKz0gg3GxJM+aySpCxivZhdfI6N4RYBLDMNCyqRUjzUHG26ggr8zSysol2gg=="
|
||||
},
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/scripts-menu-mobile-legacy.ts": {
|
||||
"file": "scripts-menu-mobile-legacy.js",
|
||||
"name": "scripts-menu-mobile",
|
||||
"src": "web/app/themes/haiku-atelier-2024/src/scripts/scripts-menu-mobile-legacy.ts",
|
||||
"isEntry": true,
|
||||
"imports": [
|
||||
"_dom-legacy.BaBbaRa_.js",
|
||||
"_exports-legacy.CUaFfB0_.js",
|
||||
"_index-c1cc4c86-legacy.C-8fWPTk.js",
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/journalisation-legacy.ts"
|
||||
],
|
||||
"integrity": "sha512-GAktRyJm40ep0LolsrZUB+qvJH3Z07WbLrlloLgB5u1lyfnxQ0BZfhqlShV/MT2DRj60LcucNuFxXjv70A9gEQ=="
|
||||
},
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/scripts-menu-mobile.ts": {
|
||||
"file": "scripts-menu-mobile.js",
|
||||
"name": "scripts-menu-mobile",
|
||||
"src": "web/app/themes/haiku-atelier-2024/src/scripts/scripts-menu-mobile.ts",
|
||||
"isEntry": true,
|
||||
"imports": [
|
||||
"_dom.BBcFv3WT.js",
|
||||
"_exports.JV8YQBqW.js",
|
||||
"_index-c1cc4c86.DUxuguYh.js",
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/journalisation.ts"
|
||||
],
|
||||
"integrity": "sha512-TaPDWkdIuql53kcMCFMyHxGcxPhv4i1wGMfG4wGUdtMpe4rUJbHBZQ4WshPah/u7yDfbzH1Azc7OL70yzafK0w=="
|
||||
},
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/scripts-page-a-propos-legacy.ts": {
|
||||
"file": "scripts-page-a-propos-legacy.js",
|
||||
"name": "scripts-page-a-propos",
|
||||
"src": "web/app/themes/haiku-atelier-2024/src/scripts/scripts-page-a-propos-legacy.ts",
|
||||
"isEntry": true,
|
||||
"imports": [
|
||||
"_dom-legacy.BaBbaRa_.js",
|
||||
"_exports-legacy.CUaFfB0_.js",
|
||||
"_index-c1cc4c86-legacy.C-8fWPTk.js",
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/journalisation-legacy.ts"
|
||||
],
|
||||
"integrity": "sha512-bXVNIsx2OBGMJvSmmXEoAtq6StKndEuAzUIQsnq+dt5cn3S+q3ib5L3IrpYR5YXjUXaJSDno5k8k+mq2BITlrg=="
|
||||
},
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/scripts-page-a-propos.ts": {
|
||||
"file": "scripts-page-a-propos.js",
|
||||
"name": "scripts-page-a-propos",
|
||||
"src": "web/app/themes/haiku-atelier-2024/src/scripts/scripts-page-a-propos.ts",
|
||||
"isEntry": true,
|
||||
"imports": [
|
||||
"_dom.BBcFv3WT.js",
|
||||
"_exports.JV8YQBqW.js",
|
||||
"_index-c1cc4c86.DUxuguYh.js",
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/journalisation.ts"
|
||||
],
|
||||
"integrity": "sha512-2XP87ci7SeNRMamQWepYkyrVK5bwRgzoMWGIreWqLeUgSOjTxzL43uzhZ0fYn9txnPXBYRlYvzq909HJpv1KCQ=="
|
||||
},
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/scripts-page-accueil-legacy.ts": {
|
||||
"file": "scripts-page-accueil-legacy.js",
|
||||
"name": "scripts-page-accueil",
|
||||
"src": "web/app/themes/haiku-atelier-2024/src/scripts/scripts-page-accueil-legacy.ts",
|
||||
"isEntry": true,
|
||||
"imports": [
|
||||
"_dom-legacy.BaBbaRa_.js",
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/journalisation-legacy.ts",
|
||||
"_nombres-legacy.BZrbZkuk.js",
|
||||
"_exports-legacy.CUaFfB0_.js",
|
||||
"_index-c1cc4c86-legacy.C-8fWPTk.js"
|
||||
],
|
||||
"integrity": "sha512-3H7po2qpBPyDKVGNxzLo4tdagwMbJ9guyE9Cxi/GIC4VoR/WJgYW2lgSrTGY0FG+a7nuFlkSGd7pSL1ffvqgyw=="
|
||||
},
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/scripts-page-accueil.ts": {
|
||||
"file": "scripts-page-accueil.js",
|
||||
"name": "scripts-page-accueil",
|
||||
"src": "web/app/themes/haiku-atelier-2024/src/scripts/scripts-page-accueil.ts",
|
||||
"isEntry": true,
|
||||
"imports": [
|
||||
"_dom.BBcFv3WT.js",
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/journalisation.ts",
|
||||
"_nombres.C1uiwPb_.js",
|
||||
"_exports.JV8YQBqW.js",
|
||||
"_index-c1cc4c86.DUxuguYh.js"
|
||||
],
|
||||
"integrity": "sha512-u4/1M991MnAwKGQBu8Q8fdu8J0RUR/WPosSyRhabW5YtryA8wGUyHvZhWXqdZPZ1r+m7IsdHES1X6JfoSEy9Eg=="
|
||||
},
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/scripts-page-boutique-legacy.ts": {
|
||||
"file": "scripts-page-boutique-legacy.js",
|
||||
"name": "scripts-page-boutique",
|
||||
"src": "web/app/themes/haiku-atelier-2024/src/scripts/scripts-page-boutique-legacy.ts",
|
||||
"isEntry": true,
|
||||
"imports": [
|
||||
"_index-legacy.BZucyBbQ.js",
|
||||
"_dom-legacy.BaBbaRa_.js",
|
||||
"_api-legacy.BVjX3txO.js",
|
||||
"_reseau-legacy.dBQarsl0.js",
|
||||
"_validation-legacy.C-7tMwb9.js",
|
||||
"_exports-legacy.CUaFfB0_.js",
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/journalisation-legacy.ts"
|
||||
],
|
||||
"integrity": "sha512-aiIbSdi+RT6r1Brc63/VyJTvQFMJD4Q/bcYG3hriXbpCD9qhcCz0KbqwLIBqrD5mVEy1Obd11eeAyqpC5s7+og=="
|
||||
},
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/scripts-page-boutique.ts": {
|
||||
"file": "scripts-page-boutique.js",
|
||||
"name": "scripts-page-boutique",
|
||||
"src": "web/app/themes/haiku-atelier-2024/src/scripts/scripts-page-boutique.ts",
|
||||
"isEntry": true,
|
||||
"imports": [
|
||||
"_index.BiLbLflF.js",
|
||||
"_dom.BBcFv3WT.js",
|
||||
"_api.BWtmxolt.js",
|
||||
"_reseau.CUz9kCSO.js",
|
||||
"_validation.DpnMPnCH.js",
|
||||
"_exports.JV8YQBqW.js",
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/journalisation.ts"
|
||||
],
|
||||
"integrity": "sha512-lOz+Kxd6x035KkLPzL1x0oRDgoD0l4geWvXc08ZU4OBn0CKJZ3B8g8AE2OP2P/LT8SO6BExvrl4VBBTHLwybxA=="
|
||||
},
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/scripts-page-panier-legacy.ts": {
|
||||
"file": "scripts-page-panier-legacy.js",
|
||||
"name": "scripts-page-panier",
|
||||
"src": "web/app/themes/haiku-atelier-2024/src/scripts/scripts-page-panier-legacy.ts",
|
||||
"isEntry": true,
|
||||
"imports": [
|
||||
"_dom-legacy.BaBbaRa_.js",
|
||||
"_messages-legacy.PVpnHWo9.js",
|
||||
"_nombres-legacy.BZrbZkuk.js",
|
||||
"_gardes-legacy.KKtp3xCq.js",
|
||||
"_index-legacy.BZucyBbQ.js",
|
||||
"_api-legacy.BVjX3txO.js",
|
||||
"_reseau-legacy.dBQarsl0.js",
|
||||
"_validation-legacy.C-7tMwb9.js",
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/journalisation-legacy.ts",
|
||||
"_exports-legacy.CUaFfB0_.js"
|
||||
],
|
||||
"integrity": "sha512-NL7i8KSoYi/ewHiHIYKCj3TTuch+pHONjSZngLLXpAeCMHWsyVOKKlugPJ/k6TT0OGVjdBB1xFvFj2+fEwfpmQ=="
|
||||
},
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/scripts-page-panier.ts": {
|
||||
"file": "scripts-page-panier.js",
|
||||
"name": "scripts-page-panier",
|
||||
"src": "web/app/themes/haiku-atelier-2024/src/scripts/scripts-page-panier.ts",
|
||||
"isEntry": true,
|
||||
"imports": [
|
||||
"_dom.BBcFv3WT.js",
|
||||
"_messages.B9cwwdUT.js",
|
||||
"_nombres.C1uiwPb_.js",
|
||||
"_gardes.-KvoYkXU.js",
|
||||
"_index.BiLbLflF.js",
|
||||
"_api.BWtmxolt.js",
|
||||
"_reseau.CUz9kCSO.js",
|
||||
"_validation.DpnMPnCH.js",
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/journalisation.ts",
|
||||
"_exports.JV8YQBqW.js"
|
||||
],
|
||||
"integrity": "sha512-KFCGz71TRzoLHNmT7rV1i2JiQMs106nXOyP/RmZ10ON7rKr9QuD3cYXb/7k7yx8veq2UQZA/N69AWt7V7wrBMg=="
|
||||
},
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/scripts-page-produit-legacy.ts": {
|
||||
"file": "scripts-page-produit-legacy.js",
|
||||
"name": "scripts-page-produit",
|
||||
"src": "web/app/themes/haiku-atelier-2024/src/scripts/scripts-page-produit-legacy.ts",
|
||||
"isEntry": true,
|
||||
"imports": [
|
||||
"_index-legacy.BZucyBbQ.js",
|
||||
"_dom-legacy.BaBbaRa_.js",
|
||||
"_api-legacy.BVjX3txO.js",
|
||||
"_gardes-legacy.KKtp3xCq.js",
|
||||
"_messages-legacy.PVpnHWo9.js",
|
||||
"_reseau-legacy.dBQarsl0.js",
|
||||
"_validation-legacy.C-7tMwb9.js",
|
||||
"_exports-legacy.CUaFfB0_.js",
|
||||
"_index-c1cc4c86-legacy.C-8fWPTk.js",
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/journalisation-legacy.ts"
|
||||
],
|
||||
"integrity": "sha512-DRv/EbN6mJgqkRjwn23Un2XfK4RRbn7HkYl7FC+1D6XGgEYJTW+uplyplKxudmqshNeW1DDxo1DV4A8QSPs69A=="
|
||||
},
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/scripts-page-produit.ts": {
|
||||
"file": "scripts-page-produit.js",
|
||||
"name": "scripts-page-produit",
|
||||
"src": "web/app/themes/haiku-atelier-2024/src/scripts/scripts-page-produit.ts",
|
||||
"isEntry": true,
|
||||
"imports": [
|
||||
"_index.BiLbLflF.js",
|
||||
"_dom.BBcFv3WT.js",
|
||||
"_api.BWtmxolt.js",
|
||||
"_gardes.-KvoYkXU.js",
|
||||
"_messages.B9cwwdUT.js",
|
||||
"_reseau.CUz9kCSO.js",
|
||||
"_validation.DpnMPnCH.js",
|
||||
"_exports.JV8YQBqW.js",
|
||||
"_index-c1cc4c86.DUxuguYh.js",
|
||||
"web/app/themes/haiku-atelier-2024/src/scripts/journalisation.ts"
|
||||
],
|
||||
"integrity": "sha512-sWFcNhB7f0e5814FhYFzVR256YIRYYJLj++JbhiiHLbKJlQAH0viM0Hh1HyVLDZH5F8I4W2CP7GnhkY2LV+zMg=="
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -1 +0,0 @@
|
|||
System.register([],function(t,e){"use strict";return{execute:function(){const e="wp-json";t("h",`/${e}/wc/store/cart/add-item`),t("d",`/${e}/wc/store/cart/apply-coupon`),t("f",`/${e}/wc/store/cart/update-item`),t("b",`/${e}/wc/store/cart/update-customer`),t("c",`/${e}/wc/v3/orders`),t("R",`/${e}/wc/v3/products`),t("g",`/${e}/wc/store/cart/remove-item`),t("e",`/${e}/wc/store/cart/remove-coupon`),t("i","Nonce"),t("E","retry-after"),t("a","x-sentry-rate-limits")}}});
|
||||
|
|
@ -1 +0,0 @@
|
|||
const E="wp-json",t=`/${E}/wc/store/cart/add-item`,_=`/${E}/wc/store/cart/apply-coupon`,s=`/${E}/wc/store/cart/update-item`,c=`/${E}/wc/store/cart/update-customer`,T=`/${E}/wc/v3/orders`,o=`/${E}/wc/v3/products`,I=`/${E}/wc/store/cart/remove-item`,R=`/${E}/wc/store/cart/remove-coupon`,a="Nonce",e="retry-after",r="x-sentry-rate-limits";export{e as E,o as R,r as a,c as b,T as c,_ as d,R as e,s as f,I as g,t as h,a as i};
|
||||
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -1 +0,0 @@
|
|||
System.register(["./dom-legacy.BaBbaRa_.js"],function(n,t){"use strict";var r,e,u,c,i,o,f,s,l;return{setters:[n=>{r=n.aZ,e=n.a_,u=n.aX,c=n.a$,i=n.aV,o=n.b0,f=n.b1,s=n.b2,l=n.b3}],execute:function(){function t(n,t){return n[t]}n({g:g,m:E});var a=c;function g(){if(1===arguments.length){const n=arguments;return function(t){return a(t,n[0])}}return a(arguments[0],arguments[1])}function h(n,t){return n[t]}var y,b=n("a",e);function m(n,t){return Object.assign({},n,t)}function p(){if(1===arguments.length){const n=arguments;return function(t){return m(t,n[0])}}return m(arguments[0],arguments[1])}function j(n,t,r){var e=p({},n);return e[t]=r,e}function v(){if(2===arguments.length){const n=arguments;return function(t){return j(t,n[0],n[1])}}return j(arguments[0],arguments[1],arguments[2])}function d(n,t,r){return v(n,t,r(c(n,t)))}function k(n,t,r){return v(n,t,r(n[t]))}function O(n,t){var r=p({},n);return l(r,t),r}function K(n,t){var r=p({},n);return s(t,function(n){l(r,n)}),r}function _(n,t){return r(f(Object.keys(n),function(r){return[r,t(n[r])]}))}function E(){if(1===arguments.length){const n=arguments;return function(t){return _(t,n[0])}}return _(arguments[0],arguments[1])}function W(n,t){return r(f(Object.keys(n),function(r){return[r,t(r,n[r])]}))}function P(n,t){return r(i(Object.keys(n),[],function(r,e){var u=n[e];return t(u)?o(r,[e,u]):r}))}function S(){if(1===arguments.length){const n=arguments;return function(t){return P(t,n[0])}}return P(arguments[0],arguments[1])}function U(n,t){return r(i(Object.keys(n),[],function(r,e){var u=n[e];return t(e,u)?o(r,[e,u]):r}))}function x(){if(1===arguments.length){const n=arguments;return function(t){return U(t,n[0])}}return U(arguments[0],arguments[1])}function H(n,t){return S(n,function(n){return!t(n)})}function L(n,t){return x(n,function(n,r){return!t(n,r)})}function M(n,t){return x(n,function(n,r){return function(n,t){return t.includes(n)}(n,t)})}n("y",{__proto__:null,placeholder:function(n){},makeEmpty:function(n){return{}},getUnsafe:function(){if(1===arguments.length){const n=arguments;return function(r){return t(r,n[0])}}return t(arguments[0],arguments[1])},get:g,prop:function(){if(1===arguments.length){const n=arguments;return function(t){return h(t,n[0])}}return h(arguments[0],arguments[1])},toPairs:function(n){return Object.entries(n)},values:b,keys:function(n){return Object.keys(n)},fromPairs:r,merge:p,set:v,update:function(){if(2===arguments.length){const n=arguments;return function(t){return d(t,n[0],n[1])}}return d(arguments[0],arguments[1],arguments[2])},updateUnsafe:function(){if(2===arguments.length){const n=arguments;return function(t){return k(t,n[0],n[1])}}return k(arguments[0],arguments[1],arguments[2])},deleteKey:function(){if(1===arguments.length){const n=arguments;return function(t){return O(t,n[0])}}return O(arguments[0],arguments[1])},deleteKeys:function(){if(1===arguments.length){const n=arguments;return function(t){return K(t,n[0])}}return K(arguments[0],arguments[1])},map:E,mapWithKey:function(){if(1===arguments.length){const n=arguments;return function(t){return W(t,n[0])}}return W(arguments[0],arguments[1])},filter:S,filterWithKey:x,reject:function(){if(1===arguments.length){const n=arguments;return function(t){return H(t,n[0])}}return H(arguments[0],arguments[1])},rejectWithKey:function(){if(1===arguments.length){const n=arguments;return function(t){return L(t,n[0])}}return L(arguments[0],arguments[1])},selectKeys:function(){if(1===arguments.length){const n=arguments;return function(t){return M(t,n[0])}}return M(arguments[0],arguments[1])},isEmpty:function(n){return u(n,{})},isNotEmpty:function(n){return!u(n,{})}}),n("b",(y=HTMLSelectElement,n=>n instanceof y)),n("e",n=>500===n.status)}}});
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -1 +0,0 @@
|
|||
import{aZ as s,a_ as $,aX as O,a$ as U,aV as W,b0 as H,b1 as L,b2 as q,b3 as M}from"./dom.BBcFv3WT.js";function x(n){}function A(n){return{}}function i(n,e){return n[e]}function D(){if(arguments.length===1){const n=arguments;return function(t){return i(t,n[0])}}return i(arguments[0],arguments[1])}var o=U;function N(){if(arguments.length===1){const n=arguments;return function(t){return o(t,n[0])}}return o(arguments[0],arguments[1])}function g(n,e){return n[e]}function R(){if(arguments.length===1){const n=arguments;return function(t){return g(t,n[0])}}return g(arguments[0],arguments[1])}function V(n){return Object.entries(n)}var X=$;function Z(n){return Object.keys(n)}var w=s;function m(n,e){return Object.assign({},n,e)}function a(){if(arguments.length===1){const n=arguments;return function(t){return m(t,n[0])}}return m(arguments[0],arguments[1])}function l(n,e,t){var r=a({},n);return r[e]=t,r}function f(){if(arguments.length===2){const n=arguments;return function(t){return l(t,n[0],n[1])}}return l(arguments[0],arguments[1],arguments[2])}function h(n,e,t){return f(n,e,t(U(n,e)))}function z(){if(arguments.length===2){const n=arguments;return function(t){return h(t,n[0],n[1])}}return h(arguments[0],arguments[1],arguments[2])}function y(n,e,t){return f(n,e,t(n[e]))}function B(){if(arguments.length===2){const n=arguments;return function(t){return y(t,n[0],n[1])}}return y(arguments[0],arguments[1],arguments[2])}function p(n,e){var t=a({},n);return M(t,e),t}function C(){if(arguments.length===1){const n=arguments;return function(t){return p(t,n[0])}}return p(arguments[0],arguments[1])}function _(n,e){var t=a({},n);return q(e,(function(r){M(t,r)})),t}function F(){if(arguments.length===1){const n=arguments;return function(t){return _(t,n[0])}}return _(arguments[0],arguments[1])}function d(n,e){return s(L(Object.keys(n),(function(t){return[t,e(n[t])]})))}function G(){if(arguments.length===1){const n=arguments;return function(t){return d(t,n[0])}}return d(arguments[0],arguments[1])}function K(n,e){return s(L(Object.keys(n),(function(t){return[t,e(t,n[t])]})))}function I(){if(arguments.length===1){const n=arguments;return function(t){return K(t,n[0])}}return K(arguments[0],arguments[1])}function b(n,e){return s(W(Object.keys(n),[],(function(t,r){var u=n[r];return e(u)?H(t,[r,u]):t})))}function P(){if(arguments.length===1){const n=arguments;return function(t){return b(t,n[0])}}return b(arguments[0],arguments[1])}function j(n,e){return s(W(Object.keys(n),[],(function(t,r){var u=n[r];return e(r,u)?H(t,[r,u]):t})))}function c(){if(arguments.length===1){const n=arguments;return function(t){return j(t,n[0])}}return j(arguments[0],arguments[1])}function v(n,e){return P(n,(function(t){return!e(t)}))}function J(){if(arguments.length===1){const n=arguments;return function(t){return v(t,n[0])}}return v(arguments[0],arguments[1])}function k(n,e){return c(n,(function(t,r){return!e(t,r)}))}function Q(){if(arguments.length===1){const n=arguments;return function(t){return k(t,n[0])}}return k(arguments[0],arguments[1])}function E(n,e){return c(n,(function(t,r){return(function(S,T){return T.includes(S)})(t,e)}))}function Y(){if(arguments.length===1){const n=arguments;return function(t){return E(t,n[0])}}return E(arguments[0],arguments[1])}function nn(n){return O(n,{})}function tn(n){return!O(n,{})}var un={__proto__:null,placeholder:x,makeEmpty:A,getUnsafe:D,get:N,prop:R,toPairs:V,values:X,keys:Z,fromPairs:w,merge:a,set:f,update:z,updateUnsafe:B,deleteKey:C,deleteKeys:F,map:G,mapWithKey:I,filter:P,filterWithKey:c,reject:J,rejectWithKey:Q,selectKeys:Y,isEmpty:nn,isNotEmpty:tn};const en=n=>e=>e instanceof n,sn=en(HTMLSelectElement),an=n=>n.status===500;export{X as a,sn as b,an as e,N as g,G as m,un as y};
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -1 +0,0 @@
|
|||
System.register(["./dom-legacy.BaBbaRa_.js"],function(n,t){"use strict";var r,u,e,o,i,f;return{setters:[n=>{r=n.aT,u=n.aU,e=n.aV,o=n.aW,i=n.aX,f=n.aY}],execute:function(){function t(n,t,r){for(var u=new Array(r),e=0,o=t;e<r;)u[e]=n[o],e=e+1|0,o=o+1|0;return u}function c(n,r){for(;;){var u=r,e=n,o=e.length,i=0===o?1:o,f=i-u.length|0;if(0===f)return e.apply(null,u);if(f>=0)return function(n,t){return function(r){return c(n,t.concat([r]))}}(e,u);r=t(u,i,0|-f),n=e.apply(null,t(u,0,i))}}function l(n,t){var r=n.length;if(1===r)return n(t);switch(r){case 1:return n(t);case 2:return function(r){return n(t,r)};case 3:return function(r,u){return n(t,r,u)};case 4:return function(r,u,e){return n(t,r,u,e)};case 5:return function(r,u,e,o){return n(t,r,u,e,o)};case 6:return function(r,u,e,o,i){return n(t,r,u,e,o,i)};case 7:return function(r,u,e,o,i,f){return n(t,r,u,e,o,i,f)};default:return c(n,[t])}}n("t",A);var a={contents:0};function s(n,t,u){return void 0!==n?u(r(n)):t}function v(n,t){if(void 0!==n)return t(r(n))}function d(n,t){return v(n,function(n){return 1===n.length?n:function(t){return l(n,t)}}(t))}function h(n,t){return void 0!==n?r(n):t}var g,m=(g="Promise.JsError",a.contents=a.contents+1|0,g+"/"+a.contents);function p(n,t){return n.catch(function(n){return l(t,function(n){return null!=n&&"string"==typeof n.RE_EXN_ID}(n)?n:{RE_EXN_ID:m,_1:n})})}function _(n,t){return d(null==n?void 0:u(n),function(n){if(t(n))return u(n)})}var E=function(n,t){if(void 0!==n)return u(t(r(n)))},N=v,y=s;function D(n,t){if(void 0!==n)return o(t(r(n)))}function P(n,t){return v(n,function(n){if(t(n))return u(n)})}var w=h,R=function(n){if(void 0!==n)return r(n);throw{RE_EXN_ID:"Not_found",Error:new Error}};function S(n,t){return void 0!==n?{TAG:0,_0:r(n)}:{TAG:1,_0:t}}function W(n,t,u){return void 0!==n?t(r(n)):u(void 0)}var X=function(n){return void 0===n},b=function(n){return void 0!==n};function x(n,t){return void 0!==n?(t(r(n)),n):n}function A(){if(1===arguments.length){const n=arguments;return function(t){return x(t,n[0])}}return x(arguments[0],arguments[1])}function I(n,t){return s(n,!1,function(n){return i(n,t)})}function T(n,t){if(void 0!==n&&void 0!==t)return[r(n),r(t)]}function k(n,t,e){if(void 0!==n&&void 0!==t)return u(e(r(n),r(t)))}function z(n,t,u){return void 0!==n?t(r(n)):u(void 0)}n("P",{__proto__:null,Some:n=>n,None:void 0,placeholder:function(n){},makeSome:function(n){return u(n)},makeNone:function(n){},fromNullable:function(n){return null==n?void 0:u(n)},fromFalsy:function(n){if(n)return n},fromPredicate:function(){if(1===arguments.length){const n=arguments;return function(t){return _(t,n[0])}}return _(arguments[0],arguments[1])},fromExecution:function(n){try{return u(n(void 0))}catch(n){return}},fromPromise:function(n){return p(n.then(function(n){return u(n)}),function(n){return Promise.resolve(void 0)})},map:function(){if(1===arguments.length){const n=arguments;return function(t){return E(t,n[0])}}return E(arguments[0],arguments[1])},flatMap:function(){if(1===arguments.length){const n=arguments;return function(t){return N(t,n[0])}}return N(arguments[0],arguments[1])},mapWithDefault:function(){if(2===arguments.length){const n=arguments;return function(t){return y(t,n[0],n[1])}}return y(arguments[0],arguments[1],arguments[2])},mapNullable:function(){if(1===arguments.length){const n=arguments;return function(t){return D(t,n[0])}}return D(arguments[0],arguments[1])},filter:function(){if(1===arguments.length){const n=arguments;return function(t){return P(t,n[0])}}return P(arguments[0],arguments[1])},getWithDefault:function(){if(1===arguments.length){const n=arguments;return function(t){return w(t,n[0])}}return w(arguments[0],arguments[1])},getExn:R,toNullable:function(n){return h(n,null)},toUndefined:function(n){return h(n,void 0)},toResult:function(){if(1===arguments.length){const n=arguments;return function(t){return S(t,n[0])}}return S(arguments[0],arguments[1])},match:function(){if(2===arguments.length){const n=arguments;return function(t){return W(t,n[0],n[1])}}return W(arguments[0],arguments[1],arguments[2])},isNone:X,isSome:b,tap:A,contains:function(){if(1===arguments.length){const n=arguments;return function(t){return I(t,n[0])}}return I(arguments[0],arguments[1])},zip:function(){if(1===arguments.length){const n=arguments;return function(t){return T(t,n[0])}}return T(arguments[0],arguments[1])},zipWith:function(){if(2===arguments.length){const n=arguments;return function(t){return k(t,n[0],n[1])}}return k(arguments[0],arguments[1],arguments[2])},fold:function(){if(2===arguments.length){const n=arguments;return function(t){return z(t,n[0],n[1])}}return z(arguments[0],arguments[1],arguments[2])},all:function(n){return e(n,[],function(n,t){return v(n,function(n){if(void 0!==t)return f(n,[r(t)])})})}})}}});
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -1 +0,0 @@
|
|||
import{aT as o,aU as a,aV as $,aW as A,aX as I,aY as M}from"./dom.BBcFv3WT.js";function v(n,t,r){for(var e=new Array(r),u=0,i=t;u<r;)e[u]=n[i],u=u+1|0,i=i+1|0;return e}function z(n,t){for(;;){var r=t,e=n,u=e.length,i=u===0?1:u,f=i-r.length|0;if(f===0)return e.apply(null,r);if(f>=0)return(function(c,m){return function(X){return z(c,m.concat([X]))}})(e,r);t=v(r,i,0|-f),n=e.apply(null,v(r,0,i))}}function R(n,t){var r=n.length;if(r===1)return n(t);switch(r){case 1:return n(t);case 2:return function(e){return n(t,e)};case 3:return function(e,u){return n(t,e,u)};case 4:return function(e,u,i){return n(t,e,u,i)};case 5:return function(e,u,i,f){return n(t,e,u,i,f)};case 6:return function(e,u,i,f,c){return n(t,e,u,i,f,c)};case 7:return function(e,u,i,f,c,m){return n(t,e,u,i,f,c,m)};default:return z(n,[t])}}function T(n){return n.length===1?n:function(t){return R(n,t)}}var l={contents:0};function k(n){return l.contents=l.contents+1|0,n+"/"+l.contents}function F(n){return n==null?!1:typeof n.RE_EXN_ID=="string"}function G(n){if(n!==void 0)return o(n);throw{RE_EXN_ID:"Not_found",Error:new Error}}function S(n,t,r){return n!==void 0?r(o(n)):t}function q(n,t){if(n!==void 0)return a(t(o(n)))}function s(n,t){if(n!==void 0)return t(o(n))}function J(n,t){return s(n,T(t))}function g(n,t){return n!==void 0?o(n):t}function O(n){return n!==void 0}function V(n){return n===void 0}var Y=k("Promise.JsError");function j(n,t){return n.catch((function(r){return R(t,F(r)?r:{RE_EXN_ID:Y,_1:r})}))}function B(n){}function C(n){return a(n)}function H(n){}function K(n){if(n!=null)return a(n)}function L(n){if(n)return n}function h(n,t){return J(n==null?void 0:a(n),(function(r){if(t(r))return a(r)}))}function Q(){if(arguments.length===1){const n=arguments;return function(r){return h(r,n[0])}}return h(arguments[0],arguments[1])}function Z(n){try{return a(n(void 0))}catch{return}}function nn(n){return j(n.then((function(t){return a(t)})),(function(t){return Promise.resolve(void 0)}))}var d=q;function tn(){if(arguments.length===1){const n=arguments;return function(r){return d(r,n[0])}}return d(arguments[0],arguments[1])}var _=s;function rn(){if(arguments.length===1){const n=arguments;return function(r){return _(r,n[0])}}return _(arguments[0],arguments[1])}var p=S;function en(){if(arguments.length===2){const n=arguments;return function(r){return p(r,n[0],n[1])}}return p(arguments[0],arguments[1],arguments[2])}function N(n,t){if(n!==void 0)return A(t(o(n)))}function un(){if(arguments.length===1){const n=arguments;return function(r){return N(r,n[0])}}return N(arguments[0],arguments[1])}function E(n,t){return s(n,(function(r){if(t(r))return a(r)}))}function on(){if(arguments.length===1){const n=arguments;return function(r){return E(r,n[0])}}return E(arguments[0],arguments[1])}var b=g;function fn(){if(arguments.length===1){const n=arguments;return function(r){return b(r,n[0])}}return b(arguments[0],arguments[1])}var an=G;function cn(n){return g(n,null)}function sn(n){return g(n,void 0)}function D(n,t){return n!==void 0?{TAG:0,_0:o(n)}:{TAG:1,_0:t}}function mn(){if(arguments.length===1){const n=arguments;return function(r){return D(r,n[0])}}return D(arguments[0],arguments[1])}function W(n,t,r){return n!==void 0?t(o(n)):r(void 0)}function ln(){if(arguments.length===2){const n=arguments;return function(r){return W(r,n[0],n[1])}}return W(arguments[0],arguments[1],arguments[2])}var gn=V,vn=O;function w(n,t){return n!==void 0&&t(o(n)),n}function hn(){if(arguments.length===1){const n=arguments;return function(r){return w(r,n[0])}}return w(arguments[0],arguments[1])}function y(n,t){return S(n,!1,(function(r){return I(r,t)}))}function dn(){if(arguments.length===1){const n=arguments;return function(r){return y(r,n[0])}}return y(arguments[0],arguments[1])}function P(n,t){if(n!==void 0&&t!==void 0)return[o(n),o(t)]}function _n(){if(arguments.length===1){const n=arguments;return function(r){return P(r,n[0])}}return P(arguments[0],arguments[1])}function U(n,t,r){if(n!==void 0&&t!==void 0)return a(r(o(n),o(t)))}function pn(){if(arguments.length===2){const n=arguments;return function(r){return U(r,n[0],n[1])}}return U(arguments[0],arguments[1],arguments[2])}function x(n,t,r){return n!==void 0?t(o(n)):r(void 0)}function Nn(){if(arguments.length===2){const n=arguments;return function(r){return x(r,n[0],n[1])}}return x(arguments[0],arguments[1],arguments[2])}function En(n){return $(n,[],(function(t,r){return s(t,(function(e){if(r!==void 0)return M(e,[o(r)])}))}))}const bn=n=>n;var Wn={__proto__:null,Some:bn,None:void 0,placeholder:B,makeSome:C,makeNone:H,fromNullable:K,fromFalsy:L,fromPredicate:Q,fromExecution:Z,fromPromise:nn,map:tn,flatMap:rn,mapWithDefault:en,mapNullable:un,filter:on,getWithDefault:fn,getExn:an,toNullable:cn,toUndefined:sn,toResult:mn,match:ln,isNone:gn,isSome:vn,tap:hn,contains:dn,zip:_n,zipWith:pn,fold:Nn,all:En};export{Wn as P,hn as t};
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
ŒÂ¶ù1™9È‚<’$òWþ¬j“_ÁäEjö8ÑJmÏ#1ã0çþ|^Ï𱉕Ԓú5Ü.+ú¿kú^UšŽ*¤“»ûwÉ ã\<5C>G¬æ:·YìÍ”›<¹e8Ó™<04>Âäw…†m<>‡’3-åp<1E>ÈÁO¨†ŸÑ)~ACüZ0<5A>LÞU¬ûžÕÎŽ½Þ|óñn-ž<16>ìfÎ @@ÞâÔ)ÕšÅWþ:!Ãh‘Î’ÙôØ|7Yá=Ê0:¯°<C2AF>oF·§¢Z*#mü£,E<>ûú£Î ÕÖì¦9"<22>«n01PÚ¢Ÿ´mˆZ¤N9œ<üz6@ ‘ƒäîOœpÖxȪÏ}Z2~ÂüÒšçð÷Côú’9‚© äDº D„<44>ݪb€f*ûVl ŠÁÐÄ7½l+½¼1<>u'7ò¶
|
||||
aÜ mVn,iÀ&HŽ<48><C5BD>Í00®ÆÙÜ
|
||||
‹È• rÛ \ ”#ډϕÀs„»á<C2BB>9æ%T¥ ³,o›^g™=èŽ%A·2cj@‚•-*3"æšT·Öqƒl„¶ˆI¢%i-” ÷@)b@¥²^Y†s½¦W¨UÁj>(3iã=µ›3Ñ}²Äðâð°b…">îì¶Ê‡‡<E280A1>,¦·åœ¨3ñb›È ^±œ¾ÌÑ„b¥‹è(Š
wx2eßê?+K¿â)é
,.¦UÑIà‰t¦Œü„G´,{ÓQ,XXy™3¡Ë…BrA,˜ßý¬ Uþ-þ
|
||||
GSŠ‹Bà&.üšM8ë#¢H<C2A2>Mèò
|
||||
cÎ{†`‚Á<E2809A>[ÆY‘8>g„!¬•<C2AC>0
|
||||
Yš<s´œI8B€U"T2"±Th’ÁÓ<12>l!gæ‘)¼¦«ÒxÅË`ê<C2AD>ÎJ hµ±;BB@¯4È¢J^ÂÊý`–Ë<E28093>ñ‚ðÆÙdMÂl½ÂÅà—:òjFsË¿?u‘‚h[fxS¹Q[<5B>4c)ÈÖ_Ç‚ô/ÈHeÝ'õ¡0.âpæ|4Xv ÷„Ò<E2809E>íx-]‹¬D„š¿¯i”·– ótjòôajÝòÝR·];ºŒ*¬<>ë]Ÿºáâj[ª0Ö]»ÜŽéŬñL
|
||||
2aoùŠnÞ Ê‰?xuQy=úûpÔç’p3‘l”>2rX¿ðýB²¼|l)ÄSx$Ìõ‘j5Á£C<1E>±(ˆñ„¹é5w½)xSÜh`¦A…ù78a½°¿Àßt<C39F>æÛqe†VÆ¡Ònçûëß¾# ½2¨ŒÖó׌wÚÇ@NĹw¾0X¿²ÿ
|
||||
߯ˆÖ\Bcô¡U‚àÞÏ÷µœÿ¿”Ûù–<C3B9>àËÏ_Èhº–ØX~Íêh²šÑœLÒ=ròò)I¼:!g¾TP›àššî[²*èñgÛ/¡'N.‡y:ÀgMî,‡&OT\ù™î
|
||||
Îð|Ì<¿§GPÏ®L:øqM>†>wÒéZ&똔~×û!oÓ5ûàÂBy©-Ðgq0d?ZÈ ?téhÁƒü¡hêŸ>Ë$Y~UÆðצ:%7M
|
||||
<EFBFBD>©†Ôa4ˆc <20>–áØàÈl®¸‘³X(ƒŸ§¯35DS3‚;€õ
sýh
?"àßðÓÕ"ŽPÒgŠ6(OÿŲg0<67>.ü'¹zþ+åÑN^!´Ò÷*Ui
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -1 +0,0 @@
|
|||
System.register(["./dom-legacy.BaBbaRa_.js","./validation-legacy.C-7tMwb9.js","./exports-legacy.CUaFfB0_.js"],function(e,t){"use strict";var a,s,n,r,i,o,c,_,d,u,l,p,y,m,b,g,f,h,x,v,k,P,N,q;return{setters:[e=>{a=e.b4,s=e.x,n=e.I,r=e.E,i=e.F,o=e.b5,c=e.b6,_=e.z,d=e.M,u=e.N,l=e.J,p=e.y,y=e.b7,m=e.K,b=e.b8,g=e.L,f=e.B,h=e.O,x=e.b9,v=e.al,k=e.ba,P=e.$},e=>{N=e.s},e=>{q=e.a9}],execute:function(){const t=e("N","bouton_panier"),w=e("j","contenu_panier"),I=(e("f","revalidation_livraison"),"maj_bouton_panier"),j="maj_contenu_panier",B=s({code:r(),data:s({status:n()}),message:r()}),T=s({body:B,status:n()}),L=s({code:o("rest_invalid_param"),data:s({details:s({billing:_(s({code:r(),data:d([u(),r()]),message:r()})),shipping:_(s({code:r(),data:d([u(),r()]),message:r()}))}),params:s({billing:_(r()),shipping:_(r())}),status:o(400)}),message:i(r(),c("Invalid parameter(s):"),c("_address"))}),M=(e("e",e=>a(L,e)),e("a",s({address_1:r(),address_2:r(),city:r(),company:r(),country:r(),email:r(),first_name:r(),last_name:r(),phone:r(),postcode:r(),state:r()}))),C=e("W",s({address_1:r(),address_2:r(),city:r(),company:r(),country:r(),first_name:r(),last_name:r(),phone:r(),postcode:r(),state:r()})),E=s({code:r(),discount_type:r(),totals:s({currency_code:r(),currency_decimal_separator:r(),currency_minor_unit:i(n(),l()),currency_prefix:r(),currency_suffix:r(),currency_symbol:r(),currency_thousand_separator:r(),total_discount:r(),total_discount_tax:r()})}),R=s({key:r(),name:r(),quantity:n()}),S=s({currency_code:r(),currency_decimal_separator:r(),currency_minor_unit:n(),currency_prefix:r(),currency_suffix:r(),currency_symbol:r(),currency_thousand_separator:r(),delivery_time:r(),description:r(),instance_id:n(),meta_data:p(g()),method_id:r(),name:r(),price:i(d([r(),n()]),b(Number)),rate_id:r(),selected:m(),taxes:r()}),V=e("b",p(S)),z=s({destination:y(C,["company","first_name","last_name","phone"]),items:p(R),name:r(),package_id:n(),shipping_rates:V}),D=s({currency_code:r(),currency_decimal_separator:r(),currency_minor_unit:n(),currency_prefix:r(),currency_suffix:r(),currency_symbol:r(),currency_thousand_separator:r(),line_subtotal:r(),line_subtotal_tax:r(),line_total:r(),line_total_tax:r()}),F=s({backorders_allowed:m(),catalog_visibility:f({INVISIBLE:"invisible",VISIBLE:"visible"}),description:r(),extensions:g(),id:n(),images:p(g()),item_data:p(g()),key:r(),low_stock_remaining:d([u()]),name:r(),permalink:i(r(),h()),prices:g(),quantity:n(),quantity_limits:g(),short_description:r(),show_backorder_badge:m(),sku:r(),sold_individually:m(),totals:D,type:r(),variation:p(g())}),J=e("g",s({currency_code:r(),currency_decimal_separator:r(),currency_minor_unit:n(),currency_prefix:r(),currency_suffix:r(),currency_symbol:r(),currency_thousand_separator:r(),tax_lines:p(g()),total_discount:i(d([r(),n()]),b(Number)),total_discount_tax:r(),total_fees:r(),total_fees_tax:r(),total_items:i(d([r(),n()]),b(Number)),total_items_tax:r(),total_price:i(d([r(),n()]),b(Number)),total_shipping:i(d([r(),n(),u()]),b(e=>e?Number(e):0)),total_shipping_tax:d([r(),u()]),total_tax:r()})),K=(e("c",s({billing_address:M,coupons:p(E),cross_sells:g(),errors:g(),extensions:g(),fees:g(),has_calculated_shipping:m(),items:p(F),items_count:i(n(),l()),items_weight:i(n(),l()),needs_payment:m(),needs_shipping:m(),payment_methods:g(),payment_requirements:g(),shipping_address:C,shipping_rates:p(z),totals:J})),s({quantiteProduits:n()})),O=s({donnees:K,type:i(r(),x(I))}),W=s({produits:p(F),sousTotalProduits:n(),sousTotalReduction:n(),totalPanier:n()}),$=s({donnees:W,type:i(r(),x(j))});e("h",e=>{const a=new BroadcastChannel(t);a.postMessage({donnees:{quantiteProduits:e.quantiteProduits},type:I}),a.close()}),e("i",e=>{const t=new BroadcastChannel(w);t.postMessage({donnees:{produits:e.produits,sousTotalProduits:e.sousTotalProduits,sousTotalReduction:e.sousTotalReduction,totalPanier:e.totalPanier},type:j}),t.close()}),e("d",(e,t)=>q(new BroadcastChannel(e),e=>((e,t)=>(e.postMessage(t),e))(e,t),e=>e.close())),e("v",e=>v.of(k(O,e.data)).ifLeft(e=>P(e))),e("k",e=>v.of(k($,e.data)).ifLeft(e=>P(e))),e("r",(e,t)=>N(e,T).map(e=>e.body.code===t).orDefault(!1))}}});
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -1 +0,0 @@
|
|||
import{b4 as x,x as a,I as s,E as e,F as r,b5 as h,b6 as S,z as p,M as c,N as l,J as y,y as i,b7 as I,K as _,b8 as d,L as o,B as N,O as E,b9 as g,al as C,ba as b,$ as f}from"./dom.BBcFv3WT.js";import{s as j}from"./validation.DpnMPnCH.js";import{a9 as A}from"./exports.JV8YQBqW.js";const B="bouton_panier",W="contenu_panier",X="revalidation_livraison",m={MajBoutonPanier:"maj_bouton_panier",MajContenuPanier:"maj_contenu_panier"},v=a({code:e(),data:a({status:s()}),message:e()}),T=a({body:v,status:s()}),R=a({code:h("rest_invalid_param"),data:a({details:a({billing:p(a({code:e(),data:c([l(),e()]),message:e()})),shipping:p(a({code:e(),data:c([l(),e()]),message:e()}))}),params:a({billing:p(e()),shipping:p(e())}),status:h(400)}),message:r(e(),S("Invalid parameter(s):"),S("_address"))}),Z=t=>x(R,t),L={INVISIBLE:"invisible",VISIBLE:"visible"},k=a({address_1:e(),address_2:e(),city:e(),company:e(),country:e(),email:e(),first_name:e(),last_name:e(),phone:e(),postcode:e(),state:e()}),M=a({address_1:e(),address_2:e(),city:e(),company:e(),country:e(),first_name:e(),last_name:e(),phone:e(),postcode:e(),state:e()}),O=a({code:e(),discount_type:e(),totals:a({currency_code:e(),currency_decimal_separator:e(),currency_minor_unit:r(s(),y()),currency_prefix:e(),currency_suffix:e(),currency_symbol:e(),currency_thousand_separator:e(),total_discount:e(),total_discount_tax:e()})}),q=a({key:e(),name:e(),quantity:s()}),w=a({currency_code:e(),currency_decimal_separator:e(),currency_minor_unit:s(),currency_prefix:e(),currency_suffix:e(),currency_symbol:e(),currency_thousand_separator:e(),delivery_time:e(),description:e(),instance_id:s(),meta_data:i(o()),method_id:e(),name:e(),price:r(c([e(),s()]),d(Number)),rate_id:e(),selected:_(),taxes:e()}),V=i(w),D=a({destination:I(M,["company","first_name","last_name","phone"]),items:i(q),name:e(),package_id:s(),shipping_rates:V}),U=a({currency_code:e(),currency_decimal_separator:e(),currency_minor_unit:s(),currency_prefix:e(),currency_suffix:e(),currency_symbol:e(),currency_thousand_separator:e(),line_subtotal:e(),line_subtotal_tax:e(),line_total:e(),line_total_tax:e()}),P=a({backorders_allowed:_(),catalog_visibility:N(L),description:e(),extensions:o(),id:s(),images:i(o()),item_data:i(o()),key:e(),low_stock_remaining:c([l()]),name:e(),permalink:r(e(),E()),prices:o(),quantity:s(),quantity_limits:o(),short_description:e(),show_backorder_badge:_(),sku:e(),sold_individually:_(),totals:U,type:e(),variation:i(o())}),G=a({currency_code:e(),currency_decimal_separator:e(),currency_minor_unit:s(),currency_prefix:e(),currency_suffix:e(),currency_symbol:e(),currency_thousand_separator:e(),tax_lines:i(o()),total_discount:r(c([e(),s()]),d(Number)),total_discount_tax:e(),total_fees:e(),total_fees_tax:e(),total_items:r(c([e(),s()]),d(Number)),total_items_tax:e(),total_price:r(c([e(),s()]),d(Number)),total_shipping:r(c([e(),s(),l()]),d(t=>t?Number(t):0)),total_shipping_tax:c([e(),l()]),total_tax:e()}),ee=a({billing_address:k,coupons:i(O),cross_sells:o(),errors:o(),extensions:o(),fees:o(),has_calculated_shipping:_(),items:i(P),items_count:r(s(),y()),items_weight:r(s(),y()),needs_payment:_(),needs_shipping:_(),payment_methods:o(),payment_requirements:o(),shipping_address:M,shipping_rates:i(D),totals:G}),$=a({quantiteProduits:s()}),z=a({donnees:$,type:r(e(),g(m.MajBoutonPanier))}),F=a({produits:i(P),sousTotalProduits:s(),sousTotalReduction:s(),totalPanier:s()}),J=a({donnees:F,type:r(e(),g(m.MajContenuPanier))}),K=(t,n)=>(t.postMessage(n),t),ae=t=>{const n=new BroadcastChannel(B);n.postMessage({donnees:{quantiteProduits:t.quantiteProduits},type:m.MajBoutonPanier}),n.close()},te=t=>{const n=new BroadcastChannel(W);n.postMessage({donnees:{produits:t.produits,sousTotalProduits:t.sousTotalProduits,sousTotalReduction:t.sousTotalReduction,totalPanier:t.totalPanier},type:m.MajContenuPanier}),n.close()},se=(t,n)=>A(new BroadcastChannel(t),u=>K(u,n),u=>u.close()),ne=t=>C.of(b(z,t.data)).ifLeft(n=>f(n)),oe=t=>C.of(b(J,t.data)).ifLeft(n=>f(n)),re=(t,n)=>j(t,T).map(u=>u.body.code===n).orDefault(!1);export{B as N,M as W,k as a,V as b,ee as c,se as d,Z as e,X as f,G as g,ae as h,te as i,W as j,oe as k,re as r,ne as v};
|
||||
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue