{
  "name": "@opensip-cli/tree-sitter",
  "version": "0.8.5",
  "license": "Apache-2.0",
  "description": "Grammar-agnostic tree-sitter substrate (parser lifecycle + node accessors) shared by lang-* and the graph adapters",
  "keywords": [
    "opensip-cli",
    "static-analysis",
    "code-quality",
    "tree-sitter",
    "ast",
    "parser"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/opensip-ai/opensip-cli.git",
    "directory": "packages/tree-sitter"
  },
  "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": {
    "web-tree-sitter": "0.26.11"
  },
  "devDependencies": {
    "@types/node": "^24.13.3",
    "vitest": "^4.1.10"
  },
  "scripts": {
    "build": "tsc",
    "test": "vitest run --passWithNoTests",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist"
  }
}