package.json•1.28 kB
{
"name": "scryfall-mcp",
"version": "1.0.0",
"description": "MCP Server for Scryfall",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc && npm run test",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"lint": "eslint src/**/*.ts --fix",
"type-check": "tsc --noEmit",
"inspector": "npx @modelcontextprotocol/inspector tsx src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bmurdock/scryfall-mcp.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/bmurdock/scryfall-mcp/issues"
},
"homepage": "https://github.com/bmurdock/scryfall-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"@types/pino": "^7.0.4",
"dotenv": "^16.5.0",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0",
"zod": "^3.25.48"
},
"devDependencies": {
"@types/node": "^22.15.29",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^8.57.1",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.2.0"
}
}