{
  "name": "@awell-health/navi-core",
  "version": "0.0.8",
  "description": "Core utilities and GraphQL client for Navi care flow integration",
  "main": "dist/index.js",
  "module": "dist/index.esm.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.esm.js",
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./helpers": {
      "import": "./dist/helpers.esm.js",
      "require": "./dist/helpers.js",
      "types": "./dist/helpers.d.ts"
    }
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "navi",
    "awell",
    "health",
    "patient",
    "care",
    "graphql",
    "utilities"
  ],
  "author": "Awell Health",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/awell-health/navi",
    "directory": "packages/navi-core"
  },
  "bugs": {
    "url": "https://github.com/awell-health/navi/issues"
  },
  "homepage": "https://github.com/awell-health/navi#readme",
  "dependencies": {
    "graphql": "^16.11.0",
    "jose": "^6.0.11",
    "zod": "^4.0.10"
  },
  "devDependencies": {
    "@graphql-codegen/cli": "^5.0.2",
    "@graphql-codegen/typescript": "^4.1.1",
    "@graphql-codegen/typescript-operations": "^4.6.1",
    "@rollup/plugin-node-resolve": "^15.3.0",
    "@rollup/plugin-typescript": "^12.1.4",
    "@types/node": "^20",
    "@vitest/coverage-v8": "^3.2.4",
    "@vitest/ui": "^3.2.4",
    "eslint": "^9",
    "rollup": "^4.25.0",
    "typescript": "^5",
    "vitest": "^3.2.4"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "rollup -c rollup.config.mjs",
    "dev": "rollup -c rollup.config.mjs --watch",
    "clean": "rm -rf dist",
    "test": "vitest",
    "test:run": "vitest run",
    "test:coverage": "vitest run --coverage",
    "test:watch": "vitest --watch",
    "test:ui": "vitest --ui",
    "lint": "eslint src --ext .ts",
    "codegen": "graphql-codegen --config codegen.yml"
  }
}