{
  "name": "@adobe/aio-commerce-lib-admin-ui",
  "type": "module",
  "author": "Adobe Inc.",
  "version": "1.0.1",
  "private": false,
  "engines": {
    "node": ">=22 <=24"
  },
  "license": "Apache-2.0",
  "description": "A library to interact with the Adobe Commerce Admin UI SDK API",
  "keywords": [
    "aio",
    "adobe-io",
    "commerce",
    "adobe-commerce",
    "adobe-commerce-sdk",
    "aio-commerce-sdk",
    "admin-ui-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",
    "directory": "packages/aio-commerce-lib-admin-ui"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public"
  },
  "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"
      }
    },
    "./grid-columns": {
      "import": {
        "types": "./dist/es/grid-columns/index.d.mts",
        "default": "./dist/es/grid-columns/index.mjs"
      },
      "require": {
        "types": "./dist/cjs/grid-columns/index.d.cts",
        "default": "./dist/cjs/grid-columns/index.cjs"
      }
    },
    "./mass-actions": {
      "import": {
        "types": "./dist/es/mass-actions/index.d.mts",
        "default": "./dist/es/mass-actions/index.mjs"
      },
      "require": {
        "types": "./dist/cjs/mass-actions/index.d.cts",
        "default": "./dist/cjs/mass-actions/index.cjs"
      }
    },
    "./menu": {
      "import": {
        "types": "./dist/es/menu/index.d.mts",
        "default": "./dist/es/menu/index.mjs"
      },
      "require": {
        "types": "./dist/cjs/menu/index.d.cts",
        "default": "./dist/cjs/menu/index.cjs"
      }
    },
    "./order-view-buttons": {
      "import": {
        "types": "./dist/es/order-view-buttons/index.d.mts",
        "default": "./dist/es/order-view-buttons/index.mjs"
      },
      "require": {
        "types": "./dist/cjs/order-view-buttons/index.d.cts",
        "default": "./dist/cjs/order-view-buttons/index.cjs"
      }
    },
    "./web": {
      "browser": {
        "types": "./dist/es/web/index.d.mts",
        "default": "./dist/es/web/index.mjs"
      },
      "import": {
        "types": "./dist/es/web/index.d.mts",
        "default": "./dist/es/web/index.mjs"
      }
    },
    "./package.json": "./package.json"
  },
  "imports": {
    "#*": "./source/*.ts",
    "#*.tsx": "./source/*.tsx",
    "#test/*": "./test/*.ts",
    "#test/*.tsx": "./test/*.tsx"
  },
  "files": [
    "dist",
    "package.json",
    "CHANGELOG.md",
    "README.md"
  ],
  "dependencies": {
    "@adobe/exc-app": "^1.4.20",
    "@adobe/uix-guest": "^1.0.3",
    "@tanstack/react-router": "^1.170.15",
    "ky": "^1.9.0",
    "react-error-boundary": "^6.1.2",
    "valibot": "^1.1.0",
    "@adobe/aio-commerce-lib-api": "1.3.1",
    "@adobe/aio-commerce-lib-core": "1.2.0"
  },
  "peerDependencies": {
    "@react-spectrum/s2": "^1.5.1",
    "react": "^19.2.7",
    "react-dom": "^19.2.7"
  },
  "peerDependenciesMeta": {
    "@react-spectrum/s2": {
      "optional": true
    },
    "react": {
      "optional": true
    },
    "react-dom": {
      "optional": true
    }
  },
  "devDependencies": {
    "@react-spectrum/s2": "^1.5.1",
    "@types/react": "^19.2.17",
    "@types/react-dom": "^19.2.3",
    "react": "^19.2.7",
    "react-dom": "^19.2.7",
    "typescript": "^6.0.0",
    "@aio-commerce-sdk/common-utils": "0.2.6",
    "@aio-commerce-sdk/config-tsdown": "1.0.1",
    "@aio-commerce-sdk/config-typedoc": "1.0.0",
    "@aio-commerce-sdk/config-typescript": "1.0.0",
    "@aio-commerce-sdk/config-vitest": "1.0.0",
    "@aio-commerce-sdk/scripting-utils": "0.3.5",
    "@aio-commerce-sdk/scripts": "0.1.1"
  },
  "sideEffects": false,
  "scripts": {
    "publint": "publint",
    "build": "tsdown",
    "docs": "typedoc && prettier --write '**/*.md'",
    "pack": "pnpm pack",
    "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.'",
    "test": "vitest run --coverage",
    "test:ui": "vitest --ui --coverage",
    "test:watch": "vitest --watch --coverage"
  }
}