countrynormalizer 0.1.2 → 0.2.4

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.
@@ -0,0 +1,8 @@
1
+ import type { AllCountryFields } from "../types/core";
2
+ /**
3
+ * Dumps all countries and their data fields to a massive array of objects.
4
+ * This may be helpful for understanding the data shapes, visualizing all the data, or shaping information in ways the package functions/APIs do not support natively.
5
+ *
6
+ * @returns {AllCountryFields[]}
7
+ */
8
+ export declare const getAllCountries: () => AllCountryFields[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "countrynormalizer",
3
- "version": "0.1.2",
3
+ "version": "0.2.4",
4
4
  "description": "ISO 3166 country data lookup and normalization. Convert between alpha-2, alpha-3, ISO numbers, country names, calling codes, flag emojis, TLDs, continents, and demonyms.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -51,7 +51,7 @@
51
51
  "license": "MIT",
52
52
  "repository": {
53
53
  "type": "git",
54
- "url": "https://github.com/JackMcE/CountryNormalizer.git"
54
+ "url": "git+https://github.com/JackMcE/CountryNormalizer.git"
55
55
  },
56
56
  "homepage": "https://github.com/JackMcE/CountryNormalizer#readme",
57
57
  "bugs": {