{
  "name": "diff-match-patch-ts",
  "version": "0.8.0",
  "description": "Port of diff-match-patch to TypeScript.",
  "exports": {
    "import": {
      "types": "./index.d.ts",
      "default": "./diff-match-patch-ts.mjs"
    },
    "require": {
      "types": "./index.d.ts",
      "default": "./diff-match-patch-ts.cjs"
    }
  },
  "main": "diff-match-patch-ts.cjs",
  "module": "diff-match-patch-ts.mjs",
  "browser": "diff-match-patch-ts.umd.js",
  "types": "index.d.ts",
  "scripts": {
    "build": "rimraf dist && rollup -c rollup.config.mjs && copyfiles package.json README.md LICENSE.md dist",
    "test": "jest",
    "lint": "eslint .",
    "release": "standard-version",
    "npmpublish": "cd dist && npm publish",
    "commitmsg": "commitlint -e $GIT_PARAMS"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/rars/diff-match-patch-ts"
  },
  "keywords": [
    "diff",
    "match",
    "patch"
  ],
  "author": "Richard Russell",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/rars/diff-match-patch-ts/issues"
  },
  "homepage": "https://github.com/rars/diff-match-patch-ts#readme",
  "devDependencies": {
    "@babel/core": "^7.24.0",
    "@babel/preset-env": "^7.24.0",
    "@babel/preset-typescript": "^7.23.3",
    "@commitlint/cli": "^20.1.0",
    "@commitlint/config-conventional": "^20.0.0",
    "@rollup/plugin-typescript": "^12.1.0",
    "@types/jasmine": "^5.1.4",
    "@types/jest": "^30.0.0",
    "@types/jsdom": "^27.0.0",
    "@types/node": "^22.17.0",
    "babel-jest": "^30.2.0",
    "copyfiles": "^2.4.1",
    "core-js": "^3.7.0",
    "cz-conventional-changelog": "^3.3.0",
    "globals": "^16.5.0",
    "husky": "^9.0.11",
    "jasmine": "^5.1.0",
    "jasmine-core": "^5.1.2",
    "jest": "^30.2.0",
    "jsdom": "^27.1.0",
    "prettier": "^3.2.5",
    "rimraf": "^6.0.1",
    "rollup": "^4.12.1",
    "standard-version": "^9.3.2",
    "ts-loader": "^9.4.2",
    "ts-node": "^10.9.1",
    "typescript": "~5.9.0",
    "typescript-eslint": "^8.7.0"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "standard-version": {
    "skip": {
      "commit": true,
      "tag": true,
      "bump": true
    }
  },
  "jest": {
    "modulePathIgnorePatterns": [
      "<rootDir>/dist"
    ]
  }
}
