{
  "name": "@dotdo/tanstack",
  "version": "0.1.1",
  "description": "TanStack DB integration for @dotdo/postgres with local-first sync",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./query": {
      "types": "./dist/query/index.d.ts",
      "import": "./dist/query/index.js"
    },
    "./sync": {
      "types": "./dist/sync/index.d.ts",
      "import": "./dist/sync/index.js"
    },
    "./optimistic": {
      "types": "./dist/optimistic/index.d.ts",
      "import": "./dist/optimistic/index.js"
    },
    "./conflict": {
      "types": "./dist/conflict/index.d.ts",
      "import": "./dist/conflict/index.js"
    },
    "./pglite": {
      "types": "./dist/pglite/index.d.ts",
      "import": "./dist/pglite/index.js"
    },
    "./adapter": {
      "types": "./dist/adapter.d.ts",
      "import": "./dist/adapter.js"
    },
    "./hooks": {
      "types": "./dist/hooks.d.ts",
      "import": "./dist/hooks.js"
    }
  },
  "files": [
    "dist",
    "src"
  ],
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "test": "vitest",
    "test:run": "vitest run",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist"
  },
  "dependencies": {
    "@dotdo/postgres-shared": "^0.1.1"
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "@vitest/coverage-v8": "^3.0.0",
    "typescript": "^5.7.0",
    "vitest": "^3.0.0"
  },
  "peerDependencies": {
    "@tanstack/query-core": ">=5.0.0",
    "@tanstack/react-query": ">=5.0.0",
    "@tanstack/db": ">=0.1.0",
    "@dotdo/pglite": "^0.1.1",
    "react": ">=18.0.0"
  },
  "peerDependenciesMeta": {
    "@tanstack/query-core": {
      "optional": true
    },
    "@tanstack/react-query": {
      "optional": true
    },
    "@tanstack/db": {
      "optional": true
    },
    "@dotdo/pglite": {
      "optional": true
    },
    "react": {
      "optional": true
    }
  },
  "keywords": [
    "tanstack",
    "tanstack-query",
    "tanstack-db",
    "postgres",
    "pglite",
    "local-first",
    "sync",
    "optimistic-updates",
    "cloudflare",
    "workers"
  ],
  "author": "dot.do",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/dot-do/postgres.git",
    "directory": "packages/tanstack"
  },
  "publishConfig": {
    "access": "public"
  }
}
