{
  "name": "@waylaidwanderer/fetch-event-source",
  "version": "3.0.1",
  "description": "A better API for making Event Source requests, with all the features of fetch()",
  "homepage": "https://github.com/Azure/fetch-event-source#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/waylaidwanderer/fetch-event-source.git"
  },
  "bugs": {
    "url": "https://github.com/Azure/fetch-event-source/issues"
  },
  "author": "Microsoft",
  "license": "MIT",
  "main": "lib/cjs/index.cjs",
  "module": "lib/esm/index.js",
  "types": "lib/cjs/index.d.ts",
  "sideEffects": false,
  "type": "module",
  "exports": {
    ".": {
      "types": "./lib/esm/index.d.ts",
      "require": "./lib/cjs/index.cjs",
      "default": "./lib/esm/index.js"
    },
    "./package.json": "./package.json",
    "./parse": {
      "types": "./lib/esm/parse.d.ts",
      "require": "./lib/cjs/parse.cjs",
      "default": "./lib/esm/parse.js"
    }
  },
  "typesVersions": {
    "*": {
      "parse": [
        "lib/esm/parse.d.ts"
      ]
    }
  },
  "files": [
    "CHANGELOG.md",
    "lib",
    "tsconfig.esm.json"
  ],
  "engines": {
    "node": ">=16.15"
  },
  "scripts": {
    "clean": "rimraf ./lib ./coverage",
    "prebuild": "npm run clean",
    "build": "tsc-multi && tsc -p tsconfig.esm.json",
    "prepublishOnly": "npm run build"
  },
  "devDependencies": {
    "@types/jasmine": "^4.3.1",
    "rimraf": "^3.0.2",
    "source-map-support": "^0.5.19",
    "typescript": "^4.9.4",
    "tsc-multi": "^0.6.1"
  }
}
