{
  "name": "@caatinga/client",
  "version": "3.8.0",
  "description": "Browser and Node client for Soroban smart contracts — connects generated bindings, Caatinga artifacts, and wallet adapters",
  "keywords": [
    "stellar",
    "soroban",
    "dapp",
    "smart-contracts",
    "blockchain",
    "freighter",
    "wallet",
    "xdr",
    "caatinga"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Dione-b/caatinga.git",
    "directory": "packages/client"
  },
  "homepage": "https://dione-b.github.io/caatinga/",
  "author": "Caatinga contributors",
  "license": "MIT",
  "engines": {
    "node": ">=22"
  },
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./freighter": {
      "types": "./dist/freighter.d.ts",
      "import": "./dist/freighter.js",
      "require": "./dist/freighter.cjs"
    },
    "./stellar-wallets-kit": {
      "types": "./dist/stellar-wallets-kit.d.ts",
      "import": "./dist/stellar-wallets-kit.js",
      "require": "./dist/stellar-wallets-kit.cjs"
    },
    "./react": {
      "types": "./dist/react.d.ts",
      "import": "./dist/react.js",
      "require": "./dist/react.cjs"
    },
    "./vite": {
      "types": "./dist/vite.d.ts",
      "import": "./dist/vite.js",
      "require": "./dist/vite.cjs"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "@caatinga/core": "^3.8.0"
  },
  "devDependencies": {
    "tsup": "^8.3.5",
    "@creit.tech/stellar-wallets-kit": "^2.3.0",
    "@testing-library/dom": "^10.4.0",
    "@testing-library/react": "^16.1.0",
    "@types/react": "^18.3.18",
    "jsdom": "^25.0.1",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "typescript": "^5.7.2",
    "vitest": "^2.1.8"
  },
  "peerDependencies": {
    "@stellar/freighter-api": "^4.0.0",
    "@creit.tech/stellar-wallets-kit": "^2.3.0",
    "react": ">=18"
  },
  "peerDependenciesMeta": {
    "@stellar/freighter-api": {
      "optional": true
    },
    "@creit.tech/stellar-wallets-kit": {
      "optional": true
    },
    "react": {
      "optional": true
    }
  },
  "scripts": {
    "build": "tsup src/index.ts src/freighter.ts src/stellar-wallets-kit.ts src/react.ts src/vite.ts --format esm,cjs --dts",
    "test": "vitest run --pool=threads",
    "typecheck": "tsc --noEmit"
  }
}