{
  "name": "plist",
  "description": "Apple's property list parser/builder for Node.js and browsers",
  "version": "5.0.0",
  "type": "module",
  "author": "Nathan Rajlich <nathan@tootallnate.net>",
  "contributors": [
    "Hans Huebner <hans.huebner@gmail.com>",
    "Pierre Metrailler",
    "Mike Reinstein <reinstein.mike@gmail.com>",
    "Vladimir Tsvang",
    "Mathieu D'Amours"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/TooTallNate/plist.js.git"
  },
  "license": "MIT",
  "keywords": [
    "apple",
    "browser",
    "mac",
    "plist",
    "parser",
    "xml"
  ],
  "exports": {
    ".": {
      "browser": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.browser.js"
      },
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    }
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "@xmldom/xmldom": "^0.9.10",
    "xmlbuilder": "^15.1.1"
  },
  "devDependencies": {
    "@changesets/cli": "^2.29.4",
    "typescript": "^5.8.3",
    "vitest": "^3.1.3"
  },
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "build": "tsc",
    "test": "vitest run",
    "ci:publish": "pnpm publish --provenance --access public && pnpm changeset tag"
  }
}