{
  "name": "@module-federation/managers",
  "version": "2.6.0",
  "license": "MIT",
  "description": "Provide managers for helping handle mf data .",
  "keywords": [
    "Module Federation"
  ],
  "type": "commonjs",
  "files": [
    "dist/",
    "README.md"
  ],
  "publishConfig": {
    "access": "public"
  },
  "author": "hanric <hanric.zhang@gmail.com>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/module-federation/core.git",
    "directory": "packages/managers"
  },
  "sideEffects": false,
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "dependencies": {
    "find-pkg": "2.0.0",
    "@module-federation/sdk": "2.6.0"
  },
  "devDependencies": {
    "webpack": "5.104.1"
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    }
  },
  "typesVersions": {
    "*": {
      ".": [
        "./dist/index.d.ts"
      ]
    }
  },
  "scripts": {
    "build": "rslib build",
    "lint": "ESLINT_USE_FLAT_CONFIG=false pnpm exec eslint --ignore-pattern node_modules \"**/*.ts\" \"package.json\"",
    "test": "pnpm exec jest --config jest.config.js --passWithNoTests",
    "test:ci": "pnpm exec jest --config jest.config.js --passWithNoTests --ci --coverage",
    "pre-release": "pnpm run test && pnpm run build"
  }
}