{
  "manifest": {
    "name": "@jridgewell/resolve-uri",
    "version": "3.1.2",
    "description": "Resolve a URI relative to an optional base URI",
    "keywords": [
      "resolve",
      "uri",
      "url",
      "path"
    ],
    "author": {
      "name": "Justin Ridgewell",
      "email": "justin@ridgewell.name"
    },
    "license": "MIT",
    "repository": {
      "type": "git",
      "url": "https://github.com/jridgewell/resolve-uri"
    },
    "main": "dist/resolve-uri.umd.js",
    "module": "dist/resolve-uri.mjs",
    "types": "dist/types/resolve-uri.d.ts",
    "exports": {
      ".": [
        {
          "types": "./dist/types/resolve-uri.d.ts",
          "browser": "./dist/resolve-uri.umd.js",
          "require": "./dist/resolve-uri.umd.js",
          "import": "./dist/resolve-uri.mjs"
        },
        "./dist/resolve-uri.umd.js"
      ],
      "./package.json": "./package.json"
    },
    "files": [
      "dist"
    ],
    "engines": {
      "node": ">=6.0.0"
    },
    "scripts": {
      "prebuild": "rm -rf dist",
      "build": "run-s -n build:*",
      "build:rollup": "rollup -c rollup.config.js",
      "build:ts": "tsc --project tsconfig.build.json",
      "lint": "run-s -n lint:*",
      "lint:prettier": "npm run test:lint:prettier -- --write",
      "lint:ts": "npm run test:lint:ts -- --fix",
      "pretest": "run-s build:rollup",
      "test": "run-s -n test:lint test:only",
      "test:debug": "mocha --inspect-brk",
      "test:lint": "run-s -n test:lint:*",
      "test:lint:prettier": "prettier --check '{src,test}/**/*.ts'",
      "test:lint:ts": "eslint '{src,test}/**/*.ts'",
      "test:only": "mocha",
      "test:coverage": "c8 mocha",
      "test:watch": "mocha --watch",
      "prepublishOnly": "npm run preversion",
      "preversion": "run-s test build"
    },
    "devDependencies": {
      "@jridgewell/resolve-uri-latest": "npm:@jridgewell/resolve-uri@*",
      "@rollup/plugin-typescript": "8.3.0",
      "@typescript-eslint/eslint-plugin": "5.10.0",
      "@typescript-eslint/parser": "5.10.0",
      "c8": "7.11.0",
      "eslint": "8.7.0",
      "eslint-config-prettier": "8.3.0",
      "mocha": "9.2.0",
      "npm-run-all": "4.1.5",
      "prettier": "2.5.1",
      "rollup": "2.66.0",
      "typescript": "4.5.5"
    },
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-@jridgewell-resolve-uri-3.1.2-7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6-integrity/node_modules/@jridgewell/resolve-uri/package.json",
    "readmeFilename": "README.md",
    "readme": "# @jridgewell/resolve-uri\n\n> Resolve a URI relative to an optional base URI\n\nResolve any combination of absolute URIs, protocol-realtive URIs, absolute paths, or relative paths.\n\n## Installation\n\n```sh\nnpm install @jridgewell/resolve-uri\n```\n\n## Usage\n\n```typescript\nfunction resolve(input: string, base?: string): string;\n```\n\n```js\nimport resolve from '@jridgewell/resolve-uri';\n\nresolve('foo', 'https://example.com'); // => 'https://example.com/foo'\n```\n\n| Input                 | Base                    | Resolution                     | Explanation                                                  |\n|-----------------------|-------------------------|--------------------------------|--------------------------------------------------------------|\n| `https://example.com` | _any_                   | `https://example.com/`         | Input is normalized only                                     |\n| `//example.com`       | `https://base.com/`     | `https://example.com/`         | Input inherits the base's protocol                           |\n| `//example.com`       | _rest_                  | `//example.com/`               | Input is normalized only                                     |\n| `/example`            | `https://base.com/`     | `https://base.com/example`     | Input inherits the base's origin                             |\n| `/example`            | `//base.com/`           | `//base.com/example`           | Input inherits the base's host and remains protocol relative |\n| `/example`            | _rest_                  | `/example`                     | Input is normalized only                                     |\n| `example`             | `https://base.com/dir/` | `https://base.com/dir/example` | Input is joined with the base                                |\n| `example`             | `https://base.com/file` | `https://base.com/example`     | Input is joined with the base without its file               |\n| `example`             | `//base.com/dir/`       | `//base.com/dir/example`       | Input is joined with the base's last directory               |\n| `example`             | `//base.com/file`       | `//base.com/example`           | Input is joined with the base without its file               |\n| `example`             | `/base/dir/`            | `/base/dir/example`            | Input is joined with the base's last directory               |\n| `example`             | `/base/file`            | `/base/example`                | Input is joined with the base without its file               |\n| `example`             | `base/dir/`             | `base/dir/example`             | Input is joined with the base's last directory               |\n| `example`             | `base/file`             | `base/example`                 | Input is joined with the base without its file               |\n",
    "licenseText": "Copyright 2019 Justin Ridgewell <jridgewell@google.com>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE."
  },
  "artifacts": [],
  "remote": {
    "resolved": "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
    "hash": "7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6",
    "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
    "registry": "npm",
    "packageName": "@jridgewell/resolve-uri",
    "cacheIntegrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== sha1-eg7mAfYPmaIMfHxf8MgDiMEYm9Y="
  },
  "registry": "npm",
  "hash": "7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6"
}