package.json•1.5 kB
{
"name": "@orbs-network/ton-access-mcp",
"version": "1.0.0",
"description": "Model Context Protocol (MCP) server for TON Access",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest",
"lint": "eslint src --ext .ts"
},
"keywords": [
"ton",
"blockchain",
"mcp",
"model-context-protocol",
"claude",
"ai"
],
"author": "Orbs Network",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.1.0",
"@orbs-network/ton-access": "^2.3.1",
"ton": "^13.9.0",
"ton-core": "^0.53.0",
"ton-crypto": "^3.2.0",
"isomorphic-fetch": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.8.2",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"bin": {
"ton-access-mcp": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}
{
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "ts-node test/validate.ts",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"prepare": "npm run build"
},
"engines": {
"node": ">=16.0.0"
}
}