package.json•994 B
{
"name": "poc-mcp-server",
"version": "1.0.0",
"description": "Proof of concept for MCP server implementation",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsup src/index.ts --out-dir dist",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"lint": "biome check --write src",
"lint:fix": "biome check --write src"
},
"keywords": [
"mcp",
"server",
"poc"
],
"author": "BrunoSSantana",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"dotenv": "^16.4.5",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^20.11.24",
"@vitest/coverage-v8": "^1.3.1",
"tsup": "^8.4.0",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
}
}