71 lines
1.8 KiB
JSON
71 lines
1.8 KiB
JSON
{
|
|
"name": "@saiden/browse",
|
|
"version": "0.3.1",
|
|
"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": "BUSL-1.1",
|
|
"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": "^25.6.0",
|
|
"@types/sharp": "^0.31.1",
|
|
"@vitest/coverage-v8": "^4.0.18",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.3.0",
|
|
"vitest": "^4.0.18"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
]
|
|
}
|