{
  "name": "@opencodehub/core-types",
  "version": "0.4.0",
  "description": "OpenCodeHub — shared graph schema and determinism primitives",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/theagenticguy/opencodehub.git",
    "directory": "packages/core-types"
  },
  "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"
    }
  },
  "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"
  ],
  "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",
    "types",
    "graph-schema",
    "typescript"
  ],
  "engines": {
    "node": ">=22.0.0"
  },
  "scripts": {
    "build": "tsc -b",
    "test": "node --test ./dist/**/*.test.js",
    "clean": "rm -rf dist *.tsbuildinfo"
  }
}