{
  "name": "@proofgeist/fmdapi",
  "version": "4.3.2",
  "description": "FileMaker Data API client",
  "main": "dist/index.js",
  "repository": "git@github.com:proofgeist/fm-dapi.git",
  "author": "Eric <37158449+eluce2@users.noreply.github.com>",
  "license": "MIT",
  "private": false,
  "type": "module",
  "types": "dist/index.d.ts",
  "bin": {
    "codegen": "dist/cli.js"
  },
  "exports": {
    ".": "./dist/index.js",
    "./utils/*": "./dist/utils/*",
    "./typegen/*": "./dist/utils/typegen/*",
    "./tokenStore/*": "./dist/tokenStore/*",
    "./dist/*": "./dist/*",
    "./adapters/*": "./dist/adapters/*"
  },
  "dependencies": {
    "@changesets/cli": "^2.28.1",
    "chalk": "4.1.2",
    "commander": "^9.5.0",
    "dayjs": "^1.11.13",
    "dotenv": "^16.4.7",
    "fs-extra": "^11.3.0",
    "ts-morph": "^25.0.1",
    "ts-toolbelt": "^9.6.0"
  },
  "peerDependencies": {
    "zod": ">=3.21.4"
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.16.4",
    "@proofgeist/fm-webviewer-fetch": "^2.1.0",
    "@types/fs-extra": "^11.0.3",
    "@types/node": "^22.13.4",
    "@typescript-eslint/eslint-plugin": "^5.53.0",
    "@typescript-eslint/parser": "^5.62.0",
    "@upstash/redis": "^1.34.4",
    "esbuild-runner": "^2.2.2",
    "eslint": "^8.57.1",
    "eslint-plugin-react": "^7.37.4",
    "prettier": "^3.5.1",
    "ts-node": "^10.9.1",
    "typescript": "^5.7.3",
    "vitest": "^2.1.9",
    "zod": "^3.24.2"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "files": [
    "src",
    "dist",
    "dist-browser",
    "tokenStore",
    "utils",
    "stubs"
  ],
  "keywords": [
    "filemaker",
    "fms",
    "fm",
    "data api",
    "dapi",
    "fmrest",
    "fmdapi",
    "proofgeist",
    "fm-dapi"
  ],
  "scripts": {
    "build": "tsc",
    "check-format": "prettier --check .",
    "format": "prettier --write .",
    "dev": "tsc --watch",
    "ci": "pnpm build && pnpm check-format && pnpm check-exports && pnpm test",
    "check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
    "test": "op inject -i op.env -o .env.local -f && vitest run",
    "test:codegen": "op inject -i op.env -o .env.local -f && pnpx tsx ./test/typegen.ts",
    "changeset": "changeset",
    "release": "pnpm build && changeset publish --access public"
  }
}