{ "name": "scan-mcp", "version": "0.3.0", "mcpName": "io.github.jacksenechal/scan-mcp", "private": false, "type": "module", "description": "scan-mcp: MCP server for scanner capture (ADF/duplex/page-size), batching, and multipage assembly", "main": "dist/mcp.js", "types": "dist/mcp.d.ts", "scripts": { "dev": "tsx watch src/mcp.ts", "dev:http": "tsx watch src/http-server.ts", "build": "tsc -p tsconfig.json", "prepack": "npm run build", "pack:dry": "npm pack --dry-run --cache .npm-cache-pack", "pack:check": "node scripts/check-tarball.mjs", "typecheck": "tsc -p tsconfig.typecheck.json", "start": "node dist/mcp.js", "start:http": "node dist/http-server.js", "lint": "eslint .", "lint:fix": "eslint . --fix", "test": "vitest --coverage", "test:run": "vitest run --coverage", "verify": "npm run lint && npm run typecheck && npm test" }, "bin": { "scan-mcp": "bin/scan-mcp" }, "dependencies": { "@modelcontextprotocol/sdk": "*", "ajv": "^8.17.1", "dotenv": "^17.2.1", "execa": "^9.6.0", "express": "^5.1.0", "pino": "^9.8.0", "uuid": "^11.1.0", "zod": "^3.23.8" }, "devDependencies": { "@types/express": "^5.0.3", "@types/node": "^24.2.1", "@types/uuid": "^10.0.0", "@vitest/coverage-v8": "^3.2.4", "eslint": "^9.33.0", "tsx": "^4.7.0", "typescript": "^5.9.2", "typescript-eslint": "^8.39.0", "vitest": "^3.2.4" }, "engines": { "node": ">=22" }, "license": "MIT", "files": [ "bin/**", "dist/**", "schemas/**", "resources/**", "README.md" ], "repository": { "type": "git", "url": "https://github.com/jacksenechal/scan-mcp.git" }, "bugs": { "url": "https://github.com/jacksenechal/scan-mcp/issues" }, "homepage": "https://github.com/jacksenechal/scan-mcp#readme", "keywords": [ "mcp", "scanner", "sane", "tiff", "cli", "server", "capture", "duplex" ] }