package.jsonā¢1.01 kB
{
"name": "hyperfabric-mcp-server",
"version": "1.0.0",
"description": "TypeScript MCP server for Hyperfabric API",
"main": "dist/main.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"hyperfabric",
"openapi",
"typescript"
],
"author": "Jim Coyne",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jim-coyne/hyperfabric_MCP.git"
},
"bugs": {
"url": "https://github.com/jim-coyne/hyperfabric_MCP/issues"
},
"homepage": "https://github.com/jim-coyne/hyperfabric_MCP#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.6.0",
"dotenv": "^16.3.0",
"json-schema": "^0.4.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}