@instincthub/react-ui 0.1.2 → 0.1.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 +31 -20
package/package.json
CHANGED
|
@@ -1,58 +1,69 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instincthub/react-ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "InstinctHub React UI components and assets in TypeScript",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
|
-
"module": "dist/src/index.
|
|
6
|
+
"module": "dist/src/index.js",
|
|
7
7
|
"types": "dist/src/types/index.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
"*": {
|
|
10
|
+
"*": ["dist/src/types/index.d.ts"],
|
|
11
|
+
"ssr": ["dist/src/types/ssr.d.ts"],
|
|
12
|
+
"types": ["dist/src/types/types/index.d.ts"],
|
|
13
|
+
"types/*": ["dist/src/types/types/*"],
|
|
14
|
+
"lib": ["dist/src/types/components/lib/index.d.ts"],
|
|
15
|
+
"lib/*": ["dist/src/types/components/lib/*"],
|
|
16
|
+
"redux": ["dist/src/types/components/lib/redux/index.d.ts"],
|
|
17
|
+
"cursors": ["dist/src/types/components/cursors/index.d.ts"]
|
|
18
|
+
}
|
|
19
|
+
},
|
|
8
20
|
"files": [
|
|
9
21
|
"dist"
|
|
10
22
|
],
|
|
11
23
|
"exports": {
|
|
12
24
|
".": {
|
|
25
|
+
"types": "./dist/src/types/index.d.ts",
|
|
13
26
|
"import": "./dist/src/index.js",
|
|
14
|
-
"require": "./dist/src/index.js"
|
|
15
|
-
"types": "./dist/src/types/index.d.ts"
|
|
27
|
+
"require": "./dist/src/index.js"
|
|
16
28
|
},
|
|
17
29
|
"./ssr": {
|
|
30
|
+
"types": "./dist/src/types/ssr.d.ts",
|
|
18
31
|
"import": "./dist/src/ssr.js",
|
|
19
|
-
"require": "./dist/src/ssr.js"
|
|
20
|
-
"types": "./dist/src/types/ssr.d.ts"
|
|
32
|
+
"require": "./dist/src/ssr.js"
|
|
21
33
|
},
|
|
22
34
|
"./types": {
|
|
35
|
+
"types": "./dist/src/types/types/index.d.ts",
|
|
23
36
|
"import": "./dist/src/types/types/index.d.ts",
|
|
24
|
-
"require": "./dist/src/types/types/index.d.ts"
|
|
25
|
-
"types": "./dist/src/types/types/index.d.ts"
|
|
37
|
+
"require": "./dist/src/types/types/index.d.ts"
|
|
26
38
|
},
|
|
27
39
|
"./types/*": {
|
|
40
|
+
"types": "./dist/src/types/types/*",
|
|
28
41
|
"import": "./dist/src/types/types/*",
|
|
29
|
-
"require": "./dist/src/types/types/*"
|
|
30
|
-
"types": "./dist/src/types/types/*"
|
|
42
|
+
"require": "./dist/src/types/types/*"
|
|
31
43
|
},
|
|
32
44
|
"./lib": {
|
|
45
|
+
"types": "./dist/src/types/components/lib/index.d.ts",
|
|
33
46
|
"import": "./dist/src/components/lib/index.js",
|
|
34
|
-
"require": "./dist/src/components/lib/index.js"
|
|
35
|
-
"types": "./dist/src/types/components/lib/index.d.ts"
|
|
47
|
+
"require": "./dist/src/components/lib/index.js"
|
|
36
48
|
},
|
|
37
49
|
"./lib/*": {
|
|
50
|
+
"types": "./dist/src/types/components/lib/*",
|
|
38
51
|
"import": "./dist/src/components/lib/*",
|
|
39
|
-
"require": "./dist/src/components/lib/*"
|
|
40
|
-
"types": "./dist/src/types/components/lib/*"
|
|
52
|
+
"require": "./dist/src/components/lib/*"
|
|
41
53
|
},
|
|
42
54
|
"./redux": {
|
|
55
|
+
"types": "./dist/src/types/components/lib/redux/index.d.ts",
|
|
43
56
|
"import": "./dist/src/components/lib/redux/index.js",
|
|
44
|
-
"require": "./dist/src/components/lib/redux/index.js"
|
|
45
|
-
"types": "./dist/src/types/components/lib/redux/index.d.ts"
|
|
57
|
+
"require": "./dist/src/components/lib/redux/index.js"
|
|
46
58
|
},
|
|
47
59
|
"./cursors": {
|
|
60
|
+
"types": "./dist/src/types/components/cursors/index.d.ts",
|
|
48
61
|
"import": "./dist/src/components/cursors/index.js",
|
|
49
|
-
"require": "./dist/src/components/cursors/index.js"
|
|
50
|
-
"types": "./dist/src/types/components/cursors/index.d.ts"
|
|
62
|
+
"require": "./dist/src/components/cursors/index.js"
|
|
51
63
|
},
|
|
52
64
|
"./assets/*": {
|
|
53
65
|
"import": "./dist/src/assets/*",
|
|
54
|
-
"require": "./dist/src/assets/*"
|
|
55
|
-
"types": "./dist/src/assets/*"
|
|
66
|
+
"require": "./dist/src/assets/*"
|
|
56
67
|
}
|
|
57
68
|
},
|
|
58
69
|
"scripts": {
|