Files
browse/package.json
T
Adam Ladachowski 36bab7088e v0.1.1: Add MCP support, Express, chalk logging
- Add MCP server for Claude Code integration (claude-browse-mcp)
- Switch to Express for HTTP server
- Add chalk + log-symbols for terminal output
- Add GitHub Actions publish workflow with trusted publisher

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-06 20:56:07 +01:00

62 lines
1.4 KiB
JSON

{
"name": "@aladac/claude-browse",
"version": "0.1.1",
"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",
"claude-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",
"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/aladac/claude-browse"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"chalk": "^5.6.2",
"express": "^5.2.1",
"log-symbols": "^7.0.1",
"playwright": "^1.41.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/express": "^5.0.6",
"@types/node": "^20.11.0",
"typescript": "^5.3.0"
},
"files": [
"dist",
"README.md"
]
}