cloudmr-ux 4.0.2 → 4.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +8 -5
package/package.json
CHANGED
|
@@ -1,19 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudmr-ux",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.3",
|
|
4
4
|
"author": "erosmontin@gmail.com",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": "erosmontin/cloudmr-ux",
|
|
7
|
-
"main": "dist/index.js",
|
|
8
|
-
"types": "dist/index.d.ts",
|
|
7
|
+
"main": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
9
|
"exports": {
|
|
10
10
|
".": {
|
|
11
11
|
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js",
|
|
12
13
|
"default": "./dist/index.js"
|
|
13
14
|
},
|
|
14
15
|
"./core": {
|
|
15
16
|
"types": "./dist/core/index.d.ts",
|
|
16
|
-
"default": "./dist/core/index.js"
|
|
17
|
+
"default": "./dist/core/index.js",
|
|
18
|
+
"import": "./dist/core/index.js"
|
|
17
19
|
},
|
|
18
20
|
"./core/features/authenticate/authenticateSlice": {
|
|
19
21
|
"types": "./dist/core/features/authenticate/authenticateSlice.d.ts",
|
|
@@ -305,5 +307,6 @@
|
|
|
305
307
|
"sass": "^1.81.0",
|
|
306
308
|
"sass-loader": "^16.0.3",
|
|
307
309
|
"style-loader": "^4.0.0"
|
|
308
|
-
}
|
|
310
|
+
},
|
|
311
|
+
"module": "./dist/index.js"
|
|
309
312
|
}
|