{
  "name": "@fastnear/api",
  "version": "0.9.7",
  "description": "Interact with NEAR Protocol blockchain including transaction signing, utilities, and more.",
  "type": "module",
  "types": "./dist/esm/index.d.ts",
  "main": "./dist/cjs/index.cjs",
  "module": "./dist/esm/index.js",
  "browser": "./dist/umd/browser.global.js",
  "scripts": {
    "build": "tsup",
    "publish": "yarn npm publish",
    "clean": "yarn rimraf dist node_modules",
    "type-check": "tsc --noEmit"
  },
  "author": "FastNEAR",
  "homepage": "https://js.fastnear.com",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/fastnear/js-monorepo.git"
  },
  "keywords": [
    "near-protocol",
    "web3",
    "blockchain",
    "fastnear",
    "nearjs"
  ],
  "files": [
    "dist"
  ],
  "exports": {
    ".": {
      "require": "./dist/cjs/index.cjs",
      "import": "./dist/esm/index.js"
    }
  },
  "dependencies": {
    "@fastnear/utils": "0.9.7",
    "@fastnear/wallet-adapter": "0.9.7",
    "@noble/curves": "*",
    "@noble/hashes": "*",
    "base58-js": "*",
    "big.js": "*",
    "borsh": "*"
  },
  "devDependencies": {
    "rimraf": "*",
    "tsup": "*",
    "typescript": "*"
  }
}