{
  "name": "@pawel-up/lupa",
  "version": "0.7.0",
  "description": "A lightning-fast, Vite-powered browser testing framework for Web Components with an elegant, Japa-inspired API.",
  "repository": {
    "type": "git",
    "url": "https://github.com/pawel-up/lupa.git"
  },
  "bugs": {
    "url": "https://github.com/pawel-up/lupa/issues"
  },
  "license": "Apache-2.0",
  "author": "Pawel Uchida-Psztyc",
  "type": "module",
  "files": [
    "dist",
    "skills"
  ],
  "engines": {
    "node": ">=24.0.0"
  },
  "bin": {
    "lupa": "./dist/bin/lupa.js"
  },
  "scripts": {
    "docs": "typedoc && node scripts/patch-docs.js && vitepress build docs",
    "docs:serve": "vitepress dev docs",
    "test": "npm run test:unit",
    "test:unit": "tsx --test \"tests/unit/**/*.spec.ts\"",
    "coverage": "npx --yes c8 npm test",
    "coverage:node": "npx tsx --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage/lcov.info \"tests/unit/**/*.spec.ts\"",
    "test:browser": "tsx bin/lupa.ts test",
    "test:browser:suites": "tsx bin/lupa.ts test --config lupa.suites.config.ts",
    "test:browser:coverage": "tsx bin/lupa.ts test --coverage",
    "build": "tsc -p tsconfig.build.json",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run clean && npm run build",
    "prepare": "husky",
    "lint": "npm run lint:eslint && npm run lint:prettier",
    "lint:eslint": "eslint --color --cache --cache-location .eslintcache .",
    "lint:prettier": "prettier \"**/*.ts\" --check",
    "format:eslint": "eslint --color --cache --fix --cache-location .eslintcache .",
    "format:prettier": "prettier \"**/*.ts\" --write",
    "format": "npm run format:eslint && npm run format:prettier",
    "knip": "knip",
    "typecheck": "tsc -p tsconfig.build.json --noEmit"
  },
  "exports": {
    "./package.json": "./package.json",
    "./assert": "./dist/src/assert/index.js",
    "./module-mock": "./dist/src/module-mock/index.js",
    "./module-mock/fixture": "./dist/src/module-mock/fixture.js",
    "./network": "./dist/src/network/index.js",
    "./runner": "./dist/src/runner/index.js",
    "./refiner": "./dist/src/refiner/main.js",
    "./testing": "./dist/src/testing/index.js",
    "./testing/api": "./dist/src/testing/plugins.js",
    "./reporters": "./dist/src/reporters/index.js",
    "./reporters/base": "./dist/src/reporters/base.js",
    "./commands": "./dist/src/commands/index.js"
  },
  "dependencies": {
    "@inquirer/prompts": "^8.4.3",
    "@japa/errors-printer": "^4.1.4",
    "@jarrodek/debug": "^1.0.0",
    "@jridgewell/trace-mapping": "^0.3.31",
    "@poppinss/colors": "^4.1.6",
    "@poppinss/macroable": "^1.1.2",
    "@poppinss/string": "^1.7.2",
    "assertion-error": "^2.0.1",
    "axe-core": "^4.11.4",
    "c8": "^12.0.0",
    "chai": "^6.2.2",
    "commander": "^15.0.0",
    "console-table-printer": "^2.15.0",
    "emittery": "^2.0.0",
    "error-stack-parser-es": "^2.0.1",
    "es-module-lexer": "^2.1.0",
    "fast-glob": "^3.3.3",
    "lit-html": "^3.3.2",
    "log-update": "^8.0.0",
    "magic-string": "^1.1.0",
    "playwright": "^1.60.0",
    "serialize-error": "^13.0.1",
    "string-width": "^8.2.1",
    "supports-color": "^10.2.2",
    "vite": "^8.0.13"
  },
  "devDependencies": {
    "@commitlint/cli": "^21.0.1",
    "@commitlint/config-conventional": "^21.0.1",
    "@commitlint/types": "^21.0.1",
    "@eslint/compat": "^2.0.0",
    "@eslint/js": "^10.0.1",
    "@semantic-release/changelog": "^7.0.0",
    "@semantic-release/git": "^11.0.1",
    "@types/chai": "^5.2.3",
    "@types/node": "^26.0.1",
    "eslint": "^10.0.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-no-only-tests": "^3.3.0",
    "eslint-plugin-prettier": "^5.5.4",
    "globals": "^17.3.0",
    "husky": "^9.1.7",
    "knip": "^6.14.1",
    "lint-staged": "^17.0.5",
    "prettier": "^3.7.3",
    "semantic-release": "^25.0.3",
    "tsx": "^4.21.0",
    "typedoc": "^0.28.19",
    "typedoc-plugin-markdown": "^4.11.0",
    "typedoc-vitepress-theme": "^1.1.2",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.48.0",
    "vitepress": "^1.6.4"
  },
  "keywords": [
    "testing",
    "web-components",
    "browser-runner",
    "vite",
    "playwright",
    "japa",
    "dom",
    "test-runner",
    "shadow-dom",
    "lit-html",
    "browser-testing",
    "component-testing"
  ],
  "lint-staged": {
    "*.js": [
      "eslint --fix"
    ],
    "*.ts": [
      "eslint --fix"
    ]
  },
  "c8": {
    "reporter": [
      "lcov",
      "text",
      "html"
    ],
    "all": true,
    "include": [
      "src/**/*.ts"
    ],
    "exclude": [
      "test/**",
      "src/types.ts",
      "src/**/types.ts"
    ],
    "report-dir": "./coverage"
  }
}
