package.json•2.79 kB
{
"name": "puppeteer-real-browser-mcp-server",
"version": "1.5.16",
"description": "MCP server for puppeteer-real-browser",
"type": "module",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"clean:cache": "npm cache clean --force",
"fix-cache-permissions": "echo 'Run: sudo chown -R $(whoami):$(id -gn) ~/.npm' && echo 'This fixes npm cache permission issues'",
"clean:modules": "rm -rf node_modules",
"clean:all": "npm run clean:modules && npm run clean:cache && npm run clean",
"fresh-install": "npm run clean:all && npm install",
"fresh-start": "npm run fresh-install && npm run build && npm start",
"fresh-dev": "npm run fresh-install && npm run build && npm run dev",
"prebuild": "npm run clean",
"build": "tsc",
"rebuild": "npm run clean && npm run build",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:ci": "vitest run --coverage",
"test:unit": "vitest run src",
"test:integration": "vitest run test/integration",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:e2e:watch": "vitest --config vitest.e2e.config.ts",
"test:chrome:cleanup": "pkill -f 'Google Chrome' || true",
"test:full": "cd tests/mcp-testing && npm test",
"test:performance": "node tests/performance/performance-tests.js",
"test:debug": "node debug-server.js",
"test:all": "npm run test:ci && npm run test:full && npm run test:performance",
"test:dashboard": "node test-runner.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": ">=1.0.0",
"@types/turndown": "^5.0.5",
"puppeteer-real-browser": "^1.3.18",
"turndown": "^7.2.0"
},
"peerDependencies": {
"@modelcontextprotocol/sdk": ">=1.0.0"
},
"devDependencies": {
"@types/node": "latest",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"rimraf": "^6.0.1",
"tsx": "latest",
"typescript": "^5.5.3",
"vitest": "^2.1.8"
},
"keywords": [
"mcp",
"puppeteer",
"browser-automation"
],
"author": "withlinda13",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/withLinda/puppeteer-real-browser-mcp-server.git"
},
"homepage": "https://github.com/withLinda/puppeteer-real-browser-mcp-server",
"bugs": {
"url": "https://github.com/withLinda/puppeteer-real-browser-mcp-server/issues"
},
"bin": {
"puppeteer-real-browser-mcp-server": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"preferGlobal": true,
"os": [
"darwin",
"linux",
"win32"
]
}