@instincthub/react-ui 0.1.30 → 0.1.32
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/dist/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/endOfMonth.js +2 -0
- package/dist/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/endOfMonth.js.map +1 -0
- package/dist/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/endOfWeek.js +2 -0
- package/dist/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/endOfWeek.js.map +1 -0
- package/dist/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/subDays.js +2 -0
- package/dist/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/subDays.js.map +1 -0
- package/dist/node_modules/.pnpm/lucide-react@0.525.0_react@19.2.0/node_modules/lucide-react/dist/esm/icons/chevron-down.js +2 -2
- package/dist/node_modules/.pnpm/lucide-react@0.525.0_react@19.2.0/node_modules/lucide-react/dist/esm/icons/chevron-down.js.map +1 -1
- package/dist/node_modules/.pnpm/lucide-react@0.525.0_react@19.2.0/node_modules/lucide-react/dist/esm/icons/loader-circle.js +1 -1
- package/dist/node_modules/.pnpm/lucide-react@0.525.0_react@19.2.0/node_modules/lucide-react/dist/esm/icons/loader-circle.js.map +1 -1
- package/dist/node_modules/.pnpm/lucide-react@0.525.0_react@19.2.0/node_modules/lucide-react/dist/esm/icons/search.js +2 -2
- package/dist/node_modules/.pnpm/lucide-react@0.525.0_react@19.2.0/node_modules/lucide-react/dist/esm/icons/search.js.map +1 -1
- package/dist/node_modules/.pnpm/lucide-react@0.525.0_react@19.2.0/node_modules/lucide-react/dist/esm/icons/x.js +1 -1
- package/dist/node_modules/.pnpm/lucide-react@0.525.0_react@19.2.0/node_modules/lucide-react/dist/esm/icons/x.js.map +1 -1
- package/dist/src/assets/css/forms/date-range-picker.css +184 -0
- package/dist/src/assets/css/forms/datetime-picker.css +110 -111
- package/dist/src/assets/css/forms/forms-index.css +2 -0
- package/dist/src/assets/css/forms/input-fields.css +1 -0
- package/dist/src/assets/css/forms/search-objects-from-db.css +2 -2
- package/dist/src/assets/css/forms/searchable-dropdown.css +187 -0
- package/dist/src/assets/css/ui/tables.css +10 -6
- package/dist/src/components/forms/DateRangePicker.js +2 -0
- package/dist/src/components/forms/DateRangePicker.js.map +1 -0
- package/dist/src/components/forms/DateTimePicker.js +1 -1
- package/dist/src/components/forms/SearchableDropdown.js +2 -0
- package/dist/src/components/forms/SearchableDropdown.js.map +1 -0
- package/dist/src/components/ui/ComponentLists.js +1 -1
- package/dist/src/index.js +1 -1
- package/dist/src/types/components/forms/DateRangePicker.d.ts +19 -0
- package/dist/src/types/components/forms/SearchableDropdown.d.ts +56 -0
- package/dist/src/types/components/forms/index.d.ts +2 -0
- package/dist/src/types/index.d.ts +2 -0
- package/dist/src/types/types/index.d.ts +50 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +204 -203
package/package.json
CHANGED
|
@@ -1,203 +1,204 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@instincthub/react-ui",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "InstinctHub React UI components and assets in TypeScript",
|
|
5
|
-
"main": "dist/src/index.js",
|
|
6
|
-
"module": "dist/src/index.js",
|
|
7
|
-
"types": "dist/src/types/index.d.ts",
|
|
8
|
-
"typesVersions": {
|
|
9
|
-
"*": {
|
|
10
|
-
"*": [
|
|
11
|
-
"dist/src/types/index.d.ts"
|
|
12
|
-
],
|
|
13
|
-
"ssr": [
|
|
14
|
-
"dist/src/types/ssr.d.ts"
|
|
15
|
-
],
|
|
16
|
-
"types": [
|
|
17
|
-
"dist/src/types/types/index.d.ts"
|
|
18
|
-
],
|
|
19
|
-
"types/*": [
|
|
20
|
-
"dist/src/types/types/*"
|
|
21
|
-
],
|
|
22
|
-
"components/": [
|
|
23
|
-
"dist/src/types/components/index.ts"
|
|
24
|
-
],
|
|
25
|
-
"components/*": [
|
|
26
|
-
"dist/src/types/components/*"
|
|
27
|
-
],
|
|
28
|
-
"components/auth": [
|
|
29
|
-
"dist/src/types/components/auth/index.ts"
|
|
30
|
-
],
|
|
31
|
-
"components/auth/*": [
|
|
32
|
-
"dist/src/types/components/auth/*"
|
|
33
|
-
],
|
|
34
|
-
"lib": [
|
|
35
|
-
"dist/src/types/components/lib/index.d.ts"
|
|
36
|
-
],
|
|
37
|
-
"lib/*": [
|
|
38
|
-
"dist/src/types/components/lib/*"
|
|
39
|
-
],
|
|
40
|
-
"redux": [
|
|
41
|
-
"dist/src/types/components/lib/redux/index.d.ts"
|
|
42
|
-
],
|
|
43
|
-
"cursors": [
|
|
44
|
-
"dist/src/types/components/cursors/index.d.ts"
|
|
45
|
-
]
|
|
46
|
-
}
|
|
47
|
-
},
|
|
48
|
-
"files": [
|
|
49
|
-
"dist"
|
|
50
|
-
],
|
|
51
|
-
"exports": {
|
|
52
|
-
".": {
|
|
53
|
-
"types": "./dist/src/types/index.d.ts",
|
|
54
|
-
"import": "./dist/src/index.js",
|
|
55
|
-
"require": "./dist/src/index.js"
|
|
56
|
-
},
|
|
57
|
-
"./ssr": {
|
|
58
|
-
"types": "./dist/src/types/ssr.d.ts",
|
|
59
|
-
"import": "./dist/src/ssr.js",
|
|
60
|
-
"require": "./dist/src/ssr.js"
|
|
61
|
-
},
|
|
62
|
-
"./types": {
|
|
63
|
-
"types": "./dist/src/types/types/index.d.ts",
|
|
64
|
-
"import": "./dist/src/types/types/index.d.ts",
|
|
65
|
-
"require": "./dist/src/types/types/index.d.ts"
|
|
66
|
-
},
|
|
67
|
-
"./types/*": {
|
|
68
|
-
"types": "./dist/src/types/types/*",
|
|
69
|
-
"import": "./dist/src/types/types/*",
|
|
70
|
-
"require": "./dist/src/types/types/*"
|
|
71
|
-
},
|
|
72
|
-
"./lib": {
|
|
73
|
-
"types": "./dist/src/types/components/lib/index.d.ts",
|
|
74
|
-
"import": "./dist/src/components/lib/index.js",
|
|
75
|
-
"require": "./dist/src/components/lib/index.js"
|
|
76
|
-
},
|
|
77
|
-
"./lib/*": {
|
|
78
|
-
"types": "./dist/src/types/components/lib/*",
|
|
79
|
-
"import": "./dist/src/components/lib/*",
|
|
80
|
-
"require": "./dist/src/components/lib/*"
|
|
81
|
-
},
|
|
82
|
-
"./redux": {
|
|
83
|
-
"types": "./dist/src/types/components/lib/redux/index.d.ts",
|
|
84
|
-
"import": "./dist/src/components/lib/redux/index.js",
|
|
85
|
-
"require": "./dist/src/components/lib/redux/index.js"
|
|
86
|
-
},
|
|
87
|
-
"./cursors": {
|
|
88
|
-
"types": "./dist/src/types/components/cursors/index.d.ts",
|
|
89
|
-
"import": "./dist/src/components/cursors/index.js",
|
|
90
|
-
"require": "./dist/src/components/cursors/index.js"
|
|
91
|
-
},
|
|
92
|
-
"./assets/*": {
|
|
93
|
-
"import": "./dist/src/assets/*",
|
|
94
|
-
"require": "./dist/src/assets/*"
|
|
95
|
-
}
|
|
96
|
-
},
|
|
97
|
-
"scripts": {
|
|
98
|
-
"dev": "cd src/__examples__ && next dev",
|
|
99
|
-
"build": "cd src/__examples__ && next build",
|
|
100
|
-
"start": "cd src/__examples__ && next start",
|
|
101
|
-
"rollup": "rollup -c",
|
|
102
|
-
"link-ui": "npm unlink @instincthub/react-ui && rm -rf dist && rollup -c && npm link",
|
|
103
|
-
"unlink-ui-linux": "npm unlink @instincthub/react-ui",
|
|
104
|
-
"link-ui-win": "npm unlink @instincthub/react-ui && rmdir /s /q dist && rollup -c && npm link",
|
|
105
|
-
"test": "echo \"Error: no test specified\" && exit 1",
|
|
106
|
-
"yalc-link-ui": "rm -rf dist && rollup -c && yalc publish",
|
|
107
|
-
"yalc-link-ui-win": "rmdir /s /q dist && rollup -c && yalc publish",
|
|
108
|
-
"yalc-update-ui": "rmdir /s /q dist && rollup -c && yalc push"
|
|
109
|
-
},
|
|
110
|
-
"dependencies": {
|
|
111
|
-
"@tiptap/extension-character-count": "^2.11.5",
|
|
112
|
-
"@tiptap/extension-code-block": "^2.11.5",
|
|
113
|
-
"@tiptap/extension-highlight": "^2.11.5",
|
|
114
|
-
"@tiptap/extension-image": "^2.11.5",
|
|
115
|
-
"@tiptap/extension-link": "^2.11.5",
|
|
116
|
-
"@tiptap/extension-placeholder": "^2.11.5",
|
|
117
|
-
"@tiptap/extension-table": "^2.11.5",
|
|
118
|
-
"@tiptap/extension-table-cell": "^2.11.5",
|
|
119
|
-
"@tiptap/extension-table-header": "^2.11.5",
|
|
120
|
-
"@tiptap/extension-table-row": "^2.11.5",
|
|
121
|
-
"@tiptap/extension-task-item": "^2.11.5",
|
|
122
|
-
"@tiptap/extension-task-list": "^2.11.5",
|
|
123
|
-
"@tiptap/react": "^2.11.7",
|
|
124
|
-
"@tiptap/starter-kit": "^2.11.5",
|
|
125
|
-
"date-fns": "^4.1.0",
|
|
126
|
-
"dompurify": "^3.2.4",
|
|
127
|
-
"html2canvas": "^1.4.1",
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"
|
|
131
|
-
"
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
"@aws-sdk/
|
|
138
|
-
"@
|
|
139
|
-
"@emotion/
|
|
140
|
-
"@
|
|
141
|
-
"@mui/material": "^7.0.0",
|
|
142
|
-
"@
|
|
143
|
-
"@
|
|
144
|
-
"
|
|
145
|
-
"
|
|
146
|
-
"
|
|
147
|
-
"
|
|
148
|
-
"react
|
|
149
|
-
"react-
|
|
150
|
-
"react-
|
|
151
|
-
"
|
|
152
|
-
"
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
"@babel/
|
|
157
|
-
"@babel/preset-
|
|
158
|
-
"@babel/preset-
|
|
159
|
-
"@
|
|
160
|
-
"@
|
|
161
|
-
"@rollup/plugin-
|
|
162
|
-
"@rollup/plugin-
|
|
163
|
-
"@rollup/plugin-
|
|
164
|
-
"@rollup/plugin-
|
|
165
|
-
"@
|
|
166
|
-
"@types/
|
|
167
|
-
"@types/react
|
|
168
|
-
"@types/react-
|
|
169
|
-
"@types/
|
|
170
|
-
"@types/
|
|
171
|
-
"
|
|
172
|
-
"
|
|
173
|
-
"
|
|
174
|
-
"rollup
|
|
175
|
-
"rollup-plugin-
|
|
176
|
-
"rollup-plugin-
|
|
177
|
-
"rollup-plugin-
|
|
178
|
-
"
|
|
179
|
-
"
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
"
|
|
184
|
-
"
|
|
185
|
-
"
|
|
186
|
-
"
|
|
187
|
-
"
|
|
188
|
-
"instincthub
|
|
189
|
-
"instincthub-
|
|
190
|
-
"instincthub-
|
|
191
|
-
"instincthub-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
"
|
|
195
|
-
"
|
|
196
|
-
|
|
197
|
-
"
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@instincthub/react-ui",
|
|
3
|
+
"version": "0.1.32",
|
|
4
|
+
"description": "InstinctHub React UI components and assets in TypeScript",
|
|
5
|
+
"main": "dist/src/index.js",
|
|
6
|
+
"module": "dist/src/index.js",
|
|
7
|
+
"types": "dist/src/types/index.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
"*": {
|
|
10
|
+
"*": [
|
|
11
|
+
"dist/src/types/index.d.ts"
|
|
12
|
+
],
|
|
13
|
+
"ssr": [
|
|
14
|
+
"dist/src/types/ssr.d.ts"
|
|
15
|
+
],
|
|
16
|
+
"types": [
|
|
17
|
+
"dist/src/types/types/index.d.ts"
|
|
18
|
+
],
|
|
19
|
+
"types/*": [
|
|
20
|
+
"dist/src/types/types/*"
|
|
21
|
+
],
|
|
22
|
+
"components/": [
|
|
23
|
+
"dist/src/types/components/index.ts"
|
|
24
|
+
],
|
|
25
|
+
"components/*": [
|
|
26
|
+
"dist/src/types/components/*"
|
|
27
|
+
],
|
|
28
|
+
"components/auth": [
|
|
29
|
+
"dist/src/types/components/auth/index.ts"
|
|
30
|
+
],
|
|
31
|
+
"components/auth/*": [
|
|
32
|
+
"dist/src/types/components/auth/*"
|
|
33
|
+
],
|
|
34
|
+
"lib": [
|
|
35
|
+
"dist/src/types/components/lib/index.d.ts"
|
|
36
|
+
],
|
|
37
|
+
"lib/*": [
|
|
38
|
+
"dist/src/types/components/lib/*"
|
|
39
|
+
],
|
|
40
|
+
"redux": [
|
|
41
|
+
"dist/src/types/components/lib/redux/index.d.ts"
|
|
42
|
+
],
|
|
43
|
+
"cursors": [
|
|
44
|
+
"dist/src/types/components/cursors/index.d.ts"
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"files": [
|
|
49
|
+
"dist"
|
|
50
|
+
],
|
|
51
|
+
"exports": {
|
|
52
|
+
".": {
|
|
53
|
+
"types": "./dist/src/types/index.d.ts",
|
|
54
|
+
"import": "./dist/src/index.js",
|
|
55
|
+
"require": "./dist/src/index.js"
|
|
56
|
+
},
|
|
57
|
+
"./ssr": {
|
|
58
|
+
"types": "./dist/src/types/ssr.d.ts",
|
|
59
|
+
"import": "./dist/src/ssr.js",
|
|
60
|
+
"require": "./dist/src/ssr.js"
|
|
61
|
+
},
|
|
62
|
+
"./types": {
|
|
63
|
+
"types": "./dist/src/types/types/index.d.ts",
|
|
64
|
+
"import": "./dist/src/types/types/index.d.ts",
|
|
65
|
+
"require": "./dist/src/types/types/index.d.ts"
|
|
66
|
+
},
|
|
67
|
+
"./types/*": {
|
|
68
|
+
"types": "./dist/src/types/types/*",
|
|
69
|
+
"import": "./dist/src/types/types/*",
|
|
70
|
+
"require": "./dist/src/types/types/*"
|
|
71
|
+
},
|
|
72
|
+
"./lib": {
|
|
73
|
+
"types": "./dist/src/types/components/lib/index.d.ts",
|
|
74
|
+
"import": "./dist/src/components/lib/index.js",
|
|
75
|
+
"require": "./dist/src/components/lib/index.js"
|
|
76
|
+
},
|
|
77
|
+
"./lib/*": {
|
|
78
|
+
"types": "./dist/src/types/components/lib/*",
|
|
79
|
+
"import": "./dist/src/components/lib/*",
|
|
80
|
+
"require": "./dist/src/components/lib/*"
|
|
81
|
+
},
|
|
82
|
+
"./redux": {
|
|
83
|
+
"types": "./dist/src/types/components/lib/redux/index.d.ts",
|
|
84
|
+
"import": "./dist/src/components/lib/redux/index.js",
|
|
85
|
+
"require": "./dist/src/components/lib/redux/index.js"
|
|
86
|
+
},
|
|
87
|
+
"./cursors": {
|
|
88
|
+
"types": "./dist/src/types/components/cursors/index.d.ts",
|
|
89
|
+
"import": "./dist/src/components/cursors/index.js",
|
|
90
|
+
"require": "./dist/src/components/cursors/index.js"
|
|
91
|
+
},
|
|
92
|
+
"./assets/*": {
|
|
93
|
+
"import": "./dist/src/assets/*",
|
|
94
|
+
"require": "./dist/src/assets/*"
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"scripts": {
|
|
98
|
+
"dev": "cd src/__examples__ && next dev",
|
|
99
|
+
"build": "cd src/__examples__ && next build",
|
|
100
|
+
"start": "cd src/__examples__ && next start",
|
|
101
|
+
"rollup": "rollup -c",
|
|
102
|
+
"link-ui": "npm unlink @instincthub/react-ui && rm -rf dist && rollup -c && npm link",
|
|
103
|
+
"unlink-ui-linux": "npm unlink @instincthub/react-ui",
|
|
104
|
+
"link-ui-win": "npm unlink @instincthub/react-ui && rmdir /s /q dist && rollup -c && npm link",
|
|
105
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
106
|
+
"yalc-link-ui": "rm -rf dist && rollup -c && yalc publish",
|
|
107
|
+
"yalc-link-ui-win": "rmdir /s /q dist && rollup -c && yalc publish",
|
|
108
|
+
"yalc-update-ui": "rmdir /s /q dist && rollup -c && yalc push"
|
|
109
|
+
},
|
|
110
|
+
"dependencies": {
|
|
111
|
+
"@tiptap/extension-character-count": "^2.11.5",
|
|
112
|
+
"@tiptap/extension-code-block": "^2.11.5",
|
|
113
|
+
"@tiptap/extension-highlight": "^2.11.5",
|
|
114
|
+
"@tiptap/extension-image": "^2.11.5",
|
|
115
|
+
"@tiptap/extension-link": "^2.11.5",
|
|
116
|
+
"@tiptap/extension-placeholder": "^2.11.5",
|
|
117
|
+
"@tiptap/extension-table": "^2.11.5",
|
|
118
|
+
"@tiptap/extension-table-cell": "^2.11.5",
|
|
119
|
+
"@tiptap/extension-table-header": "^2.11.5",
|
|
120
|
+
"@tiptap/extension-table-row": "^2.11.5",
|
|
121
|
+
"@tiptap/extension-task-item": "^2.11.5",
|
|
122
|
+
"@tiptap/extension-task-list": "^2.11.5",
|
|
123
|
+
"@tiptap/react": "^2.11.7",
|
|
124
|
+
"@tiptap/starter-kit": "^2.11.5",
|
|
125
|
+
"date-fns": "^4.1.0",
|
|
126
|
+
"dompurify": "^3.2.4",
|
|
127
|
+
"html2canvas": "^1.4.1",
|
|
128
|
+
"immer": "^11.1.4",
|
|
129
|
+
"lodash": "^4.17.21",
|
|
130
|
+
"lucide-react": "^0.525.0",
|
|
131
|
+
"marked": "^15.0.7",
|
|
132
|
+
"next-auth": "^5.0.0-beta.29",
|
|
133
|
+
"react-dropzone": "^14.3.8",
|
|
134
|
+
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
|
|
135
|
+
},
|
|
136
|
+
"peerDependencies": {
|
|
137
|
+
"@aws-sdk/client-s3": "^3.777.0",
|
|
138
|
+
"@aws-sdk/lib-storage": "^3.777.0",
|
|
139
|
+
"@emotion/react": "^11.14.0",
|
|
140
|
+
"@emotion/styled": "^11.14.0",
|
|
141
|
+
"@mui/icons-material": "^7.0.0",
|
|
142
|
+
"@mui/material": "^7.0.0",
|
|
143
|
+
"@reduxjs/toolkit": "^2.6.1",
|
|
144
|
+
"@types/redux-logger": "^3.0.13",
|
|
145
|
+
"jspdf": "^3.0.1",
|
|
146
|
+
"next": "^15.2.1",
|
|
147
|
+
"primereact": "^10.9.3",
|
|
148
|
+
"react": "^19.0.0",
|
|
149
|
+
"react-dom": "^19.0.0",
|
|
150
|
+
"react-redux": "^9.2.0",
|
|
151
|
+
"react-syntax-highlighter": "^15.6.1",
|
|
152
|
+
"redux-logger": "^3.0.6",
|
|
153
|
+
"styled-components": "^6.1.16"
|
|
154
|
+
},
|
|
155
|
+
"devDependencies": {
|
|
156
|
+
"@babel/core": "^7.18.5",
|
|
157
|
+
"@babel/preset-env": "^7.26.9",
|
|
158
|
+
"@babel/preset-react": "^7.26.3",
|
|
159
|
+
"@babel/preset-typescript": "^7.26.0",
|
|
160
|
+
"@emotion/is-prop-valid": "^1.3.1",
|
|
161
|
+
"@rollup/plugin-babel": "^5.3.1",
|
|
162
|
+
"@rollup/plugin-commonjs": "^22.0.0",
|
|
163
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
164
|
+
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
165
|
+
"@rollup/plugin-typescript": "^8.3.3",
|
|
166
|
+
"@types/lodash": "^4.17.16",
|
|
167
|
+
"@types/react": "^18.3.18",
|
|
168
|
+
"@types/react-dom": "^18.3.5",
|
|
169
|
+
"@types/react-syntax-highlighter": "^15.5.13",
|
|
170
|
+
"@types/rollup-plugin-node-resolve": "^4.1.0",
|
|
171
|
+
"@types/styled-components": "^5.1.25",
|
|
172
|
+
"postcss-import": "^16.1.0",
|
|
173
|
+
"recharts": "^2.15.3",
|
|
174
|
+
"rollup": "^2.75.6",
|
|
175
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
176
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
177
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
178
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
179
|
+
"tslib": "^2.4.0",
|
|
180
|
+
"typescript": "^4.7.4"
|
|
181
|
+
},
|
|
182
|
+
"keywords": [
|
|
183
|
+
"css",
|
|
184
|
+
"instincthub",
|
|
185
|
+
"styles",
|
|
186
|
+
"frontend",
|
|
187
|
+
"react",
|
|
188
|
+
"@instincthub/react-ui",
|
|
189
|
+
"instincthub-react-ui",
|
|
190
|
+
"instincthub-css",
|
|
191
|
+
"instincthub-components",
|
|
192
|
+
"instincthub-react-ui-components"
|
|
193
|
+
],
|
|
194
|
+
"author": "Noah Olatoye",
|
|
195
|
+
"license": "MIT",
|
|
196
|
+
"repository": {
|
|
197
|
+
"type": "git",
|
|
198
|
+
"url": "git+https://github.com/instincthub/instincthub-react-ui.git"
|
|
199
|
+
},
|
|
200
|
+
"bugs": {
|
|
201
|
+
"url": "https://github.com/instincthub/instincthub-react-ui/issues"
|
|
202
|
+
},
|
|
203
|
+
"homepage": "https://github.com/instincthub/instincthub-react-ui#readme"
|
|
204
|
+
}
|