@albert-mr/genlayer-mcp-server
Version:
MCP server for generating GenLayer Intelligent Contracts with AI-native blockchain capabilities
74 lines (73 loc) • 2.07 kB
JSON
{
"name": "@albert-mr/genlayer-mcp-server",
"version": "2.0.2",
"description": "MCP server for generating GenLayer Intelligent Contracts with AI-native blockchain capabilities",
"type": "module",
"main": "dist/index.js",
"bin": {
"genlayer-mcp-server": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "npm run build && jest tests/integration.test.ts",
"test:unit": "jest --testPathIgnorePatterns=integration",
"clean": "rm -rf dist coverage",
"lint": "eslint src/ tests/ --ext .ts",
"lint:fix": "eslint src/ tests/ --ext .ts --fix",
"format": "prettier --write src/ tests/ *.json *.md",
"format:check": "prettier --check src/ tests/ *.json *.md",
"typecheck": "tsc --noEmit",
"validate": "npm run typecheck && npm run lint && npm run format:check && npm run test:unit"
},
"keywords": [
"mcp",
"model-context-protocol",
"genlayer",
"intelligent-contracts",
"blockchain",
"ai",
"smart-contracts"
],
"author": "GenLayer Team",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.0",
"zod": "^4.0.14"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"jest": "^30.0.5",
"prettier": "^3.6.2",
"ts-jest": "^29.1.1",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/albert-mr/genlayer-mcp-server.git"
},
"homepage": "https://github.com/albert-mr/genlayer-mcp-server",
"bugs": {
"url": "https://github.com/albert-mr/genlayer-mcp-server/issues"
},
"publishConfig": {
"access": "public"
}
}