{
  "name": "@bota-apps/hooks",
  "version": "0.6.0",
  "description": "The generic data layer for @bota-apps apps: a configured React Query client wired to the feature error tracker, the GraphQL client context/provider, and typed query/mutation pipeline wrappers. Domain hooks stay in each app.",
  "keywords": [
    "bota-apps",
    "typescript",
    "react",
    "react-query",
    "tanstack-query",
    "hooks",
    "data-fetching",
    "graphql"
  ],
  "license": "MIT",
  "author": {
    "name": "Bota Apps",
    "url": "https://github.com/bota-apps"
  },
  "type": "module",
  "files": [
    "dist"
  ],
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bota-apps/packages.git",
    "directory": "packages/hooks"
  },
  "homepage": "https://github.com/bota-apps/packages/tree/main/packages/hooks#readme",
  "bugs": {
    "url": "https://github.com/bota-apps/packages/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@graphql-typed-document-node/core": "^3.2.0",
    "@bota-apps/fm": "^0.8.3",
    "@bota-apps/gql-client": "^0.3.0"
  },
  "peerDependencies": {
    "@tanstack/react-query": "^5.62.0",
    "graphql": "^16.9.0",
    "react": "^19.0.0"
  },
  "devDependencies": {
    "@tanstack/react-query": "^5.62.0",
    "@types/react": "^19.0.0",
    "graphql": "^16.9.0",
    "graphql-request": "^7.1.2",
    "react": "^19.0.0",
    "typescript": "^5.8.3"
  },
  "sideEffects": false,
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "build": "rm -rf dist && tsc && node ../../scripts/fixExtensions.mjs",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist"
  }
}