{
  "name": "@opencodehub/storage",
  "version": "0.3.0",
  "description": "OpenCodeHub — DuckDB graph store (@duckdb/node-api + hnsw_acorn + fts)",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/theagenticguy/opencodehub.git",
    "directory": "packages/storage"
  },
  "homepage": "https://github.com/theagenticguy/opencodehub#readme",
  "bugs": {
    "url": "https://github.com/theagenticguy/opencodehub/issues"
  },
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./test-utils": {
      "types": "./dist/test-utils/index.d.ts",
      "import": "./dist/test-utils/index.js"
    }
  },
  "files": [
    "dist/**/*.js",
    "!dist/**/*.test.js",
    "dist/**/*.d.ts",
    "!dist/**/*.test.d.ts",
    "dist/**/*.js.map",
    "!dist/**/*.test.js.map",
    "dist/**/*.d.ts.map",
    "!dist/**/*.test.d.ts.map"
  ],
  "dependencies": {
    "@duckdb/node-api": "1.5.2-r.2",
    "@ladybugdb/core": "^0.16.1",
    "@opencodehub/core-types": "0.4.0"
  },
  "devDependencies": {
    "@types/node": "25.9.1",
    "typescript": "6.0.3"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "opencodehub",
    "code-intelligence",
    "mcp",
    "model-context-protocol",
    "ai",
    "code-graph",
    "static-analysis",
    "duckdb",
    "graph-database",
    "storage"
  ],
  "engines": {
    "node": ">=22.0.0"
  },
  "scripts": {
    "build": "tsc -b",
    "test": "node --test --test-concurrency=1 ./dist/**/*.test.js",
    "clean": "rm -rf dist *.tsbuildinfo"
  }
}