{
  "name": "@npupko/hibi",
  "version": "0.6.0",
  "description": "A deterministic, agent-facing CLI that keeps documentation and AI-agent-instruction files from silently going stale.",
  "license": "MIT",
  "author": "Nick Pupko <lazynick7@gmail.com>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/npupko/hibi.git"
  },
  "homepage": "https://hibi.mintlify.app",
  "bugs": {
    "url": "https://github.com/npupko/hibi/issues"
  },
  "keywords": [
    "documentation",
    "docs-drift",
    "documentation-testing",
    "ai-agents",
    "claude-code",
    "cli",
    "tree-sitter",
    "bun"
  ],
  "type": "module",
  "bin": {
    "hibi": "./src/cli/index.ts"
  },
  "exports": {
    ".": "./src/index.ts",
    "./resolver": "./src/resolver/index.ts"
  },
  "engines": {
    "bun": ">=1.0.0"
  },
  "files": [
    "src",
    "grammars",
    "schemas"
  ],
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "scripts": {
    "build:grammars": "bun run scripts/copy-grammars.ts",
    "build:schemas": "bun run scripts/gen-schemas.ts",
    "build:cli-reference": "bun run scripts/gen-cli-reference.ts",
    "build": "bun run build:grammars && bun run build:schemas && bun run build:cli-reference && bun build --compile src/cli/index.ts --outfile dist/hibi",
    "test": "bun test",
    "lint": "biome lint .",
    "format": "biome format --write .",
    "check:biome": "biome check .",
    "cli": "bun run src/cli/index.ts",
    "prepare": "lefthook install"
  },
  "dependencies": {
    "web-tree-sitter": "0.27.0",
    "zod": "4.5.4",
    "tree-sitter-typescript": "0.23.2",
    "tree-sitter-python": "0.25.0",
    "tree-sitter-rust": "0.24.0",
    "tree-sitter-go": "0.25.0",
    "tree-sitter-java": "0.23.5"
  },
  "devDependencies": {
    "@biomejs/biome": "2.5.11",
    "@types/bun": "latest",
    "lefthook": "2.1.12"
  }
}
