x25 18.0.0 → 18.0.1
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 +20 -1
package/package.json
CHANGED
|
@@ -1,10 +1,29 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "18.0.
|
|
2
|
+
"version": "18.0.1",
|
|
3
3
|
"name": "x25",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "x25",
|
|
6
6
|
"main": "./index.js",
|
|
7
7
|
"types": "./index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": "./index.js",
|
|
10
|
+
"./Account": "./Account/index.js",
|
|
11
|
+
"./Async": "./Async/index.js",
|
|
12
|
+
"./Inputs": "./Inputs/index.js",
|
|
13
|
+
"./Inputs/Selects": "./Inputs/Selects/index.js",
|
|
14
|
+
"./Loader": "./Loader/index.js",
|
|
15
|
+
"./Messages": "./Messages/index.js",
|
|
16
|
+
"./Modal": "./Modal/index.js",
|
|
17
|
+
"./Payment": "./Payment/index.js",
|
|
18
|
+
"./Payment/Modal": "./Payment/Modal/index.js",
|
|
19
|
+
"./reducer": "./reducer/index.js",
|
|
20
|
+
"./utility": "./utility/index.js",
|
|
21
|
+
"./utility/dev": "./utility/dev/index.js",
|
|
22
|
+
"./utility/validation": "./utility/validation/index.js",
|
|
23
|
+
"./utility/validation/validate": "./utility/validation/validate/index.js",
|
|
24
|
+
"./*": "./*.js",
|
|
25
|
+
"./styles/*": "./styles/*"
|
|
26
|
+
},
|
|
8
27
|
"scripts": {
|
|
9
28
|
"load": "npm run intern-pre && npm run ts && npm run intern-copy && npm publish ./dist",
|
|
10
29
|
"load-beta": "npm run intern-pre && npm run ts && npm run intern-copy && npm publish ./dist --tag beta",
|