{
  "name": "@ordanetwork/sdk",
  "version": "2.1.0",
  "description": "TypeScript SDK for orda API",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "browser": "./dist/browser/index.js",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js",
      "browser": "./dist/browser/index.js"
    }
  },
  "sideEffects": false,
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "npm run clean && npm run build:types && npm run build:esm && npm run build:cjs && npm run build:browser && npm run postbuild",
    "clean": "rm -rf dist",
    "build:types": "tsc --declaration --emitDeclarationOnly --outDir dist/types",
    "build:esm": "tsc --module esnext --outDir dist/esm",
    "build:cjs": "tsc --module commonjs --outDir dist/cjs",
    "build:browser": "tsc --module esnext --outDir dist/browser --lib es2020,dom",
    "postbuild": "npm run postbuild:esm && npm run postbuild:cjs && npm run postbuild:fix-extensions",
    "postbuild:esm": "echo '{\"type\": \"module\"}' > dist/esm/package.json",
    "postbuild:cjs": "echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json",
    "postbuild:fix-extensions": "node scripts/fix-esm-extensions.mjs dist/esm dist/browser",
    "prepare": "npm run build",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:integration": "jest --testPathPattern=integration --runInBand",
    "test:integration:recipients": "jest --testPathPattern=recipients.integration --runInBand",
    "test:integration:quote": "jest --testPathPattern=quote.integration --runInBand",
    "test:integration:transactions": "jest --testPathPattern=transactions.integration --runInBand",
    "test:integration:offramp": "jest --testPathPattern=offramp.integration --runInBand",
    "test:integration:onramp": "jest --testPathPattern=onramp.integration --runInBand",
    "test:integration:flow": "jest --testPathPattern=full-flow.integration --runInBand",
    "test:unit": "jest --testPathPattern=test/[^/]+\\.test\\.ts$",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "orda",
    "cryptocurrency",
    "payments",
    "cross-chain",
    "blockchain",
    "defi",
    "offramp",
    "onramp",
    "sdk",
    "api",
    "typescript",
    "browser",
    "node"
  ],
  "author": "orda",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/orda/orda-sdk"
  },
  "bugs": {
    "url": "https://github.com/orda/orda-sdk/issues"
  },
  "homepage": "https://github.com/orda/orda-sdk#readme",
  "engines": {
    "node": ">=18.0.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.0",
    "@types/node": "^20.19.17",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "dotenv": "^16.3.1",
    "eslint": "^8.0.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-prettier": "^5.0.0",
    "jest": "^29.0.0",
    "prettier": "^3.0.0",
    "ts-jest": "^29.0.0",
    "typescript": "^5.0.0"
  }
}
