{
  "name": "@bopstack/pi-codegraph",
  "version": "0.1.1",
  "description": "CodeGraph code understanding extension for Pi and Oh My Pi",
  "license": "MIT",
  "type": "module",
  "main": "src/index.ts",
  "types": "src/index.ts",
  "exports": {
    ".": {
      "import": "./src/index.ts",
      "default": "./src/index.ts"
    }
  },
  "pi": {
    "extensions": [
      "./src/index.ts"
    ]
  },
  "omp": {
    "extensions": [
      "./src/index.ts"
    ]
  },
  "keywords": [
    "pi-package",
    "codegraph",
    "pi",
    "omp"
  ],
  "engines": {
    "node": ">=22.19.0",
    "pnpm": ">=11.3.0"
  },
  "files": [
    "src/**/*.ts",
    "!src/**/*.test.ts",
    "README.md",
    "LICENSE"
  ],
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": "*",
    "@earendil-works/pi-tui": "*",
    "typebox": "*"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.5.1",
    "@earendil-works/pi-coding-agent": "^0.78.0",
    "@earendil-works/pi-tui": "^0.78.1",
    "@types/node": "^22.0.0",
    "typebox": "^1.1.38",
    "typescript": "^5.9.0",
    "vitest": "^4.1.7"
  },
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bopstack/pi-codegraph.git"
  },
  "bugs": {
    "url": "https://github.com/bopstack/pi-codegraph/issues"
  },
  "homepage": "https://github.com/bopstack/pi-codegraph#readme",
  "scripts": {
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "lint": "biome lint .",
    "check": "biome check . && pnpm typecheck && pnpm test"
  }
}