{ "name": "@module-federation/runtime-core", "version": "2.5.0", "type": "module", "author": "zhouxiao ", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "license": "MIT", "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/module-federation/core.git", "directory": "packages/runtime-core" }, "files": [ "dist/", "README.md" ], "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.ts", "default": "./dist/index.cjs" } }, "./types": { "import": { "types": "./dist/types.d.ts", "default": "./dist/types.js" }, "require": { "types": "./dist/types.d.ts", "default": "./dist/types.cjs" } } }, "typesVersions": { "*": { ".": [ "./dist/index.d.ts" ], "types": [ "./dist/types.d.ts" ] } }, "dependencies": { "@module-federation/sdk": "2.5.0", "@module-federation/error-codes": "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\"", "build-debug": "RUNTIME_CORE_TSDOWN_MODE=debug tsdown --config tsdown.config.ts", "pre-release": "pnpm run test && pnpm run build", "test": "vitest run -u -c vitest.config.ts" } }