package.json•800 B
{
"name": "qrcode-mcp-server",
"version": "1.0.4",
"description": "A Model Context Protocol (MCP) server for generating QR codes from text or URLs",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"watch": "tsx watch src/index.ts"
},
"keywords": [
"mcp",
"model-context-protocol",
"qrcode",
"typescript",
"nodejs"
],
"author": "Antonin Brugnot",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.1",
"qrcode": "^1.5.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/qrcode": "^1.5.5",
"tsx": "^4.6.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}