package.json•1.08 kB
{
"name": "mcp-fivem-server",
"version": "0.3.0",
"description": "A Model Context Protocol server for FiveM plugin development with server/client command execution",
"license": "MIT",
"keywords": [
"mcp",
"model-context-protocol",
"fivem",
"plugin-development",
"rcon",
"server-management"
],
"author": "eeharumt",
"type": "module",
"bin": {
"mcp-fivem": "./build/index.js"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"sync": "rsync -av --delete fivem-plugin/mcp-bridge/ /home/eeharumt/NeoLumina/fivem-server/local/txData/lumina/resources/[plugins]/[others]/mcp-bridge/ && echo '✅ FiveMプラグイン同期完了!'"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0"
},
"devDependencies": {
"@types/node": "^20.19.1",
"typescript": "^5.8.3"
}
}