package.json•2.09 kB
{
"name": "@ivotoby/contentful-graphql-mcp-server",
"version": "0.0.1",
"description": "MCP server for Contentful GraphQL API integration",
"license": "MIT",
"type": "module",
"main": "./dist/bundle.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ivo-toby/contentful-mcp-graphql.git"
},
"publishConfig": {
"access": "public"
},
"bin": {
"contentful-graphql-mcp-server": "bin/mcp-server.js"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "node build.js && chmod +x bin/mcp-server.js",
"clean": "rm -rf dist",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts",
"watch": "tsc --watch",
"dev": "nodemon --watch src -e ts --exec 'npm run build'",
"typecheck": "tsc --noEmit",
"prepare": "npm run build",
"inspect": "node -r dotenv/config ./scripts/inspect.js",
"inspect-watch": "node ./scripts/inspect-watch.js",
"test": "vitest run --config vitest.config.ts",
"test:watch": "vitest watch --config vitest.config.ts"
},
"dependencies": {
"@graphql-tools/utils": "^10.8.6",
"@modelcontextprotocol/sdk": "1.12.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.18.3",
"graphql": "^16.11.0",
"undici": "^7.9.0",
"zod": "^3.24.4",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.3",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"esbuild": "^0.19.9",
"eslint": "^8.57.1",
"eslint-plugin-perfectionist": "^4.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"semantic-release": "^22.0.12",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.22.0",
"vitest": "^3.1.3"
}
}