Files
browse/package.json
T
Adam Ladachowski 67b6dc3a79 💬 Commit message: Update 2026-02-07 14:20:25, 8 files, 1060 lines
📁 Files changed: 8
📝 Lines changed: 1060

  • package-lock.json
  • package.json
  • browser.ts
  • cli.ts
  • image.ts
  • index.ts
  • mcp.ts
  • types.ts
2026-02-07 14:20:25 +01:00

74 lines
1.9 KiB
JSON

{
"name": "@aladac/claude-browse",
"version": "0.1.2",
"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",
"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/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",
"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"
]
}