{
  "name": "payjp",
  "version": "3.1.2",
  "description": "PAY.JP node.js bindings",
  "main": "built/index.js",
  "types": "built/index.d.ts",
  "keywords": [
    "PAY.JP",
    "payment processing",
    "credit cards",
    "api"
  ],
  "repository": {
    "type": "git",
    "url": "git://github.com/payjp/payjp-node.git"
  },
  "author": "PAY.JP <support@pay.jp> (https://pay.jp)",
  "license": "MIT",
  "engines": {
    "node": ">=22"
  },
  "devDependencies": {
    "@types/node": "^22.19.1",
    "mocha": "^11.7.5",
    "oxfmt": "^0.42.0",
    "oxlint": "^1.57.0",
    "typescript": "^5.7.2"
  },
  "scripts": {
    "test": "npm run lint && npm run build && npm run test:typescript && npm run test:mocha",
    "test:mocha": "mocha --timeout=10000",
    "test:debug": "mocha --inspect-brk",
    "test:typescript": "tsc --noEmit --target esnext --module commonjs test/types/*.ts",
    "build": "tsc",
    "lint": "oxlint .",
    "lint:fix": "oxlint --fix .",
    "format": "oxfmt .",
    "format:check": "oxfmt --check .",
    "prepublish": "npm run build"
  }
}