{
  "name": "@remnic/coding-graph",
  "version": "9.69.38",
  "description": "Web-tree-sitter powered symbol-extraction engine + SQLite knowledge-graph store for codebase memory (Tier 1: TypeScript, TSX, JavaScript, Python, Go, Rust, Java, C, C++, C#, Ruby, PHP, Kotlin, Swift, Bash). Optional companion of @remnic/core — install only when coding-graph features are needed.",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "remnic-source": "./src/index.ts",
      "import": "./dist/index.js"
    },
    "./graph-schema": {
      "types": "./dist/graph-schema.d.ts",
      "remnic-source": "./src/graph-schema.ts",
      "import": "./dist/graph-schema.js"
    },
    "./graph-store": {
      "types": "./dist/graph-store.d.ts",
      "remnic-source": "./src/graph-store.ts",
      "import": "./dist/graph-store.js"
    },
    "./cypher": {
      "types": "./dist/cypher/query-parser.d.ts",
      "remnic-source": "./src/cypher/query-parser.ts",
      "import": "./dist/cypher/query-parser.js"
    }
  },
  "files": [
    "src",
    "dist",
    "grammars"
  ],
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "dependencies": {
    "better-sqlite3": "^12.6.2",
    "web-tree-sitter": "^0.25.0"
  },
  "peerDependencies": {
    "@remnic/core": "^9.69.38"
  },
  "devDependencies": {
    "@types/node": "^22.10.0",
    "tsup": "^8.5.1",
    "tsx": "^4.19.0",
    "typescript": "^5.7.0",
    "@remnic/core": "9.69.38"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/joshuaswarren/remnic.git",
    "directory": "packages/coding-graph"
  },
  "keywords": [
    "remnic",
    "memory",
    "codebase",
    "coding-graph",
    "knowledge-graph",
    "sqlite",
    "tree-sitter",
    "wasm",
    "symbols",
    "extraction"
  ],
  "scripts": {
    "prebuild": "node ../../scripts/ensure-bench-build-deps.mjs",
    "build": "tsup --config tsup.config.ts",
    "precheck-types": "node ../../scripts/ensure-bench-build-deps.mjs",
    "check-types": "tsc --noEmit",
    "test": "NODE_OPTIONS=\"${NODE_OPTIONS:+$NODE_OPTIONS }--conditions=remnic-source\" tsx --test 'src/**/*.test.ts'"
  }
}