{
  "name": "satoshi-sdk",
  "version": "0.0.5",
  "description": "Satoshi Protocol SDK, a comprehensive toolkit for developers to integrate and interact with the Satoshi Protocol, a DeFi platform on the blockchain.",
  "main": "./lib/index.js",
  "files": [
    "lib/**/*",
    "README.md"
  ],
  "scripts": {
    "lint": "eslint ./src/ ./test/ --fix",
    "build": "tsc --project tsconfig.build.json",
    "test": "jest --coverage",
    "fork:bevm": "anvil --port 8545 --fork-url https://rpc-mainnet-1.bevm.io/",
    "fork:bitlayer": "anvil --port 8546 --fork-url https://rpc.bitlayer.org",
    "fork:bob": "anvil --port 8547 --fork-url https://rpc.gobob.xyz",
    "clean": "rm -rf ./lib/",
    "cm": "cz",
    "prepare": "husky install",
    "semantic-release": "semantic-release",
    "test:watch": "jest --watch",
    "typecheck": "tsc --noEmit"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Satoshi-Protocol/satoshi-sdk.git"
  },
  "license": "MIT",
  "author": {
    "name": "satoshi-protocol",
    "email": "admin@satoshiprotocol.org",
    "url": "https://satoshiprotocol.org"
  },
  "engines": {
    "node": ">=18.0"
  },
  "keywords": [
    "satoshi-protocol",
    "satoshi-sdk",
    "viem",
    "typescript",
    "jest"
  ],
  "bugs": {
    "url": "https://github.com/Satoshi-Protocol/satoshi-sdk/issues"
  },
  "homepage": "https://docs.satoshiprotocol.org/sdk/introduction",
  "devDependencies": {
    "@babel/core": "^7.24.7",
    "@babel/preset-env": "^7.24.7",
    "@babel/preset-typescript": "^7.24.7",
    "@ryansonshine/commitizen": "^4.2.8",
    "@ryansonshine/cz-conventional-changelog": "^3.3.4",
    "@types/jest": "^27.5.2",
    "@types/node": "^12.20.11",
    "@typescript-eslint/eslint-plugin": "^7.14.1",
    "@typescript-eslint/parser": "^7.14.1",
    "concurrently": "^8.2.2",
    "conventional-changelog-conventionalcommits": "^5.0.0",
    "dotenv": "^16.4.5",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-import-resolver-typescript": "^3.6.1",
    "eslint-plugin-import": "^2.29.1",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^3.4.0",
    "husky": "^6.0.0",
    "jest": "^29.7.0",
    "lint-staged": "^13.2.1",
    "prettier": "^2.2.1",
    "semantic-release": "^21.0.1",
    "ts-jest": "^29.1.5",
    "ts-node": "^10.2.1",
    "typescript": "^5.5.2"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/@ryansonshine/cz-conventional-changelog"
    }
  },
  "lint-staged": {
    "*.ts": "eslint --config .eslintrc.js ./src/ --fix"
  },
  "release": {
    "branches": [
      "main"
    ],
    "plugins": [
      [
        "@semantic-release/commit-analyzer",
        {
          "preset": "conventionalcommits",
          "releaseRules": [
            {
              "type": "build",
              "scope": "deps",
              "release": "patch"
            }
          ]
        }
      ],
      [
        "@semantic-release/release-notes-generator",
        {
          "preset": "conventionalcommits",
          "presetConfig": {
            "types": [
              {
                "type": "feat",
                "section": "Features"
              },
              {
                "type": "fix",
                "section": "Bug Fixes"
              },
              {
                "type": "build",
                "section": "Dependencies and Other Build Updates",
                "hidden": false
              }
            ]
          }
        }
      ],
      "@semantic-release/npm",
      "@semantic-release/github"
    ]
  },
  "dependencies": {
    "axios": "^1.7.2",
    "bignumber.js": "^9.1.2",
    "i": "^0.3.7",
    "module-alias": "^2.2.3",
    "npm": "^10.8.1",
    "viem": "^2.16.3"
  }
}