{
  "name": "vietnam-address-kit",
  "version": "1.1.1",
  "description": "Production-ready TypeScript toolkit for Vietnam administrative address search, validation, normalization, conversion, and CSV migration.",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "vietnam-address-kit": "dist/cli/index.js",
    "vn-address": "dist/cli/index.js"
  },
  "files": [
    "dist",
    "docs",
    "examples",
    "README.md",
    "LICENSE",
    "CHANGELOG.md",
    "CONTRIBUTING.md",
    "CODE_OF_CONDUCT.md",
    "SECURITY.md",
    "SUPPORT.md",
    "README.vi.md"
  ],
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit",
    "lint": "tsc --noEmit",
    "build:data": "python3 scripts/build-dataset.py",
    "prepare": "npm run build",
    "audit": "npm audit",
    "release:check": "npm run typecheck && npm test && npm run build && npm audit && npm pack --dry-run",
    "prepublishOnly": "npm run release:check",
    "playground:dev": "vite --config playground/vite.config.ts --host 127.0.0.1",
    "playground:build": "vite build --config playground/vite.config.ts",
    "playground:preview": "vite preview --config playground/vite.config.ts --host 127.0.0.1"
  },
  "keywords": [
    "vietnam",
    "vietnam-address",
    "vietnamese-address",
    "address",
    "address-parser",
    "address-converter",
    "administrative",
    "administrative-units",
    "migration",
    "csv-migration",
    "gso",
    "2025-reform",
    "typescript"
  ],
  "author": "vietnam-address-kit contributors",
  "license": "MIT",
  "engines": {
    "node": ">=18"
  },
  "dependencies": {
    "commander": "^12.1.0"
  },
  "devDependencies": {
    "@types/node": "^20.14.10",
    "tsup": "^8.1.0",
    "typescript": "^5.5.3",
    "vite": "^6.4.3",
    "vitest": "^3.2.6"
  },
  "overrides": {
    "vite": "^6.4.3",
    "esbuild": "^0.28.1"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/zindont/vietnam-address-kit.git"
  },
  "bugs": {
    "url": "https://github.com/zindont/vietnam-address-kit/issues"
  },
  "homepage": "https://github.com/zindont/vietnam-address-kit#readme",
  "publishConfig": {
    "access": "public"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  }
}
