{ "name": "mcp-page-capture", "version": "1.5.1", "description": "mcp-page-capture is a Node.js + TypeScript MCP server that captures webpage screenshots via Puppeteer.", "type": "module", "main": "dist/server.js", "types": "dist/server.d.ts", "exports": { ".": { "types": "./dist/server.d.ts", "import": "./dist/server.js" }, "./server": { "types": "./dist/server.d.ts", "import": "./dist/server.js" }, "./package.json": "./package.json" }, "bin": { "mcp-page-capture": "dist/cli.js" }, "repository": { "type": "git", "url": "git+https://github.com/chasesaurabh/mcp-page-capture.git" }, "bugs": { "url": "https://github.com/chasesaurabh/mcp-page-capture/issues" }, "homepage": "https://github.com/chasesaurabh/mcp-page-capture#readme", "files": [ "dist", "README.md", "LICENSE", "CHANGELOG.md" ], "scripts": { "build": "tsc --project tsconfig.json", "start": "node dist/cli.js", "dev": "tsx watch src/cli.ts", "lint": "tsc --noEmit --pretty", "test": "vitest run", "test:watch": "vitest", "prepublishOnly": "npm run build", "release": "semantic-release" }, "engines": { "node": ">=20.11" }, "keywords": [ "mcp", "model-context-protocol", "puppeteer", "screenshot", "typescript" ], "author": "Saurabh Chase", "license": "MIT", "publishConfig": { "access": "public" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.2.0", "puppeteer": "^24.15.0", "zod": "^3.23.8" }, "devDependencies": { "@semantic-release/changelog": "^6.0.3", "@semantic-release/commit-analyzer": "^12.0.0", "@semantic-release/git": "^10.0.1", "@semantic-release/github": "^9.0.4", "@semantic-release/npm": "^11.0.3", "@semantic-release/release-notes-generator": "^13.0.0", "@types/node": "^20.10.8", "conventional-changelog-conventionalcommits": "^7.0.2", "semantic-release": "^24.2.0", "tsx": "^4.19.1", "typescript": "^5.6.3", "vitest": "^4.0.14" } }