Project Init

This commit is contained in:
Muluhabt
2026-05-29 15:23:46 +03:00
commit 2fbc557aac
67387 changed files with 6063341 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
{
"name": "@module-federation/inject-external-runtime-core-plugin",
"version": "2.5.0",
"type": "module",
"license": "MIT",
"description": "A sdk for support module federation",
"keywords": [
"Module Federation",
"sdk"
],
"files": [
"dist/",
"README.md"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/module-federation/core.git",
"directory": "packages/runtime-plugins/inject-external-runtime-core-plugin"
},
"author": "zhanghang <hanric.zhang@gmail.com>",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
}
},
"typesVersions": {
"*": {
".": [
"./dist/index.d.ts"
]
}
},
"peerDependencies": {
"@module-federation/runtime-tools": "2.5.0"
},
"devDependencies": {
"@module-federation/runtime-tools": "2.5.0"
},
"scripts": {
"build": "tsdown --config tsdown.config.ts --filter inject-external-runtime-core-plugin-build",
"test": "NODE_OPTIONS=--experimental-vm-modules pnpm exec jest --config jest.config.cjs",
"lint": "ESLINT_USE_FLAT_CONFIG=false pnpm exec eslint --ignore-pattern node_modules \"**/*.ts\" \"package.json\"",
"pre-release": "pnpm run build"
}
}