{
  "name": "ts-patch",
  "version": "4.0.1",
  "description": "Patch typescript to support custom transformers in tsconfig.json",
  "main": "./index.js",
  "types": "./index.d.ts",
  "exports": {
    ".": {
      "types": "./index.d.ts",
      "default": "./index.js"
    },
    "./compiler": "./compiler/typescript.js",
    "./compiler/typescript": "./compiler/typescript.js",
    "./compiler/tsc": "./compiler/tsc.js",
    "./compiler/tsserver": "./compiler/tsserver.js",
    "./compiler/tsserverlibrary": "./compiler/tsserverlibrary.js",
    "./package.json": "./package.json"
  },
  "keywords": [
    "typescript",
    "transform",
    "transformer",
    "plugin",
    "config",
    "ast"
  ],
  "author": {
    "name": "Ron S.",
    "url": "http://twitter.com/ron"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nonara/ts-patch.git"
  },
  "bugs": {
    "url": "https://github.com/nonara/ts-patch/issues"
  },
  "homepage": "https://github.com/nonara/ts-patch#readme",
  "dependencies": {
    "chalk": "^4.1.2",
    "global-prefix": "^4.0.0",
    "minimist": "^1.2.8",
    "resolve": "^1.22.12",
    "semver": "^7.7.4",
    "strip-ansi": "^6.0.1"
  },
  "bin": {
    "ts-patch": "./bin/ts-patch.js",
    "tspc": "./bin/tspc.js"
  },
  "engines": {
    "node": ">=22.15.0"
  },
  "directories": {
    "resources": "./resources"
  },
  "standard-version": {
    "types": [
      {
        "type": "feat",
        "section": "Features"
      },
      {
        "type": "feature",
        "section": "Features"
      },
      {
        "type": "fix",
        "section": "Bug Fixes"
      },
      {
        "type": "perf",
        "section": "Performance Improvements"
      },
      {
        "type": "revert",
        "section": "Reverts"
      },
      {
        "type": "docs",
        "section": "Documentation",
        "hidden": true
      },
      {
        "type": "style",
        "section": "Styles",
        "hidden": true
      },
      {
        "type": "chore",
        "section": "Miscellaneous Chores",
        "hidden": true
      },
      {
        "type": "refactor",
        "section": "Code Refactoring",
        "hidden": true
      },
      {
        "type": "test",
        "section": "Tests",
        "hidden": true
      },
      {
        "type": "build",
        "section": "Build System",
        "hidden": true
      },
      {
        "type": "ci",
        "section": "Continuous Integration",
        "hidden": true
      },
      {
        "type": "change",
        "section": "Changes"
      }
    ]
  }
}