{
  "name": "@reticlehq/core",
  "version": "3.1.0",
  "description": "The Reticle foundation: the shared wire contract — types, zod schemas, constants, messages, and the isomorphic kernel that every Reticle package (browser SDK, server, kits, test harness) imports. Depends only on zod.",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./telemetry": {
      "types": "./dist/telemetry-entry.d.ts",
      "default": "./dist/telemetry-entry.js"
    },
    "./artifacts": {
      "types": "./dist/artifacts/artifacts-entry.d.ts",
      "default": "./dist/artifacts/artifacts-entry.js"
    },
    "./hooks": {
      "types": "./dist/hooks/hooks-entry.d.ts",
      "default": "./dist/hooks/hooks-entry.js"
    },
    "./schema/*.json": "./dist/schema/*.json",
    "./desktop-contract": {
      "types": "./dist/desktop-contract.d.cts",
      "default": "./dist/desktop-contract.cjs"
    },
    "./source-constants": {
      "types": "./dist/source-constants.d.cts",
      "default": "./dist/source-constants.cjs"
    },
    "./package.json": "./package.json",
    "./tour": {
      "types": "./dist/tour-entry.d.ts",
      "default": "./dist/tour-entry.js"
    }
  },
  "dependencies": {
    "zod": "^3.24.1",
    "open-verification": "1.0.0"
  },
  "devDependencies": {
    "zod-to-json-schema": "^3.24.0"
  },
  "license": "Apache-2.0",
  "author": "Reticle contributors",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/reticlehq/reticle.git",
    "directory": "core"
  },
  "homepage": "https://github.com/reticlehq/reticle#readme",
  "bugs": "https://github.com/reticlehq/reticle/issues",
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "README.md",
    "NOTICE"
  ],
  "sideEffects": false,
  "keywords": [
    "mcp",
    "ai-agents",
    "testing",
    "protocol",
    "reticle"
  ],
  "engines": {
    "node": ">=20.0.0"
  },
  "scripts": {
    "build": "tsc -b && node ../scripts/alias-dist.mjs && node scripts/gen-schema.mjs && node scripts/gen-desktop-contract.mjs && node scripts/gen-source-constants.mjs",
    "typecheck": "tsc -b",
    "lint": "eslint src",
    "test:unit": "vitest run src --passWithNoTests",
    "test:coverage": "vitest run src --passWithNoTests --coverage.enabled --coverage.provider=v8 --coverage.reporter=text-summary --coverage.include='src/**/*.ts' --coverage.exclude='src/**/*.test.ts'"
  }
}