Files
emaui/node_modules/@module-federation/cli/package.json
2026-05-29 15:23:46 +03:00

47 lines
1.1 KiB
JSON

{
"name": "@module-federation/cli",
"version": "2.5.0",
"type": "commonjs",
"description": "Module Federation CLI",
"homepage": "https://module-federation.io",
"bugs": {
"url": "https://github.com/module-federation/core/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/module-federation/core.git",
"directory": "packages/cli"
},
"bin": {
"mf": "./bin/mf.js"
},
"types": "./dist/index.d.ts",
"license": "MIT",
"main": "./dist/index.js",
"files": [
"dist",
"bin"
],
"dependencies": {
"commander": "11.1.0",
"jiti": "2.4.2",
"@module-federation/sdk": "2.5.0",
"@module-federation/dts-plugin": "2.5.0"
},
"devDependencies": {
"@types/node": "^20.19.5"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "rslib build",
"lint": "ESLINT_USE_FLAT_CONFIG=false pnpm exec eslint --ignore-pattern node_modules \"**/*.ts\" \"package.json\"",
"test": "rstest run -c rstest.config.ts",
"pre-release": "pnpm run test && pnpm run build"
}
}