{
  "name": "@cocalc/diff-match-patch",
  "version": "1.0.1",
  "description": "Diff-Match-Patch in typescript with full budget and surrogate pairs support",
  "license": "Apache-2.0",
  "main": "dist/lib/index.js",
  "module": "dist/es/index.js",
  "types": "dist/types/index.d.ts",
  "author": {
    "email": "wstein@sagemath.com",
    "url": "https://github.com/williamstein"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/sagemathinc/diff-match-patch"
  },
  "keywords": [
    "diff-match-patch-typescript",
    "diff-match-patch",
    "diff",
    "google-diff-match-patch",
    "typescript-port",
    "typescript"
  ],
  "scripts": {
    "clean": "rimraf dist/*",
    "cleanCov": "rimraf @coverage",
    "prebuild": "pnpm run clean && pnpm run cleanCov",
    "build": "pnpm run build:es && pnpm run build:lib && pnpm run build:types",
    "build:es": "tsc --project ./tsconfig.es.json",
    "build:lib": "tsc --project ./tsconfig.lib.json",
    "build:types": "tsc --project ./tsconfig.types.json",
    "test": "jest --config ./scripts/jest/jest.config.js",
    "test:watch": "jest --config ./scripts/jest/jest.config.js --watch --verbose false",
    "test:cov": "pnpm run cleanCov && pnpm test -- --coverage",
    "upgradepackages": "./scripts/upgrade_packages.sh",
    "prettier-all": "prettier --write ."
  },
  "devDependencies": {
    "@types/jest": "^30.0.0",
    "@types/node": "^24.7.0",
    "@typescript-eslint/eslint-plugin": "^8.46.0",
    "@typescript-eslint/parser": "^8.46.0",
    "husky": "^9.1.7",
    "jest": "^30.2.0",
    "prettier": "^3.6.2",
    "rimraf": "^6.0.1",
    "ts-jest": "^29.4.4",
    "ts-loader": "^9.5.4",
    "typescript": "^5.9.3"
  },
  "files": [
    "dist"
  ]
}
