{
  "name": "git-xray",
  "version": "0.1.12",
  "description": "CLI tool that generates beautiful, shareable visual reports of git repository statistics. X-ray your codebase.",
  "type": "module",
  "bin": {
    "git-xray": "./dist/cli.js"
  },
  "main": "./dist/cli.js",
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc && rm -rf dist/report/template && cp -r src/report/template dist/report/template",
    "prepublishOnly": "npm run build",
    "test": "vitest --run",
    "test:watch": "vitest",
    "start": "node dist/cli.js"
  },
  "keywords": [
    "git",
    "stats",
    "report",
    "cli",
    "visualization",
    "wrapped",
    "analytics",
    "bus-factor",
    "contributors",
    "hotspots",
    "complexity"
  ],
  "license": "MIT",
  "engines": {
    "node": ">=18"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/hernan-fernandez/git-xray"
  },
  "homepage": "https://github.com/hernan-fernandez/git-xray#readme",
  "bugs": {
    "url": "https://github.com/hernan-fernandez/git-xray/issues"
  },
  "author": "hernan-fernandez",
  "dependencies": {
    "chalk": "5.6.2",
    "echarts": "6.0.0",
    "p-limit": "7.3.0"
  },
  "devDependencies": {
    "@types/node": "25.5.2",
    "fast-check": "4.6.0",
    "typescript": "6.0.2",
    "vitest": "4.1.2"
  }
}
