{
  "name": "@lightspeed/ecom-headless",
  "version": "1.1.4",
  "type": "module",
  "main": "dist/index.cjs",
  "types": "dist/index.d.ts",
  "module": "dist/index.mjs",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./api": {
      "types": "./dist/api/index.d.ts",
      "import": "./dist/api/index.mjs",
      "require": "./dist/api/index.cjs"
    },
    "./storefront": {
      "types": "./dist/storefront/index.d.ts",
      "import": "./dist/storefront/index.mjs",
      "require": "./dist/storefront/index.cjs"
    },
    "./types": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/types/index.mjs",
      "require": "./dist/types/index.cjs"
    }
  },
  "files": [
    "dist",
    "CHANGELOG.md",
    "UPGRADE.md"
  ],
  "scripts": {
    "build": "yarn run clean && unbuild",
    "analyze": "yarn build && open dist/plugin-visualizer/bundle.html",
    "clean": "rm -rf dist",
    "prepublishOnly": "yarn run build",
    "link": "npm link",
    "typecheck": "tsc --noEmit",
    "lint": "eslint \"./{src,tests}/**/*.{js,ts}\"",
    "lint:all": "yarn lint && yarn typecheck",
    "test": "jest",
    "test:end-to-end": "echo \"Skip: no end to end tests specified\" && exit 0",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "size": "size-limit",
    "size:why": "size-limit --why"
  },
  "size-limit": [
    {
      "name": "Main Bundle (ESM)",
      "path": "dist/index.mjs",
      "limit": "3 KB",
      "gzip": true
    },
    {
      "name": "Main Bundle (CJS)",
      "path": "dist/index.cjs",
      "limit": "4 KB",
      "gzip": true
    },
    {
      "name": "API Only (ESM)",
      "path": "dist/api/index.mjs",
      "limit": "2 KB",
      "gzip": true
    },
    {
      "name": "Storefront Only (ESM)",
      "path": "dist/storefront/index.mjs",
      "limit": "1.5 KB",
      "gzip": true
    },
    {
      "name": "Types Only (ESM)",
      "path": "dist/types/index.mjs",
      "limit": "100 B",
      "gzip": true
    }
  ],
  "license": "MIT",
  "devDependencies": {
    "@jest/globals": "^29.7.0",
    "@lightspeed/eslint-config": "workspace:*",
    "@size-limit/preset-small-lib": "^11.2.0",
    "@types/jest": "^29.5.12",
    "@types/node": "^22.15.33",
    "eslint": "^9.33.0",
    "jest": "^29.7.0",
    "msw": "2.10.4",
    "rollup-plugin-visualizer": "^6.0.3",
    "size-limit": "^11.2.0",
    "ts-jest": "^29.1.5",
    "tsc-alias": "^1.8.16",
    "tsx": "^4.20.3",
    "typescript": "5.9.3",
    "unbuild": "^3.5.0"
  },
  "description": "Headless JS client for Ecwid public API",
  "keywords": [
    "lightspeed",
    "ecwid",
    "storefront",
    "ecommerce",
    "headless",
    "api",
    "typescript"
  ]
}
