{
  "name": "@rgrove/parse-xml",
  "version": "5.0.0",
  "description": "A fast, safe, compliant XML parser for Node.js and browsers.",
  "keywords": [
    "xml",
    "xml parser",
    "parse-xml",
    "parse xml",
    "parse",
    "parser"
  ],
  "author": "Ryan Grove <ryan@wonko.com>",
  "license": "ISC",
  "homepage": "https://github.com/rgrove/parse-xml",
  "bugs": "https://github.com/rgrove/parse-xml/issues",
  "repository": {
    "type": "git",
    "url": "https://github.com/rgrove/parse-xml.git"
  },
  "engines": {
    "node": ">=22.12.0"
  },
  "packageManager": "pnpm@11.25.0",
  "files": [
    "dist",
    "!dist/tsconfig.tsbuildinfo",
    "src",
    "LICENSE"
  ],
  "type": "module",
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "browser": "./dist/browser.js",
      "default": "./dist/index.js"
    },
    "./dist/lib/Xml*.js": {
      "types": "./dist/lib/Xml*.d.ts",
      "default": "./dist/lib/Xml*.js"
    },
    "./dist/global.min.js": "./dist/global.min.js",
    "./package.json": "./package.json"
  },
  "types": "./dist/index.d.ts",
  "main": "./dist/index.js",
  "browser": "./dist/browser.js",
  "scripts": {
    "build": "pnpm run build:js && pnpm run build:bundle && pnpm run build:docs",
    "build:bundle": "./scripts/esbuild.js",
    "build:docs": "typedoc",
    "build:js": "tsc -p ${TSCONFIG:-tsconfig.json}",
    "clean": "rm -rf .c8_output coverage dist docs tests/.build",
    "coverage": "c8 --reporter html --report-dir coverage pnpm test && open coverage/index.html",
    "lint": "pnpm run build:js && pnpm run lint:js",
    "lint:js": "eslint .",
    "prepublishOnly": "pnpm run clean && TSCONFIG=tsconfig.publish.json pnpm run build",
    "test": "pnpm run build:js && c8 mocha && pnpm run test:types",
    "test:browser": "pnpm run build:js && pnpm run build:bundle && scripts/test/browser.js",
    "test:types": "pnpm run build:js && tsc -p tests",
    "test:watch": "pnpm run build:js && concurrently --kill-others-on-fail --names build,mocha 'pnpm run build:js --watch' 'mocha --watch'"
  },
  "devDependencies": {
    "@rgrove/eslint-config": "^5.1.0",
    "@types/node": "^22.19.1",
    "@typescript-eslint/eslint-plugin": "^8.68.0",
    "@typescript-eslint/parser": "^8.68.0",
    "assert": "^2.1.0",
    "c8": "^12.0.0",
    "concurrently": "^10.0.5",
    "esbuild": "^0.28.2",
    "eslint": "^8.57.1",
    "eslint-import-resolver-typescript": "^3.6.3",
    "expect-type": "^1.4.0",
    "mocha": "^11.8.0",
    "path-browserify": "^1.0.1",
    "process": "^0.11.10",
    "typedoc": "^0.28.20",
    "typescript": "6.0.3"
  }
}
