{
  "name": "module-replacements",
  "description": "This package provides a set of manifests which each define a mapping of JS modules to their suggested replacements.",
  "version": "3.1.0",
  "main": "./dist/main.js",
  "sideEffects": false,
  "scripts": {
    "build": "pnpm clean && pnpm build:types",
    "build:types": "tsc",
    "build:update-manifest-paths": "node scripts/update-manifests-dist-path.js",
    "clean": "node -e \"fs.rmSync('./dist', {force: true, recursive: true})\"",
    "format": "prettier --write \"./**/*.{js,ts,json,md,yml}\"",
    "generate-schema": "node scripts/generate-schema.js",
    "prepare": "tsc",
    "lint": "pnpm lint:format && pnpm lint:manifests",
    "lint:format": "prettier --check \"./**/*.{js,ts,json,md,yml}\"",
    "lint:manifests": "node --experimental-vm-modules scripts/validate-modules.js",
    "sort-manifests": "node scripts/sort-manifests.js",
    "update-engines": "pnpm update-engines:web && pnpm update-engines:bcd && pnpm update-engines:runtimes && pnpm update-engines:node && pnpm update-engines:bun",
    "update-engines:web": "node scripts/update-engines-web.ts",
    "update-engines:bcd": "node scripts/update-engines-bcd.ts",
    "update-engines:runtimes": "node scripts/update-engines-runtimes.ts",
    "update-engines:node": "node scripts/update-engines-node.ts",
    "update-engines:bun": "node scripts/update-engines-bun.ts",
    "prepublishOnly": "pnpm update-engines"
  },
  "files": [
    "dist",
    "manifests"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/e18e/module-replacements.git"
  },
  "author": "James Garbutt (https://github.com/43081j)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/e18e/module-replacements/issues"
  },
  "homepage": "https://github.com/e18e/module-replacements#readme",
  "devDependencies": {
    "@mdn/browser-compat-data": "^7.3.2",
    "@types/node": "^24.10.2",
    "ajv": "^8.16.0",
    "prettier": "^3.8.1",
    "ts-json-schema-generator": "^2.4.0",
    "typescript": "^5.9.3",
    "web-features": "^3.11.0"
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/main.d.ts",
        "default": "./dist/main.js"
      }
    },
    "./dist/util.js": {
      "import": {
        "types": "./dist/util.d.ts",
        "default": "./dist/util.js"
      }
    },
    "./manifests/*.json": "./manifests/*.json",
    "./package.json": "./package.json"
  },
  "types": "./dist/main.d.ts",
  "type": "module",
  "packageManager": "pnpm@10.33.3"
}
