{ "name": "@prettier/plugin-xml", "version": "3.4.1", "description": "prettier plugin for XML", "type": "module", "main": "src/plugin.js", "exports": { ".": { "types": "./types/plugin.d.ts", "default": "./src/plugin.js" }, "./*": "./*" }, "scripts": { "lint": "eslint --cache .", "prepare": "node bin/languages.js && husky install", "print": "prettier --plugin=./src/plugin.js", "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "repository": { "type": "git", "url": "git+https://github.com/prettier/plugin-xml.git" }, "author": "Kevin Newton", "license": "MIT", "bugs": { "url": "https://github.com/prettier/plugin-xml/issues" }, "homepage": "https://github.com/prettier/plugin-xml#readme", "dependencies": { "@xml-tools/parser": "^1.0.11" }, "peerDependencies": { "prettier": "^3.0.0" }, "devDependencies": { "@eslint/js": "^9.21.0", "eslint": "^9.21.0", "eslint-config-prettier": "^10.0.2", "globals": "^16.0.0", "husky": "^9.0.6", "jest": "^29.2.1", "linguist-languages": "^7.21.0", "lint-staged": "^15.0.1", "prettier": "^3.5.3" }, "jest": { "testRegex": ".test.js$", "transform": {} }, "prettier": { "embeddedLanguageFormatting": "auto", "plugins": [ "./src/plugin.js" ], "trailingComma": "none", "xmlWhitespaceSensitivity": "ignore" }, "lint-staged": { "*.js": [ "eslint --cache --fix", "prettier --write" ] } }