{
  "name": "@wormhole-foundation/sdk-aptos-tokenbridge",
  "version": "4.18.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wormhole-foundation/wormhole-sdk-ts.git"
  },
  "bugs": {
    "url": "https://github.com/wormhole-foundation/wormhole-sdk-ts/issues"
  },
  "homepage": "https://github.com/wormhole-foundation/wormhole-sdk-ts#readme",
  "directories": {
    "test": "__tests__"
  },
  "license": "Apache-2.0",
  "main": "./dist/cjs/index.js",
  "types": "./dist/cjs/index.d.ts",
  "module": "./dist/esm/index.js",
  "description": "SDK for Solana, used in conjunction with @wormhole-foundation/sdk",
  "files": [
    "dist/esm",
    "dist/cjs"
  ],
  "keywords": [
    "wormhole",
    "sdk",
    "typescript",
    "connect",
    "aptos"
  ],
  "engines": {
    "node": ">=16"
  },
  "sideEffects": [
    "./dist/cjs/index.js",
    "./dist/esm/index.js"
  ],
  "scripts": {
    "build:cjs": "tsc -p ./tsconfig.cjs.json  && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
    "build:esm": "tsc -p ./tsconfig.esm.json",
    "build": "npm run build:esm && npm run build:cjs",
    "rebuild": "npm run clean && npm run build",
    "clean": "rm -rf ./dist && rm -rf ./.turbo",
    "lint": "npm run prettier && eslint --fix ./src --ext .ts",
    "prettier": "prettier --write ./src"
  },
  "dependencies": {
    "@wormhole-foundation/sdk-connect": "4.18.0",
    "@wormhole-foundation/sdk-aptos": "4.18.0"
  },
  "type": "module",
  "exports": {
    ".": {
      "react-native": {
        "import": "./dist/esm/index.js",
        "require": "./dist/cjs/index.js",
        "types": "./dist/cjs/index.d.ts",
        "default": "./dist/cjs/index.js"
      },
      "import": {
        "types": "./dist/esm/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/cjs/index.d.ts",
        "default": "./dist/cjs/index.js"
      },
      "default": {
        "types": "./dist/cjs/index.d.ts",
        "default": "./dist/cjs/index.js"
      }
    }
  }
}