{
  "name": "@iqai/mcp-bamm",
  "version": "0.0.3",
  "description": "MCP server for bamm (borrow automated market maker)",
  "main": "dist/index.js",
  "type": "module",
  "bin": {
    "mcp-bamm-server": "dist/index.js"
  },
  "files": [
    "dist"
  ],
  "author": "IQAI",
  "repository": {
    "type": "git",
    "url": "https://github.com/IQAIcom/mcp-bamm.git"
  },
  "license": "ISC",
  "homepage": "https://github.com/IQAIcom/mcp-bamm",
  "bugs": {
    "url": "https://github.com/IQAIcom/mcp-bamm/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "mcp",
    "bamm",
    "borrow",
    "automated market maker"
  ],
  "dependencies": {
    "dedent": "^1.6.0",
    "fastmcp": "^3.32.0",
    "zod": "^3.25.7",
    "viem": "^2.22.15"
  },
  "devDependencies": {
    "@biomejs/biome": "*",
    "@changesets/cli": "^2.29.4",
    "@types/node": "^22.15.19",
    "husky": "^9.0.0",
    "lint-staged": "^15.0.0",
    "shx": "^0.3.4",
    "typescript": "^5.8.3",
    "zod-to-json-schema": "^3.25.1"
  },
  "lint-staged": {
    "*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
      "biome check --write --organize-imports-enabled=false --no-errors-on-unmatched"
    ]
  },
  "scripts": {
    "build": "tsc && shx chmod +x dist/index.js",
    "watch": "tsc --watch",
    "start": "node dist/index.js",
    "publish-packages": "pnpm run build && changeset publish",
    "format": "biome format . --write",
    "lint": "biome check ."
  }
}