{
  "name": "@ilijanl/temporalio-utils",
  "version": "0.0.1",
  "type": "module",
  "description": "A set of utils around temporalio typescript sdk",
  "author": "ilijaNL",
  "keywords": [
    "temporal",
    "temporalio",
    "temporalsdk",
    "typescript"
  ],
  "homepage": "https://github.com/ilijaNL/temporalio-utils",
  "bugs": {
    "url": "https://github.com/ilijaNL/temporalio-utils/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ilijaNL/temporalio-utils.git"
  },
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.cjs"
    },
    "./activity": {
      "types": "./dist/activity/index.d.ts",
      "import": "./dist/activity/index.js",
      "default": "./dist/activity/index.cjs"
    },
    "./workflow": {
      "types": "./dist/workflow/index.d.ts",
      "import": "./dist/workflow/index.js",
      "default": "./dist/workflow/index.cjs"
    }
  },
  "files": [
    "dist",
    "CHANGELOG.md"
  ],
  "sideEffects": false,
  "license": "MIT",
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public"
  },
  "peerDependencies": {
    "@temporalio/activity": "^1.11.7",
    "@temporalio/common": "^1.11.7",
    "@temporalio/workflow": "^1.11.7"
  },
  "devDependencies": {
    "@changesets/cli": "^2.28.1",
    "@temporalio/activity": "^1.11.7",
    "@temporalio/client": "^1.11.7",
    "@temporalio/common": "^1.11.7",
    "@temporalio/testing": "^1.11.7",
    "@temporalio/worker": "^1.11.7",
    "@temporalio/workflow": "^1.11.7",
    "@tsconfig/node20": "^20.1.4",
    "@types/lodash.merge": "^4.6.9",
    "@vitest/coverage-v8": "3.0.6",
    "prettier": "^3.5.2",
    "tsconfig-paths-webpack-plugin": "^4.2.0",
    "tsup": "^8.3.6",
    "typescript": "^5.7.3",
    "vite-tsconfig-paths": "^5.1.4",
    "vitest": "^3.0.6"
  },
  "dependencies": {
    "lodash.merge": "^4.6.2"
  },
  "scripts": {
    "test": "vitest run --coverage",
    "check-type": "tsc -p tsconfig.json --noEmit",
    "build": "tsup",
    "format": "prettier --write ./src",
    "check-format": "prettier --check ./src",
    "ci": "pnpm run check-type && pnpm run check-format && pnpm run test",
    "ci:publish": "pnpm run build && changeset publish"
  }
}