Files
playwright-mcp/packages/playwright-cli/package.json
2026-01-23 10:37:33 +00:00

33 lines
876 B
JSON

{
"name": "@playwright/cli",
"version": "0.0.56",
"description": "Playwright CLI",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/playwright-mcp.git"
},
"homepage": "https://playwright.dev",
"engines": {
"node": ">=18"
},
"author": {
"name": "Microsoft Corporation"
},
"license": "Apache-2.0",
"scripts": {
"lint": "tsc --project .",
"build": "esbuild src/cli.ts --bundle --platform=node --target=node18 --format=cjs --outfile=lib/cli.js",
"watch": "esbuild src/cli.ts --bundle --platform=node --target=node18 --format=cjs --outfile=lib/cli.js --watch",
"clean": "rm -rf lib"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/minimist": "^1.2.5",
"debug": "^4.4.3",
"esbuild": "^0.24.0",
"minimist": "^1.2.8",
"typescript": "^5.8.2"
}
}