{ "name": "@saiden/browse", "version": "0.2.4", "description": "Headless browser automation for Claude Code using Playwright WebKit", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "claude-browse": "dist/cli.js", "browse-mcp": "dist/mcp.js" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "start": "node dist/cli.js", "lint": "biome lint src/", "lint:fix": "biome lint --write src/", "format": "biome format src/", "format:fix": "biome format --write src/", "check": "biome check src/", "fix": "biome check --write src/", "typecheck": "tsc --noEmit", "test:unit": "vitest run --coverage --passWithNoTests", "test:integration": "vitest run --coverage --config vitest.integration.config.ts", "test:watch": "vitest", "test:all": "vitest run --coverage --config vitest.all.config.ts", "test": "npm run fix && npm run typecheck && npm run test:all && npm run build", "coverage": "npm run test:all && open coverage/index.html", "prepublishOnly": "npm run build" }, "keywords": [ "playwright", "webkit", "browser", "automation", "claude", "headless", "mcp", "model-context-protocol" ], "author": "aladac", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/saiden-dev/browse" }, "engines": { "node": ">=18" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.26.0", "@saiden/browse": "^0.2.4", "chalk": "^5.6.2", "express": "^5.2.1", "log-symbols": "^7.0.1", "playwright": "^1.41.0", "sharp": "^0.34.5" }, "devDependencies": { "@biomejs/biome": "^1.9.0", "@types/express": "^5.0.6", "@types/node": "^20.11.0", "@types/sharp": "^0.31.1", "@types/supertest": "^6.0.3", "@vitest/coverage-v8": "^4.0.18", "supertest": "^7.2.2", "typescript": "^5.3.0", "vitest": "^4.0.18" }, "files": [ "dist", "README.md" ] }