@mailwoman/codex 7.1.0 → 7.2.0
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 +35 -71
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mailwoman/codex",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.2.0",
|
|
4
4
|
"description": "Per-address-system postal reference data + branded types (USPS street suffixes, US ZIP codes). Pure, zero-runtime-dep — the shared canonical home for postal-system primitives the parser, resolver, and synthesis layers all reach for.",
|
|
5
5
|
"license": "AGPL-3.0-only OR LicenseRef-Commercial",
|
|
6
6
|
"repository": {
|
|
@@ -18,104 +18,68 @@
|
|
|
18
18
|
"exports": {
|
|
19
19
|
"./package.json": "./package.json",
|
|
20
20
|
".": {
|
|
21
|
-
"
|
|
22
|
-
"default": "./out/index.js"
|
|
21
|
+
"node": "./index.ts",
|
|
22
|
+
"default": "./out/index.js",
|
|
23
|
+
"types": "./out/index.d.ts"
|
|
23
24
|
},
|
|
24
25
|
"./country": {
|
|
25
|
-
"
|
|
26
|
-
"default": "./out/country/index.js"
|
|
26
|
+
"node": "./country/index.ts",
|
|
27
|
+
"default": "./out/country/index.js",
|
|
28
|
+
"types": "./out/country/index.d.ts"
|
|
27
29
|
},
|
|
28
30
|
"./us": {
|
|
29
|
-
"
|
|
30
|
-
"default": "./out/us/index.js"
|
|
31
|
+
"node": "./us/index.ts",
|
|
32
|
+
"default": "./out/us/index.js",
|
|
33
|
+
"types": "./out/us/index.d.ts"
|
|
31
34
|
},
|
|
32
35
|
"./de": {
|
|
33
|
-
"
|
|
34
|
-
"default": "./out/de/index.js"
|
|
36
|
+
"node": "./de/index.ts",
|
|
37
|
+
"default": "./out/de/index.js",
|
|
38
|
+
"types": "./out/de/index.d.ts"
|
|
35
39
|
},
|
|
36
40
|
"./fr": {
|
|
37
|
-
"
|
|
38
|
-
"default": "./out/fr/index.js"
|
|
41
|
+
"node": "./fr/index.ts",
|
|
42
|
+
"default": "./out/fr/index.js",
|
|
43
|
+
"types": "./out/fr/index.d.ts"
|
|
39
44
|
},
|
|
40
45
|
"./ca": {
|
|
41
|
-
"
|
|
42
|
-
"default": "./out/ca/index.js"
|
|
46
|
+
"node": "./ca/index.ts",
|
|
47
|
+
"default": "./out/ca/index.js",
|
|
48
|
+
"types": "./out/ca/index.d.ts"
|
|
43
49
|
},
|
|
44
50
|
"./gb": {
|
|
45
|
-
"
|
|
46
|
-
"default": "./out/gb/index.js"
|
|
51
|
+
"node": "./gb/index.ts",
|
|
52
|
+
"default": "./out/gb/index.js",
|
|
53
|
+
"types": "./out/gb/index.d.ts"
|
|
47
54
|
},
|
|
48
55
|
"./jp": {
|
|
49
|
-
"
|
|
50
|
-
"default": "./out/jp/index.js"
|
|
56
|
+
"node": "./jp/index.ts",
|
|
57
|
+
"default": "./out/jp/index.js",
|
|
58
|
+
"types": "./out/jp/index.d.ts"
|
|
51
59
|
},
|
|
52
60
|
"./au": {
|
|
53
|
-
"
|
|
54
|
-
"default": "./out/au/index.js"
|
|
61
|
+
"node": "./au/index.ts",
|
|
62
|
+
"default": "./out/au/index.js",
|
|
63
|
+
"types": "./out/au/index.d.ts"
|
|
55
64
|
},
|
|
56
65
|
"./nz": {
|
|
57
|
-
"
|
|
58
|
-
"default": "./out/nz/index.js"
|
|
66
|
+
"node": "./nz/index.ts",
|
|
67
|
+
"default": "./out/nz/index.js",
|
|
68
|
+
"types": "./out/nz/index.d.ts"
|
|
59
69
|
},
|
|
60
70
|
"./tools": {
|
|
61
|
-
"
|
|
62
|
-
"default": "./out/tools/index.js"
|
|
71
|
+
"node": "./tools/index.ts",
|
|
72
|
+
"default": "./out/tools/index.js",
|
|
73
|
+
"types": "./out/tools/index.d.ts"
|
|
63
74
|
}
|
|
64
75
|
},
|
|
65
76
|
"publishConfig": {
|
|
66
|
-
"exports": {
|
|
67
|
-
"./package.json": "./package.json",
|
|
68
|
-
".": {
|
|
69
|
-
"types": "./out/index.d.ts",
|
|
70
|
-
"default": "./out/index.js"
|
|
71
|
-
},
|
|
72
|
-
"./country": {
|
|
73
|
-
"types": "./out/country/index.d.ts",
|
|
74
|
-
"default": "./out/country/index.js"
|
|
75
|
-
},
|
|
76
|
-
"./us": {
|
|
77
|
-
"types": "./out/us/index.d.ts",
|
|
78
|
-
"default": "./out/us/index.js"
|
|
79
|
-
},
|
|
80
|
-
"./de": {
|
|
81
|
-
"types": "./out/de/index.d.ts",
|
|
82
|
-
"default": "./out/de/index.js"
|
|
83
|
-
},
|
|
84
|
-
"./fr": {
|
|
85
|
-
"types": "./out/fr/index.d.ts",
|
|
86
|
-
"default": "./out/fr/index.js"
|
|
87
|
-
},
|
|
88
|
-
"./ca": {
|
|
89
|
-
"types": "./out/ca/index.d.ts",
|
|
90
|
-
"default": "./out/ca/index.js"
|
|
91
|
-
},
|
|
92
|
-
"./gb": {
|
|
93
|
-
"types": "./out/gb/index.d.ts",
|
|
94
|
-
"default": "./out/gb/index.js"
|
|
95
|
-
},
|
|
96
|
-
"./jp": {
|
|
97
|
-
"types": "./out/jp/index.d.ts",
|
|
98
|
-
"default": "./out/jp/index.js"
|
|
99
|
-
},
|
|
100
|
-
"./au": {
|
|
101
|
-
"types": "./out/au/index.d.ts",
|
|
102
|
-
"default": "./out/au/index.js"
|
|
103
|
-
},
|
|
104
|
-
"./nz": {
|
|
105
|
-
"types": "./out/nz/index.d.ts",
|
|
106
|
-
"default": "./out/nz/index.js"
|
|
107
|
-
},
|
|
108
|
-
"./tools": {
|
|
109
|
-
"types": "./out/tools/index.d.ts",
|
|
110
|
-
"default": "./out/tools/index.js"
|
|
111
|
-
}
|
|
112
|
-
},
|
|
113
77
|
"access": "public"
|
|
114
78
|
},
|
|
115
79
|
"dependencies": {
|
|
116
80
|
"type-fest": "^5.8.0"
|
|
117
81
|
},
|
|
118
82
|
"devDependencies": {
|
|
119
|
-
"@mailwoman/annotations": "7.
|
|
83
|
+
"@mailwoman/annotations": "7.2.0"
|
|
120
84
|
}
|
|
121
85
|
}
|