UNPKG

synaptra

Version:

A high-performance Model Context Protocol server for GraphQL APIs with advanced features, type-safety, and developer experience improvements

80 lines (79 loc) 2.05 kB
{ "name": "synaptra", "version": "1.0.1", "description": "A high-performance Model Context Protocol server for GraphQL APIs with advanced features, type-safety, and developer experience improvements", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "synaptra": "dist/index.js" }, "scripts": { "build": "tsc", "dev": "tsx src/index.ts", "start": "node dist/index.js", "watch": "tsx watch src/index.ts", "test": "jest --passWithNoTests", "test:watch": "jest --watch", "lint": "eslint src --ext .ts", "lint:fix": "eslint src --ext .ts --fix", "format": "prettier --write src/**/*.ts", "type-check": "tsc --noEmit", "prepare": "npm run build", "prepublishOnly": "npm run type-check" }, "keywords": [ "mcp", "model-context-protocol", "graphql", "typescript", "llm", "ai", "schema-introspection", "query-execution" ], "author": "lidorbt", "license": "MIT", "devDependencies": { "@eslint/js": "^9.27.0", "@types/jest": "^29.5.14", "@types/node": "^22.10.6", "@typescript-eslint/eslint-plugin": "^8.20.0", "@typescript-eslint/parser": "^8.20.0", "eslint": "^9.19.0", "jest": "^29.7.0", "prettier": "^3.4.2", "ts-jest": "^29.2.5", "tsx": "^4.19.4", "typescript": "^5.7.3" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.0.3", "chalk": "^4.1.2", "commander": "^12.1.0", "graphql": "^16.9.0", "graphql-request": "^7.1.2", "graphql-tag": "^2.12.6", "lodash": "^4.17.21", "lru-cache": "^11.0.2", "node-fetch": "^2.7.0", "winston": "^3.17.0", "zod": "^3.24.1" }, "engines": { "node": ">=18.0.0" }, "files": [ "dist/**/*", "README.md", "LICENSE", "synaptra.config.example.json" ], "repository": { "type": "git", "url": "git+https://github.com/lidorbt/synaptra.git" }, "homepage": "https://github.com/lidorbt/synaptra#readme", "bugs": { "url": "https://github.com/lidorbt/synaptra/issues" } }