{
  "name": "cypress-image-diff-html-report",
  "description": "A HTML reporting module for Cypress-Image-Diff to parse the JSON output to a beautiful report",
  "version": "2.2.0",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "scripts": {
    "prepare": "husky install",
    "format": "prettier . --write --list-different",
    "lint": "eslint . --fix --max-warnings=0",
    "start": "nodemon -w src/local-server -w src/common --exec node --loader ts-node/esm src/local-server/dev.ts",
    "dev:ui": "vite dev --config src/ui/vite.config.js",
    "build:ui:inline": "vite build --config src/ui/vite.config.js",
    "build:ui:ci": "RUN_MODE=ci vite build --config src/ui/vite.config.js",
    "build:server": "tsc",
    "build": "run-s build:ui:inline build:ui:ci build:server",
    "test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --runInBand",
    "type-check:ui": "vue-tsc --noEmit --project src/ui/tsconfig.json",
    "type-check:rest": "tsc --noEmit",
    "type-check": "run-s -c type-check:*"
  },
  "bin": "./bin/index.js",
  "author": {
    "name": "Kien Ha Trung",
    "email": "kienht.dev@gmail.com"
  },
  "keywords": [
    "cypress",
    "visual",
    "testing",
    "regression",
    "comparison",
    "html report"
  ],
  "license": "MIT",
  "dependencies": {
    "cac": "^6.7.14",
    "chalk": "^4.1.2",
    "express": "^4.18.2",
    "fs-extra": "^11.1.1",
    "lodash": "^4.17.21",
    "open": "^9.1.0",
    "vue-router": "^4.3.2"
  },
  "devDependencies": {
    "@commitlint/cli": "^17.7.1",
    "@commitlint/config-conventional": "^17.7.0",
    "@types/express": "^4.17.17",
    "@types/fs-extra": "^11.0.2",
    "@types/jest": "^29.5.5",
    "@types/lodash": "^4.14.198",
    "@types/mock-fs": "^4.13.2",
    "@types/node": "^20.6.3",
    "@types/nodemon": "^1.19.2",
    "@types/supertest": "^2.0.13",
    "@typescript-eslint/eslint-plugin": "^6.7.0",
    "@typescript-eslint/parser": "^6.7.0",
    "@vitejs/plugin-vue": "^4.2.3",
    "@vue/eslint-config-prettier": "^8.0.0",
    "@vue/eslint-config-typescript": "^11.0.3",
    "cross-env": "^7.0.3",
    "element-plus": "^2.5.6",
    "eslint": "^8.49.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-cypress": "^2.15.1",
    "eslint-plugin-prettier": "^5.0.0",
    "husky": "^8.0.3",
    "jest": "^29.7.0",
    "mock-fs": "^5.2.0",
    "nodemon": "^3.0.1",
    "npm-run-all": "^4.1.5",
    "pinia": "^2.1.6",
    "prettier": "^3.0.3",
    "supertest": "^6.3.3",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.1",
    "typescript": "^5.2.2",
    "unplugin-auto-import": "^0.16.6",
    "unplugin-vue-components": "^0.25.2",
    "vite": "^4.4.5",
    "vite-plugin-singlefile": "^0.13.5",
    "vue": "^3.3.4",
    "vue-tsc": "^1.8.5"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/kien-ht/cypress-image-diff-html-report.git"
  },
  "bugs": {
    "url": "https://github.com/kien-ht/cypress-image-diff-html-report/issues"
  },
  "homepage": "https://github.com/kien-ht/cypress-image-diff-html-report#readme",
  "type": "module",
  "files": [
    "dist/common",
    "dist/local-server",
    "dist/ui",
    "*.ts",
    "*.js"
  ],
  "release": {
    "branches": [
      "main"
    ],
    "plugins": [
      "@semantic-release/commit-analyzer",
      "@semantic-release/release-notes-generator",
      "@semantic-release/changelog",
      "@semantic-release/npm",
      "@semantic-release/git",
      "@semantic-release/github"
    ],
    "preset": "angular"
  }
}
