{
  "name": "shop-search",
  "version": "3.8.1",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "require": "./dist/index.js",
      "import": "./dist/index.mjs",
      "types": "./dist/index.d.ts"
    },
    "./products": {
      "require": "./dist/products.js",
      "import": "./dist/products.mjs",
      "types": "./dist/products.d.ts"
    },
    "./collections": {
      "require": "./dist/collections.js",
      "import": "./dist/collections.mjs",
      "types": "./dist/collections.d.ts"
    },
    "./checkout": {
      "require": "./dist/checkout.js",
      "import": "./dist/checkout.mjs",
      "types": "./dist/checkout.d.ts"
    },
    "./store": {
      "require": "./dist/store.js",
      "import": "./dist/store.mjs",
      "types": "./dist/store.d.ts"
    },
    "./rate-limit": {
      "require": "./dist/rate-limit.js",
      "import": "./dist/rate-limit.mjs",
      "types": "./dist/rate-limit.d.ts"
    }
  },
  "sideEffects": false,
  "files": [
    "dist"
  ],
  "publishConfig": {
    "provenance": true,
    "registry": "https://registry.npmjs.org/",
    "tag": "latest"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "bun test",
    "test:ci": "bun test --coverage",
    "semantic-release": "semantic-release",
    "format": "biome format --write --no-errors-on-unmatched",
    "lint": "biome lint --diagnostic-level=error --no-errors-on-unmatched . && tsc --noEmit -p tsconfig.json",
    "lint:fix": "biome check --write --unsafe .",
    "lint:staged": "lint-staged",
    "prepare": "command -v husky >/dev/null 2>&1 && husky || true"
  },
  "keywords": [
    "shopify",
    "ecommerce",
    "product-data",
    "store-scraping",
    "typescript",
    "nodejs",
    "product-catalog",
    "shop-search",
    "shopify-api",
    "product-scraper",
    "ecommerce-tools"
  ],
  "author": "tvayam.tech <<peppyhop@gmail.com>>",
  "license": "MIT",
  "description": "A powerful, type-safe TypeScript library for fetching and transforming product data from Shopify stores. Perfect for building e-commerce applications, product catalogs, price comparison tools, and automated store analysis.",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/peppyhop/shop-search.git"
  },
  "homepage": "https://github.com/peppyhop/shop-search#readme",
  "bugs": {
    "url": "https://github.com/peppyhop/shop-search/issues"
  },
  "devDependencies": {
    "@biomejs/biome": "2.3.7",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@tsconfig/bun": "^1.0.10",
    "@types/bun": "^1.3.3",
    "@types/turndown": "^5.0.6",
    "conventional-changelog-conventionalcommits": "^9.1.0",
    "husky": "^9.1.7",
    "lint-staged": "^16.2.7",
    "semantic-release": "^25.0.2",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3"
  },
  "dependencies": {
    "remeda": "^2.32.0",
    "tldts": "^7.0.7",
    "turndown": "^7.2.2",
    "turndown-plugin-gfm": "^1.0.2"
  },
  "lint-staged": {
    "src/**/!(*.test|*.spec).{ts,tsx,js,jsx}": [
      "biome format --write --no-errors-on-unmatched"
    ],
    "**/*.{cjs,mjs,json,jsonc,d.cts,d.mts}": [
      "biome format --write --no-errors-on-unmatched"
    ],
    "src/**/*.{test,spec}.{ts,tsx,js,jsx}": [
      "biome format --write --no-errors-on-unmatched"
    ]
  },
  "packageManager": "bun@1.3.3"
}
