{
  "name": "@novu/client",
  "version": "2.6.6",
  "repository": "https://github.com/novuhq/novu",
  "description": "API client to be used in end user environments",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/cjs/index.d.ts",
  "files": [
    "dist/"
  ],
  "license": "MIT",
  "keywords": [],
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=10"
  },
  "dependencies": {
    "@novu/shared": "2.6.6"
  },
  "devDependencies": {
    "@types/jest": "29.5.2",
    "@types/node": "^20.15.0",
    "codecov": "^3.5.0",
    "jest": "^27.0.6",
    "npm-run-all": "^4.1.5",
    "rimraf": "^3.0.2",
    "ts-jest": "^27.0.5",
    "typedoc": "^0.24.0",
    "typescript": "5.6.2"
  },
  "prettier": {
    "singleQuote": true
  },
  "nx": {
    "tags": [
      "type:package"
    ]
  },
  "scripts": {
    "start": "npm run start:dev",
    "start:dev": "npm run watch:build",
    "prebuild": "rimraf dist",
    "build": "npm run build:cjs && npm run build:esm",
    "build:esm": "cross-env node_modules/.bin/tsc -p tsconfig.esm.json",
    "build:cjs": "cross-env node_modules/.bin/tsc -p tsconfig.build.json",
    "fix": "run-s fix:*",
    "fix:prettier": "prettier \"src/**/*.ts\" --write",
    "lint:fix": "eslint src --fix",
    "test": "echo \"No tests yet, build tests only\"",
    "lint": "eslint src",
    "test:prettier": "prettier \"src/**/*.ts\"",
    "test:unit": "jest src",
    "check-cli": "run-s test diff-integration-tests check-integration-tests",
    "check-integration-tests": "run-s check-integration-test:*",
    "diff-integration-tests": "mkdir -p diff && rm -rf diff/test && cp -r test diff/test && rm -rf diff/test/test-*/.git && cd diff && git init --quiet && git add -A && git commit --quiet --no-verify --allow-empty -m 'WIP' && echo '\\n\\nCommitted most recent integration test output in the \"diff\" directory. Review the changes with \"cd diff && git diff HEAD\" or your preferred git diff viewer.'",
    "watch:build": "tsc -p tsconfig.json -w",
    "watch:test": "jest src --watch",
    "doc": "run-s doc:html && open-cli build/docs/index.html",
    "doc:html": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --out build/docs",
    "doc:json": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --json build/docs/typedoc.json",
    "doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs",
    "reset-hard": "git clean -dfx && git reset --hard && pnpm install",
    "prepare-release": "run-s reset-hard test"
  }
}