-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.22 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "module-federation-types-plugin",
"version": "1.0.6",
"description": "This plugin merges declaration asset files from common microfrontend modules specified in the exposes object for the ModuleFederation plugin and created using the generated Webpack ts-loader into one declaration file. In addition, the plugin allows you to load declaration type files from the specified microfrontend URLs specified in the remotes object for the ModuleFederation plugin.",
"keywords": [
"module federation",
"module federation types",
"microfrontends",
"microfrontends types",
"webpack",
"type declaration",
".d.ts",
"webpack types bundler",
"types"
],
"main": "plugin.js",
"types": "types/plugin.d.ts",
"scripts": {
"build": "tsc",
"postversion": "git push --tags && yarn publish . --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\""
},
"author": "Anatoly Ivashov <[email protected]>",
"repository": "https://github.com/tony-show/module-federation-types-plugin.git",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"typescript": "^5.0.4"
},
"peerDependencies": {
"webpack": "^5.81.0"
}
}