{
  "name": "@carllee1983/ecpay-logistics",
  "version": "1.2.0",
  "description": "Unofficial ECPay Logistics (綠界物流) SDK for Node.js. Supports CVS (B2C/C2C), Home Delivery (TCAT/Post), and Map Interface. Type-safe & Bun-compatible.",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/CarlLee1983/ecpay-logistics-node.git"
  },
  "type": "module",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/types/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/types/index.d.ts",
        "default": "./dist/cjs/index.js"
      }
    }
  },
  "engines": {
    "node": ">=18",
    "bun": ">=1.0"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "ecpay",
    "logistics",
    "taiwan",
    "shipping",
    "cvs",
    "convenience-store",
    "7-eleven",
    "family-mart",
    "hilife",
    "okmart",
    "tcat",
    "post",
    "bun",
    "typescript",
    "sdk"
  ],
  "scripts": {
    "build": "bun run build:esm && bun run build:cjs && bun run build:types",
    "build:esm": "bun build ./src/index.ts --outdir ./dist/esm --target node --format esm",
    "build:cjs": "bun build ./src/index.ts --outdir ./dist/cjs --target node --format cjs",
    "build:types": "tsc --emitDeclarationOnly --outDir ./dist/types",
    "test": "bun test test/",
    "test:coverage": "bun test test/ --coverage",
    "typecheck": "tsc --noEmit",
    "lint": "biome lint .",
    "lint:fix": "biome check --write .",
    "format": "biome format --write .",
    "check": "biome check .",
    "check:fix": "biome check --write .",
    "pre-commit": "bun run typecheck && bun run lint",
    "prepublishOnly": "bun run build",
    "prepare": "bunx simple-git-hooks"
  },
  "author": "Carl",
  "license": "MIT",
  "devDependencies": {
    "@biomejs/biome": "^2.3.8",
    "@types/bun": "latest",
    "bun-types": "^1.3.4",
    "c8": "^10.1.3",
    "simple-git-hooks": "^2.11.1"
  },
  "simple-git-hooks": {
    "pre-commit": "bun run pre-commit"
  },
  "peerDependencies": {
    "typescript": "^5"
  }
}
