{
  "name": "@sasasamaes/sdk",
  "version": "0.1.0",
  "description": "Multi-chain self-custodial wallet SDK for Web3 creator economy. Supports Ethereum, Bitcoin, TON, TRON, Solana, and Lightning (Spark) from a single BIP-39 seed phrase.",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./wallet": {
      "types": "./dist/wallet/index.d.ts",
      "import": "./dist/wallet/index.mjs",
      "require": "./dist/wallet/index.js"
    },
    "./protocols": {
      "types": "./dist/protocols/index.d.ts",
      "import": "./dist/protocols/index.mjs",
      "require": "./dist/protocols/index.js"
    },
    "./services": {
      "types": "./dist/services/index.d.ts",
      "import": "./dist/services/index.mjs",
      "require": "./dist/services/index.js"
    },
    "./storage": {
      "types": "./dist/storage/index.d.ts",
      "import": "./dist/storage/index.mjs",
      "require": "./dist/storage/index.js"
    },
    "./react": {
      "types": "./dist/react/index.d.ts",
      "import": "./dist/react/index.mjs",
      "require": "./dist/react/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "sideEffects": false,
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "clean": "rm -rf dist .turbo coverage",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "eslint src --ext .ts,.tsx",
    "lint:fix": "eslint src --ext .ts,.tsx --fix",
    "type-check": "tsc --noEmit",
    "prepublishOnly": "npm run clean && npm run build && npm run test",
    "prepack": "npm run build",
    "release": "npm publish --access public"
  },
  "keywords": [
    "wallet",
    "multi-chain",
    "web3",
    "crypto",
    "blockchain",
    "ethereum",
    "bitcoin",
    "solana",
    "ton",
    "tron",
    "lightning",
    "spark",
    "nft",
    "tether-wdk",
    "bip39",
    "bip44",
    "self-custodial",
    "creator-economy",
    "typescript",
    "sdk"
  ],
  "author": {
    "name": "Zubari Team",
    "email": "dev@zubari.io",
    "url": "https://zubari.io"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/anthropics/zubari-wallet.git",
    "directory": "packages/sdk"
  },
  "bugs": {
    "url": "https://github.com/anthropics/zubari-wallet/issues"
  },
  "homepage": "https://github.com/anthropics/zubari-wallet/tree/main/packages/sdk#readme",
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "@tetherto/wdk": "1.0.0-beta.4",
    "@tetherto/wdk-wallet-btc": "1.0.0-beta.4",
    "@tetherto/wdk-wallet-evm": "1.0.0-beta.4",
    "@tetherto/wdk-wallet-solana": "1.0.0-beta.4",
    "@tetherto/wdk-wallet-spark": "1.0.0-beta.5",
    "@tetherto/wdk-wallet-ton": "1.0.0-beta.6",
    "@tetherto/wdk-wallet-tron": "1.0.0-beta.3",
    "ethers": "^6.13.0",
    "viem": "^2.21.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.0",
    "@types/node": "^20.10.0",
    "@types/react": "^19.2.7",
    "@typescript-eslint/eslint-plugin": "^6.13.0",
    "@typescript-eslint/parser": "^6.13.0",
    "eslint": "^8.55.0",
    "eslint-config-prettier": "^9.1.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.0",
    "tsup": "^8.0.0",
    "typescript": "^5.3.0"
  },
  "peerDependencies": {
    "react": ">=18.0.0"
  },
  "peerDependenciesMeta": {
    "react": {
      "optional": true
    }
  }
}
