{
  "name": "@se-studio/ab-testing",
  "version": "9.0.0",
  "description": "Server-side A/B testing framework for Next.js applications with Contentful CMS",
  "repository": {
    "type": "git",
    "url": "https://github.com/Something-Else-Studio/se-core-product",
    "directory": "packages/ab-testing"
  },
  "license": "MIT",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./middleware": {
      "types": "./dist/middleware/index.d.ts",
      "import": "./dist/middleware/index.js"
    },
    "./webhook": {
      "types": "./dist/webhook/index.d.ts",
      "import": "./dist/webhook/index.js"
    },
    "./hooks": {
      "types": "./dist/hooks/index.d.ts",
      "import": "./dist/hooks/index.js"
    },
    "./codegen": {
      "types": "./dist/codegen/index.d.ts",
      "import": "./dist/codegen/index.js"
    },
    "./components": {
      "types": "./dist/components/index.d.ts",
      "import": "./dist/components/index.js"
    },
    "./reporting": {
      "types": "./dist/reporting/buildExperimentImpression.d.ts",
      "import": "./dist/reporting/buildExperimentImpression.js"
    }
  },
  "bin": {
    "generate-ab-tests": "./dist/codegen/cli.js"
  },
  "files": [
    "dist",
    "*.md",
    "docs"
  ],
  "keywords": [
    "ab-testing",
    "a/b-testing",
    "experiment",
    "nextjs",
    "next.js",
    "middleware",
    "contentful",
    "cms",
    "typescript",
    "react",
    "analytics"
  ],
  "homepage": "https://github.com/Something-Else-Studio/se-core-product#readme",
  "bugs": {
    "url": "https://github.com/Something-Else-Studio/se-core-product/issues"
  },
  "peerDependencies": {
    "next": ">=15.5.0 <16",
    "react": "^19.0.0",
    "@se-studio/core-ui": "1.16.0"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.5.5",
    "@types/node": "^24.13.3",
    "@types/react": "^19.2.17",
    "next": "^15.5.21",
    "typescript": "^6.0.3",
    "vitest": "^4.1.10",
    "@se-studio/core-ui": "1.16.0"
  },
  "scripts": {
    "build": "tsc --project tsconfig.build.json",
    "dev": "tsc --project tsconfig.build.json --watch",
    "type-check": "tsc --noEmit",
    "test": "vitest run",
    "lint": "biome lint .",
    "clean": "rm -rf dist .turbo *.tsbuildinfo"
  }
}