# countries-kit

**Lightweight all-in-one country data including time zones, phone codes, flags, currency, and more.**

## ✨ Features

-  Country names (common & official)
-  ISO codes
-  Phone dialing codes (e.g. `+92`)
-  Capital cities
-  Time zones
-  Languages
-  Flags
-  Currency code
-  Geographic data (latitude, longitude, region, continent)

## 📦 Installation

```bash
npm install countries-kit
```

```bash
yarn add countries-kit
```

## 🚀 Usage

```javascript
import { countries } from 'countries-kit'

// Get country data
const afghanistan = countries.Afghanistan
console.log(afghanistan.name) // 'Afghanistan'
console.log(afghanistan.flag) // '🇦🇫'
console.log(afghanistan.phone) // 93
console.log(afghanistan.capital) // 'Kabul'
console.log(afghanistan.timeZone) // 'Asia/Kabul'
console.log(afghanistan.currency) // 'AFN'
console.log(afghanistan.alpha) // 'AF'
console.log(afghanistan.region) // 'South Asia'
console.log(afghanistan.continent) // 'Asia'
console.log(afghanistan.languages) // ['ps', 'uz', 'tk']
console.log(afghanistan.latitude) // '33.93911'
console.log(afghanistan.longitude) // '67.709953'
```
