{
  "name": "@opensip-cli/lang-cpp",
  "version": "0.8.5",
  "license": "Apache-2.0",
  "description": "C/C++ language adapter for opensip-cli (clang-tidy backed)",
  "keywords": [
    "opensip-cli",
    "static-analysis",
    "code-quality",
    "parser",
    "ast",
    "tree-sitter",
    "cpp",
    "c++"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/opensip-ai/opensip-cli.git",
    "directory": "packages/languages/lang-cpp"
  },
  "homepage": "https://github.com/opensip-ai/opensip-cli",
  "bugs": {
    "url": "https://github.com/opensip-ai/opensip-cli/issues"
  },
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": "./dist/index.js"
  },
  "files": [
    "dist",
    "LICENSE",
    "NOTICE"
  ],
  "dependencies": {
    "@opensip-cli/core": "0.8.5"
  },
  "devDependencies": {
    "@types/node": "^24.13.3",
    "vitest": "^4.1.10"
  },
  "scripts": {
    "build": "tsc",
    "test": "vitest run --passWithNoTests",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist"
  }
}