package.json•700 B
{
"name": "@nftgo/mcp-nftgo-api",
"version": "0.1.2",
"description": "NFTGo API MCP Server",
"license": "MIT",
"author": "NFTGo",
"homepage": "https://nftgo.io",
"type": "module",
"bin": {
"nftgo-api": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"start": "node dist/index.js",
"watch": "tsc --watch",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.9.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/node": "^20.0.0",
"prettier": "^3.2.5",
"shx": "^0.3.4",
"typescript": "^5.6.2"
}
}