{
  "name": "@mcarvin/gitlab-llm-kit",
  "version": "4.1.0",
  "description": "TypeScript toolkit for GitLab REST API access and LLM-powered insights (merge requests, issues, pipelines, security, releases, wiki, and more)",
  "author": "Matt Carvin",
  "license": "MIT",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/typings/index.d.ts",
  "engines": {
    "node": ">=22.22.1"
  },
  "files": [
    "dist",
    "HANDBOOK.md",
    "CHANGELOG.md"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "node scripts/build.mjs && tsc --emitDeclarationOnly --declarationDir dist/typings",
    "start": "node dist/index.cjs",
    "test": "vitest run --coverage",
    "test:watch": "vitest",
    "lint": "biome lint .",
    "lint:dependencies": "knip",
    "lint:engine": "ls-engines --no-current --no-dev --mode=virtual",
    "format": "biome format --write .",
    "check": "biome check .",
    "prepack": "npm run build",
    "prepare": "husky"
  },
  "lint-staged": {
    "**/*.{js,ts}": [
      "biome check --write --no-errors-on-unmatched"
    ]
  },
  "devDependencies": {
    "@biomejs/biome": "2.5.13",
    "@commitlint/cli": "21.2.2",
    "@commitlint/config-conventional": "21.2.2",
    "@types/node": "26.5.1",
    "@vitest/coverage-v8": "5.0.0",
    "esbuild": "0.28.2",
    "husky": "9.1.7",
    "knip": "6.32.2",
    "lint-staged": "16.3.3",
    "ls-engines": "0.10.1",
    "typescript": "7.0.2",
    "vitest": "5.0.0"
  },
  "dependencies": {
    "@mcarvin/smart-diff": "6.3.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mcarvin8/gitlab-llm-kit.git"
  },
  "bugs": {
    "url": "https://github.com/mcarvin8/gitlab-llm-kit/issues"
  },
  "keywords": [
    "gitlab",
    "gitlab-api",
    "typescript",
    "ai",
    "ai-sdk",
    "llm",
    "insights",
    "openai",
    "openai-compatible",
    "anthropic",
    "claude",
    "gemini",
    "bedrock",
    "mistral",
    "cohere",
    "groq",
    "xai",
    "deepseek",
    "merge-requests",
    "code-review",
    "pipelines",
    "ci-cd",
    "automation",
    "diff",
    "rest-api",
    "toolkit"
  ],
  "allowScripts": {
    "esbuild@0.28.2": true
  }
}
