{
  "name": "charlie-git",
  "version": "0.1.9",
  "description": "A tool for analyzing and visualizing your git history. Based on ideas from 'Your Code as a Crime Scene' by Andrew M. Sutton.",
  "type": "module",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sudo97/charlie.git"
  },
  "homepage": "https://github.com/sudo97/charlie#readme",
  "bugs": {
    "url": "https://github.com/sudo97/charlie/issues"
  },
  "main": "./dist/cli/cli/index.js",
  "bin": {
    "charlie": "dist/cli/cli/index.js"
  },
  "files": [
    "dist/",
    "templates/"
  ],
  "scripts": {
    "execute": "node dist/cli/cli/index.js",
    "build": "npm run build:frontend && npm run build:cli && npm run copy:templates",
    "build:frontend": "vite build",
    "build:cli": "tsc --project tsconfig.cli.json",
    "copy:templates": "cp -r src/frontend/templates ./",
    "dev": "concurrently \"npm run dev:frontend\" \"npm run build:cli -- --watch\"",
    "dev:frontend": "vite serve",
    "test": "vitest",
    "test:ui": "vitest --ui",
    "test:coverage": "vitest --coverage",
    "test:watch": "vitest --watch",
    "lint": "tsc --noEmit",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "check:duplicates": "jscpd src --mode strict",
    "clean": "rm -rf dist templates",
    "prepublishOnly": "npm run clean && npm run build"
  },
  "jscpd": {
    "ignore": [
      "**/*.test.ts"
    ]
  },
  "keywords": [
    "git",
    "analysis",
    "visualization",
    "code-quality",
    "metrics",
    "cli"
  ],
  "author": "Illia Mikhnevych <https://github.com/sudo97>",
  "license": "MIT",
  "dependencies": {
    "@react-spring/web": "^10.0.1",
    "@types/react": "^19.1.8",
    "@types/react-dom": "^19.1.6",
    "commander": "^11.1.0",
    "d3": "^7.8.5",
    "d3-cloud": "^1.2.7",
    "isomorphic-git": "^1.30.2",
    "mustache": "^4.2.0",
    "react": "^19.1.0",
    "react-dom": "^19.1.0",
    "zod": "^3.25.51"
  },
  "devDependencies": {
    "@eslint/js": "^9.28.0",
    "@stryker-mutator/vitest-runner": "^9.0.1",
    "@types/d3": "^7.4.3",
    "@types/d3-cloud": "^1.2.9",
    "@types/mustache": "^4.2.2",
    "@types/node": "^20.10.6",
    "@vitejs/plugin-react": "^4.5.2",
    "concurrently": "^7.6.0",
    "eslint": "^9.28.0",
    "globals": "^16.2.0",
    "jscpd": "^4.0.5",
    "prettier": "^3.0.0",
    "typescript": "^5.3.3",
    "typescript-eslint": "^8.33.0",
    "vite": "^4.4.9",
    "vitest": "^3.2.3"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
