{
  "name": "isomorphic-git",
  "version": "1.32.3",
  "description": "A pure JavaScript reimplementation of git for node and browsers",
  "type": "module",
  "typings": "./index.d.cts",
  "main": "./index.cjs",
  "module": "./index.js",
  "exports": {
    ".": {
      "types": "./index.d.cts",
      "default": "./index.cjs"
    },
    "./http/node": {
      "import": {
        "types": "./http/node/index.d.ts",
        "default": "./http/node/index.js"
      },
      "require": {
        "types": "./http/node/index.d.cts",
        "default": "./http/node/index.cjs"
      }
    },
    "./http/web": {
      "import": {
        "types": "./http/web/index.d.ts",
        "default": "./http/web/index.js"
      },
      "require": {
        "types": "./http/web/index.d.cts",
        "default": "./http/web/index.cjs"
      }
    }
  },
  "unpkg": "./index.umd.min.js",
  "bin": {
    "isogit": "./cli.cjs"
  },
  "sideEffects": false,
  "engines": {
    "node": ">=14.17"
  },
  "scripts": {
    "start": "nps",
    "format": "nps format",
    "build": "nps build",
    "test": "nps test",
    "publish-website": "nps website",
    "prepublishOnly": "nps prepublish",
    "semantic-release": "semantic-release",
    "add-contributor": "nps contributors.add"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/isomorphic-git/isomorphic-git.git"
  },
  "keywords": [
    "git",
    "isomorphic"
  ],
  "author": "William Hilton <wmhilton@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/isomorphic-git/isomorphic-git/issues"
  },
  "homepage": "https://isomorphic-git.org/",
  "files": [
    "cli.cjs",
    "browser-tests.json",
    "http/*",
    "index.cjs",
    "index.d.cts",
    "index.js",
    "index.d.ts",
    "index.umd.min.js",
    "index.umd.min.d.ts",
    "index.umd.min.js.map",
    "size_report.html"
  ],
  "dependencies": {
    "async-lock": "^1.4.1",
    "clean-git-ref": "^2.0.1",
    "crc-32": "^1.2.0",
    "diff3": "0.0.3",
    "ignore": "^5.1.4",
    "minimisted": "^2.0.0",
    "pako": "^1.0.10",
    "path-browserify": "^1.0.1",
    "pify": "^4.0.1",
    "readable-stream": "^3.4.0",
    "sha.js": "^2.4.9",
    "simple-get": "^4.0.1"
  },
  "devDependencies": {
    "@babel/core": "7.6.0",
    "@babel/plugin-transform-async-to-generator": "7.5.0",
    "@babel/preset-env": "7.5.5",
    "@babel/runtime": "7.5.5",
    "@isomorphic-git/cors-proxy": "2.7.1",
    "@isomorphic-git/lightning-fs": "^3.3.0",
    "@isomorphic-git/pgp-plugin": "0.0.7",
    "@semantic-release/exec": "5.0.0",
    "@types/jest": "^27.5.1",
    "@types/node": "12.7.2",
    "@wmhilton/jest-fixtures": "0.6.1",
    "agadoo": "2.0.0",
    "all-contributors-cli": "6.20.0",
    "babel-core": "7.0.0-bridge.0",
    "babel-loader": "8.3.0",
    "browserfs": "2.0.0",
    "bundlewatch": "^0.4.1",
    "cross-env": "6.0.0",
    "decompress": "^4.2.0",
    "diff-lines": "1.1.1",
    "duplicate-package-checker-webpack-plugin": "3.0.0",
    "envify": "4.1.0",
    "eslint": "^6.8.0",
    "eslint-config-prettier": "^6.10.0",
    "eslint-config-prettier-standard": "^3.0.1",
    "eslint-config-standard": "^14.1.0",
    "eslint-plugin-import": "^2.20.1",
    "eslint-plugin-node": "^11.0.0",
    "eslint-plugin-prettier": "^3.1.2",
    "eslint-plugin-promise": "^4.2.1",
    "eslint-plugin-standard": "^4.0.1",
    "git-http-mock-server": "2.0.0",
    "github-comment": "1.0.1",
    "inquirer": "^7.0.0",
    "jasmine-core": "^3.99.1",
    "jest": "^27.5.1",
    "jest-junit": "^15.0.0",
    "jsdoc-api": "5.0.3",
    "karma": "^6.3.18",
    "karma-browserstack-launcher": "^1.6.0",
    "karma-chrome-launcher": "^3.1.1",
    "karma-edge-launcher": "0.4.2",
    "karma-fail-fast-reporter": "1.0.5",
    "karma-firefox-launcher": "^2.1.2",
    "karma-ie-launcher": "1.0.0",
    "karma-jasmine": "^5.0.0",
    "karma-junit-reporter": "^2.0.1",
    "karma-safari-launcher": "1.0.0",
    "karma-sauce-launcher": "1.2.0",
    "karma-verbose-reporter": "0.0.8",
    "karma-webpack": "4.0.2",
    "markdown-table": "^2.0.0",
    "nps": "^5.10.0",
    "nps-utils": "1.7.0",
    "prettier": "1.19.1",
    "prettier-config-standard": "^1.0.1",
    "pretty-format": "24.9.0",
    "puppeteer": "2.0.0",
    "replace-in-file": "4.1.3",
    "rollup": "1.29.1",
    "rollup-plugin-node-resolve": "5.2.0",
    "semantic-release": "17.4.7",
    "standard": "13.1.0",
    "timeout-cli": "0.3.2",
    "typescript": "5.7.3",
    "webpack": "4.41.5",
    "webpack-bundle-analyzer": "3.4.1",
    "webpack-cli": "3.3.7"
  },
  "prettier": "./.prettierrc.cjs",
  "bundlewatch": {
    "files": [
      {
        "path": "./index.umd.min.js",
        "maxSize": "100kb"
      }
    ],
    "ci": {
      "trackBranches": [
        "main"
      ]
    }
  },
  "collective": {
    "type": "opencollective",
    "url": "https://opencollective.com/isomorphic-git",
    "logo": "https://opencollective.com/isomorphic-git/logo.txt"
  }
}
