package.json•2.44 kB
{
"name": "@akiojin/playfab-mcp-server",
"version": "1.0.0",
"description": "PlayFab MCP Server",
"license": "MIT",
"author": "akiojin",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-server-playfab": "dist/index.js"
},
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"clean": "shx rm -rf dist",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"generate-types": "ts-node --esm scripts/generate-tool-types.ts",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build && npm run typecheck"
},
"files": [
"dist"
],
"keywords": [
"playfab",
"mcp",
"server",
"azure"
],
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/akiojin/playfab-mcp-server.git"
},
"bugs": {
"url": "https://github.com/akiojin/playfab-mcp-server/issues"
},
"homepage": "https://github.com/akiojin/playfab-mcp-server#readme",
"devDependencies": {
"@eslint/js": "^9.28.0",
"@types/dotenv": "^8.2.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.26",
"@types/pino": "^7.0.4",
"@types/pino-pretty": "^4.7.5",
"@typescript-eslint/eslint-plugin": "^8.33.0",
"@typescript-eslint/parser": "^8.33.0",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"shx": "^0.4.0",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2",
"@vercel/ncc": "^0.38.3",
"dotenv": "^16.5.0",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0",
"playfab-sdk": "^2.172.250428"
},
"type": "module",
"private": false
}