package.json•1.4 kB
{
"name": "@iqai/mcp-upbit",
"version": "0.0.2",
"description": "Fast MCP server for interacting with Upbit (public market data and optional private trading tools).",
"main": "dist/index.js",
"type": "module",
"bin": {
"mcp-upbit-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 ."
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IQAIcom/mcp-upbit.git"
},
"bugs": {
"url": "https://github.com/IQAIcom/mcp-upbit/issues"
},
"homepage": "https://github.com/IQAIcom/mcp-upbit#readme",
"dependencies": {
"@types/jsonwebtoken": "^9.0.10",
"axios": "^1.11.0",
"axios-retry": "^4.5.0",
"dedent": "^1.6.0",
"dotenv": "^17.2.1",
"fastmcp": "^1.27.7",
"jsonwebtoken": "^9.0.2",
"zod": "^3.25.7"
},
"devDependencies": {
"@biomejs/biome": "^2.2.0",
"@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 --no-errors-on-unmatched"
]
}
}