{
  "name": "hamlet-converter",
  "version": "2.0.2",
  "description": "Hamlet: Multi-framework test converter — 25 directions across JavaScript, Java, and Python.",
  "type": "module",
  "main": "src/index.js",
  "types": "src/types/index.d.ts",
  "exports": {
    ".": {
      "types": "./src/types/index.d.ts",
      "import": "./src/index.js"
    },
    "./internals": {
      "types": "./src/types/internals.d.ts",
      "import": "./src/internals.js"
    },
    "./converters": {
      "types": "./src/types/converters.d.ts",
      "import": "./src/converters/index.js"
    },
    "./core": {
      "types": "./src/types/core.d.ts",
      "import": "./src/core/index.js"
    }
  },
  "bin": {
    "hamlet": "bin/hamlet.js"
  },
  "files": [
    "bin",
    "src/cli",
    "src/converter",
    "src/converters",
    "src/core",
    "src/languages",
    "src/patterns",
    "src/server",
    "src/ui",
    "src/utils",
    "src/types",
    "src/index.js",
    "src/internals.js",
    "README.md",
    "SECURITY.md",
    "LICENSE"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/pmclSF/hamlet.git"
  },
  "homepage": "https://github.com/pmclSF/hamlet#readme",
  "bugs": {
    "url": "https://github.com/pmclSF/hamlet/issues"
  },
  "scripts": {
    "test": "NODE_OPTIONS='--experimental-vm-modules' jest",
    "lint": "eslint src/**/*.js",
    "format": "prettier --write \"src/**/*.js\" \"bin/**/*.js\"",
    "format:check": "prettier --check \"src/**/*.js\" \"bin/**/*.js\"",
    "start": "node bin/hamlet.js",
    "lint-staged": "lint-staged",
    "test:staged": "jest --findRelatedTests",
    "typecheck": "tsc --noEmit -p test/types/tsconfig.json",
    "release:verify": "npm run format:check && npm run lint && npm test && npm run typecheck && node scripts/verify-pack.js",
    "prepublishOnly": "npm run format:check && npm run lint && npm test && npm run typecheck"
  },
  "keywords": [
    "playwright",
    "cypress",
    "selenium",
    "jest",
    "vitest",
    "mocha",
    "jasmine",
    "junit",
    "testng",
    "pytest",
    "unittest",
    "nose2",
    "webdriverio",
    "puppeteer",
    "testcafe",
    "testing",
    "automation",
    "migration",
    "e2e-testing",
    "test-migration",
    "test-converter"
  ],
  "author": "pmcISF",
  "license": "MIT",
  "dependencies": {
    "chalk": "^5.3.0",
    "commander": "^14.0.3",
    "fast-glob": "^3.3.3",
    "pixelmatch": "^7.1.0",
    "pngjs": "^7.0.0"
  },
  "devDependencies": {
    "@commitlint/cli": "^19.6.1",
    "@commitlint/config-conventional": "^19.6.0",
    "@playwright/test": "^1.40.0",
    "@types/jest": "^29.5.3",
    "eslint": "^8.57.1",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-jest": "^29.15.0",
    "jest": "^29.6.2",
    "lint-staged": "^16.2.7",
    "prettier": "^3.0.0",
    "ts-jest": "^29.1.1",
    "typescript": "^5.3.0"
  },
  "lint-staged": {
    "*.js": [
      "prettier --write",
      "eslint --fix --max-warnings=0"
    ]
  },
  "engines": {
    "node": ">=22.0.0"
  },
  "sideEffects": false
}
