{
  "name": "@monstera_protocol/sdk",
  "version": "2.4.1",
  "description": "Monstera SDK - JavaScript SDK for wallet operations through smart contract interactions. Create and manage wallets via smart contracts with a simple, idiomatic API.",
  "main": "src/index.js",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/monstera.mjs",
      "default": "./src/index.js"
    },
    "./global": "./dist/monstera.global.js",
    "./mjs": "./dist/monstera.mjs"
  },
  "files": [
    "src",
    "build",
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md",
    "bin"
  ],
  "bin": {
    "monstera": "bin/monstera.js"
  },
  "scripts": {
    "build": "rollup -c",
    "build:watch": "rollup -c --watch",
    "prepublishOnly": "npm run build",
    "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
    "test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
    "lint": "eslint src/**/*.js",
    "example:create-wallet": "node examples/nodejs/getting-started/password-only/01-create-wallet.js",
    "example:use-wallet": "node examples/nodejs/getting-started/password-only/02-use-wallet.js",
    "example:create-wallet-username": "node examples/nodejs/getting-started/username-and-password/01-create-wallet.js",
    "example:use-wallet-username": "node examples/nodejs/getting-started/username-and-password/02-use-wallet.js",
    "example:sign-transaction": "node examples/nodejs/signing/sign-transaction.js",
    "example:sign-authorization": "node examples/nodejs/signing/sign-authorization.js",
    "example:update-password": "node examples/nodejs/authentication/password/update-password.js",
    "example:whitelist-flow": "node examples/nodejs/authentication/wallet-signature/whitelist-flow.js"
  },
  "keywords": [
    "wallet",
    "ethereum",
    "crypto",
    "blockchain",
    "sdk",
    "non-custodial",
    "web3",
    "contracts",
    "smart-contracts",
    "arnacon"
  ],
  "author": "Arnacon",
  "license": "GPL-3.0",
  "engines": {
    "node": ">=14.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Ariana0699/Wallet_SDK_JavaScript.git"
  },
  "bugs": {
    "url": "https://github.com/Ariana0699/Wallet_SDK_JavaScript/issues"
  },
  "homepage": "https://github.com/Ariana0699/Wallet_SDK_JavaScript#readme",
  "dependencies": {
    "@oasisprotocol/sapphire-ethers-v6": "^6.0.1",
    "dotenv": "^17.2.3",
    "ethers": "^6.0.0 || ^5.0.0"
  },
  "devDependencies": {
    "@rollup/plugin-node-resolve": "^16.0.3",
    "eslint": "^8.0.0",
    "jest": "^29.0.0",
    "rollup": "^4.54.0",
    "rollup-plugin-polyfill-node": "^0.13.0"
  },
  "peerDependencies": {
    "ethers": "^6.0.0 || ^5.0.0"
  }
}
