Files
sage-graphql-mcp/package.json
2026-03-13 15:00:22 +00:00

27 lines
610 B
JSON

{
"name": "sage-graphql-mcp",
"version": "0.1.0",
"description": "MCP Server for Sage X3 GraphQL API",
"type": "module",
"private": true,
"bin": {
"sage-x3-graphql": "src/index.ts"
},
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun",
"typecheck": "tsc --noEmit",
"test": "bun test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "latest",
"jose": "latest",
"zod": "latest"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5"
}
}