{
    "name": "@carllee1983/tappay-backend-payment-node",
    "version": "1.8.0",
    "description": "TapPay Backend Payment SDK for Node.js - A TypeScript SDK for TapPay Backend Payment APIs with full type support",
    "module": "./dist/index.mjs",
    "main": "./dist/index.cjs",
    "type": "module",
    "types": "./dist/index.d.ts",
    "exports": {
        ".": {
            "types": "./dist/index.d.ts",
            "import": "./dist/index.mjs",
            "require": "./dist/index.cjs"
        }
    },
    "files": [
        "dist",
        "README.md",
        "README_zh-TW.md",
        "LICENSE"
    ],
    "scripts": {
        "build": "bun run build.ts",
        "test": "bun test",
        "test:coverage": "bun test --coverage",
        "test:ci": "bun test --coverage --coverage-threshold=100",
        "lint": "biome lint ./src ./tests",
        "lint:fix": "biome lint --write ./src ./tests",
        "format": "biome format --write ./src ./tests",
        "format:check": "biome format ./src ./tests",
        "check": "biome check ./src ./tests",
        "check:fix": "biome check --write ./src ./tests",
        "typecheck": "tsc --noEmit",
        "prepublishOnly": "bun run typecheck && bun run check && bun run test:ci && bun run build",
        "prepare": "simple-git-hooks"
    },
    "keywords": [
        "tappay",
        "payment",
        "payment-gateway",
        "credit-card",
        "debit-card",
        "3d-secure",
        "apple-pay",
        "google-pay",
        "line-pay",
        "jkopay",
        "taiwan",
        "fintech",
        "e-commerce",
        "sdk",
        "typescript",
        "nodejs"
    ],
    "author": "Carl Lee <carllee1983@gmail.com>",
    "license": "MIT",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/CarlLee1983/tappay-backend-payment-node.git"
    },
    "bugs": {
        "url": "https://github.com/CarlLee1983/tappay-backend-payment-node/issues"
    },
    "homepage": "https://github.com/CarlLee1983/tappay-backend-payment-node#readme",
    "engines": {
        "node": ">=18.0.0"
    },
    "devDependencies": {
        "@biomejs/biome": "^2.4.8",
        "@types/bun": "1.3.11",
        "lint-staged": "^16.4.0",
        "simple-git-hooks": "^2.13.1",
        "typescript": "^6.0.2"
    },
    "simple-git-hooks": {
        "pre-commit": "export PATH=\"$HOME/.bun/bin:$PATH\" && bun run test && bunx lint-staged"
    },
    "lint-staged": {
        "*.{js,ts,cjs,mjs}": [
            "biome check --write",
            "bash -c 'bun run typecheck'"
        ],
        "*.test.{ts,tsx}": [
            "bun test --bail"
        ]
    },
    "publishConfig": {
        "access": "public",
        "registry": "https://registry.npmjs.org/"
    }
}
