package.jsonβ’1.75 kB
{
  "name": "aura-mcp-server",
  "version": "1.0.0",
  "description": "AURA MCP Server - Bridge LLMs with AURA API and EVM for on-chain intelligence",
  "main": "dist/index.js",
  "scripts": {
    "dev": "tsx src/http-server.ts",
    "dev:mcp": "tsx src/index.ts",
    "build": "tsc",
    "start": "node dist/http-server.js",
    "start:mcp": "node dist/index.js",
    "vercel-build": "tsc",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:local": "node test-local.js",
    "lint": "eslint src --ext .ts",
    "lint:fix": "eslint src --ext .ts --fix",
    "clean": "rimraf dist",
    "prebuild": "npm run clean"
  },
  "type": "module",
  "keywords": [
    "mcp",
    "model-context-protocol",
    "aura",
    "defi",
    "blockchain",
    "ethereum",
    "l2",
    "yield",
    "airdrop",
    "liquidation",
    "x402",
    "paywall"
  ],
  "author": "AURA MCP Team",
  "license": "MIT",
  "dependencies": {
    "@fastify/cors": "^9.0.1",
    "@modelcontextprotocol/sdk": "^0.5.0",
    "axios": "^1.7.2",
    "dotenv": "^16.4.5",
    "ethers": "^6.13.0",
    "fastify": "^4.28.1",
    "winston": "^3.18.3",
    "zod": "^3.24.2"
  },
  "devDependencies": {
    "@types/jest": "^29.5.12",
    "@types/node": "^20.14.0",
    "@typescript-eslint/eslint-plugin": "^7.18.0",
    "@typescript-eslint/parser": "^7.18.0",
    "eslint": "^8.57.0",
    "jest": "^29.7.0",
    "rimraf": "^5.0.7",
    "ts-jest": "^29.1.2",
    "tsx": "^4.16.0",
    "typescript": "^5.5.3"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/aura-mcp/server.git"
  },
  "bugs": {
    "url": "https://github.com/aura-mcp/server/issues"
  },
  "homepage": "https://github.com/aura-mcp/server#readme"
}