{
  "name": "@keyban/sdk-base",
  "version": "0.9.0",
  "description": "Keyban Javascript SDK provides core functionalities for the MPC wallet solution, supporting web and Node.js apps with TypeScript, custom storage, and Ethereum blockchain integration.",
  "homepage": "https://docs.keyban.io/",
  "author": {
    "name": "Keyban",
    "email": "it@keyban.io",
    "url": "https://keyban.io"
  },
  "keywords": [
    "polygon",
    "ecdsa",
    "mpc",
    "tss",
    "crypto",
    "typescript",
    "ethereum",
    "wallet",
    "blockchain"
  ],
  "license": "Apache-2.0",
  "types": "./dist/index.d.ts",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./graphql": {
      "types": "./dist/graphql.d.ts",
      "import": "./dist/graphql.mjs",
      "require": "./dist/graphql.js"
    },
    "./rpc": {
      "types": "./dist/rpc.d.ts",
      "import": "./dist/rpc.mjs",
      "require": "./dist/rpc.js"
    },
    "./errors": {
      "types": "./dist/errors.d.ts",
      "import": "./dist/errors.mjs",
      "require": "./dist/errors.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "LICENSE",
    "README.md"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@apollo/client": "^3.13.8",
    "@graphql-typed-document-node/core": "^3.2.0",
    "@keyban/ecdsa-wasm-client": "^0.7.0",
    "@noble/curves": "^1.9.0",
    "@stellar/stellar-sdk": "^13.3.0",
    "bignumber.js": "^9.3.0",
    "buffer": "^6.0.3",
    "core-js": "^3.41.0",
    "graphql-ws": "^6.0.4",
    "starknet": "^6.24.1",
    "viem": "^2.28.0"
  },
  "devDependencies": {
    "@eslint/js": "^9.25.1",
    "@graphql-codegen/cli": "^5.0.5",
    "@graphql-codegen/typed-document-node": "^5.1.1",
    "@starknet-io/types-js": "^0.8.1",
    "@types/node": "^22.14.1",
    "eslint": "^9.25.1",
    "eslint-config-prettier": "^10.1.2",
    "eslint-plugin-jsdoc": "^50.6.10",
    "eslint-plugin-prettier": "^5.2.6",
    "eslint-plugin-simple-import-sort": "^12.1.1",
    "globals": "^15.15.0",
    "jose": "^5.10.0",
    "prettier": "^3.5.3",
    "tsup": "^8.4.0",
    "typedoc": "^0.28.3",
    "typedoc-plugin-markdown": "^4.6.3",
    "typedoc-plugin-merge-modules": "^6.1.0",
    "typedoc-plugin-remark": "^1.3.0",
    "typescript": "^5.8.3",
    "typescript-eslint": "^8.31.0",
    "vitest": "^3.1.2"
  },
  "scripts": {
    "codegen": "graphql-codegen",
    "dev": "tsup --watch src",
    "build": "tsup",
    "lint": "eslint . --max-warnings 0",
    "lint:fix": "pnpm lint --fix",
    "generate-docs": "typedoc"
  }
}