{
  "name": "xmldom-format",
  "version": "2.0.0",
  "description": "format xml using @xmldom/xmldom",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/AnWeber/xmldom-format.git"
  },
  "keywords": [
    "w3c",
    "dom",
    "xml",
    "format",
    "serializer",
    "prettier",
    "XMLSerializer",
    "xmldom"
  ],
  "author": "AnWeber",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/AnWeber/xmldom-format/issues"
  },
  "scripts": {
    "format": "prettier --write --parser typescript \"src/**/*.ts?(x)\"",
    "prepack": "npm run build",
    "esbuild": "esbuild ./src/index.ts --bundle --outdir=dist/ --sourcemap --platform=node --format=cjs",
    "tsc": "tsc --declaration --emitDeclarationOnly",
    "build": "npm run esbuild -- --minify && npm run tsc",
    "tsc-watch": "tsc --watch --project tsconfig.build.json",
    "watch": "concurrently \"npm run esbuild -- --watch\" \"npm run tsc -- --watch\"",
    "lockfile-lint": "lockfile-lint --path package-lock.json --validate-https --allowed-hosts npm --validate-checksum --validate-integrity",
    "eslint": "eslint src --ext ts",
    "lint": "npm run format && npm run eslint && npm run lockfile-lint",
    "prepare": "husky install",
    "test": "jest"
  },
  "lint-staged": {
    "*.js": [
      "prettier --write"
    ],
    "*.ts?(x)": [
      "eslint --cache --fix",
      "prettier --parser=typescript --write"
    ]
  },
  "homepage": "https://github.com/AnWeber/xmldom-format#readme",
  "peerDependencies": {
    "@xmldom/xmldom": "^0.9.5"
  },
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "@typescript-eslint/eslint-plugin": "^8.11.0",
    "@typescript-eslint/parser": "^8.11.0",
    "concurrently": "^9.0.1",
    "esbuild": "^0.24.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint": "^8.57.1",
    "husky": "^9.1.6",
    "jest": "^29.7.0",
    "lint-staged": "^15.2.10",
    "lockfile-lint": "^4.14.0",
    "prettier": "^3.3.3",
    "typescript": "^5.6.3"
  }
}