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

60
node_modules/@module-federation/managers/package.json generated vendored Normal file
View File

@@ -0,0 +1,60 @@
{
"name": "@module-federation/managers",
"version": "2.5.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.5.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"
}
}