@putkoff/abstract-utilities 1.0.40 → 1.0.41
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 +81 -6
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@putkoff/abstract-utilities",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.41",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A reusable React Login component with JWT authentication",
|
|
6
|
-
"main": "dist/cjs/index.js",
|
|
7
|
-
"module": "dist/esm/index.js",
|
|
8
|
-
"types": "dist/types/index.d.ts",
|
|
6
|
+
"main": "./dist/cjs/index.js",
|
|
7
|
+
"module": "./dist/esm/index.js",
|
|
8
|
+
"types": "./dist/types/index.d.ts",
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "tsc --emitDeclarationOnly && rollup --bundleConfigAsCjs -c",
|
|
11
11
|
"test": "jest",
|
|
@@ -84,9 +84,84 @@
|
|
|
84
84
|
],
|
|
85
85
|
"exports": {
|
|
86
86
|
".": {
|
|
87
|
-
"types": "./dist/types/index.d.ts",
|
|
88
87
|
"import": "./dist/esm/index.js",
|
|
89
|
-
"require": "./dist/cjs/index.js"
|
|
88
|
+
"require": "./dist/cjs/index.js",
|
|
89
|
+
"types": "./dist/types/index.d.ts"
|
|
90
|
+
},
|
|
91
|
+
"./functions/auth_utils": {
|
|
92
|
+
"import": "./dist/esm/functions/auth_utils/index.js",
|
|
93
|
+
"require": "./dist/cjs/functions/auth_utils/index.js",
|
|
94
|
+
"types": "./dist/types/functions/auth_utils/index.d.ts"
|
|
95
|
+
},
|
|
96
|
+
"./functions/config_utils": {
|
|
97
|
+
"import": "./dist/esm/functions/config_utils/index.js",
|
|
98
|
+
"require": "./dist/cjs/functions/config_utils/index.js",
|
|
99
|
+
"types": "./dist/types/functions/config_utils/index.d.ts"
|
|
100
|
+
},
|
|
101
|
+
"./functions/constants_utils": {
|
|
102
|
+
"import": "./dist/esm/functions/constants_utils/index.js",
|
|
103
|
+
"require": "./dist/cjs/functions/constants_utils/index.js",
|
|
104
|
+
"types": "./dist/types/functions/constants_utils/index.d.ts"
|
|
105
|
+
},
|
|
106
|
+
"./functions/env_utils": {
|
|
107
|
+
"import": "./dist/esm/functions/env_utils/index.js",
|
|
108
|
+
"require": "./dist/cjs/functions/env_utils/index.js",
|
|
109
|
+
"types": "./dist/types/functions/env_utils/index.d.ts"
|
|
110
|
+
},
|
|
111
|
+
"./functions/fetch_utils": {
|
|
112
|
+
"import": "./dist/esm/functions/fetch_utils/index.js",
|
|
113
|
+
"require": "./dist/cjs/functions/fetch_utils/index.js",
|
|
114
|
+
"types": "./dist/types/functions/fetch_utils/index.d.ts"
|
|
115
|
+
},
|
|
116
|
+
"./functions/math_utils": {
|
|
117
|
+
"import": "./dist/esm/functions/math_utils/index.js",
|
|
118
|
+
"require": "./dist/cjs/functions/math_utils/index.js",
|
|
119
|
+
"types": "./dist/types/functions/math_utils/index.d.ts"
|
|
120
|
+
},
|
|
121
|
+
"./functions/path_utils": {
|
|
122
|
+
"import": "./dist/esm/functions/path_utils/index.js",
|
|
123
|
+
"require": "./dist/cjs/functions/path_utils/index.js",
|
|
124
|
+
"types": "./dist/types/functions/path_utils/index.d.ts"
|
|
125
|
+
},
|
|
126
|
+
"./functions/read_utils": {
|
|
127
|
+
"import": "./dist/esm/functions/read_utils/index.js",
|
|
128
|
+
"require": "./dist/cjs/functions/read_utils/index.js",
|
|
129
|
+
"types": "./dist/types/functions/read_utils/index.d.ts"
|
|
130
|
+
},
|
|
131
|
+
"./functions/rndm_utils": {
|
|
132
|
+
"import": "./dist/esm/functions/rndm_utils/index.js",
|
|
133
|
+
"require": "./dist/cjs/functions/rndm_utils/index.js",
|
|
134
|
+
"types": "./dist/types/functions/rndm_utils/index.d.ts"
|
|
135
|
+
},
|
|
136
|
+
"./functions/safe_utils": {
|
|
137
|
+
"import": "./dist/esm/functions/safe_utils/index.js",
|
|
138
|
+
"require": "./dist/cjs/functions/safe_utils/index.js",
|
|
139
|
+
"types": "./dist/types/functions/safe_utils/index.d.ts"
|
|
140
|
+
},
|
|
141
|
+
"./functions/string_utils": {
|
|
142
|
+
"import": "./dist/esm/functions/string_utils/index.js",
|
|
143
|
+
"require": "./dist/cjs/functions/string_utils/index.js",
|
|
144
|
+
"types": "./dist/types/functions/string_utils/index.d.ts"
|
|
145
|
+
},
|
|
146
|
+
"./functions/type_utils": {
|
|
147
|
+
"import": "./dist/esm/functions/type_utils/index.js",
|
|
148
|
+
"require": "./dist/cjs/functions/type_utils/index.js",
|
|
149
|
+
"types": "./dist/types/functions/type_utils/index.d.ts"
|
|
150
|
+
},
|
|
151
|
+
"./functions/ui_utils": {
|
|
152
|
+
"import": "./dist/esm/functions/ui_utils/index.js",
|
|
153
|
+
"require": "./dist/cjs/functions/ui_utils/index.js",
|
|
154
|
+
"types": "./dist/types/functions/ui_utils/index.d.ts"
|
|
155
|
+
},
|
|
156
|
+
"./functions/variable_utils": {
|
|
157
|
+
"import": "./dist/esm/functions/variable_utils/index.js",
|
|
158
|
+
"require": "./dist/cjs/functions/variable_utils/index.js",
|
|
159
|
+
"types": "./dist/types/functions/variable_utils/index.d.ts"
|
|
160
|
+
},
|
|
161
|
+
"./functions": {
|
|
162
|
+
"import": "./dist/esm/functions/index.js",
|
|
163
|
+
"require": "./dist/cjs/functions/index.js",
|
|
164
|
+
"types": "./dist/types/functions/index.d.ts"
|
|
90
165
|
},
|
|
91
166
|
"./package.json": "./package.json"
|
|
92
167
|
},
|