{
  "name": "typed-tasks",
  "version": "2.0.0",
  "description": "A type-safe abstraction for Google Cloud Tasks",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "keywords": [
    "tasks",
    "@google-cloud/tasks",
    "firebase",
    "firebase-functions",
    "typescript",
    "cloud-tasks"
  ],
  "license": "MIT",
  "author": "Thijs Koerselman",
  "repository": {
    "type": "git",
    "url": "https://github.com/0x80/typed-tasks.git"
  },
  "files": [
    "dist",
    "src"
  ],
  "peerDependencies": {
    "@google-cloud/tasks": "^5.5.1",
    "firebase-functions": "^6.1.2",
    "zod": "^3.24.2"
  },
  "devDependencies": {
    "@codecompose/typescript-config": "^1.2.0",
    "@eslint/js": "^9.24.0",
    "@google-cloud/tasks": "^6.0.1",
    "del-cli": "^6.0.0",
    "eslint": "^9.23.0",
    "firebase-functions": "^6.1.2",
    "tsup": "^8.4.0",
    "typescript": "^5.8.2",
    "typescript-eslint": "^8.27.0",
    "vitest": "^3.0.9",
    "zod": "^3.24.2"
  },
  "dependencies": {
    "change-case": "^5.4.4",
    "get-or-throw": "^2.0.1",
    "p-retry": "^6.2.1"
  },
  "scripts": {
    "type-check": "tsc --noEmit",
    "build": "tsup && tsc --emitDeclarationOnly",
    "clean": "del-cli dist tsconfig.tsbuildinfo",
    "test?": "vitest run",
    "lint": "eslint . --max-warnings=0"
  }
}