{
  "name": "cloc-graph",
  "version": "1.0.0",
  "description": "Track lines of code over time by language with visualization",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "cloc-graph": "./dist/index.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/BarthPaleologue/cloc-graph.git"
  },
  "homepage": "https://github.com/BarthPaleologue/cloc-graph#readme",
  "bugs": {
    "url": "https://github.com/BarthPaleologue/cloc-graph/issues"
  },
  "scripts": {
    "build": "tsc",
    "start": "node dist/index.js",
    "dev": "ts-node src/index.ts",
    "prepare": "npm run build",
    "watch": "tsc --watch",
    "lint": "eslint --config eslint.config.mjs src/",
    "lint:fix": "eslint --config eslint.config.mjs src/ --fix",
    "format": "prettier --write \"src/**/*.ts\"",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "typecheck": "tsc --noEmit"
  },
  "keywords": [
    "cloc",
    "git",
    "visualization",
    "code-analysis"
  ],
  "author": "Barthélemy Paléologue",
  "license": "MIT",
  "dependencies": {
    "chart.js": "^4.4.9",
    "chartjs-node-canvas": "^5.0.0",
    "cli-progress": "^3.12.0",
    "commander": "^14.0.0",
    "csv-writer": "^1.6.0",
    "fs-extra": "^11.2.0",
    "simple-git": "^3.23.0"
  },
  "devDependencies": {
    "@types/cli-progress": "^3.11.6",
    "@types/fs-extra": "^11.0.4",
    "@types/jest": "^29.5.14",
    "@types/node": "^22.15.21",
    "eslint": "^9.27.0",
    "jest": "^29.7.0",
    "prettier": "^3.5.3",
    "ts-jest": "^29.3.4",
    "ts-node": "^10.9.2",
    "typescript": "^5.4.5",
    "typescript-eslint": "^8.32.1"
  },
  "peerDependencies": {
    "cloc": ">=1.90.0"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ]
}
