{
	"name": "vscode-phpfmt",
	"displayName": "phpfmt - PHP formatter",
	"version": "1.2.69",
	"description": "Integrates phpfmt into VS Code",
	"main": "./dist/extension",
	"scripts": {
		"build": "nr clean && tsc && tsdown && tsx scripts/copy.mts",
		"build:docs": "tsx scripts/docs.mts",
		"type:gen": "vscode-ext-gen --output src/meta.ts --scope phpfmt",
		"prebuild": "nr type:gen && nr build:docs",
		"watch": "tsdown --watch",
		"clean": "rimraf out",
		"postinstall": "node ./node_modules/phpfmt/v2/install",
		"pretest": "nr build",
		"test": "node ./out/test/runTest.js",
		"format": "prettier --write .",
		"lint": "eslint --fix src test scripts",
		"prepublishOnly": "nr build && vsce publish --no-dependencies"
	},
	"keywords": [
		"phpfmt",
		"vscode"
	],
	"icon": "icon.png",
	"publisher": "kokororin",
	"author": "kokororin",
	"license": "BSD-3-Clause",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/kokororin/vscode-phpfmt.git"
	},
	"bugs": {
		"url": "https://github.com/kokororin/vscode-phpfmt/issues"
	},
	"homepage": "https://github.com/kokororin/vscode-phpfmt#readme",
	"engines": {
		"vscode": "^1.96.0"
	},
	"categories": [
		"Formatters",
		"Linters",
		"Other"
	],
	"activationEvents": [
		"onLanguage:php"
	],
	"contributes": {
		"commands": [
			{
				"command": "phpfmt.format",
				"title": "phpfmt: Format This File",
				"when": "!inOutput && editorFocus && editorLangId == php"
			},
			{
				"command": "phpfmt.listTransformations",
				"title": "phpfmt: List Transformations"
			},
			{
				"command": "phpfmt.toggleAdditionalTransformations",
				"title": "phpfmt: Toggle Additional Transformations"
			},
			{
				"command": "phpfmt.toggleExcludedTransformations",
				"title": "phpfmt: Toggle Excluded Transformations"
			},
			{
				"command": "phpfmt.togglePSR1Naming",
				"title": "phpfmt: Toggle PSR1 Naming"
			},
			{
				"command": "phpfmt.togglePSR1",
				"title": "phpfmt: Toggle PSR1"
			},
			{
				"command": "phpfmt.togglePSR2",
				"title": "phpfmt: Toggle PSR2"
			},
			{
				"command": "phpfmt.toggleAutoAlign",
				"title": "phpfmt: Toggle Auto Align"
			},
			{
				"command": "phpfmt.toggleIndentWithSpace",
				"title": "phpfmt: Toggle Indent With Space"
			},
			{
				"command": "phpfmt.openOutput",
				"title": "phpfmt: Open Output"
			}
		],
		"configuration": {
			"title": "phpfmt",
			"type": "object",
			"properties": {
				"phpfmt.php_bin": {
					"type": "string",
					"default": "php",
					"description": "php executable path"
				},
				"phpfmt.use_old_phpfmt": {
					"type": "boolean",
					"default": false,
					"description": "use old fmt.phar which supports 5.6"
				},
				"phpfmt.detect_indent": {
					"type": "boolean",
					"default": false,
					"description": "auto detecting indent type and size (will ignore indent_with_space)"
				},
				"phpfmt.psr1": {
					"type": "boolean",
					"default": false,
					"description": "activate PSR1 style"
				},
				"phpfmt.psr1_naming": {
					"type": "boolean",
					"default": false,
					"description": "activate PSR1 style - Section 3 and 4.3 - Class and method names case."
				},
				"phpfmt.psr2": {
					"type": "boolean",
					"default": true,
					"description": "activate PSR2 style"
				},
				"phpfmt.wp": {
					"type": "boolean",
					"default": false,
					"description": "activate WP style"
				},
				"phpfmt.indent_with_space": {
					"type": [
						"integer",
						"boolean"
					],
					"default": 4,
					"description": "use spaces instead of tabs for indentation. Default 4",
					"enum": [
						false,
						2,
						3,
						4,
						5,
						6,
						7,
						8
					],
					"enumDescriptions": [
						"Indent with tabs",
						"Indent with 2 spaces",
						"Indent with 3 spaces",
						"Indent with 4 spaces",
						"Indent with 5 spaces",
						"Indent with 6 spaces",
						"Indent with 7 spaces",
						"Indent with 8 spaces"
					]
				},
				"phpfmt.enable_auto_align": {
					"type": "boolean",
					"default": false,
					"description": "enable auto align of ST_EQUAL and T_DOUBLE_ARROW"
				},
				"phpfmt.visibility_order": {
					"type": "boolean",
					"default": false,
					"description": "fixes visibiliy order for method in classes - PSR-2 4.2"
				},
				"phpfmt.ignore": {
					"type": "array",
					"default": [],
					"description": "ignore file names whose names contain any pattern that could be matched with `.match` JS string method",
					"items": {
						"type": "string"
					}
				},
				"phpfmt.passes": {
					"type": "array",
					"default": [
						"AlignDoubleArrow",
						"AlignPHPCode",
						"SpaceAfterExclamationMark",
						"AlignConstVisibilityEquals",
						"AutoSemicolon",
						"ConvertOpenTagWithEcho",
						"AlignEquals",
						"MergeNamespaceWithOpenTag",
						"RemoveSemicolonAfterCurly",
						"RestoreComments",
						"ShortArray",
						"ExtraCommaInArray",
						"AlignDoubleSlashComments",
						"IndentTernaryConditions",
						"IndentPipeOperator",
						"AlignSuperEquals"
					],
					"description": "call specific compiler pass",
					"items": {
						"type": "string",
						"enum": [
							"AddMissingCurlyBraces",
							"AutoImportPass",
							"ConstructorPass",
							"EliminateDuplicatedEmptyLines",
							"ExtraCommaInArray",
							"LeftAlignComment",
							"MergeCurlyCloseAndDoWhile",
							"MergeDoubleArrowAndArray",
							"MergeParenCloseWithCurlyOpen",
							"NormalizeIsNotEquals",
							"NormalizeLnAndLtrimLines",
							"SmartLnAfterCurlyOpen",
							"MatchNewLineAndCurlys",
							"Reindent",
							"ReindentColonBlocks",
							"ReindentComments",
							"ReindentEqual",
							"ReindentObjOps",
							"ResizeSpaces",
							"RTrim",
							"SettersAndGettersPass",
							"SplitCurlyCloseAndTokens",
							"StripExtraCommaInList",
							"TwoCommandsInSameLine",
							"PSR1BOMMark",
							"PSR1ClassConstants",
							"PSR1ClassNames",
							"PSR1MethodNames",
							"PSR1OpenTags",
							"PSR2AlignObjOp",
							"PSR2CurlyOpenNextLine",
							"PSR2IndentWithSpace",
							"PSR2KeywordsLowerCase",
							"PSR2LnAfterNamespace",
							"PSR2ModifierVisibilityStaticOrder",
							"PSR2SingleEmptyLineAndStripClosingTag",
							"AddMissingParentheses",
							"AliasToMaster",
							"AlignConstVisibilityEquals",
							"AlignDoubleArrow",
							"AlignComments",
							"AlignEquals",
							"AlignSuperEquals",
							"AlignPHPCode",
							"AlignTypehint",
							"AllmanStyleBraces",
							"AutoPreincrement",
							"AutoSemicolon",
							"CakePHPStyle",
							"ClassToSelf",
							"ConvertOpenTagWithEcho",
							"DocBlockToComment",
							"DoubleToSingleQuote",
							"EchoToPrint",
							"EncapsulateNamespaces",
							"GeneratePHPDoc",
							"IndentTernaryConditions",
							"LeftWordWrap",
							"LongArray",
							"MergeElseIf",
							"SplitElseIf",
							"MergeNamespaceWithOpenTag",
							"NewLineBeforeReturn",
							"NoSpaceAfterPHPDocBlocks",
							"OrganizeClass",
							"OrderAndRemoveUseClauses",
							"PHPDocTypesToFunctionTypehint",
							"PrettyPrintDocBlocks",
							"PSR2EmptyFunction",
							"PSR2MultilineFunctionParams",
							"ReindentAndAlignObjOps",
							"ReindentSwitchBlocks",
							"ReindentEnumBlocks",
							"RemoveIncludeParentheses",
							"RemoveSemicolonAfterCurly",
							"RemoveUseLeadingSlash",
							"ReplaceBooleanAndOr",
							"ReplaceIsNull",
							"RestoreComments",
							"ReturnNull",
							"ShortArray",
							"SortUseNameSpace",
							"SpaceAroundControlStructures",
							"SpaceAroundExclamationMark",
							"SpaceBetweenMethods",
							"StrictBehavior",
							"StrictComparison",
							"StripExtraCommaInArray",
							"StripNewlineAfterClassOpen",
							"StripNewlineAfterCurlyOpen",
							"StripNewlineWithinClassBody",
							"StripSpaces",
							"StripSpaceWithinControlStructures",
							"TightConcat",
							"TrimSpaceBeforeSemicolon",
							"UpgradeToPreg",
							"WordWrap",
							"WrongConstructorName",
							"YodaComparisons",
							"SpaceAfterExclamationMark",
							"SpaceAroundParentheses",
							"IndentPipeOperator",
							"WPResizeSpaces",
							"AlignDoubleSlashComments",
							"AlignGroupDoubleArrow",
							"ClassToStatic",
							"JoinToImplode",
							"MildAutoPreincrement",
							"OnlyOrderUseClauses",
							"OrderMethod",
							"OrderMethodAndVisibility"
						],
						"enumDescriptions": [
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Add line break when implicit curly block is added.",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Add extra parentheses in new instantiations.",
							"Replace function aliases to their masters - only basic syntax alias.",
							"Vertically align \"=\" of visibility and const blocks.",
							"Vertically align T_DOUBLE_ARROW (=>).",
							"Vertically align \"//\" comments.",
							"Vertically align \"=\".",
							"Vertically align \"=\", \".=\", \"&=\", \">>=\", etc.",
							"Align PHP code within HTML block.",
							"Vertically align function type hints.",
							"Transform all curly braces into Allman-style.",
							"Automatically convert postincrement to preincrement.",
							"Add semicolons in statements ends.",
							"Applies CakePHP Coding Style",
							"\"self\" is preferred within class, trait or interface.",
							"Convert from \"<?=\" to \"<?php echo \".",
							"Replace docblocks with regular comments when used in non structural elements.",
							"Convert from double to single quotes.",
							"Convert from T_ECHO to print.",
							"Encapsulate namespaces with curly braces",
							"Automatically generates PHPDoc blocks",
							"Applies indentation to ternary conditions.",
							"Word wrap at 80 columns - left justify.",
							"Convert short to long arrays.",
							"Merge if with else.",
							"Merge if with else.",
							"Ensure there is no more than one linebreak before namespace",
							"Add an empty line before T_RETURN.",
							"Core pass",
							"Organize class, interface and trait structure.",
							"Order use block and remove unused imports.",
							"Read variable types from PHPDoc blocks and add them in function signatures.",
							"Prettify Doc Blocks",
							"Merges in the same line of function header the body of empty functions.",
							"Break function parameters into multiple lines.",
							"Align object operators.",
							"Reindent one level deeper the content of switch blocks.",
							"Reindent one level deeper the content of enum blocks.",
							"Remove parentheses from include declarations.",
							"Remove semicolon after closing curly brace.",
							"Remove leading slash in T_USE imports.",
							"Convert from \"and\"/\"or\" to \"&&\"/\"||\". Danger! This pass leads to behavior change.",
							"Replace is_null($a) with null === $a.",
							"Revert any formatting of comments content.",
							"Simplify empty returns.",
							"Convert old array into new array. (array() -> [])",
							"Organize use clauses by length and alphabetic order.",
							"Add space around control structures.",
							"Add spaces around exclamation mark.",
							"Put space between methods.",
							"Activate strict option in array_search, base64_decode, in_array, array_keys, mb_detect_encoding. Danger! This pass leads to behavior change.",
							"All comparisons are converted to strict. Danger! This pass leads to behavior change.",
							"Remove trailing commas within array blocks",
							"Strip empty lines after class opening curly brace.",
							"Strip empty lines after opening curly brace.",
							"Strip empty lines after class opening curly brace.",
							"Remove all empty spaces",
							"Strip empty lines within control structures.",
							"Ensure string concatenation does not have spaces, except when close to numbers.",
							"Remove empty lines before semi-colon.",
							"Upgrade ereg_* calls to preg_*",
							"Word wrap at 80 columns.",
							"Update old constructor names into new ones. http://php.net/manual/en/language.oop5.decon.php",
							"Execute Yoda Comparisons.",
							"Add space after exclamation mark.",
							"Add spaces inside parentheses.",
							"Applies indentation to the pipe operator.",
							"Core pass",
							"Vertically align \"//\" comments.",
							"Vertically align T_DOUBLE_ARROW (=>) by line groups.",
							"\"static\" is preferred within class, trait or interface.",
							"Replace implode() alias (join() -> implode()).",
							"Automatically convert postincrement to preincrement. (Deprecated pass. Use AutoPreincrement instead).",
							"Order use block - do not remove unused imports.",
							"Organize class, interface and trait structure.",
							"Organize class, interface and trait structure."
						]
					}
				},
				"phpfmt.exclude": {
					"type": "array",
					"default": [],
					"description": "disable specific passes",
					"items": {
						"type": "string",
						"enum": [
							"AddMissingCurlyBraces",
							"AutoImportPass",
							"ConstructorPass",
							"EliminateDuplicatedEmptyLines",
							"ExtraCommaInArray",
							"LeftAlignComment",
							"MergeCurlyCloseAndDoWhile",
							"MergeDoubleArrowAndArray",
							"MergeParenCloseWithCurlyOpen",
							"NormalizeIsNotEquals",
							"NormalizeLnAndLtrimLines",
							"SmartLnAfterCurlyOpen",
							"MatchNewLineAndCurlys",
							"Reindent",
							"ReindentColonBlocks",
							"ReindentComments",
							"ReindentEqual",
							"ReindentObjOps",
							"ResizeSpaces",
							"RTrim",
							"SettersAndGettersPass",
							"SplitCurlyCloseAndTokens",
							"StripExtraCommaInList",
							"TwoCommandsInSameLine",
							"PSR1BOMMark",
							"PSR1ClassConstants",
							"PSR1ClassNames",
							"PSR1MethodNames",
							"PSR1OpenTags",
							"PSR2AlignObjOp",
							"PSR2CurlyOpenNextLine",
							"PSR2IndentWithSpace",
							"PSR2KeywordsLowerCase",
							"PSR2LnAfterNamespace",
							"PSR2ModifierVisibilityStaticOrder",
							"PSR2SingleEmptyLineAndStripClosingTag",
							"AddMissingParentheses",
							"AliasToMaster",
							"AlignConstVisibilityEquals",
							"AlignDoubleArrow",
							"AlignComments",
							"AlignEquals",
							"AlignSuperEquals",
							"AlignPHPCode",
							"AlignTypehint",
							"AllmanStyleBraces",
							"AutoPreincrement",
							"AutoSemicolon",
							"CakePHPStyle",
							"ClassToSelf",
							"ConvertOpenTagWithEcho",
							"DocBlockToComment",
							"DoubleToSingleQuote",
							"EchoToPrint",
							"EncapsulateNamespaces",
							"GeneratePHPDoc",
							"IndentTernaryConditions",
							"LeftWordWrap",
							"LongArray",
							"MergeElseIf",
							"SplitElseIf",
							"MergeNamespaceWithOpenTag",
							"NewLineBeforeReturn",
							"NoSpaceAfterPHPDocBlocks",
							"OrganizeClass",
							"OrderAndRemoveUseClauses",
							"PHPDocTypesToFunctionTypehint",
							"PrettyPrintDocBlocks",
							"PSR2EmptyFunction",
							"PSR2MultilineFunctionParams",
							"ReindentAndAlignObjOps",
							"ReindentSwitchBlocks",
							"ReindentEnumBlocks",
							"RemoveIncludeParentheses",
							"RemoveSemicolonAfterCurly",
							"RemoveUseLeadingSlash",
							"ReplaceBooleanAndOr",
							"ReplaceIsNull",
							"RestoreComments",
							"ReturnNull",
							"ShortArray",
							"SortUseNameSpace",
							"SpaceAroundControlStructures",
							"SpaceAroundExclamationMark",
							"SpaceBetweenMethods",
							"StrictBehavior",
							"StrictComparison",
							"StripExtraCommaInArray",
							"StripNewlineAfterClassOpen",
							"StripNewlineAfterCurlyOpen",
							"StripNewlineWithinClassBody",
							"StripSpaces",
							"StripSpaceWithinControlStructures",
							"TightConcat",
							"TrimSpaceBeforeSemicolon",
							"UpgradeToPreg",
							"WordWrap",
							"WrongConstructorName",
							"YodaComparisons",
							"SpaceAfterExclamationMark",
							"SpaceAroundParentheses",
							"IndentPipeOperator",
							"WPResizeSpaces",
							"AlignDoubleSlashComments",
							"AlignGroupDoubleArrow",
							"ClassToStatic",
							"JoinToImplode",
							"MildAutoPreincrement",
							"OnlyOrderUseClauses",
							"OrderMethod",
							"OrderMethodAndVisibility"
						],
						"enumDescriptions": [
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Add line break when implicit curly block is added.",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Core pass",
							"Add extra parentheses in new instantiations.",
							"Replace function aliases to their masters - only basic syntax alias.",
							"Vertically align \"=\" of visibility and const blocks.",
							"Vertically align T_DOUBLE_ARROW (=>).",
							"Vertically align \"//\" comments.",
							"Vertically align \"=\".",
							"Vertically align \"=\", \".=\", \"&=\", \">>=\", etc.",
							"Align PHP code within HTML block.",
							"Vertically align function type hints.",
							"Transform all curly braces into Allman-style.",
							"Automatically convert postincrement to preincrement.",
							"Add semicolons in statements ends.",
							"Applies CakePHP Coding Style",
							"\"self\" is preferred within class, trait or interface.",
							"Convert from \"<?=\" to \"<?php echo \".",
							"Replace docblocks with regular comments when used in non structural elements.",
							"Convert from double to single quotes.",
							"Convert from T_ECHO to print.",
							"Encapsulate namespaces with curly braces",
							"Automatically generates PHPDoc blocks",
							"Applies indentation to ternary conditions.",
							"Word wrap at 80 columns - left justify.",
							"Convert short to long arrays.",
							"Merge if with else.",
							"Merge if with else.",
							"Ensure there is no more than one linebreak before namespace",
							"Add an empty line before T_RETURN.",
							"Core pass",
							"Organize class, interface and trait structure.",
							"Order use block and remove unused imports.",
							"Read variable types from PHPDoc blocks and add them in function signatures.",
							"Prettify Doc Blocks",
							"Merges in the same line of function header the body of empty functions.",
							"Break function parameters into multiple lines.",
							"Align object operators.",
							"Reindent one level deeper the content of switch blocks.",
							"Reindent one level deeper the content of enum blocks.",
							"Remove parentheses from include declarations.",
							"Remove semicolon after closing curly brace.",
							"Remove leading slash in T_USE imports.",
							"Convert from \"and\"/\"or\" to \"&&\"/\"||\". Danger! This pass leads to behavior change.",
							"Replace is_null($a) with null === $a.",
							"Revert any formatting of comments content.",
							"Simplify empty returns.",
							"Convert old array into new array. (array() -> [])",
							"Organize use clauses by length and alphabetic order.",
							"Add space around control structures.",
							"Add spaces around exclamation mark.",
							"Put space between methods.",
							"Activate strict option in array_search, base64_decode, in_array, array_keys, mb_detect_encoding. Danger! This pass leads to behavior change.",
							"All comparisons are converted to strict. Danger! This pass leads to behavior change.",
							"Remove trailing commas within array blocks",
							"Strip empty lines after class opening curly brace.",
							"Strip empty lines after opening curly brace.",
							"Strip empty lines after class opening curly brace.",
							"Remove all empty spaces",
							"Strip empty lines within control structures.",
							"Ensure string concatenation does not have spaces, except when close to numbers.",
							"Remove empty lines before semi-colon.",
							"Upgrade ereg_* calls to preg_*",
							"Word wrap at 80 columns.",
							"Update old constructor names into new ones. http://php.net/manual/en/language.oop5.decon.php",
							"Execute Yoda Comparisons.",
							"Add space after exclamation mark.",
							"Add spaces inside parentheses.",
							"Applies indentation to the pipe operator.",
							"Core pass",
							"Vertically align \"//\" comments.",
							"Vertically align T_DOUBLE_ARROW (=>) by line groups.",
							"\"static\" is preferred within class, trait or interface.",
							"Replace implode() alias (join() -> implode()).",
							"Automatically convert postincrement to preincrement. (Deprecated pass. Use AutoPreincrement instead).",
							"Order use block - do not remove unused imports.",
							"Organize class, interface and trait structure.",
							"Organize class, interface and trait structure."
						]
					}
				},
				"phpfmt.smart_linebreak_after_curly": {
					"type": "boolean",
					"default": false,
					"description": "convert multistatement blocks into multiline blocks"
				},
				"phpfmt.yoda": {
					"type": "boolean",
					"default": false,
					"description": "yoda-style comparisons"
				},
				"phpfmt.cakephp": {
					"type": "boolean",
					"default": false,
					"description": "Apply CakePHP coding style"
				},
				"phpfmt.custom_arguments": {
					"type": "string",
					"default": "",
					"description": "provide custom arguments to overwrite default arguments generated by config"
				}
			}
		}
	},
	"devDependencies": {
		"@antfu/eslint-config": "^7.0.1",
		"@antfu/ni": "^28.2.0",
		"@kokororin/prettierrc": "^0.1.1",
		"@octokit/rest": "^21.1.0",
		"@types/debug": "^4.1.12",
		"@types/got": "^9.6.12",
		"@types/md5": "^2.3.6",
		"@types/mocha": "^10.0.10",
		"@types/node": "^22.0.0",
		"@types/semver": "^7.7.1",
		"@types/vscode": "^1.96.0",
		"@vscode/test-electron": "^2.5.2",
		"@vscode/vsce": "^3.7.1",
		"consola": "^3.4.2",
		"debug": "^4.3.4",
		"dirname-filename-esm": "^1.1.2",
		"eslint": "^9.20.0",
		"eslint-config-prettier": "^10.1.8",
		"eslint-plugin-prettier": "^5.5.5",
		"execa": "^9.5.2",
		"fflate": "^0.8.2",
		"got": "^14.6.6",
		"is-in-ci": "^2.0.0",
		"json5": "^2.2.3",
		"markdown-table": "^3.0.4",
		"md5": "^2.3.0",
		"mocha": "^11.7.5",
		"ovsx": "^0.10.8",
		"prettier": "^3.8.0",
		"read-pkg-up": "^7.0.1",
		"rimraf": "^6.1.2",
		"semver": "^7.7.3",
		"simple-git": "^3.30.0",
		"tinyglobby": "^0.2.15",
		"tsdown": "^0.19.0",
		"tsx": "^4.21.0",
		"type-fest": "^5.4.1",
		"typescript": "~5.9.3",
		"vscode-ext-gen": "^1.5.1"
	},
	"dependencies": {
		"compare-versions": "^6.1.0",
		"detect-indent": "^6.0.0",
		"find-up": "^5.0.0",
		"mem": "^8.1.1",
		"phpfmt": "^0.0.10"
	},
	"packageManager": "pnpm@10.28.0",
	"__metadata": {
		"installedTimestamp": 1773204922125,
		"targetPlatform": "undefined",
		"size": 800446
	}
}