{
  "name": "@adobe/aio-commerce-sdk",
  "type": "module",
  "author": "Adobe Inc.",
  "version": "1.3.0",
  "private": false,
  "engines": {
    "node": ">=22 <=24"
  },
  "license": "Apache-2.0",
  "description": "Meta-package re-exporting Adobe Commerce SDK libraries for Adobe App Builder applications.",
  "keywords": [
    "aio",
    "adobe-io",
    "commerce",
    "adobe-commerce",
    "adobe-commerce-sdk",
    "aio-commerce-sdk",
    "app-builder"
  ],
  "bugs": {
    "url": "https://github.com/adobe/aio-commerce-sdk/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/adobe/aio-commerce-sdk.git"
  },
  "exports": {
    "./api": {
      "import": {
        "types": "./dist/es/api/index.d.mts",
        "default": "./dist/es/api/index.mjs"
      },
      "require": {
        "types": "./dist/cjs/api/index.d.cts",
        "default": "./dist/cjs/api/index.cjs"
      }
    },
    "./api/*": {
      "import": {
        "types": "./dist/es/api/*.d.mts",
        "default": "./dist/es/api/*.mjs"
      },
      "require": {
        "types": "./dist/cjs/api/*.d.cts",
        "default": "./dist/cjs/api/*.cjs"
      }
    },
    "./events/*": {
      "import": {
        "types": "./dist/es/events/*.d.mts",
        "default": "./dist/es/events/*.mjs"
      },
      "require": {
        "types": "./dist/cjs/events/*.d.cts",
        "default": "./dist/cjs/events/*.cjs"
      }
    },
    "./core/*": {
      "import": {
        "types": "./dist/es/core/*.d.mts",
        "default": "./dist/es/core/*.mjs"
      },
      "require": {
        "types": "./dist/cjs/core/*.d.cts",
        "default": "./dist/cjs/core/*.cjs"
      }
    },
    "./webhooks/*": {
      "import": {
        "types": "./dist/es/webhooks/*.d.mts",
        "default": "./dist/es/webhooks/*.mjs"
      },
      "require": {
        "types": "./dist/cjs/webhooks/*.d.cts",
        "default": "./dist/cjs/webhooks/*.cjs"
      }
    },
    "./admin-ui/*": {
      "import": {
        "types": "./dist/es/admin-ui/*.d.mts",
        "default": "./dist/es/admin-ui/*.mjs"
      },
      "require": {
        "types": "./dist/cjs/admin-ui/*.d.cts",
        "default": "./dist/cjs/admin-ui/*.cjs"
      }
    },
    "./*": {
      "import": {
        "types": "./dist/es/*.d.mts",
        "default": "./dist/es/*.mjs"
      },
      "require": {
        "types": "./dist/cjs/*.d.cts",
        "default": "./dist/cjs/*.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "package.json",
    "CHANGELOG.md",
    "README.md"
  ],
  "dependencies": {
    "type-fest": "^5.0.0",
    "@adobe/aio-commerce-lib-auth": "1.1.1",
    "@adobe/aio-commerce-lib-core": "1.1.1",
    "@adobe/aio-commerce-lib-api": "1.2.1",
    "@adobe/aio-commerce-lib-admin-ui": "0.1.0",
    "@adobe/aio-commerce-lib-events": "1.2.1",
    "@adobe/aio-commerce-lib-webhooks": "1.1.2"
  },
  "devDependencies": {
    "typescript": "^6.0.0",
    "@aio-commerce-sdk/config-tsdown": "1.0.1",
    "@aio-commerce-sdk/config-typescript": "1.0.0"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public"
  },
  "sideEffects": false,
  "scripts": {
    "build": "tsdown",
    "pack": "pnpm pack",
    "publint": "publint",
    "assist": "biome check --formatter-enabled=false --linter-enabled=false --assist-enabled=true --no-errors-on-unmatched",
    "assist:apply": "biome check --write --formatter-enabled=false --linter-enabled=false --assist-enabled=true --no-errors-on-unmatched",
    "check:ci": "biome ci --formatter-enabled=true --linter-enabled=true --assist-enabled=true --no-errors-on-unmatched",
    "code:fix": "pnpm run lint:fix && pnpm run assist:apply && pnpm run format && pnpm run format:markdown",
    "format": "biome format --write --no-errors-on-unmatched",
    "format:markdown": "prettier --no-error-on-unmatched-pattern --write '**/*.md' \"!**/{CODE_OF_CONDUCT.md,COPYRIGHT,LICENSE,SECURITY.md,CONTRIBUTING.md}\"",
    "format:check": "biome format --no-errors-on-unmatched",
    "lint": "biome lint --no-errors-on-unmatched",
    "lint:fix": "biome lint --write --no-errors-on-unmatched",
    "typecheck": "tsc --noEmit && echo '✅ No type errors found.'"
  }
}