{
  "name": "@uma-sdk/core",
  "version": "1.5.0",
  "description": "UMA SDK for JavaScript",
  "keywords": [
    "bitcoin",
    "lightning",
    "payments",
    "typescript"
  ],
  "homepage": "https://github.com/uma-universal-money-address/uma-js-sdk",
  "repository": {
    "type": "git",
    "url": "https://github.com/uma-universal-money-address/uma-js-sdk.git"
  },
  "bugs": {
    "url": "https://github.com/uma-universal-money-address/uma-js-sdk/issues"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "type": "module",
  "types": "./dist/index.d.ts",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "engines": {
    "node": ">=18.17.0"
  },
  "browser": {
    "crypto": false
  },
  "files": [
    "src/*",
    "dist/*",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "yarn tsc && tsup --entry src/index.ts --entry src/objects/index.ts --format cjs,esm --dts",
    "clean": "rm -rf .turbo && rm -rf dist",
    "dev": "yarn build -- --watch",
    "docs": "typedoc --media docs-media src",
    "format:fix": "prettier src --write",
    "format": "prettier src --check",
    "lint:fix": "eslint --fix .",
    "lint:fix:continue": "eslint --fix . || exit 0",
    "lint:watch": "esw ./src -w --ext .ts,.tsx,.js --color",
    "lint": "eslint .",
    "postversion": "yarn build",
    "test": "node --experimental-vm-modules $(yarn bin jest) --no-cache --runInBand --bail",
    "types": "tsc"
  },
  "license": "Apache-2.0",
  "dependencies": {
    "eciesjs": "^0.4.4",
    "secp256k1": "^5.0.0",
    "zod": "^3.22.2"
  },
  "devDependencies": {
    "@types/crypto-js": "^4.1.1",
    "@types/jest": "^29.5.3",
    "@types/node": "^20.8.4",
    "@types/secp256k1": "^4.0.3",
    "@typescript-eslint/eslint-plugin": "^6.7.3",
    "@typescript-eslint/parser": "^6.7.5",
    "eslint": "^8.57.0",
    "eslint-watch": "^8.0.0",
    "jest": "^29.6.2",
    "prettier": "^3.3.3",
    "prettier-plugin-organize-imports": "^4.0.0",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.1",
    "tsup": "^6.7.0",
    "typedoc": "^0.24.7",
    "typescript": "^5.0.0"
  }
}
