package.json•1.35 kB
{
"name": "@iqai/mcp-bamm",
"version": "0.0.2",
"description": "MCP server for bamm (borrow automated market maker)",
"main": "dist/index.js",
"type": "module",
"bin": {
"mcp-bamm-server": "dist/index.js"
},
"files": ["dist"],
"scripts": {
"build": "tsc && shx chmod +x dist/index.js",
"prepare": "husky",
"watch": "tsc --watch",
"start": "node dist/index.js",
"publish-packages": "pnpm run build && changeset publish",
"format": "biome format . --write",
"lint": "biome check ."
},
"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": "^1.27.7",
"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"
},
"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"
]
}
}