{
  "name": "tape-six-playwright",
  "version": "1.1.0",
  "description": "Playwright-based browser test runner for tape-six. Runs each test file in its own browser context (Chromium, Firefox, or WebKit). Works with Node, Deno, and Bun.",
  "type": "module",
  "bin": {
    "tape6-playwright": "bin/tape6-playwright.js",
    "tape6-playwright-node": "bin/tape6-playwright-node.js"
  },
  "scripts": {
    "lint": "prettier --check .",
    "lint:fix": "prettier --write .",
    "browser": "playwright install chromium",
    "browser:all": "playwright install chromium firefox webkit",
    "postinstall": "playwright install chromium",
    "test": "node ./bin/tape6-playwright.js --start-server --flags FO",
    "test:firefox": "node ./bin/tape6-playwright.js --start-server --browser firefox --flags FO",
    "test:webkit": "node ./bin/tape6-playwright.js --start-server --browser webkit --flags FO",
    "test:bun": "bun run ./bin/tape6-playwright.js --start-server --flags FO",
    "test:deno": "deno run -A ./bin/tape6-playwright.js --start-server --flags FO"
  },
  "keywords": [
    "tap",
    "tape6",
    "tape-six",
    "test",
    "test-runner",
    "unit-test",
    "testing",
    "harness",
    "browser",
    "playwright",
    "headless",
    "chromium",
    "firefox",
    "webkit",
    "iframe",
    "parallel",
    "cross-runtime",
    "nodejs",
    "deno",
    "bun",
    "esm",
    "es-modules"
  ],
  "author": "Eugene Lazutkin <eugene.lazutkin@gmail.com> (https://www.lazutkin.com)",
  "funding": "https://github.com/sponsors/uhop",
  "license": "BSD-3-Clause",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/uhop/tape-six-playwright.git"
  },
  "bugs": {
    "url": "https://github.com/uhop/tape-six-playwright/issues"
  },
  "homepage": "https://github.com/uhop/tape-six-playwright#readme",
  "github": "http://github.com/uhop/tape-six-playwright",
  "llms": "https://raw.githubusercontent.com/uhop/tape-six-playwright/master/llms.txt",
  "llmsFull": "https://raw.githubusercontent.com/uhop/tape-six-playwright/master/llms-full.txt",
  "files": [
    "bin",
    "src",
    "llms.txt",
    "llms-full.txt"
  ],
  "dependencies": {
    "playwright": "^1.60.0",
    "tape-six": "^1.10.0"
  },
  "tape6": {
    "browser": [
      "/tests/test-*.html"
    ],
    "tests": [
      "/tests/test-*.*js"
    ],
    "importmap": {
      "imports": {
        "tape-six": "/node_modules/tape-six/index.js",
        "tape-six/": "/node_modules/tape-six/src/"
      }
    }
  },
  "devDependencies": {
    "prettier": "^3.8.3"
  }
}
