{
  "name": "@panoptic-it-solutions/itglue-client",
  "version": "1.2.2",
  "description": "TypeScript client library for the IT Glue API",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "keywords": [
    "itglue",
    "api",
    "client",
    "typescript",
    "rest",
    "documentation",
    "psa",
    "msp"
  ],
  "author": "Panoptic IT Solutions",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/panoptic-it-solutions/itglue-client.git"
  },
  "bugs": {
    "url": "https://github.com/panoptic-it-solutions/itglue-client/issues"
  },
  "homepage": "https://github.com/panoptic-it-solutions/itglue-client#readme",
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "axios": "^1.9.0",
    "dotenv": "^16.5.0"
  },
  "devDependencies": {
    "@changesets/cli": "^2.27.8",
    "@eslint/js": "^9.28.0",
    "@types/jest": "^29.5.14",
    "@types/node": "^22.15.30",
    "cheerio": "^1.0.0",
    "eslint": "^9.28.0",
    "globals": "^16.2.0",
    "http-server": "^14.1.1",
    "husky": "^9.1.7",
    "jest": "^29.7.0",
    "lint-staged": "^16.1.0",
    "prettier": "^3.5.3",
    "rimraf": "^6.0.1",
    "ts-jest": "^29.3.4",
    "typedoc": "^0.28.5",
    "typedoc-theme-hierarchy": "^6.0.0",
    "typescript": "^5.8.3",
    "typescript-eslint": "^8.33.1"
  },
  "scripts": {
    "lint": "eslint 'src/**/*.{js,ts}'",
    "format": "prettier --write 'src/**/*.{js,ts,json,md}'",
    "precommit": "lint-staged",
    "prepush": "npm run lint && npm run test",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "build": "tsc",
    "build:watch": "tsc --watch",
    "docs": "typedoc --options typedoc.json",
    "docs:clean": "rimraf docs",
    "docs:generate": "typedoc --options typedoc.json",
    "docs:fix-links": "node scripts/fix-documentation-links.js",
    "docs:validate": "node scripts/validate-docs.js",
    "docs:build": "npm run docs:clean && npm run docs:generate && npm run docs:fix-links && npm run docs:validate",
    "docs:serve": "npx http-server docs -p 8080 -o",
    "docs:test": "npm run docs:build && npm run docs:serve",
    "docs:version": "node scripts/version-docs.js",
    "changeset": "changeset",
    "changeset:version": "changeset version",
    "changeset:publish": "changeset publish"
  }
}