{
  "name": "@hypequery/datasets",
  "version": "0.13.5",
  "description": "Code-first TypeScript semantic layer for ClickHouse datasets, metrics, multi-tenancy, and AI agents",
  "keywords": [
    "semantic-layer",
    "clickhouse",
    "typescript",
    "analytics",
    "query-builder",
    "orm",
    "metrics",
    "datasets",
    "multi-tenant",
    "mcp",
    "ai-agents"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    },
    "./internal": {
      "types": "./dist/internal.d.ts",
      "import": "./dist/internal.js",
      "require": "./dist/internal.js"
    }
  },
  "typesVersions": {
    "*": {
      "internal": [
        "./dist/internal.d.ts"
      ]
    }
  },
  "license": "Apache-2.0",
  "files": [
    "dist"
  ],
  "dependencies": {
    "@hypequery/protocol": "^0.11.0",
    "@noble/hashes": "^1.8.0",
    "zod": "^3.22.4"
  },
  "peerDependencies": {
    "zod": "^3.22.4"
  },
  "peerDependenciesMeta": {
    "zod": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/node": "^18.19.80",
    "typescript": "^5.7.3",
    "@vitest/coverage-v8": "^3.2.6",
    "vitest": "^3.2.6",
    "@hypequery/protocol-conformance": "^0.10.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hypequery/hypequery.git",
    "directory": "packages/datasets"
  },
  "homepage": "https://hypequery.com",
  "bugs": {
    "url": "https://github.com/hypequery/hypequery/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc --project tsconfig.json",
    "dev": "tsc --watch",
    "test": "npm run test:types && npm run test:unit",
    "test:unit": "vitest run",
    "test:integration": "node scripts/run-integration-tests.js",
    "test:types": "tsc --project tsconfig.type-tests.json",
    "test:watch": "vitest watch",
    "test:coverage": "vitest run --coverage",
    "lint": "eslint --ext .ts \"src/**/*.ts\""
  }
}