{
  "name": "musicxml-io",
  "version": "0.7.1",
  "description": "Parse and serialize MusicXML (.xml/.mxl) and ABC notation with high round-trip fidelity",
  "author": "tan-z-tan",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tan-z-tan/musicxml-io.git"
  },
  "homepage": "https://github.com/tan-z-tan/musicxml-io#readme",
  "bugs": {
    "url": "https://github.com/tan-z-tan/musicxml-io/issues"
  },
  "engines": {
    "node": ">=20.12.0"
  },
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./accessors": {
      "types": "./dist/accessors/index.d.ts",
      "import": "./dist/accessors/index.mjs",
      "require": "./dist/accessors/index.js"
    },
    "./operations": {
      "types": "./dist/operations/index.d.ts",
      "import": "./dist/operations/index.mjs",
      "require": "./dist/operations/index.js"
    },
    "./query": {
      "types": "./dist/query/index.d.ts",
      "import": "./dist/query/index.mjs",
      "require": "./dist/query/index.js"
    }
  },
  "scripts": {
    "build": "tsup",
    "test": "vitest run",
    "test:watch": "vitest",
    "lint": "eslint src/",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run build && npm run test",
    "coverage:roundtrip": "tsx scripts/measure-coverage.ts",
    "diff:roundtrip": "tsx scripts/diff-roundtrip.ts",
    "release": "bash scripts/release.sh",
    "release:patch": "bash scripts/release.sh patch",
    "release:minor": "bash scripts/release.sh minor",
    "release:major": "bash scripts/release.sh major"
  },
  "keywords": [
    "musicxml",
    "music",
    "notation",
    "parser",
    "serializer",
    "typescript",
    "xml",
    "sheet-music",
    "score",
    "midi",
    "mxl",
    "abc",
    "abc-notation"
  ],
  "devDependencies": {
    "@types/node": "^25.6.0",
    "@typescript-eslint/eslint-plugin": "^8.57.2",
    "@typescript-eslint/parser": "^8.57.2",
    "eslint": "^10.1.0",
    "tsup": "^8.0.1",
    "tsx": "^4.21.0",
    "typescript": "^5.3.3",
    "vitest": "^4.1.4"
  },
  "dependencies": {
    "fflate": "^0.8.2",
    "nanoid": "^5.1.6",
    "txml": "^6.0.0"
  },
  "files": [
    "dist"
  ]
}
