@tempots/std 0.10.3 → 0.10.5
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 +54 -14
package/package.json
CHANGED
|
@@ -1,53 +1,53 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tempots/std",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
|
-
"array": {
|
|
6
|
+
"./array": {
|
|
7
7
|
"import": "./array.js",
|
|
8
8
|
"require": "./array.cjs"
|
|
9
9
|
},
|
|
10
|
-
"bigint": {
|
|
10
|
+
"./bigint": {
|
|
11
11
|
"import": "./bigint.js",
|
|
12
12
|
"require": "./bigint.cjs"
|
|
13
13
|
},
|
|
14
|
-
"boolean": {
|
|
14
|
+
"./boolean": {
|
|
15
15
|
"import": "./boolean.js",
|
|
16
16
|
"require": "./boolean.cjs"
|
|
17
17
|
},
|
|
18
|
-
"domain": {
|
|
18
|
+
"./domain": {
|
|
19
19
|
"import": "./domain.js",
|
|
20
20
|
"require": "./domain.cjs"
|
|
21
21
|
},
|
|
22
|
-
"equal": {
|
|
22
|
+
"./equal": {
|
|
23
23
|
"import": "./equal.js",
|
|
24
24
|
"require": "./equal.cjs"
|
|
25
25
|
},
|
|
26
|
-
"function": {
|
|
26
|
+
"./function": {
|
|
27
27
|
"import": "./function.js",
|
|
28
28
|
"require": "./function.cjs"
|
|
29
29
|
},
|
|
30
|
-
"index": {
|
|
30
|
+
"./index": {
|
|
31
31
|
"import": "./index.js",
|
|
32
32
|
"require": "./index.cjs"
|
|
33
33
|
},
|
|
34
|
-
"maybe": {
|
|
34
|
+
"./maybe": {
|
|
35
35
|
"import": "./maybe.js",
|
|
36
36
|
"require": "./maybe.cjs"
|
|
37
37
|
},
|
|
38
|
-
"number": {
|
|
38
|
+
"./number": {
|
|
39
39
|
"import": "./number.js",
|
|
40
40
|
"require": "./number.cjs"
|
|
41
41
|
},
|
|
42
|
-
"object": {
|
|
42
|
+
"./object": {
|
|
43
43
|
"import": "./object.js",
|
|
44
44
|
"require": "./object.cjs"
|
|
45
45
|
},
|
|
46
|
-
"regexp": {
|
|
46
|
+
"./regexp": {
|
|
47
47
|
"import": "./regexp.js",
|
|
48
48
|
"require": "./regexp.cjs"
|
|
49
49
|
},
|
|
50
|
-
"string": {
|
|
50
|
+
"./string": {
|
|
51
51
|
"import": "./string.js",
|
|
52
52
|
"require": "./string.cjs"
|
|
53
53
|
}
|
|
@@ -60,5 +60,45 @@
|
|
|
60
60
|
"bugs": {
|
|
61
61
|
"url": "https://github.com/fponticelli/tempots/issues"
|
|
62
62
|
},
|
|
63
|
-
"homepage": "https://github.com/fponticelli/tempots#readme"
|
|
63
|
+
"homepage": "https://github.com/fponticelli/tempots#readme",
|
|
64
|
+
"typesVersions": {
|
|
65
|
+
"*": {
|
|
66
|
+
"array": [
|
|
67
|
+
"./array.d.ts"
|
|
68
|
+
],
|
|
69
|
+
"bigint": [
|
|
70
|
+
"./bigint.d.ts"
|
|
71
|
+
],
|
|
72
|
+
"boolean": [
|
|
73
|
+
"./boolean.d.ts"
|
|
74
|
+
],
|
|
75
|
+
"domain": [
|
|
76
|
+
"./domain.d.ts"
|
|
77
|
+
],
|
|
78
|
+
"equal": [
|
|
79
|
+
"./equal.d.ts"
|
|
80
|
+
],
|
|
81
|
+
"function": [
|
|
82
|
+
"./function.d.ts"
|
|
83
|
+
],
|
|
84
|
+
"index": [
|
|
85
|
+
"./index.d.ts"
|
|
86
|
+
],
|
|
87
|
+
"maybe": [
|
|
88
|
+
"./maybe.d.ts"
|
|
89
|
+
],
|
|
90
|
+
"number": [
|
|
91
|
+
"./number.d.ts"
|
|
92
|
+
],
|
|
93
|
+
"object": [
|
|
94
|
+
"./object.d.ts"
|
|
95
|
+
],
|
|
96
|
+
"regexp": [
|
|
97
|
+
"./regexp.d.ts"
|
|
98
|
+
],
|
|
99
|
+
"string": [
|
|
100
|
+
"./string.d.ts"
|
|
101
|
+
]
|
|
102
|
+
}
|
|
103
|
+
}
|
|
64
104
|
}
|