{
  "name": "@nr1e/gohighlevel",
  "description": "Unofficial Go High Level client",
  "version": "1.0.0",
  "type": "module",
  "author": "NR1E, Inc.",
  "publishConfig": {
    "access": "public"
  },
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/nr1etech/public.git"
  },
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@eslint/js": "^9.39.3",
    "@types/node": "^24.10.13",
    "dotenv-cli": "^11.0.0",
    "eslint": "9.39.3",
    "prettier": "3.8.1",
    "typescript": "5.9.3",
    "typescript-eslint": "8.56.1",
    "vitest": "4.0.18"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./contacts": {
      "import": "./dist/contacts/index.js",
      "types": "./dist/contacts/index.d.ts"
    },
    "./invoices": {
      "import": "./dist/invoices/index.js",
      "types": "./dist/invoices/index.d.ts"
    },
    "./locations": {
      "import": "./dist/locations/index.js",
      "types": "./dist/locations/index.d.ts"
    },
    "./oauth": {
      "import": "./dist/oauth/index.js",
      "types": "./dist/oauth/index.d.ts"
    },
    "./payments": {
      "import": "./dist/payments/index.js",
      "types": "./dist/payments/index.d.ts"
    }
  },
  "scripts": {
    "prebuild": "prettier --check . && eslint .",
    "build": "tsc -p tsconfig.build.json",
    "watch": "tsc -w",
    "test": "vitest run -t @unit src",
    "test:int": "dotenv -- vitest run -t @int src",
    "test:only": "dotenv -- vitest run -t @only src",
    "clean": "rm -rf dist",
    "fmt": "prettier --write ."
  }
}