{
  "name": "@nr1e/adyen",
  "description": "Unofficial Adyen client",
  "version": "0.0.6",
  "type": "module",
  "author": "NR1E, Inc.",
  "publishConfig": {
    "access": "public"
  },
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/nr1etech/public.git"
  },
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@eslint/js": "latest",
    "@types/node": "^25.2.2",
    "@types/uuid": "^10.0.0",
    "dotenv-cli": "^11.0.0",
    "eslint": "9.39.2",
    "prettier": "3.8.1",
    "typescript": "5.9.3",
    "typescript-eslint": "8.55.0",
    "vitest": "4.0.18"
  },
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "types": "./dist/index.d.mts"
    },
    "./bcl": {
      "import": "./dist/bcl/index.mjs",
      "types": "./dist/bcl/index.d.mts"
    },
    "./checkout": {
      "import": "./dist/checkout/index.mjs",
      "types": "./dist/checkout/index.d.mts"
    },
    "./lem": {
      "import": "./dist/lem/index.mjs",
      "types": "./dist/lem/index.d.mts"
    },
    "./management": {
      "import": "./dist/management/index.mjs",
      "types": "./dist/management/index.d.mts"
    }
  },
  "scripts": {
    "prebuild": "prettier --check . && eslint .",
    "build": "tsc -p tsconfig.build.json",
    "watch": "tsc -w",
    "test": "vitest run -t @unit src",
    "test:int": "dotenv -- vitest run -t @int src",
    "test:only": "dotenv -- vitest run -t @only src",
    "clean": "rm -rf dist",
    "fmt": "prettier --write ."
  }
}