{
  "name": "@accru/client",
  "private": false,
  "version": "0.19.2",
  "description": "SDK client for Accru API",
  "license": "MIT",
  "author": "Luiz Felipe Laviola <luiz@laviola.dev>",
  "homepage": "https://accru.co",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/accruteam/sdk-accru-ts"
  },
  "bugs": {
    "url": "https://github.com/accruteam/sdk-accru-ts/issues"
  },
  "keywords": [
    "accru",
    "sdk",
    "QuickBooks"
  ],
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "build": "tsup",
    "watch": "tsup --watch",
    "start": "./scripts/run.sh",
    "test": "vitest run",
    "lint": "run-p -c lint:*",
    "lint:eslint": "eslint --fix",
    "lint:tsc": "tsc --noEmit",
    "codegen": "graphql-codegen",
    "codegen:update": "graphql-codegen && yalc publish",
    "codegen:watch": "graphql-codegen -w",
    "release": "npm run build && changeset publish",
    "prepare": "husky"
  },
  "dependencies": {
    "@apollo/client": "^4.1.9",
    "apollo-link-scalars": "^5.0.1",
    "graphql": "^16.13.2",
    "graphql-scalars": "^1.25.0"
  },
  "devDependencies": {
    "@changesets/cli": "^2.31.0",
    "@commitlint/cli": "^20.5.3",
    "@commitlint/config-conventional": "^20.5.3",
    "@eslint/compat": "^2.0.5",
    "@eslint/eslintrc": "^3.3.5",
    "@eslint/js": "^10.0.1",
    "@graphql-codegen/cli": "^7.0.0",
    "@graphql-codegen/client-preset": "^6.0.0",
    "@graphql-codegen/introspection": "^6.0.0",
    "@graphql-codegen/schema-ast": "^6.0.0",
    "@graphql-typed-document-node/core": "^3.2.0",
    "@types/node": "^25.6.0",
    "@typescript-eslint/eslint-plugin": "^8.59.2",
    "@typescript-eslint/parser": "^8.59.2",
    "commitizen": "^4.3.1",
    "cz-conventional-changelog": "^3.3.0",
    "dotenv": "^17.4.2",
    "eslint": "^10.3.0",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-import-resolver-typescript": "^4.4.4",
    "eslint-plugin-import": "^2.32.0",
    "eslint-plugin-prettier": "^5.5.5",
    "globals": "^17.6.0",
    "husky": "^9.1.7",
    "lint-staged": "^16.4.0",
    "npm-run-all": "^4.1.5",
    "prettier": "^3.8.3",
    "tsup": "^8.5.1",
    "typescript": "5",
    "vitest": "^4.1.5"
  },
  "lint-staged": {
    "**/*.{ts,tsx}": [
      "eslint 'src/**/*.{ts,tsx}' --fix"
    ]
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  }
}
