3ece3bd3b8
📁 Files changed: 7 📝 Lines changed: 781 • CLAUDE.md • biome.json • package-lock.json • package.json • browser.ts • cli.ts • server.ts
54 lines
1.2 KiB
JSON
54 lines
1.2 KiB
JSON
{
|
|
"name": "@aladac/claude-browse",
|
|
"version": "0.1.0",
|
|
"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"
|
|
},
|
|
"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"
|
|
],
|
|
"author": "aladac",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/aladac/claude-browse"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"dependencies": {
|
|
"playwright": "^1.41.0"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^1.9.0",
|
|
"@types/node": "^20.11.0",
|
|
"typescript": "^5.3.0"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
]
|
|
}
|