package.json•895 B
{
"name": "@mrnitro360/react-native-mcp-guide",
"version": "1.1.0",
"description": "MCP server for React Native best practices guidance with expert-level code remediation",
"type": "module",
"main": "build/index.js",
"bin": {
"react-native-mcp-guide": "./build/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node build/index.js",
"test": "echo \"No tests specified\" && exit 0"
},
"keywords": [
"mcp",
"model-context-protocol",
"react-native",
"best-practices",
"development-guide"
],
"author": "mrnitro360",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"build/"
]
}