@creopse/react 0.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/README.md ADDED
@@ -0,0 +1 @@
1
+ # Creopse React Toolkit
package/dist/index.cjs ADDED
@@ -0,0 +1,323 @@
1
+ "use strict";
2
+ const require$$0 = require("react");
3
+ var jsxRuntime = { exports: {} };
4
+ var reactJsxRuntime_production = {};
5
+ /**
6
+ * @license React
7
+ * react-jsx-runtime.production.js
8
+ *
9
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
10
+ *
11
+ * This source code is licensed under the MIT license found in the
12
+ * LICENSE file in the root directory of this source tree.
13
+ */
14
+ var hasRequiredReactJsxRuntime_production;
15
+ function requireReactJsxRuntime_production() {
16
+ if (hasRequiredReactJsxRuntime_production) return reactJsxRuntime_production;
17
+ hasRequiredReactJsxRuntime_production = 1;
18
+ var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
19
+ function jsxProd(type, config, maybeKey) {
20
+ var key = null;
21
+ void 0 !== maybeKey && (key = "" + maybeKey);
22
+ void 0 !== config.key && (key = "" + config.key);
23
+ if ("key" in config) {
24
+ maybeKey = {};
25
+ for (var propName in config)
26
+ "key" !== propName && (maybeKey[propName] = config[propName]);
27
+ } else maybeKey = config;
28
+ config = maybeKey.ref;
29
+ return {
30
+ $$typeof: REACT_ELEMENT_TYPE,
31
+ type,
32
+ key,
33
+ ref: void 0 !== config ? config : null,
34
+ props: maybeKey
35
+ };
36
+ }
37
+ reactJsxRuntime_production.Fragment = REACT_FRAGMENT_TYPE;
38
+ reactJsxRuntime_production.jsx = jsxProd;
39
+ reactJsxRuntime_production.jsxs = jsxProd;
40
+ return reactJsxRuntime_production;
41
+ }
42
+ var reactJsxRuntime_development = {};
43
+ /**
44
+ * @license React
45
+ * react-jsx-runtime.development.js
46
+ *
47
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
48
+ *
49
+ * This source code is licensed under the MIT license found in the
50
+ * LICENSE file in the root directory of this source tree.
51
+ */
52
+ var hasRequiredReactJsxRuntime_development;
53
+ function requireReactJsxRuntime_development() {
54
+ if (hasRequiredReactJsxRuntime_development) return reactJsxRuntime_development;
55
+ hasRequiredReactJsxRuntime_development = 1;
56
+ "production" !== process.env.NODE_ENV && function() {
57
+ function getComponentNameFromType(type) {
58
+ if (null == type) return null;
59
+ if ("function" === typeof type)
60
+ return type.$$typeof === REACT_CLIENT_REFERENCE ? null : type.displayName || type.name || null;
61
+ if ("string" === typeof type) return type;
62
+ switch (type) {
63
+ case REACT_FRAGMENT_TYPE:
64
+ return "Fragment";
65
+ case REACT_PROFILER_TYPE:
66
+ return "Profiler";
67
+ case REACT_STRICT_MODE_TYPE:
68
+ return "StrictMode";
69
+ case REACT_SUSPENSE_TYPE:
70
+ return "Suspense";
71
+ case REACT_SUSPENSE_LIST_TYPE:
72
+ return "SuspenseList";
73
+ case REACT_ACTIVITY_TYPE:
74
+ return "Activity";
75
+ }
76
+ if ("object" === typeof type)
77
+ switch ("number" === typeof type.tag && console.error(
78
+ "Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."
79
+ ), type.$$typeof) {
80
+ case REACT_PORTAL_TYPE:
81
+ return "Portal";
82
+ case REACT_CONTEXT_TYPE:
83
+ return (type.displayName || "Context") + ".Provider";
84
+ case REACT_CONSUMER_TYPE:
85
+ return (type._context.displayName || "Context") + ".Consumer";
86
+ case REACT_FORWARD_REF_TYPE:
87
+ var innerType = type.render;
88
+ type = type.displayName;
89
+ type || (type = innerType.displayName || innerType.name || "", type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef");
90
+ return type;
91
+ case REACT_MEMO_TYPE:
92
+ return innerType = type.displayName || null, null !== innerType ? innerType : getComponentNameFromType(type.type) || "Memo";
93
+ case REACT_LAZY_TYPE:
94
+ innerType = type._payload;
95
+ type = type._init;
96
+ try {
97
+ return getComponentNameFromType(type(innerType));
98
+ } catch (x) {
99
+ }
100
+ }
101
+ return null;
102
+ }
103
+ function testStringCoercion(value) {
104
+ return "" + value;
105
+ }
106
+ function checkKeyStringCoercion(value) {
107
+ try {
108
+ testStringCoercion(value);
109
+ var JSCompiler_inline_result = false;
110
+ } catch (e) {
111
+ JSCompiler_inline_result = true;
112
+ }
113
+ if (JSCompiler_inline_result) {
114
+ JSCompiler_inline_result = console;
115
+ var JSCompiler_temp_const = JSCompiler_inline_result.error;
116
+ var JSCompiler_inline_result$jscomp$0 = "function" === typeof Symbol && Symbol.toStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object";
117
+ JSCompiler_temp_const.call(
118
+ JSCompiler_inline_result,
119
+ "The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",
120
+ JSCompiler_inline_result$jscomp$0
121
+ );
122
+ return testStringCoercion(value);
123
+ }
124
+ }
125
+ function getTaskName(type) {
126
+ if (type === REACT_FRAGMENT_TYPE) return "<>";
127
+ if ("object" === typeof type && null !== type && type.$$typeof === REACT_LAZY_TYPE)
128
+ return "<...>";
129
+ try {
130
+ var name = getComponentNameFromType(type);
131
+ return name ? "<" + name + ">" : "<...>";
132
+ } catch (x) {
133
+ return "<...>";
134
+ }
135
+ }
136
+ function getOwner() {
137
+ var dispatcher = ReactSharedInternals.A;
138
+ return null === dispatcher ? null : dispatcher.getOwner();
139
+ }
140
+ function UnknownOwner() {
141
+ return Error("react-stack-top-frame");
142
+ }
143
+ function hasValidKey(config) {
144
+ if (hasOwnProperty.call(config, "key")) {
145
+ var getter = Object.getOwnPropertyDescriptor(config, "key").get;
146
+ if (getter && getter.isReactWarning) return false;
147
+ }
148
+ return void 0 !== config.key;
149
+ }
150
+ function defineKeyPropWarningGetter(props, displayName) {
151
+ function warnAboutAccessingKey() {
152
+ specialPropKeyWarningShown || (specialPropKeyWarningShown = true, console.error(
153
+ "%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",
154
+ displayName
155
+ ));
156
+ }
157
+ warnAboutAccessingKey.isReactWarning = true;
158
+ Object.defineProperty(props, "key", {
159
+ get: warnAboutAccessingKey,
160
+ configurable: true
161
+ });
162
+ }
163
+ function elementRefGetterWithDeprecationWarning() {
164
+ var componentName = getComponentNameFromType(this.type);
165
+ didWarnAboutElementRef[componentName] || (didWarnAboutElementRef[componentName] = true, console.error(
166
+ "Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release."
167
+ ));
168
+ componentName = this.props.ref;
169
+ return void 0 !== componentName ? componentName : null;
170
+ }
171
+ function ReactElement(type, key, self, source, owner, props, debugStack, debugTask) {
172
+ self = props.ref;
173
+ type = {
174
+ $$typeof: REACT_ELEMENT_TYPE,
175
+ type,
176
+ key,
177
+ props,
178
+ _owner: owner
179
+ };
180
+ null !== (void 0 !== self ? self : null) ? Object.defineProperty(type, "ref", {
181
+ enumerable: false,
182
+ get: elementRefGetterWithDeprecationWarning
183
+ }) : Object.defineProperty(type, "ref", { enumerable: false, value: null });
184
+ type._store = {};
185
+ Object.defineProperty(type._store, "validated", {
186
+ configurable: false,
187
+ enumerable: false,
188
+ writable: true,
189
+ value: 0
190
+ });
191
+ Object.defineProperty(type, "_debugInfo", {
192
+ configurable: false,
193
+ enumerable: false,
194
+ writable: true,
195
+ value: null
196
+ });
197
+ Object.defineProperty(type, "_debugStack", {
198
+ configurable: false,
199
+ enumerable: false,
200
+ writable: true,
201
+ value: debugStack
202
+ });
203
+ Object.defineProperty(type, "_debugTask", {
204
+ configurable: false,
205
+ enumerable: false,
206
+ writable: true,
207
+ value: debugTask
208
+ });
209
+ Object.freeze && (Object.freeze(type.props), Object.freeze(type));
210
+ return type;
211
+ }
212
+ function jsxDEVImpl(type, config, maybeKey, isStaticChildren, source, self, debugStack, debugTask) {
213
+ var children = config.children;
214
+ if (void 0 !== children)
215
+ if (isStaticChildren)
216
+ if (isArrayImpl(children)) {
217
+ for (isStaticChildren = 0; isStaticChildren < children.length; isStaticChildren++)
218
+ validateChildKeys(children[isStaticChildren]);
219
+ Object.freeze && Object.freeze(children);
220
+ } else
221
+ console.error(
222
+ "React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead."
223
+ );
224
+ else validateChildKeys(children);
225
+ if (hasOwnProperty.call(config, "key")) {
226
+ children = getComponentNameFromType(type);
227
+ var keys = Object.keys(config).filter(function(k) {
228
+ return "key" !== k;
229
+ });
230
+ isStaticChildren = 0 < keys.length ? "{key: someKey, " + keys.join(": ..., ") + ": ...}" : "{key: someKey}";
231
+ didWarnAboutKeySpread[children + isStaticChildren] || (keys = 0 < keys.length ? "{" + keys.join(": ..., ") + ": ...}" : "{}", console.error(
232
+ 'A props object containing a "key" prop is being spread into JSX:\n let props = %s;\n <%s {...props} />\nReact keys must be passed directly to JSX without using spread:\n let props = %s;\n <%s key={someKey} {...props} />',
233
+ isStaticChildren,
234
+ children,
235
+ keys,
236
+ children
237
+ ), didWarnAboutKeySpread[children + isStaticChildren] = true);
238
+ }
239
+ children = null;
240
+ void 0 !== maybeKey && (checkKeyStringCoercion(maybeKey), children = "" + maybeKey);
241
+ hasValidKey(config) && (checkKeyStringCoercion(config.key), children = "" + config.key);
242
+ if ("key" in config) {
243
+ maybeKey = {};
244
+ for (var propName in config)
245
+ "key" !== propName && (maybeKey[propName] = config[propName]);
246
+ } else maybeKey = config;
247
+ children && defineKeyPropWarningGetter(
248
+ maybeKey,
249
+ "function" === typeof type ? type.displayName || type.name || "Unknown" : type
250
+ );
251
+ return ReactElement(
252
+ type,
253
+ children,
254
+ self,
255
+ source,
256
+ getOwner(),
257
+ maybeKey,
258
+ debugStack,
259
+ debugTask
260
+ );
261
+ }
262
+ function validateChildKeys(node) {
263
+ "object" === typeof node && null !== node && node.$$typeof === REACT_ELEMENT_TYPE && node._store && (node._store.validated = 1);
264
+ }
265
+ var React = require$$0, REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler");
266
+ var REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"), REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"), ReactSharedInternals = React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, hasOwnProperty = Object.prototype.hasOwnProperty, isArrayImpl = Array.isArray, createTask = console.createTask ? console.createTask : function() {
267
+ return null;
268
+ };
269
+ React = {
270
+ "react-stack-bottom-frame": function(callStackForError) {
271
+ return callStackForError();
272
+ }
273
+ };
274
+ var specialPropKeyWarningShown;
275
+ var didWarnAboutElementRef = {};
276
+ var unknownOwnerDebugStack = React["react-stack-bottom-frame"].bind(
277
+ React,
278
+ UnknownOwner
279
+ )();
280
+ var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner));
281
+ var didWarnAboutKeySpread = {};
282
+ reactJsxRuntime_development.Fragment = REACT_FRAGMENT_TYPE;
283
+ reactJsxRuntime_development.jsx = function(type, config, maybeKey, source, self) {
284
+ var trackActualOwner = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;
285
+ return jsxDEVImpl(
286
+ type,
287
+ config,
288
+ maybeKey,
289
+ false,
290
+ source,
291
+ self,
292
+ trackActualOwner ? Error("react-stack-top-frame") : unknownOwnerDebugStack,
293
+ trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask
294
+ );
295
+ };
296
+ reactJsxRuntime_development.jsxs = function(type, config, maybeKey, source, self) {
297
+ var trackActualOwner = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;
298
+ return jsxDEVImpl(
299
+ type,
300
+ config,
301
+ maybeKey,
302
+ true,
303
+ source,
304
+ self,
305
+ trackActualOwner ? Error("react-stack-top-frame") : unknownOwnerDebugStack,
306
+ trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask
307
+ );
308
+ };
309
+ }();
310
+ return reactJsxRuntime_development;
311
+ }
312
+ var hasRequiredJsxRuntime;
313
+ function requireJsxRuntime() {
314
+ if (hasRequiredJsxRuntime) return jsxRuntime.exports;
315
+ hasRequiredJsxRuntime = 1;
316
+ if (process.env.NODE_ENV === "production") {
317
+ jsxRuntime.exports = requireReactJsxRuntime_production();
318
+ } else {
319
+ jsxRuntime.exports = requireReactJsxRuntime_development();
320
+ }
321
+ return jsxRuntime.exports;
322
+ }
323
+ requireJsxRuntime();
package/dist/index.js ADDED
@@ -0,0 +1,324 @@
1
+ (function(require$$0) {
2
+ "use strict";
3
+ var jsxRuntime = { exports: {} };
4
+ var reactJsxRuntime_production = {};
5
+ /**
6
+ * @license React
7
+ * react-jsx-runtime.production.js
8
+ *
9
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
10
+ *
11
+ * This source code is licensed under the MIT license found in the
12
+ * LICENSE file in the root directory of this source tree.
13
+ */
14
+ var hasRequiredReactJsxRuntime_production;
15
+ function requireReactJsxRuntime_production() {
16
+ if (hasRequiredReactJsxRuntime_production) return reactJsxRuntime_production;
17
+ hasRequiredReactJsxRuntime_production = 1;
18
+ var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
19
+ function jsxProd(type, config, maybeKey) {
20
+ var key = null;
21
+ void 0 !== maybeKey && (key = "" + maybeKey);
22
+ void 0 !== config.key && (key = "" + config.key);
23
+ if ("key" in config) {
24
+ maybeKey = {};
25
+ for (var propName in config)
26
+ "key" !== propName && (maybeKey[propName] = config[propName]);
27
+ } else maybeKey = config;
28
+ config = maybeKey.ref;
29
+ return {
30
+ $$typeof: REACT_ELEMENT_TYPE,
31
+ type,
32
+ key,
33
+ ref: void 0 !== config ? config : null,
34
+ props: maybeKey
35
+ };
36
+ }
37
+ reactJsxRuntime_production.Fragment = REACT_FRAGMENT_TYPE;
38
+ reactJsxRuntime_production.jsx = jsxProd;
39
+ reactJsxRuntime_production.jsxs = jsxProd;
40
+ return reactJsxRuntime_production;
41
+ }
42
+ var reactJsxRuntime_development = {};
43
+ /**
44
+ * @license React
45
+ * react-jsx-runtime.development.js
46
+ *
47
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
48
+ *
49
+ * This source code is licensed under the MIT license found in the
50
+ * LICENSE file in the root directory of this source tree.
51
+ */
52
+ var hasRequiredReactJsxRuntime_development;
53
+ function requireReactJsxRuntime_development() {
54
+ if (hasRequiredReactJsxRuntime_development) return reactJsxRuntime_development;
55
+ hasRequiredReactJsxRuntime_development = 1;
56
+ "production" !== process.env.NODE_ENV && function() {
57
+ function getComponentNameFromType(type) {
58
+ if (null == type) return null;
59
+ if ("function" === typeof type)
60
+ return type.$$typeof === REACT_CLIENT_REFERENCE ? null : type.displayName || type.name || null;
61
+ if ("string" === typeof type) return type;
62
+ switch (type) {
63
+ case REACT_FRAGMENT_TYPE:
64
+ return "Fragment";
65
+ case REACT_PROFILER_TYPE:
66
+ return "Profiler";
67
+ case REACT_STRICT_MODE_TYPE:
68
+ return "StrictMode";
69
+ case REACT_SUSPENSE_TYPE:
70
+ return "Suspense";
71
+ case REACT_SUSPENSE_LIST_TYPE:
72
+ return "SuspenseList";
73
+ case REACT_ACTIVITY_TYPE:
74
+ return "Activity";
75
+ }
76
+ if ("object" === typeof type)
77
+ switch ("number" === typeof type.tag && console.error(
78
+ "Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."
79
+ ), type.$$typeof) {
80
+ case REACT_PORTAL_TYPE:
81
+ return "Portal";
82
+ case REACT_CONTEXT_TYPE:
83
+ return (type.displayName || "Context") + ".Provider";
84
+ case REACT_CONSUMER_TYPE:
85
+ return (type._context.displayName || "Context") + ".Consumer";
86
+ case REACT_FORWARD_REF_TYPE:
87
+ var innerType = type.render;
88
+ type = type.displayName;
89
+ type || (type = innerType.displayName || innerType.name || "", type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef");
90
+ return type;
91
+ case REACT_MEMO_TYPE:
92
+ return innerType = type.displayName || null, null !== innerType ? innerType : getComponentNameFromType(type.type) || "Memo";
93
+ case REACT_LAZY_TYPE:
94
+ innerType = type._payload;
95
+ type = type._init;
96
+ try {
97
+ return getComponentNameFromType(type(innerType));
98
+ } catch (x) {
99
+ }
100
+ }
101
+ return null;
102
+ }
103
+ function testStringCoercion(value) {
104
+ return "" + value;
105
+ }
106
+ function checkKeyStringCoercion(value) {
107
+ try {
108
+ testStringCoercion(value);
109
+ var JSCompiler_inline_result = false;
110
+ } catch (e) {
111
+ JSCompiler_inline_result = true;
112
+ }
113
+ if (JSCompiler_inline_result) {
114
+ JSCompiler_inline_result = console;
115
+ var JSCompiler_temp_const = JSCompiler_inline_result.error;
116
+ var JSCompiler_inline_result$jscomp$0 = "function" === typeof Symbol && Symbol.toStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object";
117
+ JSCompiler_temp_const.call(
118
+ JSCompiler_inline_result,
119
+ "The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",
120
+ JSCompiler_inline_result$jscomp$0
121
+ );
122
+ return testStringCoercion(value);
123
+ }
124
+ }
125
+ function getTaskName(type) {
126
+ if (type === REACT_FRAGMENT_TYPE) return "<>";
127
+ if ("object" === typeof type && null !== type && type.$$typeof === REACT_LAZY_TYPE)
128
+ return "<...>";
129
+ try {
130
+ var name = getComponentNameFromType(type);
131
+ return name ? "<" + name + ">" : "<...>";
132
+ } catch (x) {
133
+ return "<...>";
134
+ }
135
+ }
136
+ function getOwner() {
137
+ var dispatcher = ReactSharedInternals.A;
138
+ return null === dispatcher ? null : dispatcher.getOwner();
139
+ }
140
+ function UnknownOwner() {
141
+ return Error("react-stack-top-frame");
142
+ }
143
+ function hasValidKey(config) {
144
+ if (hasOwnProperty.call(config, "key")) {
145
+ var getter = Object.getOwnPropertyDescriptor(config, "key").get;
146
+ if (getter && getter.isReactWarning) return false;
147
+ }
148
+ return void 0 !== config.key;
149
+ }
150
+ function defineKeyPropWarningGetter(props, displayName) {
151
+ function warnAboutAccessingKey() {
152
+ specialPropKeyWarningShown || (specialPropKeyWarningShown = true, console.error(
153
+ "%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",
154
+ displayName
155
+ ));
156
+ }
157
+ warnAboutAccessingKey.isReactWarning = true;
158
+ Object.defineProperty(props, "key", {
159
+ get: warnAboutAccessingKey,
160
+ configurable: true
161
+ });
162
+ }
163
+ function elementRefGetterWithDeprecationWarning() {
164
+ var componentName = getComponentNameFromType(this.type);
165
+ didWarnAboutElementRef[componentName] || (didWarnAboutElementRef[componentName] = true, console.error(
166
+ "Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release."
167
+ ));
168
+ componentName = this.props.ref;
169
+ return void 0 !== componentName ? componentName : null;
170
+ }
171
+ function ReactElement(type, key, self, source, owner, props, debugStack, debugTask) {
172
+ self = props.ref;
173
+ type = {
174
+ $$typeof: REACT_ELEMENT_TYPE,
175
+ type,
176
+ key,
177
+ props,
178
+ _owner: owner
179
+ };
180
+ null !== (void 0 !== self ? self : null) ? Object.defineProperty(type, "ref", {
181
+ enumerable: false,
182
+ get: elementRefGetterWithDeprecationWarning
183
+ }) : Object.defineProperty(type, "ref", { enumerable: false, value: null });
184
+ type._store = {};
185
+ Object.defineProperty(type._store, "validated", {
186
+ configurable: false,
187
+ enumerable: false,
188
+ writable: true,
189
+ value: 0
190
+ });
191
+ Object.defineProperty(type, "_debugInfo", {
192
+ configurable: false,
193
+ enumerable: false,
194
+ writable: true,
195
+ value: null
196
+ });
197
+ Object.defineProperty(type, "_debugStack", {
198
+ configurable: false,
199
+ enumerable: false,
200
+ writable: true,
201
+ value: debugStack
202
+ });
203
+ Object.defineProperty(type, "_debugTask", {
204
+ configurable: false,
205
+ enumerable: false,
206
+ writable: true,
207
+ value: debugTask
208
+ });
209
+ Object.freeze && (Object.freeze(type.props), Object.freeze(type));
210
+ return type;
211
+ }
212
+ function jsxDEVImpl(type, config, maybeKey, isStaticChildren, source, self, debugStack, debugTask) {
213
+ var children = config.children;
214
+ if (void 0 !== children)
215
+ if (isStaticChildren)
216
+ if (isArrayImpl(children)) {
217
+ for (isStaticChildren = 0; isStaticChildren < children.length; isStaticChildren++)
218
+ validateChildKeys(children[isStaticChildren]);
219
+ Object.freeze && Object.freeze(children);
220
+ } else
221
+ console.error(
222
+ "React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead."
223
+ );
224
+ else validateChildKeys(children);
225
+ if (hasOwnProperty.call(config, "key")) {
226
+ children = getComponentNameFromType(type);
227
+ var keys = Object.keys(config).filter(function(k) {
228
+ return "key" !== k;
229
+ });
230
+ isStaticChildren = 0 < keys.length ? "{key: someKey, " + keys.join(": ..., ") + ": ...}" : "{key: someKey}";
231
+ didWarnAboutKeySpread[children + isStaticChildren] || (keys = 0 < keys.length ? "{" + keys.join(": ..., ") + ": ...}" : "{}", console.error(
232
+ 'A props object containing a "key" prop is being spread into JSX:\n let props = %s;\n <%s {...props} />\nReact keys must be passed directly to JSX without using spread:\n let props = %s;\n <%s key={someKey} {...props} />',
233
+ isStaticChildren,
234
+ children,
235
+ keys,
236
+ children
237
+ ), didWarnAboutKeySpread[children + isStaticChildren] = true);
238
+ }
239
+ children = null;
240
+ void 0 !== maybeKey && (checkKeyStringCoercion(maybeKey), children = "" + maybeKey);
241
+ hasValidKey(config) && (checkKeyStringCoercion(config.key), children = "" + config.key);
242
+ if ("key" in config) {
243
+ maybeKey = {};
244
+ for (var propName in config)
245
+ "key" !== propName && (maybeKey[propName] = config[propName]);
246
+ } else maybeKey = config;
247
+ children && defineKeyPropWarningGetter(
248
+ maybeKey,
249
+ "function" === typeof type ? type.displayName || type.name || "Unknown" : type
250
+ );
251
+ return ReactElement(
252
+ type,
253
+ children,
254
+ self,
255
+ source,
256
+ getOwner(),
257
+ maybeKey,
258
+ debugStack,
259
+ debugTask
260
+ );
261
+ }
262
+ function validateChildKeys(node) {
263
+ "object" === typeof node && null !== node && node.$$typeof === REACT_ELEMENT_TYPE && node._store && (node._store.validated = 1);
264
+ }
265
+ var React2 = require$$0, REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler");
266
+ var REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"), REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"), ReactSharedInternals = React2.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, hasOwnProperty = Object.prototype.hasOwnProperty, isArrayImpl = Array.isArray, createTask = console.createTask ? console.createTask : function() {
267
+ return null;
268
+ };
269
+ React2 = {
270
+ "react-stack-bottom-frame": function(callStackForError) {
271
+ return callStackForError();
272
+ }
273
+ };
274
+ var specialPropKeyWarningShown;
275
+ var didWarnAboutElementRef = {};
276
+ var unknownOwnerDebugStack = React2["react-stack-bottom-frame"].bind(
277
+ React2,
278
+ UnknownOwner
279
+ )();
280
+ var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner));
281
+ var didWarnAboutKeySpread = {};
282
+ reactJsxRuntime_development.Fragment = REACT_FRAGMENT_TYPE;
283
+ reactJsxRuntime_development.jsx = function(type, config, maybeKey, source, self) {
284
+ var trackActualOwner = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;
285
+ return jsxDEVImpl(
286
+ type,
287
+ config,
288
+ maybeKey,
289
+ false,
290
+ source,
291
+ self,
292
+ trackActualOwner ? Error("react-stack-top-frame") : unknownOwnerDebugStack,
293
+ trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask
294
+ );
295
+ };
296
+ reactJsxRuntime_development.jsxs = function(type, config, maybeKey, source, self) {
297
+ var trackActualOwner = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;
298
+ return jsxDEVImpl(
299
+ type,
300
+ config,
301
+ maybeKey,
302
+ true,
303
+ source,
304
+ self,
305
+ trackActualOwner ? Error("react-stack-top-frame") : unknownOwnerDebugStack,
306
+ trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask
307
+ );
308
+ };
309
+ }();
310
+ return reactJsxRuntime_development;
311
+ }
312
+ var hasRequiredJsxRuntime;
313
+ function requireJsxRuntime() {
314
+ if (hasRequiredJsxRuntime) return jsxRuntime.exports;
315
+ hasRequiredJsxRuntime = 1;
316
+ if (process.env.NODE_ENV === "production") {
317
+ jsxRuntime.exports = requireReactJsxRuntime_production();
318
+ } else {
319
+ jsxRuntime.exports = requireReactJsxRuntime_development();
320
+ }
321
+ return jsxRuntime.exports;
322
+ }
323
+ requireJsxRuntime();
324
+ })(React);
package/dist/index.mjs ADDED
@@ -0,0 +1,322 @@
1
+ import require$$0 from "react";
2
+ var jsxRuntime = { exports: {} };
3
+ var reactJsxRuntime_production = {};
4
+ /**
5
+ * @license React
6
+ * react-jsx-runtime.production.js
7
+ *
8
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
9
+ *
10
+ * This source code is licensed under the MIT license found in the
11
+ * LICENSE file in the root directory of this source tree.
12
+ */
13
+ var hasRequiredReactJsxRuntime_production;
14
+ function requireReactJsxRuntime_production() {
15
+ if (hasRequiredReactJsxRuntime_production) return reactJsxRuntime_production;
16
+ hasRequiredReactJsxRuntime_production = 1;
17
+ var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
18
+ function jsxProd(type, config, maybeKey) {
19
+ var key = null;
20
+ void 0 !== maybeKey && (key = "" + maybeKey);
21
+ void 0 !== config.key && (key = "" + config.key);
22
+ if ("key" in config) {
23
+ maybeKey = {};
24
+ for (var propName in config)
25
+ "key" !== propName && (maybeKey[propName] = config[propName]);
26
+ } else maybeKey = config;
27
+ config = maybeKey.ref;
28
+ return {
29
+ $$typeof: REACT_ELEMENT_TYPE,
30
+ type,
31
+ key,
32
+ ref: void 0 !== config ? config : null,
33
+ props: maybeKey
34
+ };
35
+ }
36
+ reactJsxRuntime_production.Fragment = REACT_FRAGMENT_TYPE;
37
+ reactJsxRuntime_production.jsx = jsxProd;
38
+ reactJsxRuntime_production.jsxs = jsxProd;
39
+ return reactJsxRuntime_production;
40
+ }
41
+ var reactJsxRuntime_development = {};
42
+ /**
43
+ * @license React
44
+ * react-jsx-runtime.development.js
45
+ *
46
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
47
+ *
48
+ * This source code is licensed under the MIT license found in the
49
+ * LICENSE file in the root directory of this source tree.
50
+ */
51
+ var hasRequiredReactJsxRuntime_development;
52
+ function requireReactJsxRuntime_development() {
53
+ if (hasRequiredReactJsxRuntime_development) return reactJsxRuntime_development;
54
+ hasRequiredReactJsxRuntime_development = 1;
55
+ "production" !== process.env.NODE_ENV && function() {
56
+ function getComponentNameFromType(type) {
57
+ if (null == type) return null;
58
+ if ("function" === typeof type)
59
+ return type.$$typeof === REACT_CLIENT_REFERENCE ? null : type.displayName || type.name || null;
60
+ if ("string" === typeof type) return type;
61
+ switch (type) {
62
+ case REACT_FRAGMENT_TYPE:
63
+ return "Fragment";
64
+ case REACT_PROFILER_TYPE:
65
+ return "Profiler";
66
+ case REACT_STRICT_MODE_TYPE:
67
+ return "StrictMode";
68
+ case REACT_SUSPENSE_TYPE:
69
+ return "Suspense";
70
+ case REACT_SUSPENSE_LIST_TYPE:
71
+ return "SuspenseList";
72
+ case REACT_ACTIVITY_TYPE:
73
+ return "Activity";
74
+ }
75
+ if ("object" === typeof type)
76
+ switch ("number" === typeof type.tag && console.error(
77
+ "Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."
78
+ ), type.$$typeof) {
79
+ case REACT_PORTAL_TYPE:
80
+ return "Portal";
81
+ case REACT_CONTEXT_TYPE:
82
+ return (type.displayName || "Context") + ".Provider";
83
+ case REACT_CONSUMER_TYPE:
84
+ return (type._context.displayName || "Context") + ".Consumer";
85
+ case REACT_FORWARD_REF_TYPE:
86
+ var innerType = type.render;
87
+ type = type.displayName;
88
+ type || (type = innerType.displayName || innerType.name || "", type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef");
89
+ return type;
90
+ case REACT_MEMO_TYPE:
91
+ return innerType = type.displayName || null, null !== innerType ? innerType : getComponentNameFromType(type.type) || "Memo";
92
+ case REACT_LAZY_TYPE:
93
+ innerType = type._payload;
94
+ type = type._init;
95
+ try {
96
+ return getComponentNameFromType(type(innerType));
97
+ } catch (x) {
98
+ }
99
+ }
100
+ return null;
101
+ }
102
+ function testStringCoercion(value) {
103
+ return "" + value;
104
+ }
105
+ function checkKeyStringCoercion(value) {
106
+ try {
107
+ testStringCoercion(value);
108
+ var JSCompiler_inline_result = false;
109
+ } catch (e) {
110
+ JSCompiler_inline_result = true;
111
+ }
112
+ if (JSCompiler_inline_result) {
113
+ JSCompiler_inline_result = console;
114
+ var JSCompiler_temp_const = JSCompiler_inline_result.error;
115
+ var JSCompiler_inline_result$jscomp$0 = "function" === typeof Symbol && Symbol.toStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object";
116
+ JSCompiler_temp_const.call(
117
+ JSCompiler_inline_result,
118
+ "The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",
119
+ JSCompiler_inline_result$jscomp$0
120
+ );
121
+ return testStringCoercion(value);
122
+ }
123
+ }
124
+ function getTaskName(type) {
125
+ if (type === REACT_FRAGMENT_TYPE) return "<>";
126
+ if ("object" === typeof type && null !== type && type.$$typeof === REACT_LAZY_TYPE)
127
+ return "<...>";
128
+ try {
129
+ var name = getComponentNameFromType(type);
130
+ return name ? "<" + name + ">" : "<...>";
131
+ } catch (x) {
132
+ return "<...>";
133
+ }
134
+ }
135
+ function getOwner() {
136
+ var dispatcher = ReactSharedInternals.A;
137
+ return null === dispatcher ? null : dispatcher.getOwner();
138
+ }
139
+ function UnknownOwner() {
140
+ return Error("react-stack-top-frame");
141
+ }
142
+ function hasValidKey(config) {
143
+ if (hasOwnProperty.call(config, "key")) {
144
+ var getter = Object.getOwnPropertyDescriptor(config, "key").get;
145
+ if (getter && getter.isReactWarning) return false;
146
+ }
147
+ return void 0 !== config.key;
148
+ }
149
+ function defineKeyPropWarningGetter(props, displayName) {
150
+ function warnAboutAccessingKey() {
151
+ specialPropKeyWarningShown || (specialPropKeyWarningShown = true, console.error(
152
+ "%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",
153
+ displayName
154
+ ));
155
+ }
156
+ warnAboutAccessingKey.isReactWarning = true;
157
+ Object.defineProperty(props, "key", {
158
+ get: warnAboutAccessingKey,
159
+ configurable: true
160
+ });
161
+ }
162
+ function elementRefGetterWithDeprecationWarning() {
163
+ var componentName = getComponentNameFromType(this.type);
164
+ didWarnAboutElementRef[componentName] || (didWarnAboutElementRef[componentName] = true, console.error(
165
+ "Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release."
166
+ ));
167
+ componentName = this.props.ref;
168
+ return void 0 !== componentName ? componentName : null;
169
+ }
170
+ function ReactElement(type, key, self, source, owner, props, debugStack, debugTask) {
171
+ self = props.ref;
172
+ type = {
173
+ $$typeof: REACT_ELEMENT_TYPE,
174
+ type,
175
+ key,
176
+ props,
177
+ _owner: owner
178
+ };
179
+ null !== (void 0 !== self ? self : null) ? Object.defineProperty(type, "ref", {
180
+ enumerable: false,
181
+ get: elementRefGetterWithDeprecationWarning
182
+ }) : Object.defineProperty(type, "ref", { enumerable: false, value: null });
183
+ type._store = {};
184
+ Object.defineProperty(type._store, "validated", {
185
+ configurable: false,
186
+ enumerable: false,
187
+ writable: true,
188
+ value: 0
189
+ });
190
+ Object.defineProperty(type, "_debugInfo", {
191
+ configurable: false,
192
+ enumerable: false,
193
+ writable: true,
194
+ value: null
195
+ });
196
+ Object.defineProperty(type, "_debugStack", {
197
+ configurable: false,
198
+ enumerable: false,
199
+ writable: true,
200
+ value: debugStack
201
+ });
202
+ Object.defineProperty(type, "_debugTask", {
203
+ configurable: false,
204
+ enumerable: false,
205
+ writable: true,
206
+ value: debugTask
207
+ });
208
+ Object.freeze && (Object.freeze(type.props), Object.freeze(type));
209
+ return type;
210
+ }
211
+ function jsxDEVImpl(type, config, maybeKey, isStaticChildren, source, self, debugStack, debugTask) {
212
+ var children = config.children;
213
+ if (void 0 !== children)
214
+ if (isStaticChildren)
215
+ if (isArrayImpl(children)) {
216
+ for (isStaticChildren = 0; isStaticChildren < children.length; isStaticChildren++)
217
+ validateChildKeys(children[isStaticChildren]);
218
+ Object.freeze && Object.freeze(children);
219
+ } else
220
+ console.error(
221
+ "React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead."
222
+ );
223
+ else validateChildKeys(children);
224
+ if (hasOwnProperty.call(config, "key")) {
225
+ children = getComponentNameFromType(type);
226
+ var keys = Object.keys(config).filter(function(k) {
227
+ return "key" !== k;
228
+ });
229
+ isStaticChildren = 0 < keys.length ? "{key: someKey, " + keys.join(": ..., ") + ": ...}" : "{key: someKey}";
230
+ didWarnAboutKeySpread[children + isStaticChildren] || (keys = 0 < keys.length ? "{" + keys.join(": ..., ") + ": ...}" : "{}", console.error(
231
+ 'A props object containing a "key" prop is being spread into JSX:\n let props = %s;\n <%s {...props} />\nReact keys must be passed directly to JSX without using spread:\n let props = %s;\n <%s key={someKey} {...props} />',
232
+ isStaticChildren,
233
+ children,
234
+ keys,
235
+ children
236
+ ), didWarnAboutKeySpread[children + isStaticChildren] = true);
237
+ }
238
+ children = null;
239
+ void 0 !== maybeKey && (checkKeyStringCoercion(maybeKey), children = "" + maybeKey);
240
+ hasValidKey(config) && (checkKeyStringCoercion(config.key), children = "" + config.key);
241
+ if ("key" in config) {
242
+ maybeKey = {};
243
+ for (var propName in config)
244
+ "key" !== propName && (maybeKey[propName] = config[propName]);
245
+ } else maybeKey = config;
246
+ children && defineKeyPropWarningGetter(
247
+ maybeKey,
248
+ "function" === typeof type ? type.displayName || type.name || "Unknown" : type
249
+ );
250
+ return ReactElement(
251
+ type,
252
+ children,
253
+ self,
254
+ source,
255
+ getOwner(),
256
+ maybeKey,
257
+ debugStack,
258
+ debugTask
259
+ );
260
+ }
261
+ function validateChildKeys(node) {
262
+ "object" === typeof node && null !== node && node.$$typeof === REACT_ELEMENT_TYPE && node._store && (node._store.validated = 1);
263
+ }
264
+ var React = require$$0, REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler");
265
+ var REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"), REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"), ReactSharedInternals = React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, hasOwnProperty = Object.prototype.hasOwnProperty, isArrayImpl = Array.isArray, createTask = console.createTask ? console.createTask : function() {
266
+ return null;
267
+ };
268
+ React = {
269
+ "react-stack-bottom-frame": function(callStackForError) {
270
+ return callStackForError();
271
+ }
272
+ };
273
+ var specialPropKeyWarningShown;
274
+ var didWarnAboutElementRef = {};
275
+ var unknownOwnerDebugStack = React["react-stack-bottom-frame"].bind(
276
+ React,
277
+ UnknownOwner
278
+ )();
279
+ var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner));
280
+ var didWarnAboutKeySpread = {};
281
+ reactJsxRuntime_development.Fragment = REACT_FRAGMENT_TYPE;
282
+ reactJsxRuntime_development.jsx = function(type, config, maybeKey, source, self) {
283
+ var trackActualOwner = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;
284
+ return jsxDEVImpl(
285
+ type,
286
+ config,
287
+ maybeKey,
288
+ false,
289
+ source,
290
+ self,
291
+ trackActualOwner ? Error("react-stack-top-frame") : unknownOwnerDebugStack,
292
+ trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask
293
+ );
294
+ };
295
+ reactJsxRuntime_development.jsxs = function(type, config, maybeKey, source, self) {
296
+ var trackActualOwner = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;
297
+ return jsxDEVImpl(
298
+ type,
299
+ config,
300
+ maybeKey,
301
+ true,
302
+ source,
303
+ self,
304
+ trackActualOwner ? Error("react-stack-top-frame") : unknownOwnerDebugStack,
305
+ trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask
306
+ );
307
+ };
308
+ }();
309
+ return reactJsxRuntime_development;
310
+ }
311
+ var hasRequiredJsxRuntime;
312
+ function requireJsxRuntime() {
313
+ if (hasRequiredJsxRuntime) return jsxRuntime.exports;
314
+ hasRequiredJsxRuntime = 1;
315
+ if (process.env.NODE_ENV === "production") {
316
+ jsxRuntime.exports = requireReactJsxRuntime_production();
317
+ } else {
318
+ jsxRuntime.exports = requireReactJsxRuntime_development();
319
+ }
320
+ return jsxRuntime.exports;
321
+ }
322
+ requireJsxRuntime();
package/package.json ADDED
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "@creopse/react",
3
+ "description": "Creopse React Toolkit",
4
+ "version": "0.0.1",
5
+ "private": false,
6
+ "author": "Noé Gnanih <noegnanih@gmail.com>",
7
+ "license": "MIT",
8
+ "type": "module",
9
+ "main": "dist/index.cjs",
10
+ "module": "dist/index.mjs",
11
+ "exports": {
12
+ ".": {
13
+ "types": "./types/index.d.ts",
14
+ "import": "./dist/index.mjs",
15
+ "require": "./dist/index.cjs"
16
+ },
17
+ "./*": "./*"
18
+ },
19
+ "typings": "types/index.d.ts",
20
+ "files": [
21
+ "dist",
22
+ "types",
23
+ "README.md"
24
+ ],
25
+ "scripts": {
26
+ "dev": "vite",
27
+ "build": "tsc -b && vite build",
28
+ "lint": "eslint .",
29
+ "preview": "vite preview"
30
+ },
31
+ "dependencies": {
32
+ "react": "^19.1.0",
33
+ "react-dom": "^19.1.0"
34
+ },
35
+ "devDependencies": {
36
+ "@eslint/js": "^9.30.1",
37
+ "@types/react": "^19.1.8",
38
+ "@types/react-dom": "^19.1.6",
39
+ "@vitejs/plugin-react": "^4.6.0",
40
+ "eslint": "^9.30.1",
41
+ "eslint-plugin-react-hooks": "^5.2.0",
42
+ "eslint-plugin-react-refresh": "^0.4.20",
43
+ "globals": "^16.3.0",
44
+ "typescript": "~5.8.3",
45
+ "typescript-eslint": "^8.35.1",
46
+ "vite": "^7.0.4"
47
+ },
48
+ "repository": {
49
+ "type": "git",
50
+ "url": "git+https://github.com/creopse/toolkit.git"
51
+ },
52
+ "keywords": [],
53
+ "bugs": {
54
+ "url": "https://github.com/creopse/toolkit/issues"
55
+ },
56
+ "homepage": "https://github.com/creopse/toolkit#readme",
57
+ "publishConfig": {
58
+ "access": "public"
59
+ }
60
+ }