{
  "name": "@aikotools/datacompare",
  "version": "1.3.1",
  "description": "Advanced data comparison engine with directive-based matching for E2E testing",
  "main": "./dist/aikotools-datacompare.cjs",
  "module": "./dist/aikotools-datacompare.mjs",
  "types": "./dist/src/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/src/index.d.ts",
        "default": "./dist/aikotools-datacompare.mjs"
      },
      "require": {
        "types": "./dist/src/index.d.ts",
        "default": "./dist/aikotools-datacompare.cjs"
      }
    }
  },
  "scripts": {
    "dev": "vite",
    "format": "prettier --write \"src/**/*.{js,ts,json}\"",
    "lint": "eslint \"src/**/*.{js,ts}\"",
    "depcheck": "depcheck",
    "build": "npm run format && npm run lint && npm run depcheck && tsc && vite build",
    "test": "npm run build && vitest run --coverage",
    "test:run": "vitest run",
    "test:watch": "vitest",
    "docs:build": "bash scripts/build-readme.sh"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/aikotools/datacompare.git"
  },
  "keywords": [
    "comparison",
    "data-compare",
    "e2e-testing",
    "test-automation",
    "matcher",
    "assertion",
    "deep-equal",
    "json-compare"
  ],
  "author": "aikotools",
  "license": "MIT",
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "luxon": "^3.7.2"
  },
  "devDependencies": {
    "@types/luxon": "^3.7.1",
    "@types/node": "^25.2.3",
    "@typescript-eslint/eslint-plugin": "^8.56.0",
    "@typescript-eslint/parser": "^8.56.0",
    "@vitest/coverage-v8": "^4.0.18",
    "depcheck": "^1.4.7",
    "eslint": "^10.0.0",
    "prettier": "^3.8.1",
    "typescript": "^5.9.3",
    "vite": "^7.3.1",
    "vite-plugin-dts": "^4.5.4",
    "vitest": "^4.0.18"
  }
}
