{
  "name": "@basis-theory/node-sdk",
  "version": "5.4.0",
  "private": false,
  "repository": {
    "type": "git",
    "url": "https://github.com/Basis-Theory/node-sdk"
  },
  "license": "Apache-2.0",
  "type": "commonjs",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.mjs",
  "types": "./dist/cjs/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/cjs/index.d.ts",
      "import": {
        "types": "./dist/esm/index.d.mts",
        "default": "./dist/esm/index.mjs"
      },
      "require": {
        "types": "./dist/cjs/index.d.ts",
        "default": "./dist/cjs/index.js"
      },
      "default": "./dist/cjs/index.js"
    },
    "./serialization": {
      "types": "./dist/cjs/serialization/index.d.ts",
      "import": {
        "types": "./dist/esm/serialization/index.d.mts",
        "default": "./dist/esm/serialization/index.mjs"
      },
      "require": {
        "types": "./dist/cjs/serialization/index.d.ts",
        "default": "./dist/cjs/serialization/index.js"
      },
      "default": "./dist/cjs/serialization/index.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "reference.md",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "format": "biome format --write --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
    "format:check": "biome format --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
    "lint": "biome lint --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
    "lint:fix": "biome lint --fix --unsafe --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
    "check": "biome check --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
    "check:fix": "biome check --fix --unsafe --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
    "build": "yarn build:cjs && yarn build:esm",
    "build:cjs": "tsc --project ./tsconfig.cjs.json",
    "build:esm": "tsc --project ./tsconfig.esm.json && node scripts/rename-to-esm-files.js dist/esm",
    "test": "jest --config jest.config.mjs",
    "test:unit": "jest --selectProjects unit",
    "test:wire": "jest --selectProjects wire"
  },
  "browser": {
    "fs": false,
    "os": false,
    "path": false,
    "stream": false
  },
  "packageManager": "yarn@1.22.22",
  "engines": {
    "node": ">=18.0.0"
  },
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  }
}