{ "public": true, "name": "@module-federation/webpack-bundler-runtime", "version": "2.5.0", "type": "module", "license": "MIT", "description": "Module Federation Runtime for webpack", "keywords": [ "Module Federation", "bundler runtime" ], "files": [ "dist/", "README.md" ], "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/module-federation/core.git", "directory": "packages/webpack-bundler-runtime" }, "author": "zhanghang ", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "dependencies": { "@module-federation/runtime": "2.5.0", "@module-federation/error-codes": "2.5.0", "@module-federation/sdk": "2.5.0" }, "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.ts", "default": "./dist/index.cjs" } }, "./constant": { "import": { "types": "./dist/constant.d.ts", "default": "./dist/constant.js" }, "require": { "types": "./dist/constant.d.ts", "default": "./dist/constant.cjs" } }, "./bundler": "./dist/bundler.js", "./*": "./*" }, "typesVersions": { "*": { ".": [ "./dist/index.d.ts" ], "constant": [ "./dist/constant.d.ts" ], "bundler": [ "./dist/bundler.d.ts" ] } }, "scripts": { "build": "tsdown --config tsdown.config.ts --filter webpack-bundler-runtime-build", "lint": "ESLINT_USE_FLAT_CONFIG=false pnpm exec eslint --ignore-pattern node_modules \"**/*.ts\" \"package.json\"", "test": "pnpm exec jest --config jest.config.cjs --passWithNoTests", "test:ci": "pnpm exec jest --config jest.config.cjs --passWithNoTests --ci --coverage", "pre-release": "pnpm run test && pnpm run build" } }