{
  "name": "@anker-in/shopify",
  "version": "0.0.0-beta.1",
  "description": "Shopify integration utilities and hooks for Anker projects",
  "main": "dist/index.js",
  "module": "dist/index.esm.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "keywords": [
    "shopify",
    "ecommerce",
    "react",
    "hooks",
    "typescript"
  ],
  "author": "Anker",
  "license": "MIT",
  "peerDependencies": {
    "react": ">=16.8.0",
    "react-dom": ">=16.8.0"
  },
  "dependencies": {
    "swr": "^2.2.4",
    "fetch-ponyfill": "^7.1.0",
    "js-cookie": "^3.0.5"
  },
  "devDependencies": {
    "@types/react": "^18.2.0",
    "@types/react-dom": "^18.2.0",
    "@types/js-cookie": "^3.0.6",
    "typescript": "^5.0.0",
    "esbuild": "^0.19.0"
  },
  "exports": {
    ".": {
      "import": "./dist/index.esm.js",
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./hooks": {
      "import": "./dist/index.esm.js",
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./context": {
      "import": "./dist/index.esm.js",
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./types": {
      "import": "./dist/index.esm.js",
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "scripts": {
    "build": "pnpm run build:js:esm & pnpm run build:js:cjs & pnpm run build:js:esm:types & pnpm run build:js:cjs:types",
    "build:js:esm": "node esbuild-esm.mjs",
    "build:js:cjs": "node esbuild-cjs.mjs",
    "build:js:esm:types": "tsc --outdir dist/esm",
    "build:js:cjs:types": "tsc --outdir dist/cjs",
    "dev": "tsc --watch",
    "type-check": "tsc --noEmit"
  }
}