{
  "name": "whatwg-url-minimum",
  "version": "0.1.1",
  "description": "Derivative of whatwg-url without unicode handling and optimized for Expo",
  "author": "Phil Pluckthun <phil@kitten.sh>",
  "source": "./src/index.ts",
  "main": "./dist/whatwg-url-minimum",
  "module": "./dist/whatwg-url-minimum.mjs",
  "types": "./dist/whatwg-url-minimum.d.ts",
  "files": [
    "LICENSE.md",
    "README.md",
    "CHANGELOG.md",
    "dist/"
  ],
  "exports": {
    ".": {
      "types": "./dist/whatwg-url-minimum.d.ts",
      "import": "./dist/whatwg-url-minimum.mjs",
      "require": "./dist/whatwg-url-minimum.js",
      "source": "./src/index.ts"
    },
    "./package.json": "./package.json"
  },
  "prettier": {
    "singleQuote": true,
    "arrowParens": "avoid",
    "trailingComma": "es5"
  },
  "lint-staged": {
    "*.{js,ts,json,md}": "prettier --write"
  },
  "keywords": [],
  "license": "MIT",
  "repository": "https://github.com/kitten/whatwg-url-minimum",
  "bugs": {
    "url": "https://github.com/kitten/whatwg-url-minimum/issues"
  },
  "devDependencies": {
    "@babel/plugin-transform-typescript": "^7.28.5",
    "@changesets/cli": "^2.29.7",
    "@changesets/get-github-info": "^0.6.0",
    "@rollup/plugin-babel": "^6.1.0",
    "@rollup/plugin-commonjs": "^29.0.0",
    "@rollup/plugin-node-resolve": "^16.0.3",
    "@rollup/plugin-terser": "^0.4.4",
    "@types/node": "^25.0.3",
    "@vitest/coverage-v8": "^4.0.16",
    "@vitest/ui": "4.0.18",
    "dotenv": "^17.2.3",
    "lint-staged": "^16.2.6",
    "npm-run-all": "^4.1.5",
    "prettier": "^3.6.2",
    "rimraf": "^6.1.0",
    "rollup": "^4.53.3",
    "rollup-plugin-cjs-check": "^1.0.3",
    "rollup-plugin-dts": "^6.2.3",
    "typescript": "^5.9.3",
    "vitest": "^4.0.10",
    "whatwg-url-without-unicode": "8.0.0-3"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "scripts": {
    "test": "vitest test",
    "test:run": "vitest test --run",
    "prebench": "pnpm run build",
    "update": "node scripts/update-platform-tests.js",
    "bench": "vitest bench",
    "build": "rollup -c ./scripts/rollup.config.mjs",
    "postbuild": "tsc --lib esnext,dom,dom.iterable --target esnext --module nodenext --moduleResolution nodenext --noEmit ./dist/whatwg-url-minimum.d.ts",
    "check": "tsc --noEmit",
    "clean": "rimraf dist node_modules/.cache",
    "changeset:version": "changeset version && pnpm install --lockfile-only",
    "changeset:publish": "changeset publish"
  }
}