@tw-labs/countries 0.0.1 → 0.0.2

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.
@@ -29,4 +29,4 @@ type FilterSortOptions = {
29
29
  };
30
30
  };
31
31
 
32
- export type { Country as C, FilterSortOptions as F, SortBy as S, CountryWithFlags as a, Currency as b };
32
+ export type { CountryWithFlags as C, FilterSortOptions as F, SortBy as S, Country as a, Currency as b };
@@ -29,4 +29,4 @@ type FilterSortOptions = {
29
29
  };
30
30
  };
31
31
 
32
- export type { Country as C, FilterSortOptions as F, SortBy as S, CountryWithFlags as a, Currency as b };
32
+ export type { CountryWithFlags as C, FilterSortOptions as F, SortBy as S, Country as a, Currency as b };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tw-labs/countries",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Comprehensive country data with utilities and React hook — tree-shakeable, TypeScript-first, framework-agnostic",
5
5
  "keywords": [
6
6
  "countries",
@@ -46,9 +46,13 @@
46
46
  "sideEffects": false,
47
47
  "scripts": {
48
48
  "build": "tsup && node scripts/add-use-client.mjs",
49
- "dev": "tsup --watch"
49
+ "dev": "tsup --watch",
50
+ "lint": "biome check .",
51
+ "lint:fix": "biome check --write .",
52
+ "format": "biome format --write ."
50
53
  },
51
54
  "devDependencies": {
55
+ "@biomejs/biome": "latest",
52
56
  "@types/react": "latest",
53
57
  "tsup": "latest",
54
58
  "typescript": "latest"