{
  "name": "@imtbl/checkout-sdk",
  "description": "Immutable Checkout SDK",
  "version": "2.24.8",
  "author": "immutable",
  "browser": "dist/browser/index.js",
  "bugs": "https://github.com/immutable/ts-immutable-sdk/issues",
  "dependencies": {
    "@metamask/detect-provider": "^2.0.0",
    "axios": "^1.18.1",
    "ethers": "^6.17.0",
    "semver": "^7.4.0",
    "uuid": "^9.0.1",
    "@imtbl/bridge-sdk": "2.24.8",
    "@imtbl/blockchain-data": "2.24.8",
    "@imtbl/generated-clients": "2.24.8",
    "@imtbl/config": "2.24.8",
    "@imtbl/dex-sdk": "2.24.8",
    "@imtbl/metrics": "2.24.8",
    "@imtbl/orderbook": "2.24.8",
    "@imtbl/passport": "2.24.8"
  },
  "devDependencies": {
    "@swc/core": "^1.15.46",
    "@swc/jest": "^0.2.37",
    "@types/jest": "^29.5.12",
    "@types/node": "^22.10.7",
    "@types/semver": "^7.5.8",
    "@types/uuid": "^8.3.4",
    "@typescript/native": "npm:typescript@^7.0.2",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "rollup-plugin-polyfill-node": "^0.13.0",
    "typedoc-plugin-markdown": "^4.2.3",
    "typescript": "npm:@typescript/typescript6@^6.0.2"
  },
  "exports": {
    "development": {
      "types": "./src/index.ts",
      "browser": "./dist/browser/index.js",
      "require": "./dist/node/index.cjs",
      "default": "./dist/node/index.js"
    },
    "default": {
      "types": "./dist/types/index.d.ts",
      "browser": "./dist/browser/index.js",
      "require": "./dist/node/index.cjs",
      "default": "./dist/node/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "homepage": "https://github.com/immutable/ts-immutable-sdk",
  "keywords": [
    "immutable"
  ],
  "license": "Apache-2.0",
  "main": "dist/node/index.cjs",
  "module": "dist/node/index.js",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "immutable/ts-immutable-sdk.git"
  },
  "source": "src/index.ts",
  "type": "module",
  "types": "./dist/types/index.d.ts",
  "scripts": {
    "build": "NODE_ENV=production pnpm transpile && pnpm typegen",
    "build:dev": "CHECKOUT_DEV_MODE=true pnpm build",
    "docs": "typedoc --plugin typedoc-plugin-markdown --skipErrorChecking --disableSources --out docs src/index.ts",
    "pack:root": "pnpm pack --pack-destination $(dirname $(pnpm root -w))",
    "start": "tsdown --watch",
    "start:dev": "CHECKOUT_DEV_MODE=true pnpm start",
    "test": "jest test",
    "test:watch": "jest test --watch",
    "transpile": "tsdown",
    "typecheck": "tsc --customConditions default --noEmit",
    "typegen": "tsc --customConditions default --emitDeclarationOnly --outDir dist/types"
  }
}