{
  "name": "@morpho-org/blue-points-sdk",
  "version": "1.5.0",
  "main": "lib/index.js",
  "files": [
    "lib/*",
    "README.md",
    "LICENSE",
    "package.json"
  ],
  "private": false,
  "repository": {
    "url": "git@github.com:morpho-org/blue-points-sdk.git",
    "type": "git"
  },
  "author": "Julien-devatom <julien@morpho.xyz>",
  "license": "MIT",
  "scripts": {
    "build": "tsc --build ./tsconfig.build.json",
    "test": "jest",
    "typecheck": "tsc --noEmit",
    "lint": "prettier --check src",
    "lint:fix": "prettier --write src"
  },
  "dependencies": {
    "viem": "^2.9.15"
  },
  "devDependencies": {
    "@trivago/prettier-plugin-sort-imports": "^4.3.0",
    "@types/jest": "^29.5.12",
    "@types/node": "^20.12.6",
    "@types/sinon": "^17.0.3",
    "cz-conventional-changelog": "^3.3.0",
    "husky": "^9.0.11",
    "jest": "^29.7.0",
    "lint-staged": "^15.2.2",
    "prettier": "^3.2.5",
    "sinon": "^17.0.1",
    "ts-jest": "^29.1.2",
    "ts-node": "^10.9.2",
    "typescript": "^5.4.4",
    "commitizen": "^4.3.0",
    "conventional-changelog-conventionalcommits": "^7.0.2"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "lint-staged": {
    "*.ts": "prettier"
  },
  "release": {
    "branches": [
      "main",
      "next"
    ],
    "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"
    ]
  }
}
