{
  "name": "zpi-sdk",
  "version": "0.6.0",
  "description": "Universal, zero-dependency TypeScript SDK for the Zest API (Zapi) scraper platform.",
  "license": "MIT",
  "author": "zaadevofc",
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "bin"
  ],
  "bin": {
    "zpi": "bin/zpi.mjs"
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./mcp": {
      "import": {
        "types": "./dist/mcp.d.ts",
        "default": "./dist/mcp.mjs"
      },
      "require": {
        "types": "./dist/mcp.d.cts",
        "default": "./dist/mcp.cjs"
      }
    },
    "./codegen": {
      "import": {
        "types": "./dist/codegen.d.ts",
        "default": "./dist/codegen.mjs"
      },
      "require": {
        "types": "./dist/codegen.d.cts",
        "default": "./dist/codegen.cjs"
      }
    },
    "./webhooks": {
      "import": {
        "types": "./dist/webhooks.d.ts",
        "default": "./dist/webhooks.mjs"
      },
      "require": {
        "types": "./dist/webhooks.d.cts",
        "default": "./dist/webhooks.cjs"
      }
    }
  },
  "scripts": {
    "build": "tsup",
    "prepublishOnly": "tsup",
    "smoke:esm": "node scripts/smoke-esm.mjs",
    "smoke:cjs": "node scripts/smoke-cjs.cjs",
    "smoke": "npm run smoke:esm && npm run smoke:cjs",
    "typecheck": "tsgo --noEmit",
    "typecheck:legacy": "tsc --noEmit",
    "lint:publish": "publint",
    "lint:types": "attw --pack . --profile node16",
    "dist:scan": "node scripts/scan-dist-builtins.mjs",
    "verify:runtimes": "node scripts/verify-runtimes.mjs",
    "check:readme": "node scripts/check-readme-symbols.mjs",
    "size": "size-limit",
    "types:snapshot": "node scripts/snapshot-types.mjs --write",
    "types:check": "node scripts/snapshot-types.mjs --check",
    "test": "vitest run",
    "changeset": "changeset",
    "release:version": "changeset version && node scripts/sync-version.mjs",
    "release:publish": "npm run build && changeset publish",
    "prepare": "husky",
    "check": "npm run typecheck && npm run typecheck:legacy && npm run build && npm run smoke && npm run lint:publish && npm run lint:types && npm run dist:scan && npm run size && npm run types:check && npm run test && npm run verify:runtimes && npm run check:readme"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "packageManager": "bun@1.3.11",
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.18.2",
    "@changesets/cli": "^2.31.0",
    "@commitlint/cli": "^20.5.0",
    "@commitlint/config-conventional": "^20.5.0",
    "@size-limit/file": "^12.1.0",
    "@types/node": "^24.10.1",
    "@typescript/native-preview": "7.0.0-dev.20260629.1",
    "husky": "^9.1.7",
    "publint": "^0.3.14",
    "size-limit": "^12.1.0",
    "tsup": "^8.5.1",
    "tsx": "^4.22.4",
    "typescript": "^6.0.3",
    "vitest": "^4.1.9"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/zeative/zpi-sdk.git"
  },
  "homepage": "https://zpi.web.id/docs",
  "bugs": {
    "url": "https://github.com/zeative/zpi-sdk/issues"
  }
}
