{ "name": "@module-federation/runtime-tools", "version": "2.5.0", "type": "module", "author": "zhanghang ", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/module-federation/core.git", "directory": "packages/runtime-tools" }, "files": [ "dist/", "README.md" ], "publishConfig": { "access": "public" }, "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.ts", "default": "./dist/index.cjs" } }, "./runtime": { "import": { "types": "./dist/runtime.d.ts", "default": "./dist/runtime.js" }, "require": { "types": "./dist/runtime.d.ts", "default": "./dist/runtime.cjs" } }, "./runtime-core": { "import": { "types": "./dist/runtime-core.d.ts", "default": "./dist/runtime-core.js" }, "require": { "types": "./dist/runtime-core.d.ts", "default": "./dist/runtime-core.cjs" } }, "./webpack-bundler-runtime": { "import": { "types": "./dist/webpack-bundler-runtime.d.ts", "default": "./dist/webpack-bundler-runtime.js" }, "require": { "types": "./dist/webpack-bundler-runtime.d.ts", "default": "./dist/webpack-bundler-runtime.cjs" } }, "./bundler": "./dist/bundler.js", "./*": "./*" }, "typesVersions": { "*": { ".": [ "./dist/index.d.ts" ], "runtime": [ "./dist/runtime.d.ts" ], "webpack-bundler-runtime": [ "./dist/webpack-bundler-runtime.d.ts" ], "runtime-core": [ "./dist/runtime-core.d.ts" ], "bundler": [ "./dist/bundler.d.ts" ] } }, "dependencies": { "@module-federation/webpack-bundler-runtime": "2.5.0", "@module-federation/runtime": "2.5.0" }, "scripts": { "build": "tsdown --config tsdown.config.ts", "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" } }