-
-
Notifications
You must be signed in to change notification settings - Fork 411
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 847 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 847 Bytes
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
33
34
35
36
37
38
39
40
41
{
"name": "@module-federation/error-codes",
"description": "Module Federation Error Codes",
"author": "zhanghang <hanric.zhang@gmail.com>",
"public": true,
"sideEffects": false,
"version": "0.21.3",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/module-federation/core.git",
"directory": "packages/error-codes"
},
"keywords": [
"Module Federation",
"error codes"
],
"files": [
"dist/",
"README.md"
],
"publishConfig": {
"access": "public"
},
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.mjs",
"require": "./dist/index.cjs.js"
}
},
"typesVersions": {
"*": {
".": [
"./dist/index.d.ts"
]
}
}
}