{
  "author": "thirdweb eng <eng@thirdweb.com>",
  "bugs": {
    "url": "https://github.com/thirdweb-dev/js/issues"
  },
  "dependencies": {
    "@confluentinc/kafka-javascript": "1.4.0",
    "@paralleldrive/cuid2": "^2.2.2",
    "aws4fetch": "1.0.20",
    "zod": "3.25.75"
  },
  "devDependencies": {
    "@biomejs/biome": "2.0.6",
    "@cloudflare/workers-types": "4.20250704.0",
    "@types/node": "22.14.1",
    "@vitest/coverage-v8": "3.2.4",
    "typescript": "5.8.3",
    "vitest": "3.2.4"
  },
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/esm/index.js",
      "default": "./dist/cjs/index.js"
    },
    "./cf-worker": {
      "types": "./dist/types/cf-worker/index.d.ts",
      "import": "./dist/esm/cf-worker/index.js",
      "default": "./dist/cjs/cf-worker/index.js"
    },
    "./node": {
      "types": "./dist/types/node/index.d.ts",
      "import": "./dist/esm/node/index.js",
      "default": "./dist/cjs/node/index.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist/"
  ],
  "license": "Apache-2.0",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "name": "@thirdweb-dev/service-utils",
  "repository": "https://github.com/thirdweb-dev/js/tree/main/packages/pay",
  "sideEffects": false,
  "type": "module",
  "types": "dist/types/index.d.ts",
  "typesVersions": {
    "*": {
      "cf-worker": [
        "./dist/types/cf-worker/index.d.ts"
      ],
      "node": [
        "./dist/types/node/index.d.ts"
      ]
    }
  },
  "typings": "dist/types/index.d.ts",
  "version": "0.10.11",
  "scripts": {
    "build": "pnpm clean && pnpm build:types && pnpm build:cjs && pnpm build:esm",
    "build:cjs": "tsc --noCheck --project ./tsconfig.build.json --module commonjs --outDir ./dist/cjs --verbatimModuleSyntax false && printf '{\"type\":\"commonjs\"}' > ./dist/cjs/package.json",
    "build:esm": "tsc --noCheck --project ./tsconfig.build.json --module es2020 --outDir ./dist/esm && printf '{\"type\": \"module\",\"sideEffects\":false}' > ./dist/esm/package.json",
    "build:types": "tsc --project ./tsconfig.build.json --module esnext --declarationDir ./dist/types --emitDeclarationOnly --declaration --declarationMap",
    "clean": "rm -rf dist/",
    "coverage": "vitest run --coverage",
    "fix": "biome check ./src --fix",
    "format": "biome format ./src --write",
    "lint": "biome check ./src && tsc --project ./tsconfig.build.json --module esnext --noEmit",
    "test": "vitest run"
  }
}