Files
browse/package.json
T
Adam Ladachowski 3b6e915b47 Add fullscreen and preview modes
- Add --fullscreen flag for macOS native fullscreen (AppleScript)
- Add --preview flag to highlight elements before actions
- Add --preview-delay to configure highlight duration
- Update README with new options

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-11 17:42:44 +01:00

70 lines
1.8 KiB
JSON

{
"name": "@saiden/browse",
"version": "0.2.13",
"description": "Headless browser automation for Claude Code using Playwright WebKit",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"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",
"chalk": "^5.6.2",
"log-symbols": "^7.0.1",
"playwright": "^1.41.0",
"sharp": "^0.34.5"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/node": "^20.11.0",
"@types/sharp": "^0.31.1",
"@vitest/coverage-v8": "^4.0.18",
"typescript": "^5.3.0",
"vitest": "^4.0.18"
},
"files": [
"dist",
"README.md"
]
}