{
    "name": "@theorchard/countries",
    "version": "3.0.1",
    "description": "Common country list",
    "author": "The Orchard",
    "main": "dist/cjs/src/index.js",
    "module": "dist/esm/src/index.js",
    "types": "dist/esm/src/index.d.ts",
    "exports": {
        ".": {
            "import": "./dist/esm/src/index.js",
            "require": "./dist/cjs/src/index.js"
        }
    },
    "publishConfig": {
        "registry": "https://npm.pkg.github.com"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/theorchard/orchard-suite.git"
    },
    "prettier": "@theorchard/prettier-config",
    "eslintConfig": {
        "extends": "@theorchard/ts-prettier"
    },
    "scripts": {
        "build:cjs": "tsc --build ./tsconfig.cjs.json",
        "build:esm": "tsc --build ./tsconfig.esm.json",
        "build": "pnpm run build:esm && pnpm run build:cjs",
        "clean": "rm -rf dist & rm -rf .cache",
        "format": "prettier --write .",
        "format:check": "prettier --check .",
        "generate:countries": "ts-node -O '{\"module\":\"commonjs\"}' scripts/createCountryIndex.ts",
        "test:unit": "jest",
        "lint": "eslint --ext .js,.ts,.tsx,.jsx --cache --cache-location .cache/.eslintcache src",
        "test": "pnpm lint && pnpm test:unit"
    },
    "devDependencies": {
        "country-json": "^2.3.0",
        "i18n-iso-countries": "^7.14.0"
    },
    "files": [
        "dist"
    ]
}
