{
  "name": "stripe-experiment-sync",
  "version": "1.0.31",
  "private": false,
  "description": "DEPRECATED - This package has moved to https://github.com/stripe/sync-engine",
  "type": "module",
  "main": "./dist/index.cjs",
  "types": "./dist/index.d.ts",
  "bin": {
    "sync-engine": "./dist/cli/index.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./supabase": {
      "types": "./dist/supabase/index.d.ts",
      "import": "./dist/supabase/index.js",
      "require": "./dist/supabase/index.cjs"
    },
    "./cli": {
      "types": "./dist/cli/lib.d.ts",
      "import": "./dist/cli/lib.js",
      "require": "./dist/cli/lib.cjs"
    }
  },
  "scripts": {
    "clean": "rimraf dist",
    "prepack": "pnpm run build",
    "prebuild": "npm run clean && npm run build:functions",
    "build:functions": "tsx scripts/build-functions.ts && prettier --write src/database/migrations-embedded.ts",
    "build": "tsup src/index.ts src/supabase/index.ts src/cli/index.ts src/cli/lib.ts --format esm,cjs --dts --shims && cp -r src/database/migrations dist/migrations",
    "postbuild": "node scripts/verify-bundled-version.mjs",
    "lint": "eslint src --ext .ts",
    "test": "vitest",
    "test:integration": "vitest run src/tests/integration/",
    "test:e2e": "pnpm run build && vitest run --config vitest.e2e.config.ts && vitest run --config vitest.e2e.webhook.config.ts",
    "sync": "pnpm run build && node dist/cli/index.js sync",
    "dev": "tsup src/index.ts src/supabase/index.ts src/cli/index.ts src/cli/lib.ts --format esm --shims --watch --onSuccess 'cp -r src/database/migrations dist/migrations && node dist/cli/index.js sync'",
    "generate:sigma-schema": "tsx src/sigma/schema/fetch-schema.ts",
    "verify:bundled-version": "node scripts/verify-bundled-version.mjs"
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@ngrok/ngrok": "^1.4.1",
    "chalk": "^5.3.0",
    "commander": "^12.1.0",
    "dotenv": "^16.4.7",
    "express": "^4.18.2",
    "inquirer": "^12.3.0",
    "papaparse": "5.4.1",
    "pg": "^8.16.3",
    "stripe": "^17.7.0",
    "supabase-management-js": "^2.0.2",
    "ws": "^8.18.0",
    "yesql": "^7.0.0"
  },
  "devDependencies": {
    "@types/express": "^4.17.21",
    "@types/inquirer": "^9.0.7",
    "@types/node": "^24.10.1",
    "@types/papaparse": "5.3.16",
    "@types/pg": "^8.15.5",
    "@types/ws": "^8.5.13",
    "@types/yesql": "^4.1.4",
    "@vitest/ui": "^4.0.9",
    "esbuild": "^0.27.2",
    "tsx": "^4.19.2",
    "vitest": "^3.2.4"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/stripe/sync-engine.git"
  },
  "homepage": "https://github.com/stripe/sync-engine#readme",
  "bugs": {
    "url": "https://github.com/stripe/sync-engine/issues"
  },
  "keywords": [
    "stripe",
    "postgres",
    "sync",
    "webhooks",
    "supabase",
    "billing",
    "database",
    "typescript"
  ],
  "author": "Stripe <https://stripe.com/>"
}
