{
  "name": "gitlode",
  "version": "0.12.0",
  "description": "Extract Git commit history to JSON Lines (JSONL) for data warehouse ingestion",
  "keywords": [
    "cli",
    "data-warehouse",
    "etl",
    "git",
    "jsonl"
  ],
  "homepage": "https://github.com/gitlode/gitlode#readme",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gitlode/gitlode.git"
  },
  "bin": {
    "gitlode": "./dist/index.js"
  },
  "files": [
    "dist",
    "schemas"
  ],
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./plugin-api": {
      "types": "./dist/plugin-api.d.ts",
      "default": "./dist/plugin-api.js"
    }
  },
  "scripts": {
    "build": "npm run build:release",
    "build:clean": "tsc -b --clean",
    "build:dev": "tsc -b",
    "build:release": "npm run build:dev && npm run bundle:release",
    "build:watch": "tsc -b -w",
    "bundle:release": "node ./scripts/invalidate-development-cache.js && tsdown",
    "schema:check": "tsx ./scripts/check-generated-config-schema.ts",
    "schema:generate": "tsx ./scripts/generate-config-schema.ts",
    "format:check": "oxfmt --check",
    "format:write": "oxfmt",
    "lint": "oxlint",
    "lint:fix": "oxlint --fix",
    "test": "npm run build:dev && vitest run",
    "test:watch": "npm run build:dev && vitest",
    "test:coverage": "npm run build:dev && vitest run --coverage",
    "test:package": "npm run build:release && npm run validate:publint && npm run test:system:package",
    "test:system:package": "tsx ./scripts/test-installed-package.ts",
    "validate:publint": "publint --strict --pack npm"
  },
  "dependencies": {
    "chalk": "^6.0.0",
    "commander": "^15.0.0",
    "diff": "^9.0.0",
    "isomorphic-git": "^1.40.0",
    "semver": "^7.8.5",
    "zod": "^4.4.3"
  },
  "devDependencies": {
    "@gitlode/git-adapters": "0.0.0",
    "@gitlode/internal-contracts": "0.0.0",
    "@gitlode/internal-foundation": "0.0.0",
    "@gitlode/line-diff-adapters": "0.0.0",
    "@types/node": "^22.13.14",
    "@types/semver": "^7.8.0",
    "@vitest/coverage-v8": "^4.1.10",
    "oxfmt": "^0.62.0",
    "oxlint": "^1.77.0",
    "publint": "^0.3.23",
    "tsdown": "^0.22.14",
    "tsx": "^4.23.8",
    "typescript": "^7.0.2",
    "vitest": "^4.1.10"
  },
  "engines": {
    "node": ">=22.0.0"
  }
}
