{
  "name": "llm-diff-patcher",
  "version": "0.2.1",
  "description": "A library for applying fuzzy diffs generated by LLMs, especially useful for AI-generated code modifications",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "tsc && tsc-alias",
    "test": "jest",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "diff",
    "fuzzy",
    "ai",
    "llm",
    "patch",
    "code-modification"
  ],
  "author": "",
  "license": "MIT",
  "devDependencies": {
    "@types/diff": "^7.0.1",
    "@types/diff-match-patch": "^1.0.36",
    "@types/jest": "^29.5.0",
    "@types/node": "^18.15.11",
    "jest": "^29.5.0",
    "ts-jest": "^29.1.0",
    "tsc-alias": "^1.8.11",
    "typescript": "^5.0.4"
  },
  "dependencies": {
    "diff": "^7.0.0",
    "diff-match-patch": "^1.0.5",
    "unidiff": "^1.0.4"
  },
  "files": [
    "dist"
  ]
}
